[RELEASE] Lua Editor

05/24/2025 01:21 Xxwizart011#76
I need a tutorial on how to inject the dll because I don't understand :(
05/24/2025 01:27 cracksuxer200#77
Quote:
Originally Posted by Xxwizart011 View Post
I need a tutorial on how to inject the dll because I don't understand :(
Ask ChatGPT

Quote:
Originally Posted by Kurayami1123 View Post
atm tryng it with arcade but cant get it to work found some old stuff but that doesnt work aswell.

-------------------------------------------------------------------------------------------------------------------
-- ½ºÅ×ÀÌÁö1ÀÇ ÁøÇà°ú °ü·ÃµÈ ³»¿ëÀÌ ´ã°ÜÀÖ´Â ÇÔ¼ö
-------------------------------------------------------------------------------------------------------------------
function Stage01()

Arcade:Print( string.format( "½ºÅ×ÀÌÁö1 ½ÇÇà" ) );

-- Å×½ºÆ®ÄÚµå
u32TRobotA = HostArg:GetLU32( "TR_A01" );
Arcade:Print( string.format( "·Îº¿A=%d", u32TRobotA ) );


if u32PhaseCheck == 0 then
-- Áß°£°á°ú ¿äû
LuaRequestStageClear( Arcade, Host );
-- ÆäÀÌÁî15µÊ
PhaseAdd();
end

end
Those functions do work, u just need to send LuaRequestStageClear and set u32PhaseCheck
05/24/2025 01:38 Xxwizart011#78
How do I inject the DLL if I don't have the injector?
05/24/2025 02:52 cracksuxer200#79
Quote:
Originally Posted by Xxwizart011 View Post
How do I inject the DLL if I don't have the injector?
Download one

//

Added tuto on how to finish stage 8 in 1 min automatically. The same logic works for the rest.
05/24/2025 04:04 Feuerdrachenzauber#80
Quote:
Originally Posted by cracksuxer200 View Post

Added tuto on how to finish stage 8 in 1 min automatically. The same logic works for the rest.
Thanks
05/24/2025 05:15 Adnan976#81
it crash after inject!:rtfm:
05/24/2025 05:16 Feuerdrachenzauber#82
Quote:
Originally Posted by Adnan976 View Post
it crash after inject!:rtfm:
Try another injector

Edit: this stuck me on the load screen
--LuaMoviePlay( Arcade, Host, 18 ); --
05/24/2025 13:04 Kurayami1123#83

sorry but im a lil bit lost i cant find ur lines

luamovie yes but ther one isnt there. here is 7:

Should i edit it like

same here

u said code... but what is ment with Code?

i tried deleting lines but didnt work. i tried adding enemies didnt work just faster spawns.

spy dagger cannonade was easy but thise one is rip.

or better said spy dagger right click dps ok but aoe range in horizontal isnt big enough

even stage 05...
05/24/2025 13:33 cracksuxer200#84
Quote:
Originally Posted by Feuerdrachenzauber View Post
Try another injector

Edit: this stuck me on the load screen
--LuaMoviePlay( Arcade, Host, 18 ); --
Just wait one minute.

Quote:
Originally Posted by Kurayami1123 View Post
Bro, what
05/24/2025 13:40 Kurayami1123#85
Quote:
Originally Posted by cracksuxer200 View Post
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...]

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
*the second time it should automatically take scripts and replace.txt paths (file should be in ur s4 folder called luaeditor.ini)
when i search for if u32StageID == 8 then
i can find
if u32StageID == 8 then

-- ���ѽð� ����
LuaSetStageInfo( Arcade, Host, 8, 30 );

-- �� �̼� �� ����
LuaChangeMissionID( Arcade, Host, 15 )

-- ��������8 ������ ���� �÷���
LuaMoviePlay( Arcade, Host, 18 );

end
end

is that

--LuaMoviePlay( Arcade, Host, 18 ); -- comment this line to skip the cutscene

can u build stage 1 or 5 or what ever and post it here? im not rly sure how to understand ur " ... " "Code" logic.
05/24/2025 13:52 cracksuxer200#86
Quote:
Originally Posted by Kurayami1123 View Post
when i search for if u32StageID == 8 then
...
Ask ChatGPT or understand it urself, wont take u more than 10 minutes.
05/24/2025 15:42 Kurayami1123#87
Quote:
Originally Posted by cracksuxer200 View Post
Ask ChatGPT or understand it urself, wont take u more than 10 minutes.
i know a guy like you in real life.

he told me that once and i never thought about him again.

but thanks for the help / advice.



sorry but that is all what the fck tool alrdy called out with proper colors and naming... nonsense it doesnt explain anything at all.

I ask you Again What is ... And what is Code.

i look at

but i cannot find it in here...

Arcade_Host.Lua

So... Should i create if by myself?

How...

Wtith what lines? its just start...stop or not? like a fck script
05/24/2025 16:42 cracksuxer200#88
Quote:
Originally Posted by Kurayami1123 View Post
...
I know, this is actually my fault, should have not answered. God, give me some patience.

[Only registered and activated users can see links. Click Here To Register...]
05/24/2025 17:27 Kurayami1123#89
Quote:
Originally Posted by cracksuxer200 View Post
I know, this is actually my fault, should have not answered. God, give me some patience.

[Only registered and activated users can see links. Click Here To Register...]
so if i understood it right the 10000 should be 60000 right? bc 1 min timer


i typed the other dude who talked like you but he knows nothing about programming

Works like a charm.

got something new for you :D


video:

that is somehow what i want to archieve...
05/24/2025 19:26 Feuerdrachenzauber#90
If anyone need(Only for stage 8)