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!

Tales Runner server setup

Status
Not open for further replies.
Joined
Sep 27, 2006
Messages
557
Reaction score
88
Stefan if I'm able to fix your .pkg and other issues would you still host a server? I think we can mod these enough to make more good then the other 1,000 server that could be possible.
 
Junior Spellweaver
Joined
Mar 5, 2007
Messages
177
Reaction score
109
Mini guide > intall db

****observation****

not create db name,Tales_DB

create talesrunner db and not Tales_DB

DB name "talesrunner" important to not give error odbc
 

Attachments

You must be registered for see attachments list
Last edited:
Sharing is caring
Developer
Joined
Feb 1, 2007
Messages
2,086
Reaction score
729
Stefan if I'm able to fix your .pkg and other issues would you still host a server? I think we can mod these enough to make more good then the other 1,000 server that could be possible.


Yes of course!

Mini guide > intall db

****observation****

not create db name,Tales_DB

create talesrunner db and not Tales_DB

DB name "talesrunner" important to not give error odbc


Thanks for the contribution but you need to configure the User DSN a certain way for now in order to make the server run correctly.
I will post details regarding this as soon as possible.
 
Junior Spellweaver
Joined
Mar 5, 2007
Messages
177
Reaction score
109
someone already managed to solve error odbc?
 
Junior Spellweaver
Joined
Mar 15, 2009
Messages
151
Reaction score
51
Solved ODBC problems.

DSN: korea
User: sa
Password: talesrunner

Edit: It should be working now:
KillerStefan - Tales Runner server setup - RaGEZONE Forums
 
Last edited:
Initiate Mage
Joined
Mar 1, 2012
Messages
2
Reaction score
0
Here's a nice file host that allows 2GB files to be uploaded for free.
filepost.com

:)
 
Junior Spellweaver
Joined
Mar 5, 2007
Messages
177
Reaction score
109
@manneke Good job! thank you for fix odbc.
 
Newbie Spellweaver
Joined
Mar 3, 2012
Messages
9
Reaction score
1
Association Reputation Check is Failed can someone help me whith this ????? paulboss_252yahoo.com ... or skipe id paulboss_25

paulboss_25@yahoo.com ..... Association Reputation Check is Failed plss need help
 
Junior Spellweaver
Joined
Mar 15, 2009
Messages
151
Reaction score
51
@manneke Good job! thank you for fix odbc.

You're welcome!

If you're interested in how it works: the ODBC connection information is stored in dbsetting.ini, an encrypted file.
When I found the decrypting function in the server executable, I only had to decompile it and make a little app to use it.

I didn't really research how the en-/decryption actually works, but it shouldn't be too hard to figure out when you have the (decompiled) source.

Source code:
License: Do whatever you want with it! (public domain)
One request: if you figure out how en-/decryption works, make it public.

Edit: Updated file location.
 
Last edited:
Junior Spellweaver
Joined
Mar 5, 2007
Messages
177
Reaction score
109
thank you, TRDBSettingsDecryptionTest, error dll msvcp100d.dll?
 
Junior Spellweaver
Joined
Mar 15, 2009
Messages
151
Reaction score
51
thank you, TRDBSettingsDecryptionTest, error dll msvcp100d.dll?

You'll need to download the Visual C++ 2010 redistributable.

Anyway, you can't do much with it. This will be the output if you run it:
Code:
korea
sa
talesrunner
 
Junior Spellweaver
Joined
Mar 5, 2007
Messages
177
Reaction score
109
You'll need to download the Visual C++ 2010 redistributable.

Anyway, you can't do much with it. This will be the output if you run it:
Code:
korea
sa
talesrunner

dont work
 
Experienced Elementalist
Joined
Jun 25, 2006
Messages
204
Reaction score
70
One request: if you figure out how en-/decryption works, make it public.
I don't want to explain how it works but this is some reversal code
Code:
void Encrypt(_BYTE* pData, int dataLen)
{
  int* _unknown = new int(1);

  int v3; // ebp@1
  int v4; // esi@1
  int v5; // edi@2

  v3 = dataLen;
  v4 = *(_DWORD *)_unknown;
  if ( dataLen )
  {
    v5 = (int)pData;
    do
    {
		*(_BYTE *)v5 +=(v4 % 255);
		*(_BYTE *)v5 += 1;
		*(_BYTE *)v5 = ((*(_BYTE *)v5 >> (7 - v4 % 7)) | (unsigned __int8)(*(_BYTE *)v5 << (8- (7 - (unsigned __int8)(v4 % 7)))));
		v4 = (*(_BYTE *)v5 + v4 +1) % 1785;
		++v5;
		--v3;
    }
    while ( v3 );
  }
  return;
}
 
Junior Spellweaver
Joined
Mar 5, 2007
Messages
177
Reaction score
109
I don't want to explain how it works but this is some reversal code
Code:
void Encrypt(_BYTE* pData, int dataLen)
{
  int* _unknown = new int(1);

  int v3; // ebp@1
  int v4; // esi@1
  int v5; // edi@2

  v3 = dataLen;
  v4 = *(_DWORD *)_unknown;
  if ( dataLen )
  {
    v5 = (int)pData;
    do
    {
		*(_BYTE *)v5 +=(v4 % 255);
		*(_BYTE *)v5 += 1;
		*(_BYTE *)v5 = ((*(_BYTE *)v5 >> (7 - v4 % 7)) | (unsigned __int8)(*(_BYTE *)v5 << (8- (7 - (unsigned __int8)(v4 % 7)))));
		v4 = (*(_BYTE *)v5 + v4 +1) % 1785;
		++v5;
		--v3;
    }
    while ( v3 );
  }
  return;
}

post compiled please?
 
Junior Spellweaver
Joined
Dec 21, 2009
Messages
188
Reaction score
40
Does anyone have a up and running TR-PS? I would love to support.
 
Status
Not open for further replies.
Back
Top