function onUse(cid, item)
custo = 1000000 -- quanto vai custar para usar
level = 100 -- level minimo
name = "dragon" -- nome da raid
posmonster = {x=79, y=335, z=7} -- onde o monstro vai aparecer
switchUniqueID = 1912 -- uid da alavanca
if getPlayerLevel(cid) >= level and getPlayerMoney(cid) >= custo and item.uid == switchUniqueID then
doPlayerRemoveMoney(cid, custo)
doExecuteRaid(name)
doSendMagicEffect(getThingPos(cid), 12)
doPlayerSendTextMessage(cid, 22, "Raid Started")
else
doPlayerSendCancel(cid, "voce nao tem level necessario para ativar essa task, ou seu dinheiro nao e suficiente !")
doSendMagicEffect(getThingPos(cid), 2)
end
end