• 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!

Solved Gesior ACC - Just 4 towns ?

OperatorMopa

Member
Joined
Feb 10, 2014
Messages
127
Reaction score
6
If i try to add more then 4 towns into config.php page just stop working, white screen...

I had the same situation with znote acc. Any ideas ?
 
This is how you add new towns:
Code:
$towns_list = array(13 => 'Yalahar', 12 => 'Svargrond', 11 => 'Edron', 10 => 'Darashia', 9 => 'Ankrahmun', 8 => 'Port Hope', 7 => 'Liberty Bay', 5 => 'Abdendriel', 3 => 'Kazordoon', 2 => 'Thais', 1 => 'Venore', 4 => 'Carlin', 31 => 'VIP Town');

You can see what Id's your towns have in map editor if you are unsure.
 
Last edited:
Code:
$towns_list = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin', 5 => 'Ab'Dendriel', 6 => 'Rookgaard', 7 => 'Liberty Bay', 8 => 'Port Hope', 9 => 'Ankrahmun', 10 => 'Darashia', 11 => 'Edron', 12 => 'Svargrond', 13 => 'Yalahar', 14 => 'Farmine',14 => 'Gray Beach', 14 => 'Farmine');



I took id's from map editor . When it's like up it doesn't work, but when i do this :
Code:
$towns_list = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin')
its fine ...
 
Code:
$towns_list = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin', 5 => 'Ab'Dendriel', 6 => 'Rookgaard', 7 => 'Liberty Bay', 8 => 'Port Hope', 9 => 'Ankrahmun', 10 => 'Darashia', 11 => 'Edron', 12 => 'Svargrond', 13 => 'Yalahar', 14 => 'Farmine',14 => 'Gray Beach', 14 => 'Farmine');



I took id's from map editor . When it's like up it doesn't work, but when i do this :
Code:
$towns_list = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin')
its fine ...

Could it be that you made the last Farmine - Gray Beach - and then Farmine again all town ID 14? Try to fix that and see if it works.
 
I also tried with
Code:
$towns_list = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin', 5 => 'Ab'Dendriel')
Still crap ;/
 
$towns_list = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin', 5 => 'Ab\'Dendriel');

Edit: Try again
 
$towns_list = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin', 5 => 'Ab'Dendriel');

Code:
$towns_list = array(1 => 'Venore', 2 => 'Thais', 3 => 'Kazordoon', 4 => 'Carlin', 5 => 'Ab'Dendriel');

Blank page.

Weird is that with ZNOTE ACC i had the same problem. Max 4 towns, then white screen.
 
What Ninja is saying is that you can't put a ' in ab'dendriel without a \ ---> ab\'dendriel

In my list I just put it without the ' -- > abdendriel
 
Back
Top