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

    Clone player

    People here in the forum just try to help with their past experiences on OpenTibia and they way you are asking, nobody's going to help you because you are being so rude. Why don't you do the script by yourself? or pay someone to make it done.
  2. narko

    Gesior TFS 1.0 War System

    It comes with the default Gesior 2012 for TFS 1.0x. But If you missed: https://otland.net/threads/gesior2012-wars-on-www-tfs-1-0-only-beta-version.209357/
  3. narko

    TalkAction [TFS 1.1-1.2] Guild Outfit Change (!go)

    I copied it from cmbr's Boss Reward for TFS 1.2: https://otland.net/threads/reward-chest-boss-reward-tfs-1-2.233397/#post-2250327 I needed a exhaust function so I used that. Edit: just added the function in the top.
  4. narko

    TalkAction [TFS 1.1-1.2] Guild Outfit Change (!go)

    Are you using TFS 1.0? This works only with TFS 1.1 or higher.
  5. narko

    TalkAction [TFS 1.1-1.2] Guild Outfit Change (!go)

    It's ok, constructive criticism is always welcome. I'm gonna try to add these changes you asked me. Thank you.
  6. narko

    [SOLVED][CreatureEvent] Tile anti death (when die by monsters) TFS 1.1

    This script won't work in TFS 1.1.
  7. narko

    TalkAction [TFS 1.1-1.2] Guild Outfit Change (!go)

    As I'm working on a new project, I had to adapt this script from 0.3/0.4 to make it work in TFS 1.1/1.2 and I'm glad to release it here in OtLand. I hope it's useful for someone. Tested in TFS 1.2 and it worked perfectly. Bugs: - None (please report any problem) Picture: Full credit goes to...
  8. narko

    Linux Last OTX Server 2 Usage 120% CPU.

    Check some scripts, most of the scripts that overload a server are in globalevents or creaturescripts folder check them or post us your creaturescripts/globalevents.xml so we can figure out what's going on.
  9. narko

    [TFS 1.1] Oramond House Doors

    Pick up your items.otb from your datapack and paste it in your 10.7+ folder in RME's folder.
  10. narko

    Lua Error npc tfs 1.0

    Yup
  11. narko

    Lua Error npc tfs 1.0

    I had the same problem some months ago, I turned from Ubuntu to Debian and it solved that.
  12. narko

    [TFS 1.0] Disconnected From Server

    bindOnlyGlobalAddress in config.lua
  13. narko

    PHP Script Currency Converter

    You can change your currency in custom_scripts/paypal/config.php
  14. narko

    [10.77+ - TFS 1.2] The Forgotten [WAR] Server v1.1 (UPDATED 17/12/15)

    It's a problem in events/player.lua related to the Frag/Death stats.
  15. narko

    [10.77+ - TFS 1.2] The Forgotten [WAR] Server v1.1 (UPDATED 17/12/15)

    There's a problem when you are trying to look at something else than a player. Keep it up!
  16. narko

    Cast System TFS 1.1 (prototype)

    Do you have this system for TFS 1.2? I tried to adapt it with the initial commit but I got some bugs when compilling.
  17. narko

    Free promotion for premium

    Try adding this in your script. db.query('UPDATE players SET promotion = 0 WHERE name =' .. getPlayerName(cid))
  18. narko

    Free promotion for premium

    Relog your character.
  19. narko

    Free promotion for premium

    As I understand, say you want to remove promotion from every player who has expired his premium time. You can put in your login.lua this part of code: if not isPremium(cid) then doPlayerSetPromotionLevel(cid, 0) return true end
  20. narko

    Free promotion for premium

    There's an easier way to do that also this may help with your problem. if isPremium(cid) then doPlayerSetPromotionLevel(cid, 1) To prevent being promoted every login. if isPremium(cid) and getPlayerStorageValue(cid, 53214) == -1 then doPlayerSetPromotionLevel(cid, 1)...
Back
Top