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

Category icon problem

zapo

Member
Joined
Nov 10, 2020
Messages
129
Solutions
3
Reaction score
11
Hi,

Most icons load in addition to categories and for example blessings.

Anything i write in coinImagesURL it doesn't change anything.

for example:

icons = { "XP_Boost.png" },
name = "Wand of everblazing",

does not take the"XP_Boost.png" icon, it automatically finds by name "Wand of everblazing" and set correct icon
 

Attachments

  • Adnotacja 2021-02-24 225310.png
    Adnotacja 2021-02-24 225310.png
    317.1 KB · Views: 56 · VirusTotal
Solution
You need to download the store images here:


Then you place them in htdocs/images. (or where you are hosting your website)

In config.lua change :
Lua:
coinImagesURL = "http://127.0.0.1/images/store/"

to:

Code:
coinImagesURL = "http://YOURIPADDRESSHERE/images/store/"
You need to download the store images here:


Then you place them in htdocs/images. (or where you are hosting your website)

In config.lua change :
Lua:
coinImagesURL = "http://127.0.0.1/images/store/"

to:

Code:
coinImagesURL = "http://YOURIPADDRESSHERE/images/store/"
 
Solution
with me i put my ip and download the images , but my server its with UBUNTU, im using Myacc and before dont have the images/store... i need create the Store dir and after i give the access 755 its correctly?


1621729109406.png
 
Back
Top