• 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 General Discussion.

Paxton

Banned User
Joined
Feb 23, 2008
Messages
4,110
Reaction score
48
Location
London, UK
Okey, basically first version came out, this thread should be very helpful for us, and post here your normal ideas of new features you wish to have in AAC.

Also development questions are welcome, for example how to do this or this or where is this.

:w00t:
 
You mean subpage? You can create subpages from admin section, it generates everything for you and u just have to add link in template :)
 
Well, would be nice to change the layout @ admin panel
like selecting it from a list of available templates
in php would be a list of all folders in themes dir to make it work
 
Well, would be nice to change the layout @ admin panel
like selecting it from a list of available templates
in php would be a list of all folders in themes dir to make it work

Alright :) Will be added. IDE Comes already with scanning function :)
 
How can i add 2 citys. So when ppl make characters they can choose what city they want to come to i have got
/*List of cities, declare by using city ID and name eg. 2=>"Eternia City" etc.*/
$config['cities'] = array(1=>'Valhalla');
$config['cities'] = array(2=>'Eternal');
but it still dont work
 
PHP:
$config['cities'] = array( 1 => 'Valhalla', 2 => 'Eternal' );
 
How can i add 2 citys. So when ppl make characters they can choose what city they want to come to i have got but it still dont work

Or you can make

$config['cities'][] = array(1=>'Valhalla');
$config['cities'][] = array(2=>'Eternal');
 
Or you can make

$config['cities'][] = array(1=>'Valhalla');
$config['cities'][] = array(2=>'Eternal');
Ehum..
PHP:
$config['cities'][1] = 'Valhalla';
$config['cities'][2] = 'Eternal';
 
YE ty it worked but when i choose town i go to the spawn place in the config
/*Positions to start when creating character*/
$startPos['x'] = 2000;
$startPos['y'] = 2000;
$startPos['z'] = 7;
I want to make 2,1 for each
Sorry for the noob questions ;P
 
YE i know but when i make a character for like Valhalla town i spawn in Eternal town cos that is the start pos from the config
 
Ye but i dont know how to make 1 for each town.

Basically, u set position of each town in Map editor (Probably Remere) then you just put the ID of that town in config, and you set the startin position, set it to 0, 0, 7 so you will be teleported to your city, atleast you should be.
 
Okey thanks will try that

Edit:
Nope the pos is now 0,0,7
 
Last edited:
Syntax :)

Alert:

You need to be logged in to create guild.
Alert:

You need to be logged in to create or manage a guild.

Q: How can I update through tortoiseSVN? the link does not work
 
Last edited:
Back
Top