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

Annoying gesior shop delivery item spam on console

Tbol

Well-Known Member
Joined
Apr 7, 2019
Messages
526
Reaction score
54
Hi im getting this annoying item shop spam on my console probably its glitched for some reason
818fdf907925590f1f65e4728584ab16.png


gesior-shop.lua
 
Solution
Remove this line:
Code:
print(message)

Script is executed every 30 seconds, because it checks if there are any new orders made on the website.
local displayExecutionTime = true -- how time script took in console (true/false)
 
doesnt it mean there is a problem with code? Because there is no placed orders in the shop but it still executues it
Slaw post the correct answer

You can remove that print or simply move it inside if(displayExecutionTime) then to make the variable displayExecutionTime to work as intended (true/false)
 
Back
Top