Little Fighter Empire - Forums
[solved] No Com longer For one id - 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] No Com longer For one id (/showthread.php?tid=5303)



[solved] No Com longer For one id - Surik - 07-26-2010

Hi guys! I'm asking this question here cuz lfe is the place where gods of hex editing are sitting,and I'm not to skilled in this so: how to delete "com" in the id dependent character?


RE: No Com longer Fo one id - Yamato Daiwa - 07-26-2010

use search button


RE: No Com longer Fo one id - Surik - 07-26-2010

in the forum there isn't such a thread


RE: No Com longer For one id - Ragor - 07-27-2010

You search the whole entire forum? There's a 50% chance there would be at least one thread about deleting the A.I.


RE: No Com longer For one id - SirisRhazael - 07-29-2010

You need it for 1.9c or 2.0?

http://lf-empire.de/en/lf2-empire/exe-editing/cfg/57-hide-com-logo-19c


RE: No Com longer For one id - Ramond - 07-29-2010

Reading is FUN-damental, he wants to remove the COM logo for a specific id

(no idea btw, sorry, but continue searching through the hex sections, perhaps manually (check thread titles))


RE: No Com longer For one id - TheNave - 07-29-2010

if I remember correctly, silva added such a feature once to the dll framework but it was never tested nor rly used, thought the code should be somewhere in there, it just has to be activated... when I have time I'll look for it, but dun expect to much, 'cuz I might totally forget it due to my lazieness


RE: No Com longer For one id - Xidd - 08-11-2010

Code:
invoke JmpPatch, 0041A93Eh, addr textzz

Code:
textzz_r    dd 0041A9B7h
textzz_r2    dd 0041A947h


textzz proc
    
    cmp ebp, 0Ah ;check if its a human or not
    MOV DWORD PTR SS:[ESP+10h],edi
    jge hackz
    jmp [textzz_r2]
    
hackz: ;not human
    
    push eax
    mov eax, dword ptr ds:[458B00h+ebp*4+194h]
    mov eax, dword ptr ds:[eax+368h]
    cmp dword ptr ds:[eax+6f4h],10 ;this is the ID you want to hide
    pop eax
    jne wrong_id
    MOV DWORD PTR SS:[ESP+10h],0044644Eh

wrong_id:
    jmp [textzz_r]
    
textzz endp

code was originally used for a different idea - so the implementation is slightly more complicated than it has to be for something as simple as this - but it works :p :p

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


RE: No Com longer For one id - Surik - 08-22-2010

Thank you very much,problem solved!