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!

Running List of Sources S2-S3

Newbie Spellweaver
Joined
Sep 16, 2007
Messages
24
Reaction score
0
Hi, I had some free time to gather up some sources for Season 3, tho most wont compile right unless you have VC++6.0, which I dont so I couldnt make some of the stuff, and theres no point in making a dll, if it aint complete.

Contains:
S3 wing Mix
S3 Quest
Add Command
New Item Hooking Procedure (ASM)
1.00.16 Offsets, and variables from 2 diff gameservers, CHS + VTM)
and a simple readme explaining the S3 Wing Mix

Credits for Gathering and some of Wing Mix goes to Me aka NoobCode
Credits for the rest of the surces go to respectable owners, to long to list :p
 

Attachments

You must be registered for see attachments list
Legendary Battlemage
Loyal Member
Joined
Nov 3, 2006
Messages
648
Reaction score
2
Re: [Release]Running List of Sources S2-S3

Good job man !
 
Newbie Spellweaver
Joined
Jul 2, 2006
Messages
43
Reaction score
0
Re: [Release]Running List of Sources S2-S3

101\100 very nice!
 
Newbie Spellweaver
Joined
Jul 5, 2006
Messages
5
Reaction score
0
Re: [Release]Running List of Sources S2-S3

Hi, As I put these fixes in muserver of luciano aibar?
 
Newbie Spellweaver
Joined
Mar 31, 2007
Messages
16
Reaction score
0
Re: [Release]Running List of Sources S2-S3

Very Good ;) 10/10
But Wrong Function offset for My GS (CzF 1.00.16 MultiProt).
In CzF 1.00.16 offsets are:

gObjDel DD 004036ACH
LogAddC DD 0632E810h
gObjAddMonster DD 00404426h
gObjSetMonster DD 00405993h
gObjIsConnected DD 00403512h
ServerMsgStringSend DD 00405D8Fh

GSMoneySend 00403FCBh
 
Last edited:
Newbie Spellweaver
Joined
Oct 16, 2007
Messages
10
Reaction score
0
Re: [Release]Running List of Sources S2-S3

good stuff
downloaded
went over it
saw 1 interesting thing

the roosterupdates.txt talks about some updates for luci's files. where can i find this release? or the topic with this release?
cause that txt only describes the addons themselves. no download links etc
 
Newbie Spellweaver
Joined
Sep 25, 2006
Messages
54
Reaction score
0
Re: [Release]Running List of Sources S2-S3

Wow... Nice. THX MAN!
 
Newbie Spellweaver
Joined
Jul 5, 2006
Messages
5
Reaction score
0
Re: [Release]Running List of Sources S2-S3

Please help! How do I install this update? What do I have to do?

Please !
 

A.5

Newbie Spellweaver
Joined
Sep 30, 2007
Messages
45
Reaction score
0
Re: [Release]Running List of Sources S2-S3

Wanna now too where get Roosterman Recode :p
 
Experienced Elementalist
Joined
Oct 1, 2006
Messages
287
Reaction score
0
Re: [Release]Running List of Sources S2-S3

some guide ? because i`m not a coder :(
 
Junior Spellweaver
Joined
Aug 5, 2007
Messages
103
Reaction score
7
Re: [Release]Running List of Sources S2-S3

Nice Thanks!
 
Newbie Spellweaver
Joined
Nov 2, 2007
Messages
66
Reaction score
3
Re: [Release]Running List of Sources S2-S3

ill help you with vc 6.0 if some1 helps me with php...
 
Experienced Elementalist
Joined
Jun 14, 2006
Messages
223
Reaction score
0
Re: [Release]Running List of Sources S2-S3

can i use here OllyDBG ?
 
Newbie Spellweaver
Joined
Oct 22, 2005
Messages
64
Reaction score
0
Re: [Release]Running List of Sources S2-S3

How i know what is the offset of my dll?? Answer me pls
 
Newbie Spellweaver
Joined
Sep 16, 2007
Messages
24
Reaction score
0
Re: [Release]Running List of Sources S2-S3

Useful tools to find gameserver.exe offsets, IDA Pro, and to hook dll you must use ollydbg, the one with shadow olly inside. Find offsets first with IDA, then use fenix hooking guide to hook dll. This is very simple release, next release includes a tutorial on how to get offsets from GameServer.exe using IDA Pro and how to locate offsets, KNOW THE NAME OF WHAT YOU WANT TO SEARCH FOR, and how to call offsets for new events and such. I'll try to make a guide in the next 3 days and link it here, answering some basic questions, but you must take into account I can only code in masm 32, i dunno much about VC++.
 
Newbie Spellweaver
Joined
Mar 31, 2007
Messages
16
Reaction score
0
Re: [Release]Running List of Sources S2-S3

Offset of dll? For what?
You must use LoadLibraryA for load Dll and get offsets of exported procedures by GetProcAdress.
 
Newbie Spellweaver
Joined
Sep 16, 2007
Messages
24
Reaction score
0
Re: [Release]Running List of Sources S2-S3

Not for dll, for gameserver.exe offsets. you misunderstand my response. when i was mentioning hook i forgot to metion it was for gameserver.exe offsets, you cant randomly call offsets from .dll and expect them to work, you must find and then define offsets. I listed 1 Way to find GS offsets, many ppl can do it faster to find. Fell free to add to my release if you want, more information is easier for non coders to read.

Note: Dll offsets are different, you declare your own offsets.

Link to making a dll in VC++, learning from it atm.
 
Newbie Spellweaver
Joined
Oct 22, 2005
Messages
64
Reaction score
0
Re: [Release]Running List of Sources S2-S3

1. write in hex dump name of dll like (addmap.dll)
push <offset of name of dlll>
call LoadLibraryA
2. write in hex dump NameTerrain
push <offset of name of NameTerrain>
push eax
Call GetProcAddress
Call Eax
enjoy

what is that?
 
Newbie Spellweaver
Joined
Mar 31, 2007
Messages
16
Reaction score
0
Re: [Release]Running List of Sources S2-S3

Dev-Star He speak not about hooking i think and my post for him ;)
G4L3ON this is offset of your dll Name That You Create.
For Example:


PUSH 005CC00Fh
CALL LoadLibraryA
...
005CC00F . 61 6E 31 32 33>ASCII "an12345.dll",0
 
Back
Top