• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved 2 Questions about Gesior

rakdos

New Member
Joined
Sep 9, 2010
Messages
17
Reaction score
0
Hi,

Well, first, i need know, where the adress '192.168.0.5' comes, in this link (link is for change password (lost account)):

PHP:
...or open page: http://192.168.0.5/?subtopic=lostaccount&action=checkcode

and second, where i can configure citys, when player create a new character? like temple posx.posy.posz...

i try something here:

PHP:
$config['site']['newchar_towns'][0] = array(1 => 'carlin', 2 => 'yalahar');

But, names dont appear, just renders... like this:

fk4hfa.png
 
this is what i have been using, it will only be thais but still,

PHP:
// CHARACTER config, format: ID_of_vocation => 'Name of Character to copy', load vocation name from $vocation_name[0] (below)
$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');
// sample, if rook only:             $config['site']['newchar_vocations'][0] = array(0 => 'Rook Sample');
$config['site']['newchar_towns'][0] = array(2);
$config['site']['newchar_towns'][5] = array(1,2);
// sample, if all players should spawn in one city (city with ID 5): $config['site']['newchar_towns'] = array(5);
$config['site']['newchar_towns'][0] = array(2);

PHP:
$towns_list[0] = array(2 => 'Thais'); // list of towns, id => 'name', $towns_list[0] - for world id 0
 
this is what i have been using, it will only be thais but still,

PHP:
// CHARACTER config, format: ID_of_vocation => 'Name of Character to copy', load vocation name from $vocation_name[0] (below)
$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');
// sample, if rook only:             $config['site']['newchar_vocations'][0] = array(0 => 'Rook Sample');
$config['site']['newchar_towns'][0] = array(2);
$config['site']['newchar_towns'][5] = array(1,2);
// sample, if all players should spawn in one city (city with ID 5): $config['site']['newchar_towns'] = array(5);
$config['site']['newchar_towns'][0] = array(2);

PHP:
$towns_list[0] = array(2 => 'Thais'); // list of towns, id => 'name', $towns_list[0] - for world id 0

Ok, and after i need open map, with RME, to put name on each city, and ID? right?

-----------------------------

And about first question, anyone knows?

- - - Updated - - -

Bump.
 
What do you mean?

I need found where this adress comes, i already know that call here: '$config['server']['url']'

Print:
2u8iazl.png


But i dont know where this ['server']['url'] get ip adress '192.168.0.5'...

That is cuz i need change this to like that: 192.168.0.4
 
Last edited:
I need found where this adress comes, i already know that call here: '$config['server']['url']'

Print:
2u8iazl.png


But i dont know where this ['server']['url'] get ip adress '192.168.0.5'...

That is cuz i need change this to like that: 192.168.0.4
['server']['url'] it gets from OTS config.lua file

What acc. maker do you use? Gesior 2012 or old?
 
IDK if you know how to check your computer network configuration [maybe that IP is somewhere in it], but acc. maker '2012' generates address that it shows in links. When someone from other IP will visit your site (xx.com) he will see other address in link (xx.com: The Leading Adult shopping/services Site on the Net).

When you got some text on www and got no idea from where it loads it you should use Notepad++, use CTRL+F in it, select to 'search in folder', set file type [filter] '*.*' (it will check all files), main folder of your acc. maker 'C:\xampp\htdocs\' (just an example) and search for 192.168.0.5
 
Ye, found what is wrong, he get other adress cuz i made a mistake..

He get config, from other place.. now alright.

Thanks again Gesior.
 
Back
Top