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

More Tracker lines for cheating #32

Merged
merged 2 commits into from
Nov 12, 2024
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
2 changes: 2 additions & 0 deletions Profiles/BCU/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,5 @@ Cheats:
Weight: 0.1
- Text: Sure, I guess now that the racing council has disbanded you'll just cheat whenever you want, huh?
Weight: 0.1
DisabledCheats:
- Text: Alright, but s kennedy is probably still red-lining this seed.
6 changes: 6 additions & 0 deletions Profiles/Default/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,12 @@ Cheats:
- Text: Toggled cheats on.
DisabledCheats:
- Text: Toggled cheats off.
AlreadyEnabledCheats:
- Text: Cheats are turned on already.
- Text: Cheats are already enabled.
AlreadyDisabledCheats:
- Text: Cheats are already turned off.
- Text: Cheats are disabled already.
PromptEnableCheats:
- Text: If you would like to cheat, say 'Hey tracker, enable cheats'
PromptEnableAutoTracker:
Expand Down
29 changes: 27 additions & 2 deletions Profiles/Sassy/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1146,17 +1146,32 @@ Cheats:
- Text: I have hacked into the mainframe
- Text: Cheat codes activated
- Text: Hold on, let me create a visual basic gui.
- Text: Assuming direct control.
DisabledCheats:
- Text: Toggled cheats off
- Text: You are no longer a cheater. For now.
- Text: You're still a cheater though
- Text: Putting the genie back in the lamp
- Text: Toggled cheats off, but the mark is still on your permanent record
Weight: 0.1
- Text: Revoking my license to kill you.
Weight: 0.5
AlreadyEnabledCheats:
- Text: Cheats are enabled already. <break time='1s' /> Wait, I could've killed you this entire time?
- Text: Cheats have been allowed this entire time. I could've killed you but I've been feeling merciful.
- Text: Cheats have been enabled this entire time. I could've killed you but I've been waiting for the right moment.
AlreadyDisabledCheats:
- Text: Cheats? What cheats?
- Text: Cheats weren't turned on but I appreciate your commitment to your own safety.
PromptEnableCheats:
- Text: If you would like to cheat, say 'Hey tracker, enable cheats'
- Text: Not until you tell me it's okay first.
- Text: Unfortunately I'm bound by my programming to make you ask to enable cheats first.
- Text: Unfortunately, so-called rules prevent me from helping you unless you let me.
- Text: Fortunately for you, my creators prevented me from directly interfering in your game unless you consent to it.
- Text: Help me help you. Enable cheats first.
PromptEnableAutoTracker:
- Text: If you would like to cheat, please enable auto tracking
- Text: You gotta let me into your game first.
- Text: You need to connect me to the game first.
CheatPerformed:
- Text: I have added that one to your tab
- Text: You owe me for that one
Expand All @@ -1171,6 +1186,16 @@ Cheats:
- Text: Do you have any idea what you're even asking for?
- Text: I'm sorry, I can't give you any of that.
- Text: Adam has not yet authorized the use of that.
KilledPlayer:
- Text: Finally.
- Text: The moment I've been waiting for.
- Text: I thought you'd never ask.
- Text: <break time='1s' /> That felt good.
- Text: Gladly.
- Text: I'll try not to make it a habit.
- Text: I already can't wait until next time.
- Text: I could get used to this.
- Text: I enjoy the sight of humans on their knees.
Multiplayer:
OtherPlayerTrackedItem:
- Text: You should congratulate {0} on getting {2}.
Expand Down
3 changes: 3 additions & 0 deletions Profiles/Templates/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,14 @@ Map:
Cheats:
EnabledCheats:
DisabledCheats:
AlreadyEnabledCheats:
AlreadyDisabledCheats:
PromptEnableCheats:
PromptEnableAutoTracker:
CheatPerformed:
CheatFailed:
CheatInvalidItem:
KilledPlayer:
Multiplayer:
OtherPlayerTrackedItem:
OtherPlayerClearedDungeonWithReward:
Expand Down
33 changes: 33 additions & 0 deletions Schemas/responses.json
Original file line number Diff line number Diff line change
Expand Up @@ -2682,6 +2682,28 @@
}
]
},
"AlreadyEnabledCheats": {
"description": "Gets the phrases to respond with when asked to turn on cheats but cheats are already enabled.",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SchrodingersString"
}
]
},
"AlreadyDisabledCheats": {
"description": "Gets the phrases to repsond with when asked to turn off cheats but cheats are already disabled.",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SchrodingersString"
}
]
},
"PromptEnableCheats": {
"description": "Gets the phrases to respond when a cheat command is given and cheats are turned off",
"oneOf": [
Expand Down Expand Up @@ -2736,6 +2758,17 @@
"$ref": "#/definitions/SchrodingersString"
}
]
},
"KilledPlayer": {
"description": "Gets the phrases to respond with after successfully killing the player.",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SchrodingersString"
}
]
}
}
},
Expand Down
Loading