Here's my script for holding Ctrl+LMB to cancel AoE shooting for Magogs/Liches.
Any suggestions?
Any void in the definition?
- !?FU(gem_CreateERMHook);
- !!SN:Ex1/1/4454185/(gem_OnBattleStackShoot);
- !?FU(gem_OnBattleStackShoot);
- !#VA(hook:x);
- !!UN:C(hook)/(STRUCT_HOOK_CONTEXT_ESI)/4/?(stackStruct:y);
- !!FU&i^gem_splashShooterStackStruct^<>(stackStruct):E;
- !!FU(gem_ReleaseSplashShooter):P;
- !!VR(oppSide:y):Si^battle_current_side^ X(TRUE);
- !!IP:Di^battle_owner_%(oppSide)^;
- !!FU(gem_ReleaseSplashShooter):D;
- !!SN:X?t/0;
- !!UN:C(hook)/(STRUCT_HOOK_CONTEXT_RET)/4/4454943;
- !?FU(OnSetupBattlefield);
- !!VRi^gem_splashShooterStackStruct^:S0;
- !?FU(OnBattleScreenMouseClick)&i^key_ctrl^/i^mouse_action^=(MOUSE_LMB_PRESSED)/i^mouse_battleHex^>=1/i^mouse_battleHex^<=185/i^battle_localHuman_%i(battle_current_side)^;
- !!BMi^battle_current_stack^:F?(flags:y);
- !!VR(isSplashShooter:y):S(flags) &(MON_FLAG_SPLASH_SHOOTER);
- !!FU&(isSplashShooter)=0:E;
- !!BU:Ei^mouse_battleHex^/?(stack:y);
- !!FU&(stack)=(NO_STACK):E;
- !!BM(stack):I?(targetSide:y);
- !!FU&(targetSide)=i^battle_current_side^:E;
- !!BMi^battle_current_stack^:Z?(stackPtr:y);
- !!SN:E4466192/(CALLCONV_THISCALL)/(stackPtr)/0;
- !!CM:R1;
- !!FU(gem_MarkSplashShooter):P(stackPtr);
- !!VR(oppSide:y):Si^battle_current_side^ X(TRUE);
- !!IP:Di^battle_owner_%(oppSide)^;
- !!FU(gem_MarkSplashShooter):D(stackPtr);
- !?FU(gem_MarkSplashShooter);
- !#VA(stackPtr:x);
- !!VRi^gem_splashShooterStackStruct^:S(stackPtr);
- !?FU(gem_ReleaseSplashShooter);
- !!VRi^gem_splashShooterStackStruct^:S(NULL);
I believe there is pretty much to improve.
Here I have to check whether it's going to shoot (after Ctrl + LMB) in an external way, and I even had to make sure it shoots with CM:R1. It should not be like this.
My ideal implementation is to store a global var for Ctrl+LMB, and then reset this var either when a shoot successfully takes place or fails.
Unfortunately, I failed to find a suitable timing to restore this global var when Ctrl + LMB doesn't lead to shooting. Thus I have to go with the way here.