Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

raidboss/oopsy: support jobs instead of names in triggers #5916

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions ui/oopsyraidsy/oopsyraidsy_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,22 @@ const templateOptions: OptionsTemplate = {
debugOnly: true,
default: false,
},
{
id: 'DefaultPlayerLabel',
name: {
en: 'Default Player Label',
},
type: 'select',
options: {
en: {
'Nickname (Tini)': 'nick',
'Role (Tank)': 'role',
'Job (WAR)': 'job',
'Full Name (Tini Poutini)': 'name',
},
},
default: 'nick',
},
{
id: 'NumLiveListItemsInCombat',
name: {
Expand Down
22 changes: 22 additions & 0 deletions ui/raidboss/raidboss_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2146,6 +2146,28 @@ const templateOptions: OptionsTemplate = {
type: 'checkbox',
default: false,
},
{
id: 'DefaultPlayerLabel',
comment: {
en: `The default way to specify players in trigger output. By default, it will use
nicknames/first names. This can be used to print out player jobs instead.
If you are not in a party or players are out of a party (or there are bugs),
it will default to the player's nickname if there's no other information.`,
},
name: {
en: 'Default Player Label',
},
type: 'select',
options: {
en: {
'Nickname (Tini)': 'nick',
'Role (Tank)': 'role',
'Job (WAR)': 'job',
'Full Name (Tini Poutini)': 'name',
},
},
default: 'nick',
},
{
id: 'ShowTimerBarsAtSeconds',
name: {
Expand Down