• 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. Sir Islam

    Removing Every addon from every player

    rest storage
  2. Sir Islam

    Lua Help amulet lua dont working so fine

    from config.lua change to 0 monsterLootMessage = 3 to monsterLootMessage = 0
  3. Sir Islam

    Solved Quest Log

    this for tfs 1.2 <?xml version="1.0" encoding="UTF-8"?> <quests> <quest name="Example Quest I" startstorageid="1001" startstoragevalue="1"> <mission name="Example Mission 1" storageid="1001" startvalue="1" endvalue="3"> <missionstate id="1" description="Example...
  4. Sir Islam

    Solved Quest Log

    give player storage 30031,1 he will get the quest name Example Quest I then for missions give player storage 1001,1 player will done first mission then give player storage 1001,2 player will done Second mission <?xml version="1.0" encoding="UTF-8"?> <quests> <quest name="Example Quest I"...
  5. Sir Islam

    TalkAction /Namelock tfs 1.x

    chnage db.asyncQuery db.query to db:query
  6. Sir Islam

    Destroy.lua

    function onUse(player, item, fromPosition, target, toPosition, isHotkey) return destroyItem(player, target, toPosition) end
  7. Sir Islam

    Solved skull gain by attacking certain monster

    <event type="combat" name="demon" event="script" value="demon.lua" /> function onCombat(cid, target) if isPlayer(cid) and isMonster(target) then if getCreatureName(target) == "demon" then doCreatureSetSkullType(target,3) end end return true end registerCreatureEvent(cid, "demon")
  8. Sir Islam

    TalkAction /Namelock tfs 1.x

    Thanks a lot bro you are welcome
  9. Sir Islam

    TalkAction /Namelock tfs 1.x

    update : add unlock :)
  10. Sir Islam

    TFS 1.1

    player:addManaSpent(amount) http://pastebin.com/nws8xHmK
  11. Sir Islam

    Solved BUG in item

    function onUse(cid, item, fromPosition, item2, toPosition) local myball = getPlayerSlotItem(cid, 8) local boost = getItemAttribute(myball.uid, "boost") or 0 local boosts = 10 if getPlayerSlotItem(cid, 8).uid > 0 then if boost == 70 then doPlayerSendCancel(cid, "Seu...
  12. Sir Islam

    NPC looking directions..

    have fun https://otland.net/threads/npc-looking-directions-tfs-1-x.235189/
  13. Sir Islam

    GlobalEvent NPC looking directions TFS 1.x

    have fun :) globalevents.xml <globalevent name="npc positioning" type="startup" script="npcpositioning.lua"/> npcpositioning.lua local npcPositions = { { position={x = 2005, y = 1999, z = 6}, direction=WEST }, { position={x = 1994, y = 1993, z = 6}, direction=SOUTH }, {...
  14. Sir Islam

    Lua TFS 1.1

    local pos = {x=1000, y=1000, z=7} Position(pos):sendMagicEffect(13) local pos = Position(1000, 1000, 7) pos:sendMagicEffect(13)
  15. Sir Islam

    TalkAction /Namelock tfs 1.x

    db.query("INSERT INTO `player_namelocks`(`player_id`, `reason`, `namelocked_at`, `namelocked_by`) VALUES (".. PlayerGUID.."," .. db.escapeString(reason) .. ","..timeNow.."," .. player:getGuid() .. ")")
  16. Sir Islam

    TalkAction [TFS 1.1] - !aol or !bless

    local cfg = { exhausted = 10, -- Time you are exhausted. storage = 78945 -- Storage used for "exhaust." } local price =20000 function onSay(player, words, param) if (player:getStorageValue(cfg.storage) > os.time())then player:sendCancelMessage("You must wait another " ...
  17. Sir Islam

    Solved BUG in item

    function onUse(cid, item, fromPosition, item2, toPosition) local myball = getPlayerSlotItem(cid, 8) local boost = getItemAttribute(getPlayerSlotItem(cid, 8).uid, "boost") or 0 local boosts = 10 if boost == 70 then doPlayerSendCancel(cid, "Seu pokemon está no lvl...
  18. Sir Islam

    Solved BUG in item

    function onUse(cid, item, fromPosition, item2, toPosition) local myball = getPlayerSlotItem(cid, 8) local boost = getItemAttribute(getPlayerSlotItem(cid, 8).uid, "boost") or 0 local boosts = 10 if boost == 70 then doPlayerSendCancel(cid, "Seu pokemon está no lvl...
  19. Sir Islam

    TalkAction [TFS 1.1] - !aol or !bless

    script wont work :D edit this
  20. Sir Islam

    Lua How i set pk player

    its work why ? coz i test it u forget to do this in login registerCreatureEvent(cid, "PkOnCastle")
Back
Top