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

Another PHP editing.

Lucenzo

The Way You Move :)
Joined
Jan 29, 2011
Messages
363
Reaction score
14
Location
UK
Hey guys.


Would it be possible to add city choice while Creating Character?

Like a drop-down menu with list of towns you can slect, for example. Thais, Venore, Carlin and so on...


http://www15.speedy*****malware.localhost/files/26744285/download/char.png

char png


Under male/female choice? x

Not sure if this is accountmanagment.php file or another file that needs to be edited.
50% sure it's the accmana~ file.

accountmanagement php

Thanks in Advance.
 
Thanks for that, but i got done so much work on Gesior Account maker and it's looking so great atm :)
So i think i will stick to it for abit and see how it goes. x

Cheers anyways....

Hope i got the right file uploaded for editing x
 
This feature is already built into that script (altough it's coded in a horrible way).You have to edit your /config/config.php
 
Yep, fill it with town IDs and separate them by commas. You can specify the town names in the $towns_list array.

PHP:
$config['site']['newchar_towns'][0] = array(1,2,3);
PHP:
$towns_list[0] = array(1 => 'Carlin', 2 => 'Thais', 3 => 'Venore');
(this is just an example)
 
Back
Top