• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

GlobalEvent deleted thread

EASY!

only make emote..
and something "create item in this pos" etc..

this is another way XD
 
EASY!

only make emote..
and something "create item in this pos" etc..

this is another way XD

Easy? Did I say that it was difficult? Next moron...

And it does not do "something "create item in this pos" etc..".
 
Lua:
for time = 1, 8 do
    addEvent(showGhost, time * 1000)
end

not better?
 
Nope, I wanted to check if repeat will work in this.

You could also check while!
Lua:
time = 0
while time < 9 then
    addEvent(showGhost, time * 1000)
    time = time + 1
end
 
Back
Top