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

Linux Gesior new second vocation

Vrotz

Member
Joined
Apr 7, 2011
Messages
1,071
Reaction score
7
Location
Brazil
Hi,

I have added a new second promotion on my server. How can I add a new second promotion my website? I really dont know how I do this correctly.

Because to be Elite Knight the player dont need be premium account. To be Supreme Warrior he need be premium account! So when the premium account expire , the second promotion stay "Supreme" on website at the line 'vocation' ... and in-game the player back to Elite Knight. Why on website this doesn't happen?

Something like that?
$vocation_name[0][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight');
$vocation_name[0][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight');
$vocation_name[1][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight');
$vocation_name[1][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight');
$vocation_name[0][2] = array(1 => 'Supreme Wizard', 2 => 'Supreme Curium', 3 => 'Supreme Archer', 4 => 'Supreme Warrior');

I dont know what I need do with numbers [0] [1] [2]..

Any1 can help me with this? Im using Gesior.
Sorry if something arent clear
 
Hi,

I have added a new second promotion on my server. How can I add a new second promotion my website? I really dont know how I do this correctly.

Because to be Elite Knight the player dont need be premium account. To be Supreme Warrior he need be premium account! So when the premium account expire , the second promotion stay "Supreme" on website at the line 'vocation' ... and in-game the player back to Elite Knight. Why on website this doesn't happen?

Something like that?
$vocation_name[0][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight');
$vocation_name[0][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight');
$vocation_name[1][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight');
$vocation_name[1][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight');
$vocation_name[0][2] = array(1 => 'Supreme Wizard', 2 => 'Supreme Curium', 3 => 'Supreme Archer', 4 => 'Supreme Warrior');

I dont know what I need do with numbers [0] [1] [2]..

Any1 can help me with this? Im using Gesior.
Sorry if something arent clear
whats all this for? Just add your new vocation after knight and elite knight

I believe the first [] is for the world, while the second [] is for the promotion? 0 not promoted, 1 promoted

Anyways, just do something like this
$vocation_name[0][0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight', VOCATIONID => 'VOCATIONNAME');
$vocation_name[0][1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight', VOCATIONID => 'VOCATIONNAME');
 
Back
Top