• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Can someone tell me?

Tofflarn

New Member
Joined
Mar 22, 2008
Messages
360
Reaction score
1
Location
Sweden
I've made some help threads but none seems to help me..

I wonder what xampp version do you use to get TFS alpha 0.3 and geisor acc for Tfs 0.3 to work? Please anwser that question.. And if you got all this fully working, please post your .sql file!
 
help

Originally Posted by virgel
tfs 0.3a3 is using "account --> name" for login into tibia 8.31 client. Ill post you an small fix right now. This fix will just put "account --> id" into the "name" field.

The next code adds the account number to the name field also. This should help everyone who has the same problem like me.

In "pot" folder open "ots_account.php" and find:

Code:
$this->data['id'] = $number;
and behind/under this you may add:

Code:
$this->data['name'] = $name;
in root open "createaccount.php" and find:

Code:
$reg_account->save();
and behind/under this you may add:

Code:
$reg_account->setcustomfield("name", $number);
this should fix the loginproblem with accounts created with acc.maker 0.3.1a for tfs 0.3a3 and tibia 8.31!

Baba
virgel
There you go m8
 
Back
Top