This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires AutoHotkey v2 | |
| #SingleInstance | |
| ListLines(0), KeyHistory(0) | |
| ProcessSetPriority("High") | |
| for k, v in Map("a","d","w","s") | |
| Set(k, v, 0), Set(v, k, 0), Set(k, v, 1), Set(v, k, 1) | |
| Set(a, b, up) { | |
| if up |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local graphicsManager = sdk.get_managed_singleton("app.GraphicsManager")._AppGraphicsSettingController | |
| local graphicsSetting = graphicsManager._GraphicsSetting | |
| graphicsSetting._LensDistortionSetting = 2 | |
| graphicsManager:call("setGraphicsSetting", graphicsSetting) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local function pre_skipOriginalMethod(args) | |
| return sdk.PreHookResult.SKIP_ORIGINAL | |
| end | |
| local function pre_resetUsedTickets(args) | |
| local saveDataManager = sdk.get_managed_singleton("app.SaveDataManager") | |
| local systemCommon = saveDataManager._SystemSaveData._Data._SystemCommon | |
| local userSaveData = saveDataManager._UserSaveData._Data | |
| systemCommon.HunterTicketsUsed = 0 | |
| systemCommon.PalicoTicketsUsed = 0 |
OlderNewer