• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. vingo

    teleport only usable in temple/dp

    @Ninja
  2. vingo

    teleport only usable in temple/dp

    function onSay(cid, words, param) local player = Player(cid) if getCreatureCondition(cid, CONDITION_INFIGHT) > 0 then doPlayerSendCancel(cid, "You cannot use this while in battle.") else end local town = Town(param) if town == nil then return false end...
  3. vingo

    Disable potions in PZ zones

    I cant use potions anywhere with that i want only in depots cannot use or tempel
  4. vingo

    Disable potions in PZ zones

    Can you add it into my script?
  5. vingo

    TFS 1.0 War scripts lua

    Whenever a player kills another player (optional; wont get reward if killing a character from the same ip) he gains a reward, a crystal coin. 2nd a script that makes people unable to use pots in pz zone
  6. vingo

    Disable potions in PZ zones

    @Ninja @Techrlz
  7. vingo

    Disable potions in PZ zones

    How do i do this ? local ultimateHealthPot = 8473 local greatHealthPot = 7591 local greatManaPot = 7590 local greatSpiritPot = 8472 local strongHealthPot = 7588 local strongManaPot = 7589 local healthPot = 7618 local manaPot = 7620 local smallHealthPot = 8704 local antidotePot = 8474 local...
  8. vingo

    Help with this (almost done)

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  9. vingo

    TFS 1.0 - ProcessnodeMessage

    Im always getting errors with npcs handing out addons. For example Lua Script Error: [Npc interface] data/npc/scripts/Morgan.lua:onCreatureSay data/npc/lib/npcsystem/npchandler.lua:609: table index is nil stack traceback: [C]: in function '__newindex'...
  10. vingo

    Action [TFS 1.0] Rust remover.

    Crashed my server
  11. vingo

    [Game]: Dice // item spammers

    Or just use local item_exceptions = {2152, 2160, 5792, 5793, 5794, 5795, 5796, 5797, 1618, 2589, 2137} function onAddItem(item, tile, pos) if not isInArray(item_exceptions, item.itemid) then doTeleportThing(item.uid, {x = pos.x + 1, y = pos.y, z = pos.z}) end return true end This is mostly...
  12. vingo

    NPCS that gives addons. tfs 1.0

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  13. vingo

    NPCS that gives addons. tfs 1.0

    up
  14. vingo

    NPCS that gives addons. tfs 1.0

    npc takes 100 ape furs and gold but then error in console about npchandler and doesnt give u addon
  15. vingo

    NPCS that gives addons. tfs 1.0

    @Ninja @Techrlz any chance u guys might know anything about this?
  16. vingo

    NPCS that gives addons. tfs 1.0

    First npc that doesn't work local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  17. vingo

    Break 5 jars spawn monster

    thanks alot!
  18. vingo

    Break 5 jars spawn monster

    I go to actions.xml and put this only jars with action id will break? <action actionid="9988" script="horestis.lua"/>
  19. vingo

    Break 5 jars spawn monster

    I am really sorry but most of the times when you explain stuff, I dont understand :/... Like For me this could mean, Put in .lua script itemid lalala OR put in actions.xml action id? i dno.
  20. vingo

    Break 5 jars spawn monster

    maybe instead of position swap to ifuid
Back
Top