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

Modern AAC Deleting Character Info

8408323

Hoster
Joined
Mar 6, 2009
Messages
432
Reaction score
26
Hello, I've created a starter area on my server, however I've encountered a problem. I want the character to be level 1 when logging in with vocation = 0 (none). I'm using modern aac.

It didn't seemed as a very difficult problem at the first glance. But, later-on when my friend was trying to create an account, then he couldn't choose vocation "none" and since I had deleted all other voc from config.php you couldn't choose any of the other ones. I've attached a picture underneath.
Modern AAC Char info.jpg
Sry for such a small picture, here's another one:


As you can see, there are no alternative for choosing voc "none" And at least in my modern acc and template I need to fill in the Character Info to be able to create an account. However, If I'd already have one account, but creating a new character on the already existing account, then the you are only able to choose voc "none" and nothing else.

There are two possible solutions to this problem as I can see it,

1. Delete the whole "character info" box, so you doesn't need to fill in all those fields whit information when creating an account.

2.Edit "character info" in any way so you are only able to choose vocation "none"

If you know how to edit any of these things in modern aac I would be glad you use some help.
Either here on the form or you can contact me with PM and you can try to edit it through teamviewer or something like that.

Kind Regards,

8408323 :)
 
Last edited:
Open your /system/application/views/create.php file in the text editor of your choice, find the follow piece of code:
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>
And replace it with:
HTML:
None<input type="hidden" name="vocation" value="0" />
 
Back
Top