• 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 Myacc wrong items

katumblo

Member
Joined
Oct 20, 2010
Messages
60
Reaction score
7
I'm using the myacc version 0.8.7



If I look for any player in characters.php, the image of the items that appears is this:

1669756249791.png

But it's all wrong, there aren't even these items in the game...

If I go to the vip shop (using a plugin version of @Gesior.pl myaac-gesior-shop-system-v2.3 ([MyAAC][Plugin] Gesior Shop System (https://otland.net/threads/myaac-plugin-gesior-shop-system.251476) /) it pops up these items:

1669756499299.png

Which is also very wrong, because these items don't even exist in the game, the correct thing would be these:

1669756549530.png


Does anyone know where I can start to fix this? Or is it better to just give up myacc and go to another one?
 
I'm using the myacc version 0.8.7
What engine do you use? otservbr?
If it's otservbr, you got to edit link to images server in config.php of acc. maker. Find line:
Code:
'item_images_url' => 'https://item-images.ots.me/1092/', // set to images/items if you host your own items in images folder
and replace with:
Code:
'item_images_url' => 'https://item-images.ots.me/1285_otservbr/', // set to images/items if you host your own items in images folder
 
Do you use otservbr/canary that uses client id instead of server id?

Nops \:

What engine do you use? otservbr?
If it's otservbr, you got to edit link to images server in config.php of acc. maker. Find line:
Code:
'item_images_url' => 'https://item-images.ots.me/1092/', // set to images/items if you host your own items in images folder
and replace with:
Code:
'item_images_url' => 'https://item-images.ots.me/1285_otservbr/', // set to images/items if you host your own items in images folder

Hmmmmmmmm
Actually I use custom items, I would like it to redirect to a folder inside the "images" folder (for example: data/images/all_items_custom) is it possible to do this?
 
Nops \:



Hmmmmmmmm
Actually I use custom items, I would like it to redirect to a folder inside the "images" folder (for example: data/images/all_items_custom) is it possible to do this?
If you host your own images change 'item_images_url' => 'data/images/all_items_custom', // set to images/items if you host your own items in images folder

just put the folder inside your html folder
 
Actually I use custom items, I would like it to redirect to a folder inside the "images" folder (for example: data/images/all_items_custom) is it possible to do this?
You can put there full URL to your OTS site ex.:
Code:
'item_images_url' => 'http://yoursite.com/data/images/all_items_custom/', // set to images/items if you host your own items in images folder
http or https, don't forget to add / at end of URL.
 
Back
Top