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

Solved

What do you mean?

a spawn item ect.

LUA:
function onUse(cid, item, frompos, item2, topos)
if isCreature(cid) == 1 then
doSpawnCreature(cid, Demon, 1000, 1000, 7)
doSendMagicEffect(cid, 1000, 1000, 7, CONST_ME_POFF)
return doRemoveItem(item.uid,1)
end

try that
 
how add in my raid?

PHP:
<raid>
<announce delay="1000" type="event" message="The hell have returned to protect the center of Goldenhall." />

  <!--Area Spawns-->
  <areaspawn delay="1000" fromx="91" fromy="720" fromz="7" tox="242" toy="823" toz="7">
    <monster name="Undead Jester" amount="100" />
  </areaspawn>

</raid>
 
Back
Top