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

    [NL] [10.98] Dolport Challenges

    Dolport Challenges Dolport Challenges is a small server where the whole map is custom made. The standard 10.98 client is usable, but the best performance will be with Dolport's own client. Dolport Challenges is meant to be, for people seeking new places that are yet to be explored. The...
  2. Raikou

    TFS 1.X+ Dynamic trade window

    I'm trying to make a dynamic trade window, sadly i can't get the window to pop up yet. The code looks as following: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid)...
  3. Raikou

    Action [TFS 1.x] Special foods

    This works for me, only thing I changed is this part: SPECIAL_FOODS = { [9992] = {"Gulp."}, [9993] = {"Chomp."}, [9994] = {"Chomp."}, [9995] = {"Chomp."}, [9997] = {"Yum."}, [9998] = {"Munch."}, [9999] = {"Chomp."}, [10000] = {"Mmmm."}, [10001] = {"Smack."} } Since I use 1.3 I had to put...
  4. Raikou

    TFS 1.X+ Set uniqueid to created item

    Yea i found that out just now as well, but did gave me a new error. (Unknown scriptfile) LuaScriptInterface::luaItemSetAttribute(). Attempt to set protected key "uid" stack traceback: [C]: in function 'setAttribute' data/actions/scripts/tools/eggwhopper.lua:5: in function...
  5. Raikou

    TFS 1.X+ Set uniqueid to created item

    I have a quest that consists in destroying an item/object. After it's destroyed I want to let it respawn with uniqueid, but i cant get it to work. function createEgg(position) print('Egg has respawned') Game.createItem(14820, 1, position) local egg =...
  6. Raikou

    TFS 1.X+ Use item with uid x set storage id x

    function onUse(cid, item, fromPosition, target, toPosition, isHotkey) local player = Player(cid) if not player then return true end if player:getStorageValue(item.uid) ~= 1 then player:setStorageValue(item.uid, 1) end return true end I turned it...
  7. Raikou

    TFS 1.X+ Use item with uid x set storage id x

    I'm trying to do something simple, so at least i think. But can't get it to work. I have an item(book) with uid 6600, as soon as a player reads(use) it player.storage 6600 needs to be set. I thought I could do this with actionid 15000 (the standard reward box thing) but then I can't use the...
  8. Raikou

    TFS 1.X+ Teleport player out of area after x amount of time

    Alright guys i did some deeper digging and found a working script for me, which is also a bit more dynamic. Source is from: Otservbr-global local function roomIsOccupied(centerPosition, rangeX, rangeY) local spectators = Game.getSpectators(centerPosition, false, true, rangeX, rangeX...
  9. Raikou

    TFS 1.X+ Teleport player out of area after x amount of time

    So i`m trying to make a boss room, the tp into the room works. But the tp after x amount of time doesn't work. since i`m using 1.3 and i think the code i got from here is 0.4? or something. local config = { room = {x = 896, y = 1048, z = 8}, kick = {x = 890, y = 1049, z = 8} } local...
  10. Raikou

    Rope spots for certain grounds

    Hello fellow tibian people, I've been doing some mapping lately and I've noticed something. There are not much rope spots? Or atleast I cant find them. I wanted to make a swampish cave and I settled with a few good grounds but there is just no rope spot? Anyone knows if they exists and where to...
  11. Raikou

    TFS 1.X+ kill counter quest log not working

    |STATE| works only in the mission tag not in the missionstate tag I think.
  12. Raikou

    Action [TFS 1.1] Item's upgrading by jewels

    I gathered some more information using print: print(it) userdata: 0x287ac3d0 print(target.uid) 0 print(ITEM_ATTRIBUTE_ARMOR) 8192 So as expected the target.uid = 0 which is true since i only started the use and not on something yet. @Ascuas Funkeln Ohh i have to change it over...
  13. Raikou

    Action [TFS 1.1] Item's upgrading by jewels

    I removed that and changed cid in code to player:getId() I still get the same error, which feels weird cause i only use the jewel. I`m not even using the the jewel on an item yet. Lua Script Error: [Action Interface] data/actions/scripts/other/upgrading.lua:onUse...
  14. Raikou

    Hole id 7932 not working

    That's it, it worked out well, thank you! 1582975088 Oh it does give a console error: Lua Script Error: [Action Interface] data/actions/scripts/tools/shovel.lua:onUse data/actions/scripts/tools/shovel.lua:9: attempt to index global 'tile' (a nil value) stack traceback: [C]: in...
  15. Raikou

    Action [TFS 1.1] Item's upgrading by jewels

    Bump, anyone? it must be something obvious I guess?
  16. Raikou

    Hole id 7932 not working

    Bump anyone?
  17. Raikou

    Hole id 7932 not working

    So i`m trying to make use of this hole, but it doesnt want to open (use shovel and transform to 7933). These are my server settings: Items: <item id="7932" article="a" name="large hole"/> <item id="7933" article="a" name="large hole"> <attribute key="floorchange" value="down" />...
  18. Raikou

    Action [TFS 1.1] Item's upgrading by jewels

    I`m trying to add this script to my TFS 1.3, but it doesn't work. If i only use the jewel(talon in my case) it gives me an error. I get this in the console: Lua Script Error: [Action Interface] data/actions/scripts/other/upgrading.lua:onUse data/lib/Misc/item_attributes.lua:2: attempt to...
  19. Raikou

    Spell [TFS 1.X] Magic Missile

    -- Minimum amount of magic missiles local minMissiles = 2 local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE) local function arcaneDamage(player, var, target, missileEffectpos, animationroll) local player = Player(player) local creature =...
  20. Raikou

    Advanced Task NPC

    I have the same problem as Charlyhustle I`m using 1.3 TFS and the pop up does indeed show but the buttons (exit and select) do not work, as in do not trigger the next event. EDIT I added in the login script player:registerEvent("TaskSystemWindow")...
Back
Top