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!

EventItemBag Support Over Index 32

Experienced Elementalist
Joined
Nov 15, 2004
Messages
201
Reaction score
7
1] Normal GS

004EC979 |. 8B45 08 mov eax, dword ptr ss:[ebp+8]
004EC97C |. C1E0 05 shl eax, 5

004EC97F |. 0345 0C add eax, dword ptr ss:[ebp+C]

2] Castlesiege GS

00501369 |. 8B45 08 mov eax, dword ptr ss:[ebp+8]
0050136C |. C1E0 05 shl eax, 5

0050136F |. 0345 0C add eax, dword ptr ss:[ebp+C]

3] [Example] Castlesiege GS

00501369 . /E9 6A0C0000 jmp GameServ.00501FD8
0050136E |90 nop

0050136F > |0345 0C add eax, dword ptr ss:[ebp+C]

00501FD8 > \837D 0C 20 cmp dword ptr ss:[ebp+C], 20
00501FDC . 73 0B jnb short GameServ.00501FE9
00501FDE . 8B45 08 mov eax, dword ptr ss:[ebp+8]
00501FE1 . C1E0 05 shl eax, 5
00501FE4 .^ E9 86F3FFFF jmp GameServ.0050136F
00501FE9 > 8B45 0C mov eax, dword ptr ss:[ebp+C]
00501FEC . 83E8 20 sub eax, 20
00501FEF . 8945 0C mov dword ptr ss:[ebp+C], eax
00501FF2 . 8B45 08 mov eax, dword ptr ss:[ebp+8]
00501FF5 . 83C0 10 add eax, 10
00501FF8 . C1E0 05 shl eax, 5
00501FFB .^ E9 6FF3FFFF jmp GameServ.0050136F
 
Newbie Spellweaver
Joined
Feb 26, 2004
Messages
28
Reaction score
0
need to fix this goe.
sunlight and volcano still becomes bronze and dragon upon picking up.
even if you can see that they are sunlight and volcano on the ground.
 
Newbie Spellweaver
Joined
Feb 26, 2004
Messages
28
Reaction score
0
yeah, thats what happen to mine also. what i mean goe is that when you pick that item on the ground, different item is added in your inventory.
 
Experienced Elementalist
Joined
Nov 15, 2004
Messages
201
Reaction score
7
yeah, thats what happen to mine also. what i mean goe is that when you pick that item on the ground, different item is added in your inventory.
umm ... I already tested ... no problem ... but I will check code for you ...
 
Newbie Spellweaver
Joined
Jan 25, 2006
Messages
82
Reaction score
0
goe you job is great, all i can say is thks.
But is possible to release the gs alredy fix's or a guide with the programs and how we do it for guy like me who are learning now how to manege it ??
thka again to sharing with us your knowlege and you server.
 
Newbie Spellweaver
Joined
Aug 2, 2006
Messages
28
Reaction score
0
Next time use search in Google :)
 
Newbie Spellweaver
Joined
Feb 26, 2004
Messages
28
Reaction score
0
I translated goe's guide to make it easier to understand.
The GS and CS-GS i use come from Goe's [10/25] 1.02.11(k) FNRServer release.
just use ultraedit.

main GS

find
000ec979h: 8B 45 08 C1 E0 05
replace
000ec979h: E9 E8 0C 00 00 90

find
000ed666h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
000ed676h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
000ed686h: CC CC CC CC CC CC CC CC
replace
000ed666h: 83 7D 0C 20 73 0B 8B 45 08 C1 E0 05 E9 08 F3 FF
000ed676h: FF 8B 45 0C 83 E8 20 89 45 0C 8B 45 08 83 C0 10
000ed686h: C1 E0 05 E9 F1 F2 FF FF

CS GS

find
00100769h: 8B 45 08 C1 E0 05
replace
00100769h: E9 6A 0C 00 00 90

find
001013d8h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
001013e8h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
001013f8h: CC CC CC CC CC CC CC CC
replace
001013d8h: 83 7D 0C 20 73 0B 8B 45 08 C1 E0 05 E9 86 F3 FF
001013e8h: FF 8B 45 0C 83 E8 20 89 45 0C 8B 45 08 83 C0 10
001013f8h: C1 E0 05 E9 6F F3 FF FF
 
Last edited:
Newbie Spellweaver
Joined
Jan 25, 2006
Messages
82
Reaction score
0
I translated goe's guide to make it easier to understand.
The GS and CS-GS i use come from Goe's [10/25] 1.02.11(k) FNRServer release.
just use ultraedit.

main GS

find
000ec979h: 8B 45 08 C1 E0 05
replace
000ec979h: E9 E8 0C 00 00 90

find
000ed666h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
000ed676h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
000ed686h: CC CC CC CC CC CC CC CC
replace
000ed666h: 83 7D 0C 20 73 0B 8B 45 08 C1 E0 05 E9 08 F3 FF
000ed676h: FF 8B 45 0C 83 E8 20 89 45 0C 8B 45 08 83 C0 10
000ed686h: C1 E0 05 E9 F1 F2 FF FF

CS GS

find
00100769h: 8B 45 08 C1 E0 05
replace
00100769h: E9 6A 0C 00 00 90

find
001013d8h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
001013e8h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
001013f8h: CC CC CC CC CC CC CC CC
replace
001013d8h: 83 7D 0C 20 73 0B 8B 45 08 C1 E0 05 E9 86 F3 FF
001013e8h: FF 8B 45 0C 83 E8 20 89 45 0C 8B 45 08 83 C0 10
001013f8h: C1 E0 05 E9 6F F3 FF FF

Thks for this matrix17, can you tell me what program you use for doing this ?
 
Newbie Spellweaver
Joined
Aug 2, 2006
Messages
28
Reaction score
0
Goe can u make this relese for your [11.16]FNRServer[1.02.11(k)] server files?
I can't find this code in GS :(.
 
Initiate Mage
Joined
Sep 20, 2006
Messages
3
Reaction score
0
I translated goe's guide to make it easier to understand.
The GS and CS-GS i use come from Goe's [10/25] 1.02.11(k) FNRServer release.
just use ultraedit.

main GS

find
000ec979h: 8B 45 08 C1 E0 05
replace
000ec979h: E9 E8 0C 00 00 90

find
000ed666h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
000ed676h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
000ed686h: CC CC CC CC CC CC CC CC
replace
000ed666h: 83 7D 0C 20 73 0B 8B 45 08 C1 E0 05 E9 08 F3 FF
000ed676h: FF 8B 45 0C 83 E8 20 89 45 0C 8B 45 08 83 C0 10
000ed686h: C1 E0 05 E9 F1 F2 FF FF

CS GS

find
00100769h: 8B 45 08 C1 E0 05
replace
00100769h: E9 6A 0C 00 00 90

find
001013d8h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
001013e8h: CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC
001013f8h: CC CC CC CC CC CC CC CC
replace
001013d8h: 83 7D 0C 20 73 0B 8B 45 08 C1 E0 05 E9 86 F3 FF
001013e8h: FF 8B 45 0C 83 E8 20 89 45 0C 8B 45 08 83 C0 10
001013f8h: C1 E0 05 E9 6F F3 FF FF
I couldn't find those addresses, I use unpack Gameserver [11.17] Unpacked GS [11.16 Server].zip.
 
Newbie Spellweaver
Joined
Feb 26, 2004
Messages
28
Reaction score
0
I couldn't find those addresses, I use unpack Gameserver [11.17] Unpacked GS [11.16 Server].zip.

I havent used that GS because of some options still disabled. If so, i think this release is only for the 10.25 server.
 
Last edited:
Back
Top