Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

3rd job problem

Newbie Spellweaver
Joined
Dec 2, 2013
Messages
39
Reaction score
1
deyes1968 - 3rd job problem - RaGEZONE Forums




when i hexed the engine i get this probleme
open hex editor and select engine
search for COMCTL32.dll replace it with cskill.dll [TWO TIMES]
deyes1968 - 3rd job problem - RaGEZONE Forums
 
Experienced Elementalist
Joined
Sep 14, 2013
Messages
202
Reaction score
110
COMCTL32.dll is 12 letters ------- cskill.dll is 10 letters replace it with cskill.dll..
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Mar 12, 2010
Messages
99
Reaction score
15
make sure you nock off the 2x remaining e.g (6C) becomes a (00) for the "LL" letters in "COMCTL32.dll"

Since cskill.dll is 2 letters short.

-W
 
Upvote 0
Modeler / C++ Coder
Developer
Joined
Feb 6, 2008
Messages
561
Reaction score
483
he meant this (hexeditor representation):


OLD! :
43 4F 4D 43 54 4C 33 32 2E 64 6C 6C 00 00 00 00 COMCTL32.dll....

NEW!:
63 73 6B 69 6C 6C 2E 64 6C 6C 00 00 00 00 00 00 cskill.dll......

hope that helps.
 
Upvote 0
Newbie Spellweaver
Joined
Dec 2, 2013
Messages
39
Reaction score
1
afther more then 12hour i tray to slove 3rd job problem with deferents things but noting work


plz can anyone tel ho i fix this



when i do this
COMCTL32.dll
43 4F 4D 43 54 4C 33 32 2E 64 6C 6C

becomes

cskill.dll.. <---notice the last dots?
63 73 6B 69 6C 6C 2E 64 6C 6C 2E 2E

change
63 73 6B 69 6C 6C 2E 64 6C 6C 2E 2E
to
63 73 6B 69 6C 6C 2E 64 6C 6C 2E 00

^
"2E" is a "00", at the end

engine = not for win32 pffff

deyes1968 - 3rd job problem - RaGEZONE Forums
 
Upvote 0
Modeler / C++ Coder
Developer
Joined
Feb 6, 2008
Messages
561
Reaction score
483
when i do this
COMCTL32.dll
43 4F 4D 43 54 4C 33 32 2E 64 6C 6C

becomes

cskill.dll.. <---notice the last dots?
63 73 6B 69 6C 6C 2E 64 6C 6C 2E 2E

change
63 73 6B 69 6C 6C 2E 64 6C 6C 2E 2E
to
63 73 6B 69 6C 6C 2E 64 6C 6C 2E 00

^
"2E" is a "00", at the end

[/IMG]

look at my 2 lines.. when you typ a "." in a hex editor you get 2E as hexdecimal because the character itself is the value 2E in ASCII format.. 00 is displayed as a . aswell :)

you need to change the hexdecimal values not the ascii on the end :) so just overwrite the 2E with 00

change
63 73 6B 69 6C 6C 2E 64 6C 6C 2E 2E
to
63 73 6B 69 6C 6C 2E 64 6C 6C 2E 00

that change is wrong.. change it to

63 73 6B 69 6C 6C 2E 64 6C 6C 00 00

since the last 2 digits in the name are ll aka 6C 6C in hexdecimal you need to null out the rest.
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Dec 2, 2013
Messages
39
Reaction score
1
stil not work pfff loook

deyes1968 - 3rd job problem - RaGEZONE Forums




add me on msn or skype

mario.v@live.be or Mario Verraest pick = black dragon



add me on msn or skype

mario.v@live.be or Mario Verraest pick = black dragon
 
Upvote 0
Modeler / C++ Coder
Developer
Joined
Feb 6, 2008
Messages
561
Reaction score
483
im just looking at your first post actualy.. noticed your using nwk's client? or kallys repack..
if you are.. then forget this threat altogether.. it is NOT possible to use sirix's 3rd job on new engines because all the hooks and modifications are wrong.. the addressing in the newer engines is different.
besides. its rather pointless to add the 3rd job that way anyways into the client because they are already there anyways. just need to code the serverside for them to get them to work :)
 
Upvote 0
Skilled Illusionist
Joined
Feb 1, 2013
Messages
323
Reaction score
52
deyes u aready hexed engine by wrong way try to hex clean engine and u wont get this errors
 
Upvote 0
Experienced Elementalist
Joined
Apr 3, 2004
Messages
240
Reaction score
19
Maybe this is me being weird, but I don't see how putting 'cskill.dll' in the folder would solve the problem of something that's trying to find 'skill.dll'.

you can't open notepad.exe either if you rename it to cnotepad.exe, right?
 
Upvote 0
Newbie Spellweaver
Joined
Dec 2, 2013
Messages
39
Reaction score
1
can someone please upload an engine that works for koemv2 and 3rd job


Therefore I can not fix my problem
 
Upvote 0
Newbie Spellweaver
Joined
Dec 2, 2011
Messages
97
Reaction score
11
skill.dll must be in the Server Files you must too edit the MainSvr.exe right.
 
Upvote 0
Back
Top