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

OTClient Instore problem with images. OTx

Dvax

New Member
Joined
Jul 23, 2016
Messages
51
Solutions
1
Reaction score
3
Hello,
I've been trying to fix it for several days.
I search in google and try with :
In-game store images (https://otland.net/threads/in-game-store-images.245420/)
And still have problem.



My Config ( config.lua )

Code:
-- Misc.
allowChangeOutfit = true
freePremium = true
kickIdlePlayerAfterMinutes = 15
idleWarningTime = 10 * 60 * 1000
idleKickTime = 15 * 60 * 1000
maxMessageBuffer = 4
emoteSpells = false
classicEquipmentSlots = false
allowWalkthrough = true
coinImagesURL = "https//mywebsite/images/store/64/"
coinPacketSize = 25
classicAttackSpeed = false

Too try with coinPacketSize = 64

Screen1.png

Please help my fix this problem :(
 
Try changing;

Lua:
coinImagesURL = "https//mywebsite/images/store/64/"
coinPacketSize = 25

To;

Lua:
coinImagesURL = "https//mywebsite/images/store/"
coinPacketSize = 64

And then put the appropriate 64x64 size images inside /images/store/64/

So that the files are accessible by a browser using the url;

http://mywebsite.com/images/store/64/SomeImageFile.png
 
Back
Top