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

    X % more exp after completing quest TFS [1.2]

    Okey I get it how to set the storage but what about the exp function? I mean how to execute that 1.2 multipler when a player already has storage (2030) It should be as a globalevent, creaturescripts, events or what? I don't think that I can put it in an action script and it will works everytime...
  2. L

    X % more exp after completing quest TFS [1.2]

    Naaah I don't have anything (tried to do something that you posted up but i'm not that good : D), I just said is there any chance to do quest like, click chest | get x storage and by that storage get 20% more xp from monsters.
  3. L

    X % more exp after completing quest TFS [1.2]

    Okey now, how and where I can implement this xD
  4. L

    X % more exp after completing quest TFS [1.2]

    bump bump bump
  5. L

    X % more exp after completing quest TFS [1.2]

    Hello, Is it even possible to do something like that? For example when u finish a quest and you click on a chest you get rewarded with +20% experience more from monsters permanently. Base Monster Exp (1000) + Bonus Exp from monster (200)
  6. L

    Adding BossReward to script

    EXATCLY XD Thanks!
  7. L

    Adding BossReward to script

    Hi, can someone help me add this function : if monster:getType():isRewardBoss() then monster:setReward(true) to this script : local config = { ["destabilized ferumbras"] = {chance = 10000, boss = "ferumbras mortal shell", msg = "Yikes"}, --25k = 25% } function...
  8. L

    TFS 1.X+ How do I remove the monster?

    Works perfect, thanks!
  9. L

    TFS 1.X+ How do I remove the monster?

    Well I was trying but i dont get it, dont know how to properly execute the function mob:remove() where exatcly to put it to make it work
  10. L

    TFS 1.X+ How do I remove the monster?

    Hello how do I remove the monster after the event of lever reset? I want to remove the demon from x y z pos after 10 seconds (like in script) but I can't use doRemoveCreature function. Can someone help? local pos = {x=1420, y=2513, z=6, 23657} local wall = 23657 local level = 70 local seconds...
  11. L

    Cooldown on a lever

    Nothing happens after clicking the spot, also no errors in console.
  12. L

    Cooldown on a lever

    Hello, how could I add a cooldown for this script, for example 5secs. function onUse(cid, item, fromPosition, itemEx, toPosition) if item.uid == 1263 then local chance = math.random(0,3) if chance < 1 then Game.createMonster('Demon', Position(1810, 2404, 13))...
  13. L

    TFS 1.X+ Can someone make it work

    Now it works perfect, thanks for your time ; D
  14. L

    TFS 1.X+ Can someone make it work

    Ok I tested it with debug version and it looks like this : Using stone on character Ek Tester - whose storage 84310 is on value -1. Checking if that value is equal to config.maxTimes (2. It is not. Storage 84310 was -1, so we set it to the default now -> 0. Checking if player has any exhaustion...
  15. L

    TFS 1.X+ Can someone make it work

    Ok I did that : /storage liqeen 84310 -1 And also created a new character but it still does not work, I mean characters can still abuse the stone.
  16. L

    TFS 1.X+ Can someone make it work

    I can't get it, which of these values i should set to -1? if player:getStorageValue(84310) == config.maxTimes then player:setStorageValue(84310, 0) player:setStorageValue(84309, mathtime(config.timeToWait) + os.time()) else if player:getStorageValue(84310) == -1...
  17. L

    TFS 1.X+ Can someone make it work

    local config = { level = 50, maxTimes = 1, timeToWait = {1, 'day'}, maxPlayers = 1, room = {fromPos = Position(1064, 1064, 7), toPos = Position(1069, 1069, 7)}, newPos = Position(1066, 1066, 7), stone = {id = 1304, pos = Position(1059, 1065, 7)}, timeToKick =...
  18. L

    click x stones, get reward

    Seriously thaaaanks dude!!
  19. L

    click x stones, get reward

    Hello can someone help me make script like in title? For example, there are four stones each of them has other unique id and if u touch all of them u can click on a chest and get teleported to reward room. local config = { bosses = {'hellgorak'}, } function onUse(cid, item, fromPosition...
  20. L

    Action Quest Chests on Steroids TFS 1.2

    Now i get smth like this Lua Script Error: [Action Interface] data/actions/scripts/quest_chests.lua:onUse data/actions/scripts/quest_chests.lua:12: bad argument #1 to 'pairs' (table expected, got nil) stack traceback: [C]: at 0x7ff75d31ac40 [C]: in function 'pairs'...
Back
Top