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

[Request] GM Shop open/closed

YlarSwe

New Member
Joined
Jan 26, 2009
Messages
11
Reaction score
0
Location
Sweden, Skövde
Hello!

I would like to have a script that shows the GM Shop is open. Have five different queues, so it would be good to see if they are open before you go into.

Open:
There should be some sort of other networks text that says "Open" in green text.

Closed:
There should be some kind of fly here with text that says "Closed" in red instead...

I hope someone comes on what to do. ;)

//Ylarswe
 
Last edited:
Lua:
local effect = {100, 100, 7}, --pos
function onThink(cid, interval, lastExecution)
	return doSendMagicEffect(#effect, CONST_ME_FIRE)
	end
 
Back
Top