Skip to content

Simplify CustomRatings, Can append local ratings now, Can debug with new flag #21

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

Merged
merged 1 commit into from
Aug 20, 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
56 changes: 40 additions & 16 deletions autociv_data/options.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,12 @@
"tooltip": "([color=\"255 0 0\"]conflicts with some keybindings eventually[/color])",
"config": "autociv.settings.reset.allowSuperKey"
},
{
"type": "boolean",
"label": "[color=\"220 185 70\"]Global:[/color][color=\"255 0 0\"] debug[/color]",
"tooltip": "([color=\"255 0 0\"]enables debugging messages[/color])",
"config": "autociv.settings.debug"
},
{
"type": "boolean",
"label": "[color=\"220 185 70\"]Global:[/color] use icon without delimiter ",
Expand Down Expand Up @@ -337,22 +343,22 @@
"type": "dropdown",
"label": "[color=\"220 185 70\"]Postfix UserName[/color] or select rated,nub... ->",
"tooltip": "[color=\"255 0 0\"] max. 25 letter, then its cut off !! \n names + everything else.[/color] \n its not disturbing the game. \n but probably looks not beutiful. try it :) ",
"config": "autocivP.customusernameDropdown",
"config": "autocivP.customUsernameDropdown",
"dependencies": ["customrating"],
"list": [
{ "value": "false", "label": "" },
{ "value": "^n", "label": "noob" },
{ "value": "^vn", "label": "very nub" },
{ "value": "^0", "label": "youtuber" },
{ "value": "^1", "label": "unfocused today" },
{ "value": "^2", "label": "rated" },
{ "value": "^3", "label": "unrated" },
{ "value": "^4", "label": "programmer\\?" },
{ "value": "^5", "label": "spec" },
{ "value": "^6", "label": "spec. not play!" },
{ "value": "^7", "label": "ill today" },
{ "value": "^8", "label": "overrated" },
{ "value": "^9", "label": "underrated" }
{ "value": "false", "label": "" },
{ "value": "^n", "label": "noob" },
{ "value": "^vn", "label": "very nub" },
{ "value": "^0", "label": "youtuber" },
{ "value": "^1", "label": "unfocused today" },
{ "value": "^2", "label": "rated" },
{ "value": "^3", "label": "unrated" },
{ "value": "^4", "label": "programmer\\?" },
{ "value": "^5", "label": "spec" },
{ "value": "^6", "label": "spec. not play!" },
{ "value": "^7", "label": "ill today" },
{ "value": "^8", "label": "overrated" },
{ "value": "^9", "label": "underrated" }
]
},
{
Expand All @@ -365,8 +371,26 @@
"type": "boolean",
"label": "[color=\"220 185 70\"]Postfix UserName[/color]: use ♇ or AP to show when useing autocivP",
"tooltip": "not related to fairplay. \n it shows when you are using autocivP mod with a shortcut. \n ♇ for: P in autocivP, L for command Line.",
"config": "autocivP.mod.showIconWhenUsingAutocovP"
},
"config": "autocivP.mod.showIconWhenUsingAutocivP"
},
{
"type": "boolean",
"label": "[color=\"220 185 70\"]Postfix UserName[/color]: use local ratings?",
"tooltip": "appends local ratings to your custom ratings.\n",
"config": "autocivP.mod.showLocalRatings"
},
{
"type": "boolean",
"label": "[color=\"220 185 70\"]Postfix UserName[/color]: appends all above?",
"tooltip": "appends to custom rating.\n it appends all the optional values with '|',\n like myusername(1350|proGUI|spec. not play!).",
"config": "autocivP.mod.appendToCustomRating"
},
{
"type": "boolean",
"label": "[color=\"220 185 70\"]Use local ratings[/color]?",
"tooltip": "Use local ratings instead of ratings. \n",
"config": "autocivP.mod.useLocalRatings"
},
{
"type": "boolean",
"label": "[color=\"220 185 70\"]no UserName in GameNames[/color]?",
Expand Down
Loading