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

    Doubt with item and chance to hit.

    Hello everyone different from others ot my server uses a file extension called items.srv I wonder if I can increase the chance of hitting a bolt by doing this? I write this now because I am at work. TypeID = 3450 Name = "a power bolt" Flags = {Cumulative,Take,Ammo}...
  2. Piifafa

    TFS 1.X+ Use of item with time.

    thank you thank you very much!
  3. Piifafa

    TFS 1.X+ Use of item with time.

    I would like my item not to be usable again until it expires. <action itemid="5498" script="expboostsmall.lua"/> function onUse(player, item, fromPosition, itemEx, toPosition) local storageValue = player:getStorageValue(81100) if storageValue <= os.time() then local...
  4. Piifafa

    Map pieces for Nostalrius / Sabrehaven [Free] 🚀

    thanks for showing this, i put the small dragon and boss room in my ot.
  5. Piifafa

    Roulette System

    does it work for tfs 1.2?
  6. Piifafa

    TFS 1.X+ Double exp / Sabrehaven.com based on Nostalrius 7.7

    Thank the Lord for trying to help me! I'll try to show what I did currently what happened. /data/actions/scripts <action itemid="3660" script="expboost.lua"/> expboost.lua function onUse(player, item, fromPosition, itemEx, toPosition) local storageValue = player:getStorageValue(81100)...
  7. Piifafa

    TFS 1.X+ Double exp / Sabrehaven.com based on Nostalrius 7.7

    it seems that it worked for me, but I have some problems related to the experience gain that I get very high
  8. Piifafa

    TFS 1.X+ Double exp / Sabrehaven.com based on Nostalrius 7.7

    good morning everybody. I tried with the help of a friend to do it the following way, everything went very well but unfortunately there was no gain in experience, the rest works, time goes by right and storage is also ok. doublexp.lua function onLogin(cid) local player = Player(cid) if...
  9. Piifafa

    TFS 1.X+ Double exp / Sabrehaven.com based on Nostalrius 7.7

    I tried to do it the following way, but then I double the exp for all players. action: function onUse(player, item, fromPosition, itemEx, toPosition) local storageValue = player:getStorageValue(81100) if storageValue <= os.time() then player:setStorageValue(81100, os.time() + 2...
  10. Piifafa

    TFS 1.X+ Double exp / Sabrehaven.com based on Nostalrius 7.7

    My server doesn't have that folder! I use a base that I believe is from this ot because it's similar to the npc. https://github.com/rodolfoaugusto/yurOTS-server
  11. Piifafa

    TFS 1.X+ Double exp / Sabrehaven.com based on Nostalrius 7.7

    I can not do. I don't know where the player part goes in that base.
  12. Piifafa

    TFS 1.X+ Double exp / Sabrehaven.com based on Nostalrius 7.7

    Please someone who is very experienced could help me create an item, ring or something that would give double experience or a percentage more on that basis? I tried several ways but nothing works.
  13. Piifafa

    Lua Reset System TFS 1.2

    it's actually not easy. 1691800537 I'm trying to create a double exp item, which stays activated for a few days or hours despite using I don't know what's missing for it to work, it's really difficult on that basis. function onUse(cid, item, fromPosition, itemEx, toPosition) local player =...
  14. Piifafa

    Lua Reset System TFS 1.2

    thanks for trying to help me but my npc's are different from these, they are like that. # GIMUD - Graphical Interface Multi User Dungeon # xodet.npc: Datenbank für den Magieladen-Besitzer Xodet Name = "Dark Rodo" Outfit = (128,78-71-82-114) Home = [0,0,0] Radius = 0 Behaviour = {...
  15. Piifafa

    Lua Reset System TFS 1.2

    I would like to know how I can use this system on my server, as I use a Nostalrius database, and it's quite different from the typical OT servers. Even the NPCs are different, but I know it's TFS 1.2. I would like to have an NPC that can perform a player reset. local config = { backToLevel...
  16. Piifafa

    TFS 1.X+ Paralyse Rune

    <rune name="Paralyze" id="3165" allowfaruse="1" charges="1" maglv="18" mana="900" needtarget="1" blocktype="solid" script="runes/paralyze.lua"> <vocation name="Druid" /> <vocation name="Elder Druid" showInDescription="0" /> </rune> mine is like that, / It doesn't work even...
  17. Piifafa

    TFS 1.X+ Paralyse Rune

    hello friends, I would like to know why when using the paralysis rune, my players do not get a skull? Because in fact they don't stay in battle mode, I tried 2 different scripts but I don't know what to do. local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED)...
  18. Piifafa

    TFS 1.X+ Increases weapon attack.

    bump
  19. Piifafa

    TFS 1.X+ Increases weapon attack.

    the idea was to use some gems and the weapon's attacks have a chance to increase or break it, but it's not working! Error: Lua Script Error: [Action Interface] data/actions/scripts/gem.lua:onUse data/actions/scripts/gem.lua:37: attempt to call method 'getCustomAttribute' (a nil value) stack...
  20. Piifafa

    OTClient Bug or Error?

    I managed to solve the problem, thank you for your help! I did exactly as you suggested, but today when I tried to use the RME map editor for Nostaltius and add my SRV items to edit the map, it doesn't even open. It gets stuck at 20% loading. What could be the issue?
Back
Top