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

Gesior Aac Manager problem 0.3.4 (beta4) fixed 5

Ecstacy

Mothafuckaaa
Joined
Dec 26, 2008
Messages
3,836
Reaction score
108
Location
The Netherlands
Hey,

I'm trying to set that when you create a character, you can't choose a vocation, or atleast only rook.
does anyone know how to do this?

Don't say admin panel because I don't have those options in my admin panel :blink:

thanks,
unknown666
 
In your Geisor ACC directory go to the Config folder then to Config.php Scroll down till you find

Code:
$config['site']['newchar_vocations'][0] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample');
$config['site']['newchar_vocations'][1] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample');

And replace it with

Code:
$config['site']['newchar_vocations'][0] = array(0 => 'Rook Sample');
$config['site']['newchar_vocations'][1] = array(0 => 'Rook Sample');
 
Back
Top