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

    Snowball tfs 1.5 Problem

    Yea sorry, by logs I meant console. So now you know that the problem is that your code is not receiving the random positions that should come from CACHE_GAMEAREAPOSITIONS, and it doesn't know where to teleport players. By any chance you have this in your console? Or any other similar message.
  2. Curb

    Snowball tfs 1.5 Problem

    This: for _, players in ipairs(CACHE_GAMEPLAYERS) do Player(players):setStorageValue(10109, 0) Player(players):setStorageValue(10108, SnowBall_Configurations.Ammo_Configurations.Ammo_Start) Player(players):teleportTo(CACHE_GAMEAREAPOSITIONS[math.random(1, #CACHE_GAMEAREAPOSITIONS)])...
  3. Curb

    Snowball tfs 1.5 Problem

    Player(players):teleportTo(CACHE_GAMEAREAPOSITIONS[math.random(1, #CACHE_GAMEAREAPOSITIONS)]) It tries to teleport players to a random position within CACHE_GAMEAREAPOSITIONS. The error could be due to: Player(players) returning nil. The random position from CACHE_GAMEAREAPOSITIONS being nil...
  4. Curb

    Snowball tfs 1.5 Problem

    Could you show us SnowBall_Event.lua?
  5. Curb

    TFS 1.X+ Issue with Item Description not being Recognized in Script

    TFS 1.4.2 I have a script that involves modifying item descriptions and interacting with specific items (a bucket of water and a sack of feed, with IDs 26415 and 26414, respectively. The script is intended to read the item description, extract a quantity value from it, and then perform certain...
  6. Curb

    Lua create temporary teleport onuse

    <action itemid="30179" script="teleport_mallet.lua"/> local malletId = 30179 -- mallet ID local teleportId = 1387 -- teleport ID local revertToId = 28424 -- item ID to revert after 8 seconds local destination = Position(100, 100, 7) -- replace with the correct destination coordinates function...
  7. Curb

    TFS 1.X+ Inconsistency in runonhealth behavior

    Like a charm. Thank you.
  8. Curb

    TFS 1.X+ Inconsistency in runonhealth behavior

    TFS 1.4.2 I have two deer scripts, one defined in XML and the other in Revscript, that are identical in terms of settings. However, the deer.xml flees as expected, while deer.lua does not. deer.lua: local mType = Game.createMonsterType("Deer") local monster = {} monster.description = "a...
  9. Curb

    TFS 1.X+ TFS 1.4.2 + mehah OTC Market

    Does anyone know how to make the mehah/otclient 3.1 market work together with TFS 1.4.2? If I'm not mistaken, as described in mehah's github "Market has been rewritten to work only Canary". So I imagine that's why the market doesn't work the way it should, such as creating buy/sell offers...
  10. Curb

    Orc merged with Cyclops?

    🤣
  11. Curb

    Windows Rme and quests

    Is this Nostalrius? Mind uploading your version here for me? 😁
  12. Curb

    Windows Rme and quests

    Is it possible to change Content amount? For example 10 gold coins inside a chest? Might be stupid but I couldn't find it on Nostalrius RME version. o_O
  13. Curb

    OTS Hosting Service supports high-quality servers

    Sorry about that. Didnt read it properly.
  14. Curb

    OTS Hosting Service supports high-quality servers

    Well, look what they said on Spigu website. So no support at all?
  15. Curb

    OTS Hosting Service supports high-quality servers

    I did but the console is giving me this error: Am I too late on this topic?
  16. Curb

    Rookgaardians been teleported to main when P.A. is over.

    Worked! The Rookgaard part is not teleporting to Rook temple, but that is fine for me already. I kept it like that! -- Premium system if player:isPremium() then player:setStorageValue(43434, 1) elseif player:getStorageValue(43434) == 1 and isInArray({1, 2, 3, 4, 5, 6, 7, 8}...
  17. Curb

    Rookgaardians been teleported to main when P.A. is over.

    Everyone stayed where they were. :( No log errors
  18. Curb

    Rookgaardians been teleported to main when P.A. is over.

    But then people without premium account will stay in premium areas. No? Let me be more clear. Premium account is over Player have vocation go to Thais Player does not have vocation go to Rookgaard
  19. Curb

    Rookgaardians been teleported to main when P.A. is over.

    No, I want them to stay in Rookgaard. I'm sorry the text was wrong.
  20. Curb

    Rookgaardians been teleported to main when P.A. is over.

    Hello guys, Well I'm using Nostalrius and this is part of my login.lua: -- Premium system if player:isPremium() then player:setStorageValue(43434, 1) elseif player:getStorageValue(43434) == 1 then player:setStorageValue(43434, 0) player:teleportTo({x = 32369...
Back
Top