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

Solved Create Account Help !

Felipe Monteiro

Webmaster
Joined
Feb 27, 2009
Messages
460
Reaction score
59
Location
Brasil
Hello guys, look me here again.. lol

Well, I'd like a createaccount no choice of vocation, going straight to rook, like in rl.

I hope someone can help..
Thanx anyway !
 
You may configure character Rook Sample and this on config.php

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

to

Code:
$config['site']['newchar_vocations'][0] = array(1 => 'Rook Sample');
 
I think what Loney was saying was to

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

With this
PHP:
$config['site']['newchar_vocations'][0] = array(1 => 'Rook Sample');
 
If you are using Modern AAC you need to modify the views for createaccount.php

/system/application/views/create.php
edit line 93 - 98:
HTML:
<select name="vocation" class="keyboardInput" id="vocation">
	<option value="1">Sorcerer</option>
	<option value="2">Druid</option>
	<option value="3">Paladin</option>
	<option value="4">Knight</option>
</select>

Change it to:
HTML:
<select name="vocation" class="keyboardInput" id="vocation">
	<option value="0">No vocation</option>
</select>

Btw I recommend you to start with Znote AAC. You will get guaranteed support by me. :)
 
Back
Top