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

Create Monter (simple script)

Yol

yes
Joined
Aug 13, 2009
Messages
97
Reaction score
0
Hello.
I need script...Use switch-create monster (morgaroth) time beetween use switch=3 minutes.
And green text "You must wait 3 minutes"
 
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
if getGlobalStorageValue(7878) == -1 then
doCreateMonster("Morgaroth", getPlayerLookPos(cid))
setGlobalStorageValue(7878, 1)
addEvent(setGlobalStorageValue, 60000 * 3, 7878, -1)
else
doPlayerSendCancel(cid, "You must wait 3 minutes")
end
return true
end
 
Back
Top