Little Fighter Empire - Forums
[solved] Julian armor for id: 53,54,55 - Printable Version

+- Little Fighter Empire - Forums (https://lf-empire.de/forum)
+-- Forum: Little Fighter 2 Zone (https://lf-empire.de/forum/forumdisplay.php?fid=7)
+--- Forum: [2.0] Exe Editing (https://lf-empire.de/forum/forumdisplay.php?fid=43)
+---- Forum: Solved Problems (https://lf-empire.de/forum/forumdisplay.php?fid=45)
+---- Thread: [solved] Julian armor for id: 53,54,55 (/showthread.php?tid=3084)



[solved] Julian armor for id: 53,54,55 - SirisRhazael - 06-17-2009

Id: 52 (Julian) has got strong armor.Is it possible to do the same for Id: 53,54,55 with HEX editor?


RE: Julian armor for id: 53,54,55 - Boop - 06-17-2009

Yes... It's even quite easy if you have the dll stuff working:

http://lf-empire.de/forum/showthread.php?tid=2265

Then all you have to do is edit armor.inc. And add more ids to the Julian armor thing, e.g:

Armor_Julian proc
CMP ECX,52
je return
cmp ecx,53
je return
cmp ecx,54
je return
cmp ecx,55
je return
jmp dword ptr [Armor_Julian2]
return: jmp dword ptr [Armor_Julian1]

Armor_Julian endp


RE: Julian armor for id: 53,54,55 - TheNave - 06-17-2009

easy thing: download all that dll stuff

at armor.inc you'll see
    ASM-Code:
Armor_Julian proc
		CMP ECX,52 
		je short return
		jmp return2
return: jmp dword ptr [ARMOR_JULIAN1]


just change it to:
    ASM-Code:
Armor_Julian proc
		CMP ECX,52 
		je short return
		CMP ECX,>>>>>XXX<<<<< ; XXX=ID of your char
		je short return
		jmp return2
return: jmp dword ptr [ARMOR_JULIAN1]




EDIT: Damn you, SILVA! ninja'ed


RE: Julian armor for id: 53,54,55 - SirisRhazael - 06-17-2009

If i've changed all that i wanted to,how can I save it as "LF2.exe"?


RE: Julian armor for id: 53,54,55 - Boop - 06-17-2009

Did you bother reading the thread?

After you make the changes, you compile the dll (read the thread). That will make rarara.dll. You then download the exe (there is a link in the thread). That exe loads the dll.

Doing it without the dll is a lot harder and I don't feel like explaining, because you probably won't read it.


RE: Julian armor for id: 53,54,55 - SirisRhazael - 06-18-2009

YES! Now IT WORKS!
(Thanks a lot,Lord Silva and TheNave)