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

count number

Kjhgfd

New Member
Joined
Dec 25, 2016
Messages
63
Reaction score
1
im use tfs 0.4
how i can make something like this

sss.png
 
Lua:
function onThink(cid, interval, lastExecution)
local pos ={

{x=1000, y=1000,z=7},
{x=1001,y=1001,z=7},
}

for i=1, #pos do
doSendMagicEffect(pos[i], math.random(15, 18))
doSendAnimatedText(pos[i], "17", COLOR_YELLOW)
end
return true
end
in globalevent ofc

Add more positions, change the range of effects how you want.
 
Back
Top