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!

X-play/Xing practice makes perfect

Newbie Spellweaver
Joined
Oct 28, 2009
Messages
39
Reaction score
7
While looking around I was able to find a client download of an old favorite of mine from 2006-2008. A korean racing skating game called X-play( early on referred to xing). Its the chinese client. The game uses gameguard + hacksheild. While snooping around the files I see it uses lua for scripting everything(located in folders/zips). One of the files actually described how to run a dev bin and set it to local hosting lol. But it doesnt seem to work because it mentions something about the function/call/ memory address cant be found in the dll. The client is small around 270 mb.

The client download(mediafire):

The funny dev file that i mentioned:
serverIpAddress = "121.0.95.23100001"
if MsgBox("Do you want to execute in SELFMODE", "select selfmode", true) then
serverIpAddress = "127.0.0.100"
else
if MsgBox("Do you want to connect to IDCSERVER", "select server", true) then
serverIpAddress = "203.245.34.20410000"
end
end
cmdLine = "Client/XPlay.bin "
cmdLine = cmdLine .. GetIpAddress()
cmdLine = cmdLine .. "TESTUSERKEY"
cmdLine = cmdLine .. serverIpAddress
Execute(cmdLine)

And a video if youre wondering what the game is/what it looked like:
 
Back
Top