-
Notifications
You must be signed in to change notification settings - Fork 26
Discoveries
mattbruv edited this page Jan 30, 2021
·
1 revision
New Cheat: Panhandle
Discovered on 2021-01-30
Activated through the button combination: Y, Y, Y, Y, Y, X, Y, X, Y, Y, X, X
Whenever the player walks by a NPC while carrying more than 75,000 shinies, the NPC will "panhandle" 500:
void zNPCGoalPlayerNear::DoCheatPanHandle()
{
if (globals.player.Inv_Shiny > 75000)
{
globals.player.Inv_Shiny -= 500;
}
}