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!

Fix JOL start lvl to drop

Skilled Illusionist
Joined
May 1, 2006
Messages
381
Reaction score
167
Hi, this is my "fix" to drop jols in atlans, losttower and same low lvl maps..

Server Base: http://forum.ragezone.com/f197/release-06-04-88t-96-repacked-full-server-259809/

Hexadecimal:
Find:
0F BF 82 A0 00 00 00 83 F8 19 7C 1E E8 47 BF 13 00 99 B9 10 27 00 00 F7 F9 3B 15 F4 00 28 0B 7D
09 6A 10 6A 0E
Replace whit:
0F BF 82 A0 00 00 00 83 F8 48 7C 1E E8 47 BF 13 00 99 B9 10 27 00 00 F7 F9 3B 15 F4 00 28 0B 7D
09 6A 10 6A 0E

Or Direct Offset : 0x18E75

19 in hexadecimal = 25
48 in hexadecimal = 72

Default lvl drop is
16 -1 0 1 1 1 0 0 "Jewel of Life" 0 72

Ollydbg

Code:
00418E6C   . 0FBF82 A000000>MOVSX EAX,WORD PTR DS:[EDX+A0]
[B][COLOR="red"]00418E73   . 83F8 19        CMP EAX,19[/COLOR][/B]
00418E76   . 7C 1E          JL SHORT GameServ.00418E96
00418E78   . E8 47BF1300    CALL GameServ.00554DC4
00418E7D   . 99             CDQ
00418E7E   . B9 10270000    MOV ECX,2710
00418E83   . F7F9           IDIV ECX
00418E85   . 3B15 F400280B  CMP EDX,DWORD PTR DS:[B2800F4]
00418E8B   . 7D 09          JGE SHORT GameServ.00418E96
00418E8D   . 6A 10          PUSH 10
00418E8F   . 6A 0E          PUSH 0E

Open Olly
Press CTRL+G
Type 00418E73
Press Space bar and edit
CMP EAX,19
for
CMP EAX,48


Now Jewels of Life start drop in monster lvl 72 and up.. :)
 
Newbie Spellweaver
Joined
Apr 20, 2007
Messages
34
Reaction score
0
Re: [Release] Fix JOL start lvl to drop

Very nice guide, I
 
Experienced Elementalist
Joined
Apr 29, 2007
Messages
260
Reaction score
4
Re: [Release] Fix JOL start lvl to drop

works i tested it good work !!
 
Newbie Spellweaver
Joined
May 12, 2005
Messages
44
Reaction score
0
Re: [Release] Fix JOL start lvl to drop

Good work. Thanks!
 
Newbie Spellweaver
Joined
Apr 14, 2007
Messages
77
Reaction score
0
Re: [Release] Fix JOL start lvl to drop

................................

Ollydbg

Code:
00418E6C   . 0FBF82 A000000>MOVSX EAX,WORD PTR DS:[EDX+A0]
[B][COLOR=red]00418E73   . 83F8 19        CMP EAX,19[/COLOR][/B]
00418E76   . 7C 1E          JL SHORT GameServ.00418E96
00418E78   . E8 47BF1300    CALL GameServ.00554DC4
00418E7D   . 99             CDQ
00418E7E   . B9 10270000    MOV ECX,2710
00418E83   . F7F9           IDIV ECX
00418E85   . 3B15 F400280B  CMP EDX,DWORD PTR DS:[B2800F4]
00418E8B   . 7D 09          JGE SHORT GameServ.00418E96
00418E8D   . 6A 10          PUSH 10
00418E8F   . 6A 0E          PUSH 0E

Open Olly
Press CTRL+G
Type 00418E73
Press Space bar and edit
CMP EAX,19
for
CMP EAX,48


Now Jewels of Life start drop in monster lvl 72 and up.. :)


Where I can find to edit this?
 
Newbie Spellweaver
Joined
Mar 24, 2007
Messages
88
Reaction score
0
Re: [Release] Fix JOL start lvl to drop

in gameserver.exe open with ollydbg
 
Newbie Spellweaver
Joined
Apr 14, 2007
Messages
77
Reaction score
0
Re: [Release] Fix JOL start lvl to drop

@GhostOne

Thank you...
 
Newbie Spellweaver
Joined
Jan 7, 2005
Messages
20
Reaction score
0
Re: [Release] Fix JOL start lvl to drop

i need reupload from Patch .......
 
Back
Top