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

AAC Gesior

Lbtg

Intermediate OT User
Joined
Nov 22, 2008
Messages
2,297
Reaction score
127
Hello, i trying to make load items and outfits pictures from my own server, but failing to do it

I have all required files, i think its something with this:


Lua:
$config['site']['outfit_images_url'] = 'http://IP/AWAKEN_REAL/images/outfits_anim/outfit.php';
$config['site']['item_images_url'] = 'http://IP/AWAKEN_REAL/images/items/';
$config['site']['item_images_extension'] = '.gif';
$config['site']['flag_images_url'] = 'https://flag-images.ots.me/';
$config['site']['flag_images_extension'] = '.png';
 
Remove http://ip/awaken_real
PHP:
$config['site']['outfit_images_url'] = '/images/outfits_anim/outfit.php';
$config['site']['item_images_url'] = '/images/items/';
$config['site']['item_images_extension'] = '.gif';
$config['site']['flag_images_url'] = 'https://flag-images.ots.me/';
$config['site']['flag_images_extension'] = '.png';

Doesnt work this way aswell
 
Back
Top