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

Bug with vocations.. help please? :D

JoSePh15_

Well-Known Member
Joined
Jan 28, 2010
Messages
1,766
Reaction score
59
i added that
PHP:
/*List of vocation that exists on server*/
$config['server_vocations'] = array(0=>"None", 1=>"Sorcerer", 2=>"Druid", 3=>"Paladin", 4=>"Knight", 5=>"Master Sorcerer", 6=>"Elder Druid", 7=>"Royal Paladin", 8=>"Elite Knight", 9=>"Epic Master Sorcerer", 10=>"Epic Elder Druid", 11=>"Epic Royal Paladin", 12=>"Epic Elite Knight");
New vocations but still it gives elite knight for example and it is epic elite knight.. im using v1.0..
Thanks i rep++
 
$config['server_vocations'][WORLD_ID] (replace world_id with the actual world id).
 
PHP:
/*List of vocation that exists on server*/
$config['server_vocations']['0'] = array(0=>"None", 1=>"Sorcerer", 2=>"Druid", 3=>"Paladin", 4=>"Knight", 5=>"Master Sorcerer", 6=>"Elder Druid", 7=>"Royal Paladin", 8=>"Elite Knight", 9=>"Epic Master Sorcerer", 10=>"Epic Elder Druid", 11=>"Epic Royal Paladin", 12=>"Epic Elite Knight");
Still not working :/
 
I found a similar (older version?) of config.php

trunk.r204\system\application\controllers\ config.php


Why is it there? Maybe check it out.
 
Back
Top