• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Problems creating new character with another world id than default.

Znote

<?php echo $title; ?>
Staff member
Global Moderator
Premium User
Joined
Feb 14, 2008
Messages
7,037
Solutions
256
Reaction score
2,138
Location
Norway
GitHub
Znote
Tried to run Modern AAC with an otserver that uses world id 5.

Tried to give sample character world id 5, no luck.
Tried to configure this part to world id 5:
PHP:
$config['servers'][5] = array('address'=>'127.0.0.1', 'port'=>7272, 'vapusid'=>'262');
No luck.

Tried to set this to world id 5:
PHP:
$config['worlds'][5] = "Test";

(Result: Can not create character)

I though, hmm maybe because samples don't have world id 5.

I made sure samples had world id 5. No luck.

Then I made the samples in config.php have world id 5:
PHP:
$config['newchar_vocations'][5][0] = "Rook Sample";
$config['newchar_vocations'][5][1] = "Sorcerer Sample";
$config['newchar_vocations'][5][2] = "Druid Sample";
$config['newchar_vocations'][5][3] = "Paladin Sample";
$config['newchar_vocations'][5][4] = "Knight Sample";

Still, no luck. :( (Results: can't create character)

So tell me, how can I solve this?

Using rev 204
 
Last edited:
Don't forget me (a).
 
Could it be because world is using tinyInt(2). <--- meaning 0 and 1.
 
unsigned int 2 = 0-3.

Actually, since you use "5" it's over your rate. This is a TFS issue then.
 
Back
Top