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
lua files, recently dumped.
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):


Since GG is peeking at my **** 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







