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

Search results

  1. P

    Citizen Door Access

    I didn't tested this script since i have only 1 town on my server but I think it should work. Use for this a gate of expertise so that only 1 person can pass each time. xxxx is the itemid of the gate of expertise. yyyy is the uniqueid of the gate of expertise. z is the town id. function...
  2. P

    Request simplified monster spawn script

    Hakeee it works. Much shorter than my script :) Thanks.
  3. P

    Scripting

    Try this and don't forget to add the unique id to your teleport. function onStepIn(cid, item, fromPos, itemEx, toPos) local tppos = {x=35000, y=35000, z=6} -- Teleport destination if isPlayer(cid) and item.uid == 1002 then doTeleportThing(cid, tppos)...
  4. P

    Request simplified monster spawn script

    @ Hakeee I removed the last " , " in line 10 behind z=13). Now the script gives me an error when stepping on the tile that gives me the message "monster with name '' not found". This error shows up 3 times, so at least he wants to create 3 monsters. When I replace, just to test, line 11...
  5. P

    Request simplified monster spawn script

    Fixed the lua, thanks. I did indeed ment that I wanted to minimize those "repetitions", now each monster and each spawn has its own group of lines. I just tried your script and it spawns only 1 monster at 1 location. This monster and location is always the same until I restart the server, so...
  6. P

    Request simplified monster spawn script

    Hi This script spawns 3 random monsters in 3 different spawn positions when you step on a certain tile with the actionid 43030 The area where those monsters are appearing is from x=306, y=475, z=13 till x=308, y=481, z=13. I made this script the best way i can and it is working but it is very...
  7. P

    What's wrong with this script?

    In line 10 there is standing "Canel" and not "Cancel".
Back
Top