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

(HELP)Problem with temple position

Jpstafe

Well-Known Member
Joined
Aug 8, 2011
Messages
505
Reaction score
67
I have a web with z note .. I want it to start in rookguard..
accounts are created correctly on my website
This is my config.php configuration:


-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
Code:
// Town ids and names: (In RME map editor, open map, click CTRL + T to view towns, their names and their IDs.
    // townID => 'townName' etc: ['3'=>'Thais']
    $config['towns'] = array(
    
        1 => "Ab'Dendriel",
        2 => 'Kazordoon',
        3 => 'Thais',
        4 => 'Venore',
        5 => 'Carlin',
        6 => 'Ankrahmun',
        7 => 'Darashia',
        8 => 'Port Hope',
        9 => 'Edron',
        10 => 'GM Island',
        11 => 'Rookgaard',

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Code:
// ---------------- \\
    // Create Character \\
    // ---------------- \\

    // Max characters on each account:
    $config['max_characters'] = 5;

    // Available character vocation users can create.
    $config['available_vocations'] = array(0);

    // Available towns (specify town ids, etc: (1, 2, 3); to display 3 town options (town id 1, 2 and 3).
    $config['available_towns'] = array(11);


------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Code:
// Leave on black square in map and player should get teleported to their selected town.
    // If chars get buggy set this position to a beginner location to force players there.
    $config['default_pos'] = array(
        'x' => 32097,
        'y' => 32219,
        'z' => 7,

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

any solution?
Post automatically merged:

up+
 
Last edited:
Solution
I have a web with z note .. I want it to start in rookguard..
accounts are created correctly on my website
This is my config.php configuration:


-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
Code:
// Town ids and names: (In RME map editor, open map, click CTRL + T to view towns, their names and their IDs.
    // townID => 'townName' etc: ['3'=>'Thais']
    $config['towns'] = array(
   
        1 => "Ab'Dendriel",
        2 => 'Kazordoon',
        3 => 'Thais',
        4 => 'Venore',
        5 => 'Carlin',
        6 => 'Ankrahmun',
        7 => 'Darashia',
        8 => 'Port Hope',
        9 => 'Edron'...
I have a web with z note .. I want it to start in rookguard..
accounts are created correctly on my website
This is my config.php configuration:


-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
Code:
// Town ids and names: (In RME map editor, open map, click CTRL + T to view towns, their names and their IDs.
    // townID => 'townName' etc: ['3'=>'Thais']
    $config['towns'] = array(
   
        1 => "Ab'Dendriel",
        2 => 'Kazordoon',
        3 => 'Thais',
        4 => 'Venore',
        5 => 'Carlin',
        6 => 'Ankrahmun',
        7 => 'Darashia',
        8 => 'Port Hope',
        9 => 'Edron',
        10 => 'GM Island',
        11 => 'Rookgaard',

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Code:
// ---------------- \\
    // Create Character \\
    // ---------------- \\

    // Max characters on each account:
    $config['max_characters'] = 5;

    // Available character vocation users can create.
    $config['available_vocations'] = array(0);

    // Available towns (specify town ids, etc: (1, 2, 3); to display 3 town options (town id 1, 2 and 3).
    $config['available_towns'] = array(11);


------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Code:
// Leave on black square in map and player should get teleported to their selected town.
    // If chars get buggy set this position to a beginner location to force players there.
    $config['default_pos'] = array(
        'x' => 32097,
        'y' => 32219,
        'z' => 7,

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

any solution?
Post automatically merged:

up+
I'm not sure what you mean when you say "accounts are created correctly on my website"? What is the question then?

If it's just sending you to the wrong temple position, I don't see an issue with the code, your config.php available towns is setup the right way. Are you sure you doubled checked the comparison of the temple positions within RME? Maybe you have the town id's mixed up.
 
Solution
I'm not sure what you mean when you say "accounts are created correctly on my website"? What is the question then?

If it's just sending you to the wrong temple position, I don't see an issue with the code, your config.php available towns is setup the right way. Are you sure you doubled checked the comparison of the temple positions within RME? Maybe you have the town id's mixed up.



cities in the map editor, are ordered correctly as in config.php..From what I understand they are all configured correctly, what is the error?
otlands1.pngotlands2.png
otlands3.png
Post automatically merged:

final.png
 
Back
Top