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

Recent content by Loiz

  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?

    TFS 0.3.2 im trying to remove the stair and trapdor atribute on items.xml and rewrite its atributes on movements.xml with a script, because i found it conflicts with the items.xml atribute 1659228709 Solved Script to prevent player from using stairs ou trapdoors! First i removed the atributes...
  3. L

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

    if i only put the actionid on a ground tile it works like mine script but if i put it on the stair, it's not working anyway... the player goes to the next floor and give's me the Text message. i will attach a video to see it
  4. 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...
  5. 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...
  6. 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...
  7. L

    Lua Check if player have space on backpack

    hey man, your code to check the BP slots and give an error mensage if the slots are full are awesome, but if i have another bag in some of the slots, it keeps saying that i dont have room on it, can you help me to work on it?
Back
Top