• 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. L

    Lua How to check if the object is Blockpath?

    I need a script to check if the object on the down floor is blockpath, if it has blockpatch status the action of teleport the object i put on the trapdor is canceled.
  2. L

    Lua How can i make a stoptile to prevent player to go up stairs?

    How can i make a script to prevent player to get up on stairs? i made this script but the player is not going down function onStepIn(cid, item, pos) local pos = getCreaturePosition(cid) local newpos = pos local direction = getPlayerLookDir(cid) if getPlayerGUID(cid) >= 1 then if...
  3. L

    TFS 0.X Bug on Talkaction do tutorial command

    On talkaction.xml <talkaction words="!tutorial" event="script" value="Tutorial/Tutorial.lua"/> On tutorial.lua i get function onSay(cid, words, param) local tutorialid = tonumber(param) doSendTutorial(cid, tutorialid) return false end and When i type !tutorial "2 i get this...
  4. L

    TFS 0.X Check Backpack slots and player capacity (Already have working script)

    I have this working action script, when i click the corpse on the ground it gives me an obsidian lance, and starts a quest on it. function onUse(cid) local queststatus = getPlayerStorageValue(cid,50125) if queststatus == -1 then local bp = getPlayerSlotItem(cid...
Back
Top