Hello again, use this if u want.
This lets u replace/use games internal lua scripts.
You can basically add damage to weapons, change arcade missions, instantly clear missions, change anims, hitboxes, states, whatever is inside of luas.
Use [Only registered and activated users can see links. Click Here To Register...] lua files, recently dumped.
[Only registered and activated users can see links. Click Here To Register...]
Tuto:
- download folder with scripts
- create a txt file and paste the lua files NAMES u want to replace. Each in a separate line.
- open game and inject on startup
- follow instructions*
- done
How its done:
- s4 tries to load script.lua
- I say no, load this instead
- s4 says "okay"
Example (edited spy dagger and cannonade luas to lower my speed on attack 1, increased radious and damage):
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
Since GG is peeking at my shit I wont post here directly, if you want a copy just ask, cheers.
Complete stage 8 automatically after 1 minute (Arcade_Host.lua):
*the second time it should automatically take scripts and replace.txt paths (file should be in ur s4 folder called luaeditor.ini)
This lets u replace/use games internal lua scripts.
You can basically add damage to weapons, change arcade missions, instantly clear missions, change anims, hitboxes, states, whatever is inside of luas.
Use [Only registered and activated users can see links. Click Here To Register...] lua files, recently dumped.
[Only registered and activated users can see links. Click Here To Register...]
Tuto:
- download folder with scripts
- create a txt file and paste the lua files NAMES u want to replace. Each in a separate line.
- open game and inject on startup
- follow instructions*
- done
How its done:
- s4 tries to load script.lua
- I say no, load this instead
- s4 says "okay"
Example (edited spy dagger and cannonade luas to lower my speed on attack 1, increased radious and damage):
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
Since GG is peeking at my shit I wont post here directly, if you want a copy just ask, cheers.
Complete stage 8 automatically after 1 minute (Arcade_Host.lua):
Code:
function StartCurrentStage() then
... code
if u32StageID == 8 then
...
--LuaMoviePlay( Arcade, Host, 18 ); -- comment this line to skip the cutscene
end
end
function Stage08()
if (u32AccumulateTime > 60000) then
u32PhaseCheck = 3;
LuaRequestStageClear( Arcade, Host );
PhaseAdd();
end
... rest of code
end