Link: http://www.4shared.com/file/40865675...ified=c8f49929
Site: http://freestyle.levelupgames.ph/
password archive: www.gamezard.net
Printable View
Link: http://www.4shared.com/file/40865675...ified=c8f49929
Site: http://freestyle.levelupgames.ph/
password archive: www.gamezard.net
no db =/
Yah no db, maybe analizing the .exe's files is easly to make.
hmm, item files, shops, etc is there, so i think its complete
Yah have much files. is a good game.
Good work on it maybe give a sucess.
Seems to be using mssql,
and no its not complete but i remember this server files being released before
it could be that those did have the db ?
Try looking for stuff like this in hex
SELECT FriendID, Status, SvrNum, Position FROM tblMyFriend WHERE GameID
you see stuff like this meaning you can create a basic table already for the friends stuff
Made the table in mysql since i dont have mssql currently installed.Code:CREATE TABLE `tblMyFriend` (
`GameID` INT NOT NULL ,
`FriendID` INT NOT NULL ,
`Status` VARCHAR( 255 ) NOT NULL ,
`SvrNum` INT NOT NULL ,
`Position` INT NOT NULL ,
INDEX ( `GameID` )
) ENGINE = MYISAM
But you get my point.
But there is also stuff like this
CALL SP_UpdateFriendPos('%s',%d)
meaning you have to make these 2 in the mssql db
and figure out what the 2 values are and what you might need to do with them ;).
easy to find in hex etc,Code:SELECT ProcessID, ServiceID, IP, Port, ChannelType, MaxChannelNum, GameName, UserCount, MaxUserCount , MinLvCondition , MaxLvCondition FROM %s WHERE GameType = %d and ServiceID > 0
SELECT ProcessID, ServiceID, IP, Port, ChannelType, MaxChannelNum, GameName, UserCount, MaxUserCount , MinLvCondition , MaxLvCondition FROM %s WHERE GameType = %d AND ProcessID > %d and ServiceID > 0
SELECT ProcessID, ServiceID, IP, Port, ChannelType, MaxChannelNum, GameName, UserCount, MaxUserCount , MinLvCondition , MaxLvCondition FROM %s WHERE GameType = %d AND ProcessID <= %d and ServiceID > 0
SELECT COUNT(*) FROM %s WHERE GameType = %d AND ServiceID > 0
SELECT COUNT(*) FROM %s WHERE GameType = %d AND ProcessID > %d and ServiceID > 0
SELECT COUNT(*) FROM %s WHERE GameType = %d AND ProcessID <= %d and ServiceID > 0
To bad the pdb files arent included since that most of the time contains enough information to completly restore the db :p.
anyone working here?
omg i love that game hope a tut comes out ;)
After alot of time and work put into this I got it to work, tutorial coming soon. btw it has lots of bugs.
Omfg, i cant normally play this game where i'm at. I'll lend a hand if anyone needs it.
Get this sorted once and for all.
waiting ur guide and i edit first post :)
Believing a guy with 9 posts,
Damn thats something i would never do :p,
More so since he should have rewriten a whole new database to make it work,
And i doubt he just thought sure why not..