Season 1 (99.60)
How can I make twisting slash skill from level 1?
now its from level 80 and I want the players will be able to use this skill from level 1.
is there dll or someting for gameserver?
Printable View
Season 1 (99.60)
How can I make twisting slash skill from level 1?
now its from level 80 and I want the players will be able to use this skill from level 1.
is there dll or someting for gameserver?
1. Check Config
2. if there is no such thing in config file than
OllyDbg-> Open GameServer in it.
Skill Number in Hex as example 41 (Twisting Slash) = > 29 [Hex Value]
statement should look like this:
cmp [some variable],29
JNE/JNZ Next Skill
blablabla, 50 (80 in hex)
and than u can make a .dll :)
damn..... i hate newbies xD
ok.
1. Yes u can edit gs only using olly "in some cases it's even better and faster than .dll"
2. How can u find "cmp [some variable],29" ? :)
mkay = Search for an all constant "29" or "Normal Value 41"
olly will find many of those
like example
MOV EAX,DWORD PTR DS:[EAX+29]
PUSH 29
cmp dword ptr [ebp+0Ch], 29
etc
but u should only check the adress with "CMP some shit,29"
btw the right one is ->
cmp dword ptr [ebp+0C], 29
jnz "Jumps if no the 41 skill to an Adress With Hex -> 2A / Normal 42"
mov eax, [ebp+0C]
mov ecx, [ebp-4]
mov dword ptr [ecx+eax*4+"Struct Part, Depends on GS"], 050 (50=80)
JMP end
btw "text"=is my comment, cause i don't know what kind of gs u are using, and even variables can be wrong. but whole statement should be similar to what i just wrote. And i'm just giving u a hint, and
if u can't understand even this, than just forget about it :)
Ty its working now!