-
1 Attachment(s)
Re: Tales Runner server setup
Quote:
Originally Posted by
pushedx
Please keep this in mind (also attached for convenience):
Code:
51DA5E3DE8134E01E95CB183F7822875B0A8AEA6AD7C1440D09916DAB6D6502D3E8764BA9B408A889904E70783FD778EF60B0776F175E96E1A6BBC42C4125A6EA68E0F0E345A110E3E4EDFD6C74D82BF29DDBF8B87734585FDFFDE29B02DE4ADBC99C4272EFF67878F3C77B7BF9984DBAAA27E09BDF964D43ED8C8EA1112260945E8F397D2528BCD3702301D21647A3BCE22A888F6EB7530B870707DC78973FCC5DB0DCD60854E8BA851CE099A8AF6F016DAAA3DBDFEFBA64BF2DAB6F0B5F12C236CFD4C41AC00C360277A6C83C35CFBBDE624C6E76B832BD97AC3CAB2BCDDC2E2F0A37F2FAA2BBCF045CC9AA7AC397EBB57A0539D46864DAB03B146C5C737F892B2663FA013DE45E71BEBF0048F4B26B991520C16E4F11B6577E28279B048BF60E05D2CA34772BBDBDCCCAB99670E222D889B1E36A25B8153DC1F386720BA4C8A70D6BBD28CA8F8D186493CE0404F86915DF4EE6BE21071F7E65837A8F8D6DA84E8E0B7A6A8E77F85143501E5C0158F200A635030CC59D813D4F3E5BA04E0603684D0971C
I'm not working on Tales Runner though, or anything at the moment for that matter since I'm really busy IRL, but it's still nice to see people helping the community. Since my version is based solely upon your posted decryption code, and not the executables (which means that there might be bugs in mine), you can still have the honors of sharing it if you change your mind ;).
Good luck!
I appreciate the sentiment, and I think I will post the code now.
My intended goal was not to keep it all to myself, but to draw out the people that are still working on it and hopefully be able to get help from them.
Looking back at what other people posted 3-4 months ago (such as Halloween's post: http://forum.ragezone.com/f111/tales...ml#post6931032), there isn't any information provided to get to where they were. They aren't sharing anything anymore it seems.
So I can continue walking over where they've been and carving my own path, taking up more of my time, or if they just shared how they got so far, I could be jumpstarted up to that level.
Sigh...
Anyway, here's the source for the encryption:
Code:
private byte[] encoder1(byte[] b)
{
int s = 1;
for (int i = 0; i < b.Length; i++)
{
b[i] = encode(b[i], s);
s = (b[i] + s + 1) % 1785;
}
return b;
}
static byte encode(byte b, int s)
{
b = (byte)(b + (s % 255) + 1);
byte templeftside = (byte)(b >> (7 - (s % 7)));
byte temprightside = (byte)(b << (8 - (7 - (s % 7))));
b = (byte)(templeftside | temprightside);
return b;
}
Here's the project file and binary for a quick GUI I made: talesrunnerdecrypt.zip
Attachment 108853
-
Re: Tales Runner server setup
Yea, that's how most of these projects go. A lot of projects build up momentum, then die out due to inactivity or people moving on to do things privately. The project remains dormant until the next set of devs come and revive it or a new set of files is released for people to work with.
If you enjoy reverse engineering or are interested in it though, nothing you do is ever wasted, even if the end results for the project are never reached. There will always be opportunities for people with RE skills here, so don't feel dissuaded. I've spent 6 years now reverse engineering stuff and it's been a ton of fun and challenges, even though most of the things I've done it for never worked out with the original goal in mind.
Since I used your decoding logic, I approached the problem from a bitwise perspective. E.g., start at the output, look at the binary values going through the entire decoding process, then represent the actions taken, in reverse order. From there, I think I was able to make sense of the algorithm they were using to swap the bits.
Code:
var buffer = Encoding.ASCII.GetBytes("<text here>");
int s = 1;
for (int i = 0; i < buffer.Length; i++)
{
byte b = buffer[i];
buffer[i] += (byte)(s % 255 + 1);
int highShift = (7 - s % 7);
var p1 = (buffer[i] >> highShift) << highShift; // mask off lower bits
var p2 = (((0xFF >> highShift) << highShift) ^ 0xFF) & buffer[i]; // mask off higher bits
byte p = (byte)((p1 >> highShift) | (p2 << (8 - highShift))); // swap bits and merge
buffer[i] = p;
s = (buffer[i] + s + 1) % 1785;
}
p1 builds the high portion value from the high bitmask.
p2 builds the low portion value from the low bitmask.
p is the final value based on the actual bit swapping process.
I think our logic ends up being the same, and I might have redundant logic when it comes to the masking then combining, but it should still provide the same results. I might setup some test vectors later to compare our algos just to make sure though.
-
Re: Tales Runner server setup
So I was able to figure out why my agentserver wasn't working. I had set up my database incorrectly, and I hadn't enable sql connections through the "sa" login.
So now I'm trying to get past gameguard/xtrap on either the korean or usa client. I hear the Gameguard server can be emulated, and I tried emulating it with my apache server, but had no luck.. I can't figure out what should be inside the update.cfg on the server.
Would be great if someone could give some info to how to bypass xtrap or gameguard.
Like always I'll keep trying to figure it out....
-
2 Attachment(s)
Re: Tales Runner server setup
Cool update today.
I managed to get to the login screen on the korean client, but when I try to log in, I get an error and the only option is one button that exits the program. I'm not sure what exactly is going on..
Attachment 109093Attachment 109094
I've also tried running it with microsoft applocale, but it gives me an error every time I try.
After hashing/launching the loadbalanceserver says the client disconnected and the usernum stays at 0.
Code:
_DEBUG @@ updateServerUserNum : ServerNum(19), UserNum(0)
Connect Client : 917504
GET_MINUSERSERVER_REQ : 127.0.0.1:19219(127.0.0.1:9153)
onClosed:index=131086, closeType=2
Client disconnected : 917504
_DEBUG @@ updateServerUserNum : ServerNum(19), UserNum(0)
When I try logging in, the agentserver (which apparently handles logins?) doesn't have any new messages come up. Maybe this has to do with how the korean client stores some of the connection information in the pkg? And so it's just not connecting to my server?
Anyway, I suspect that the USA client will have similar results (with perhaps a more readable error) IF I can get past gameguard... gameguard.des that came with the original client throws up an error, but that's due to me running windows 7 I think. When I tried it with someone elses custom gameguard.des I can see the little update nprotect gameguard window at the top left, but of course it won't update. It would be great if someone could upload a custom gameguard.des or maybe if I had a usa client with an already updated gameguard, I could emulate the gameguard server (as there are a few tutorials for).
Also how do the loginkeys work in the dbo.UserInfoLogin database? Is the account name/password hashed together into a loginkey? Anyone know how this works? I suspect this is similar to how other games do it?
Hope I'm not the only one working on this now lol...
-
Re: Tales Runner server setup
Finally someone who tries to get further instead of relying on others.
When I shared this, I was hoping that some serious dev got started but sadly, this was not the case.
My friend Nayr is no longer working on TR but he managed to get in-game a while ago tho.
Since I'm working with someone else now, we aren't really to happy with spoon feeding the majority of people who come in this thread since we don't even have a server up.
I used to work with pushedx last year but at the time we bumped into the same issues like you do now.
Tales Runner is way more complicated then the other games I've worked on and several people I had high hopes of ran into issues pretty quickly as well so I hope you understand my decision to not share all the progress made by me and someone who wishes to remain anonymous.
-
Re: Tales Runner server setup
Any chance I get in on the info you guys have found? :wink: I already have you on msn KillerStefan.
I actually just realized that debugging information is output to "C:\Users\username\AppData\Roaming\TalesRunner" Hehe.. Embarrassing I didn't realize this earlier :blushing:
When I got login it wasn't actually on the korean client, it's a strange abomination of korean xtrap files and usa client lol... I don't even remember what exactly I changed with it. Here's the output of the dbgtrace.txt
Code:
11:33:15.166 - connectToServerTCP...
error ! 11:33:15.166 - CTRFatalErrorUI: ??? ??? ? ????. - ?? ??? ???? ??? ??? ????? ??? ? ????.
???? ?? ??????.
11:33:15.166 - m_eGuiType : 23
11:33:15.166 - CTRRenderManager::setDisableFrameMove(false)
Looks like it's probably a combination of two clients that's causing me troubles... I haven't been able to launch a korean client, I don't know the "startup info" it expects, and my IP is blocked to their servers, and I don't have an account so I can't even find out myself. Does anyone know if the hong kong client passes the same/similar startup info so I can take a peek at that (like is it launched from a browser?) or more helpfully, would anyone know what exactly the arguments are being passed to the executable? I'd assume some sort of login data? a login key perhaps?
When I passed random data as arguments to the korean client I get a "cannot decode startinfo!" error.
Knowing what the arguments are, I should be able to get to launch the korean client, to what end, I don't know...
Alternatively being able to bypass gameguard for the usa client would be also useful. I played around with this earlier but still no luck.
-
2 Attachment(s)
Re: Tales Runner server setup
Help Required
everything else works except this two
Attachment 109639
Quote:
2012/07/23 12:43:32 - TCP port is not correct!!!!!!
Attachment 109640
Quote:
2012/07/23 13:42:38 - usp_getItemDescNum error : Item cannot be found in the collection corresponding to the requested name or ordinal.
2012/07/23 13:42:41 - usp_coupleGetMapCouplePointInfo error : [Microsoft][SQL Server Native Client 10.0][SQL Server]Could not find stored procedure 'usp_coupleGetMapCouplePointInfo'.
2012/07/23 13:42:41 - usp_getLevelLimitItemInfo error : [Microsoft][SQL Server Native Client 10.0][SQL Server]Could not find stored procedure 'usp_getLevelLimitItemInfo'.
-
Re: Tales Runner server setup
Wich install do we dowloade to see like youve posted aloot and im not into Technology o.o i dont understand alot o.o aloot of people say Thank , Great,Wow man i think what means they tried playing it ?????? :sleep: :D
Btw will mmp annouse it when you have finished every thing ?? and the game is ready to play o.o ?
-
Re: Tales Runner server setup
where is the database???Who can give the link。。。ty
-
Re: Tales Runner server setup
Hello? I'm from South Korea.
Tales Runner Is building a mistake let us know in detail how to replace?
Does the client download a bluff?
Thank you.
Not speak English.
Please understand
-
Re: Tales Runner server setup
All the connection to download, can complete it:流口水:
-
Re: Tales Runner server setup
-
Re: Tales Runner server setup
help me!!
I can't open agentserver but i see in task manager
-
Re: Tales Runner server setup
Korea Test version Server files
DSN name What is it ?
-
Re: Tales Runner server setup
pls can u make the game work faster plssssss.Atomix tales runner is suck.can u plsss work faster i need to play befaure school start
-
Re: Tales Runner server setup
Korea Test Version 2011-12-01 give me pls !!
I can Ingame !!
-
Re: Tales Runner server setup
Someone else is already running a private server of TR with success, just saying that to give hope to the devs trying to get this to work.
-
Re: Tales Runner server setup
Quote:
Originally Posted by
Scratch.
Someone else is already running a private server of TR with success, just saying that to give hope to the devs trying to get this to work.
Me and Goon both have working servers.
-
Re: Tales Runner server setup
@KillerStefan
you know how to login start game or not
-
Re: Tales Runner server setup
My talk is not false..
I do how to game start :P
-
1 Attachment(s)
Re: Tales Runner server setup
-
Re: Tales Runner server setup
i wanna play tales runner...plszzz
-
Re: Tales Runner server setup
I couldn't connect site 'http://dist.rhaon.com' for 5 days...
Is it down?
-
Re: Tales Runner server setup
anyone have server controller ,db and etcs?
i think dist.rhaon.com server is down.
-
Re: Tales Runner server setup
-
Re: Tales Runner server setup
-
Re: Tales Runner server setup
is there a working download for the server files ?oo" download is broken :c
-
Re: Tales Runner server setup
That website has been there for years, I have personally known about that for years. To my knowledge, I only think he has been working on the pkg decompiler and compiler.
-
Re: Tales Runner server setup
-
Re: Tales Runner server setup
I have all the files of dist.rhaon before it down, If TR developing will go on,.. I will upload and Re-Release it...
-
Re: Tales Runner server setup
Quote:
Originally Posted by
Memiko
I have all the files of dist.rhaon before it down, If TR developing will go on,.. I will upload and Re-Release it...
are you dist.rahon.com server all files have ?
oh... Re-release wish !
I have how to mathod game start :D
-
Re: Tales Runner server setup
Quote:
Originally Posted by
Memiko
I have all the files of dist.rhaon before it down, If TR developing will go on,.. I will upload and Re-Release it...
Please, I need this file. I try to take file on that site, but can't inside, site will it down
-
Re: Tales Runner server setup
Thanks for the Sharing , Going to test it ^^
-
Re: Tales Runner server setup
Quote:
Originally Posted by
Memiko
I have all the files of dist.rhaon before it down, If TR developing will go on,.. I will upload and Re-Release it...
What's the latest date as in when did you make that backup?
-
1 Attachment(s)
Re: Tales Runner server setup
-
2 Attachment(s)
Re: Tales Runner server setup
-
Re: Tales Runner server setup
download error... no file :l
-
Re: Tales Runner server setup
-
Re: Tales Runner server setup
-
Re: Tales Runner server setup
I do inGame :D
but, I dont know Loginkey, Cash, Shout, AddFriends...
Help me
-
Re: Tales Runner server setup
oh, the page was blocked.. how can i download the file..? T_T
Can you upload all these files..?
-
Re: Tales Runner server setup
i want program un pkg :sneaky2:
-
Re: Tales Runner server setup
Hello
I'm korean I want Tales Runner all file I couldn't down http://dist.rhaon.com/tr/ this homepage
ck4562@naver.com give me the this e-mail please please please I'want all file please
please I want ㅠ.ㅠ any one give me the Tales Runner all file
-
Re: Tales Runner server setup
Quote:
Originally Posted by
Memiko
October 24, 2011
October 24, 2011 server files needed please
-
Re: Tales Runner server setup
memiko, do you have skype? if so, can you tell me your skype name so i can add you?
can you add j.park49 ?
-
Re: Tales Runner server setup
Quote:
Originally Posted by
Memiko
Hello
I'm korean I want Tales Runner file I can't download a Tales Runner file in http://dist.rhaon.com/tr/
ck4562@naver.com give me Tales Runner file please please please I'want all file please
please I want ㅠ.ㅠ
-
Re: Tales Runner server setup
Hello
I'm korean I want Tales Runner 2012-02-23_koreatest give me the this e-mail : faylanunder@gmail.com
please...T.T TalesRunner 2012-02-23_koreatest Ask please..:rolleyes::rolleyes:
-
Re: Tales Runner server setup
Hai. I need database. Can you pm me the link to it? Thanks :)
-
Re: Tales Runner server setup
2012-02-23_6_koreatest give me T.T
email : faylanunder@gmail.com
please please please ~ !
-
Re: Tales Runner server setup
Someone give me talesrunner data base. Add me on skype lady.gaga_lover or PM me on the offical GTR group website Free forum : Galaxy Tales Runner!
-
Re: Tales Runner server setup
erm. does any1 have 2012-02-02_1_korea client ? i think i can run the server with this client .
-
Re: Tales Runner server setup
Quote:
Originally Posted by
vChibi
erm. does any1 have 2012-02-02_1_korea client ? i think i can run the server with this client .
hello ~ my korean
2012-02-02_1_korea server file give me ..:*:
my email : faylanunder@gmail.com / faylan_under@naver.com please ~!
-
Re: Tales Runner server setup
Quote:
Originally Posted by
LeeYoungJun
do u have 2012-02-02_1 client ?
-
Re: Tales Runner server setup
Quote:
Originally Posted by
vChibi
do u have 2012-02-02_1 client ?
Yes!!
Possession of four 2012-02-02_1 client.
So 2012-02-02 server to get the files.
AskFile server for me please nice
I will send you a client.
My Google email faylanunder@gmail.com
Is Thank you!
-
Re: Tales Runner server setup
Quote:
Originally Posted by
LeeYoungJun
Yes!!
Possession of four 2012-02-02_1 client.
So 2012-02-02 server to get the files.
AskFile server for me please nice
I will send you a client.
My Google email
faylanunder@gmail.com
Is Thank you!
u have msn ? or skype ?
-
Re: Tales Runner server setup
Quote:
Originally Posted by
vChibi
do u have 2012-02-02_1 client ?
my MSN id : faylan_under@live.co.kr
-
Re: Tales Runner server setup
added , accept my request
edit :
answer my messages? LOL
-
Re: Tales Runner server setup
Hi vchibi! can you add me on skype? lady.gaga_lover , me and my staff wants to talk to you.
-
Re: Tales Runner server setup
can any1 help me with this error please ? :x
2012/09/01 14:02:33 - Unknown protocol in CAgentServerManager::dispatchTCPPacket : 15 from -1[]
2012/09/01 14:02:33 - [CAgentServerManager::dispatchTCPPacket]Remain Packet : Num = 15, RemainSize = 24, PacketSize = 27 from -1[]
-
Re: Tales Runner server setup
Hello
I'm korean I want Tales Runner file I can't download a Tales Runner file in http://dist.rhaon.com/tr/
ck4562@naver.com give me Tales Runner file please please please I'want all file please
please I want ㅠ.ㅠ
-
Re: Tales Runner server setup
Hi vChibi
I want 2-23 or 2-24 Pack
Do you have MSN ID?
Please add to friends My ID : ahajs1001@live.co.kr
-
Re: Tales Runner server setup
Hello
I'm korean I want Tales Runner file I can't download a Tales Runner file in http://dist.rhaon.com/tr/
wl6376@naver.com give me Tales Runner file please please please I'want all file please
please I want ㅠ.ㅠ
-
Re: Tales Runner server setup
==================================================================
Hello
I'm korean I want Tales Runner file I can't download a Tales Runner file in http://dist.rhaon.com/tr/
rkdud1810@naver.com give me Tales Runner file please please please I'want all file please
please I want ㅠ.ㅠ
MSN ID = ahajs1001.live.co.kr
Maile ID = rkdud1810
Please 2-23 Pack And 2-24 Pack And 2-25 And 2-27 Please
-
Re: Tales Runner server setup
korea 2-23~27 please
rkdud1810@naver.com
mail
Or MSN ID : ahajs1001@live.co.kr
-
Re: Tales Runner server setup
Tales Runner is a new game localized by gPotato. Its not another MMORPG, It is an MMO Racing game. There aren’t a lot of quality games in this genre and I feel that Tales Runner will do extremely well because of its unique gameplay and features. It is a racing game but it also has many of the elements of an RPG.I need more cheats of this facebook game robot rising online, but I cannot find on Internet. Does anybody else happen to find such cheats or reviews for me?
-
2 Attachment(s)
Re: Tales Runner server setup
Attachment 113273
Attachment 113274
hahaha.. my zeble hello ~
ingame Image
-
Re: Tales Runner server setup
Quote:
Originally Posted by
LeeYoungJun
Wow!!!
you can teach me or not :D
-
Re: Tales Runner server setup
Quote:
Originally Posted by
LeeYoungJun
congrats.....
btw, is there english client/patch for this?
-
Re: Tales Runner server setup
tradin' 2012-02-02_1_korea files for 2012/2/2 client ..
-
Re: Tales Runner server setup
Hello all..
I cant download file in http://dist.rhaon.com/tr/. Please give me other download file or sent to me file.. please.. i want make tales runner private too.. please.. sorry for my bad english..
msn: arif5303@hotmail.com or email link download please.. thanks
-
Re: Tales Runner server setup
Quick update, I haven't been working on TR much lately, but I took a quick look a few days ago and I was able to figure out how the korean client gets login data and such from the browser. This will be useful for launching it...
It passes in these arguments:
Code:
-elevated:t -userid:speedtouch -userpass:123456789 -p:1 -pp:talesrunner/patch/ -ps:127.0.0.1 -zone:127.0.0.1:9500 -zoneID:1 -zoneName:test -- gpotato
So with this method you can setup a shortcut (or write a launcher) to login to your own server. What I currently need to figure out is how to add an account to the database. If anyone has any info feel free to PM me or post a reply.
-
Re: Tales Runner server setup
i in game success :thumbup1: but , i get to my room and click for see item shirt but not see , i see item face instead
i see face , pet , item old ,
-
Re: Tales Runner server setup
how dude ? can you tell us ?
-
Re: Tales Runner server setup
i can't download server Tales Runner :bawling:
-
Re: Tales Runner server setup
Hello all..
I cant download file in http://dist.rhaon.com/tr/. Please give me other download file or sent to me file.. please.. i want make tales runner private too.. please.. sorry for my bad english..
msn: nomjojony@hotmail.com or email link download please.. thanks
-
Re: Tales Runner server setup
Quote:
Originally Posted by
speedtouch
Quick update, I haven't been working on TR much lately, but I took a quick look a few days ago and I was able to figure out how the korean client gets login data and such from the browser. This will be useful for launching it...
It passes in these arguments:
Code:
-elevated:t -userid:speedtouch -userpass:123456789 -p:1 -pp:talesrunner/patch/ -ps:127.0.0.1 -zone:127.0.0.1:9500 -zoneID:1 -zoneName:test -- gpotato
So with this method you can setup a shortcut (or write a launcher) to login to your own server. What I currently need to figure out is how to add an account to the database. If anyone has any info feel free to PM me or post a reply.
I'm gonna create a launcher for KTR! :D
EDIT: But I don't know coding... :c
-
Re: Tales Runner server setup
-
Re: Tales Runner server setup
Hai! I got Data base + Tools. So we can work somthing out. Add me on skype: lady.gaga_lover
-
Re: Tales Runner server setup
-
Re: Tales Runner server setup
how to Open Server in video ?
-
Re: Tales Runner server setup
hello koreans .. i want korea 2_27 pack
con you give me ??
fcvdfgcvdgdg@naver.com
sang-hyen@nate.com
pelase T.T
-
Re: Tales Runner server setup
Can anyone teach me how to setup a private server
Also, I Can't download the server files from rhaon,,,
Can anyone send the server files to me and teach me to setup?
-
Re: Tales Runner server setup
I will help 2 people to make a server. Add me on skype: lady.gaga_lover. And you guys need to have files :3
-
Re: Tales Runner server setup
@xNicky34343
i am thai
Can anyone teach me how to setup a private server
can you help me pls,
sorry i bad english :D
i want to make a server
thanks.
-
Re: Tales Runner server setup
Still no pck extractor? If someone got/share it i will release all server files/tools before dist.rhaon down...
Who got working TR pck extrator pm me.
-
Re: Tales Runner server setup
Quote:
Originally Posted by
Memiko
Still no pck extractor? If someone got/share it i will release all server files/tools before dist.rhaon down...
Who got working TR pck extrator pm me.
Even though you are the only one (possibly) with the files before the site went down, you are slowing down a huge majority of people who need them.
The files themselves are more important then the pck extrator because the extrator is no use without any files.
-
Re: Tales Runner server setup
Can anyone share the server files,,,
:(:
Just upload it to sendspace or other...not that difficult:(:
I need a version that can be setup ...
Just upload a newest version that can be setup a server
-
Re: Tales Runner server setup
-
Re: Tales Runner server setup
I can't download Server Files,Database and Tool pls upload to mediafire or...
-
Re: Tales Runner server setup
I have sent a message to you . Please Check :)
-
Re: Tales Runner server setup
I am not go to http://dist.rhaon.com/ And I can not download it.
Get links to download it.
thankyou
-
Re: Tales Runner server setup
Edited by tool owner permission.
-
Re: Tales Runner server setup
Have any generous people share the files ?
Don't be selfish and don't show off what you've done.
If dist.rhaon.com never open, you guys still don't know how to find the server files!
-
Re: Tales Runner server setup
I would have to open talesrunner your
thankyou
you up Links download I for me.
i am no download file
you up new link press
thankyou
-
2 Attachment(s)
Re: Tales Runner server setup
I have a problem when I try to login...
A msgbox shown when it was hashing
and the LoadBalanceServer said that ivalid hash
Attachment 114696Attachment 114697
-
Re: Tales Runner server setup
-
2 Attachment(s)
Re: Tales Runner server setup
I just want to ask 2 question...
can anyone help me fix this problems?
Attachment 114740Attachment 114741
-
Re: Tales Runner server setup
I am not go to the link download Help !!!!
you the up new link
-
Re: Tales Runner server setup
who can i help me how Open talesrunner server
pm me thanks
sorry i bad english
-
Re: Tales Runner server setup
I can't skip the hashing part...