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

    Lua NPC - TRADING AFTER QUEST

    local shopModule = ShopModule:new() npcHandler:addModule(shopModule) if(getPlayerStorageValue(cid, 10102) == -1) then shopModule:addBuyableItem({'spear'}, 2389, 8, 1, 'spear') elseif(getPlayerStorageValue(cid, 10102) == 1) then shopModule:addBuyableItem({'royal spear'}, 7378, 25, 1, 'royal...
  2. D

    Lua Citizen addon NPC ;-/

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} local shortsword = 2406 -- TUTAJ WPISZ ID SHORT SWORDA local book1 = 1955 -- TUTAJ WPISZ ID KSIĄŻKI1 local book2 = 12497 -- TUTAJ WPISZ ID...
  3. D

    Lua Problem with my mission NPC.

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

    TFS 1.0 - Using potions on players and not working antidote potion

    Hey everyone, I alerdy use this new potions.lua updated by mark but there is still not work using potions on players and antidote potion dont work (still posioned)
  5. D

    TFS 1.0 - Pvp for no vocation?

    Hey, how to turn on pvp for no vocation and set it from level 20?
  6. D

    Quest log

    Why this not work, storage work! I cant get again the same reward...
  7. D

    DEBUG when use item ID: 13800 , 13799

    20:13 You see an item of type 13800 (Vol:8). ItemID: [13800]. Position: [X: 32115] [Y: 32119] [Z: 8]. 20:13 You see an item of type 13799 (Vol:8). ItemID: [13799]. Position: [X: 32113] [Y: 32121] [Z: 8]. When I USE it I get debug :-/ I was try to add it to items.xml when i did that there is...
  8. D

    NPC dont buy items.

    <?xml version="1.0" encoding="UTF-8"?> <npc name="Willie" script="default.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100"/> <look type="153" head="58" body="63" legs="58" feet="115" addons="1"/> <parameters> <parameter key="module_shop" value="1"/> <parameter...
  9. D

    Solved Doublet quest

    local config = { storage = 5100 } function onUse(cid, item, fromPosition, itemEx, toPosition) if(getPlayerStorageValue(cid, config.storage) < 1) then doPlayerAddItem(cid, 2485, 1) doPlayerSendTextMessage(cid,25,"You have found a doublet.") setPlayerStorageValue(cid, 5100, 1) else...
  10. D

    Solved NPC not answer - keywords (.xml)

    SOLVED
  11. D

    Linux Gesior Acc maker - problem with directory

    Hello, I'm tired about set Please write you TFS directory below. Like: C:\Documents and Settings\Gesior\Desktop\TFS 0.2.9\ I was try: \home\forgottenserver <- not work /home/forgottenserver <- not work root\home\forgottenserver <- not work /home/forgottenserver/ .etc What I have to write? I...
  12. D

    TFS 1.0 Problem!

    Why on my Debian its not work? When i run it on windows is work perfectly, I use the same data files... :-/
  13. D

    Lua Quest - from tree or floor (TFS 1.0)

    Hello, How to make a quest reward from tree or floor? ANy idea? (TFS 1.0)
  14. D

    Compiling TFS 1.0

    Hello, any one have compiled TFS 1.0 for Debian 6.0 x32bit? :P I'm tried of trying compling it :-/
  15. D

    Solved Brigde - Lever

    I see the message: 21:03 You added a brigde. and click again: 21:03 You removed a brigde. But my brigde not added ;'(
  16. D

    Lever - Stone remover

    function onUse(cid, item, fromPosition, itemEx, toPosition) local pos = {X=32145, Y=32101, Z=11} -- The Pos [EDIT HERE][Example: X=1000, Y=1000, Z=7] local stone = 1304-- ID of the stone [DO NOT EDIT] local stoneFromPos = getThingfromPos(pos) -- It get item uid if item.itemid == 1945 then...
  17. D

    Solved Lever

    function onUse(cid, item, fromPosition, itemEx, toPosition) local pos = {X=32145, Y=32101, Z=11} -- The Pos [EDIT HERE][Example: X=1000, Y=1000, Z=7] local stone = 1304-- ID of the stone [DO NOT EDIT] local stoneFromPos = getThingfromPos(pos) -- It get item uid if item.itemid == 1945 then...
  18. D

    Compiling Debian 6.0

    cmake .. What's the problems? I try to compiling TFS 1.0, Anyone solve?
  19. D

    Lua Closed doors - TFS 1.0

    Hello, any one have lua scripts for closed door? and lever whos will replace 3 title to another? :D
  20. D

    Scripter NPC & QUEST FOR 10.10

    Hello, I'm looking for someone who will made for me all npc, quest and everythink what is in real rook 10.10 :) (I've got map rl rook 10.10 - downloaded from otland :P) Please PM me with offers.
Back
Top