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

add delay, of 1 second and 5 seconds

is there anyway that i can do without putting the ticks inside the create item function???

so it is something like this


function onSay(cid, words, param, channel) etc ...

addEvent(1000)
createItem(x,x,x)

end

is that right for the "addEvent(1000)"
 
Code:
function makeTeleport(cid, topos)
doTeleportThing(cid,topos)
end

addEvent(makeTeleport, 1000, {cid, topos})
 
Back
Top