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

    [Germany] [8.6] Avatar The Last Airbender Server | 21.07.2023 - 23:00 (CEST)

    Changelog: - Fixed rewards in Blood Castle Event - now all participants recive reward - Fixed Bosses - now you cannot logout inside Boss room - Fixed teleport - now you cannot be pushed inside teleport - Fixed spell Water Clock - Fixed Shared Exp - now you can turn on shared with more than...
  2. rafaeru

    [Germany] [8.6] Avatar The Last Airbender Server | 21.07.2023 - 23:00 (CEST)

    Changelog: - Fixed Boss Zavarox - Fixed Boos Moohtant - Fixed Boss Olaf - Fixed NPC Eliot - reduced attribute reset cost - Fixed showing Adventure Points onLook yourself - Fixed Earth spell color - now is always green - Fixed reward from Blood Castle Event - now it is exp + 2 Avatar Keys...
  3. rafaeru

    [Germany] [8.6] Avatar The Last Airbender Server | 21.07.2023 - 23:00 (CEST)

    Changelog: Fixed Bless - reduced cost on low levels Fixed Potions - potions now have level requirements SHP - 50 level, GHP - 80 level, UHP - 130 level Fixed exp stages on levels 80 - 200 Fixed loot showing after kill monsters for all party Fixed Summons - now you and your party dont deal...
  4. rafaeru

    [Germany] [8.6] Avatar The Last Airbender Server | 21.07.2023 - 23:00 (CEST)

    Exciting Announcement: Avatar Server Launching This Friday at 18:00(BRT) and 23:00(CEST)! After undergoing a series of extensive updates and improvements, the AvatarOt.com is now reborn with a plethora of exciting changes that are sure to take your gaming experience to new heights. Prepare...
  5. rafaeru

    Linux NGINX how to set the best performance?

    I am coming to the same conclusion because previously I had more, 12 GB, and there was no problem with that. However, I never used 12 GB of resources, I wanted to match it appropriately to my server. Thanks, I will keep trying.
  6. rafaeru

    Linux NGINX how to set the best performance?

    Hello, this is my first time using NGINX. I have always used Apache before. I currently have Ubuntu 20.04 and have been having problems with it from the beginning due to my lack of experience and knowledge. My VPS has 4 GB of RAM, and NGINX often consumes most of the resources, causing the...
  7. rafaeru

    [Poland][Custom] Road to Shinigami - Seson 7

    Over a month since the start and we're still having a great time! Join us in the game. https://rtsonline.org/
  8. rafaeru

    [Poland][Custom] Road to Shinigami - Seson 7

    13.01.2023 - 18:00 (UTC+1) Website: Road to Shinigami - Bleach OTS (https://rtsonline.org/) Discord: Discord - A New Way to Chat with Friends & Communities (https://discord.gg/A4EVUwbN) Introduction Road to Shinigami is an RPG Tibia server based on the anime Bleach. As the administration, we...
  9. rafaeru

    TFS 1.3 Znote Paypal problem

    Make sure that the base currency on PayPal is set to the same currency as in the config.php file. For example, I have payments in USD and the same currency selected on my PayPal account as the base currency. I had the same problem. 'currency' => 'USD',
  10. rafaeru

    OTClient Resize console window horizontally

    There is no that functions.
  11. rafaeru

    OTClient Resize console window horizontally

    Hello, I still learning OTC and I don't really know where to look for it. I want to make console window to able resize horizontally and moveable anywhere on the screen. Resize works only in vertical direction. But i want to make it horizonatlly. I have clear V8 OTC so i already checked...
  12. rafaeru

    Linux OTS Restarter

    @Gesior.pl Trying to run this script for TFS 0.3.6. I have Ubuntu 20 but also I have the following errors. ubuntu@minecraftserver:~/rts036$ bash ./restart.sh ./restart.sh: line 2: $'\r': command not found ./restart.sh: line 5: $'\r': command not found ./restart.sh: line 10: $'\r': command not...
  13. rafaeru

    Best engine for 8.6?

    I am considering selecting an engine for my custom ots project on protocol 8.6. What would you choose and why? I have one project based on 0.3.6 and it works fine but I had to fix a lot of bugs. I would like to choose an engine that is the fastest and has as few bugs as possible. At the bottom...
  14. rafaeru

    OTClient Moving containers inside window

    I have problem with moving containers inside otclient window. I would they stay where they were. I'm already learning OTClient and OTUI. anchors are responsible for that? Panel id: afkPanel anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top...
  15. rafaeru

    Lua [TFS 0.X] Training AFK Script - Kicking char

    maybe check and use: getPlayerIdleTime(cid) doPlayerSetIdleTime(cid, idleTime) You have it used only in function: local function trainMana(cid, startTime) check by second command that idle time is reset every 1 second
  16. rafaeru

    Lua [HELP] Spell that kills player and monster instantly no matter the level

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA) function damage(cid, level, maglevel) local min = 1 local max = 1 return -min, -max end setCombatCallback(combat...
  17. rafaeru

    Lua [HELP] Spell that kills player and monster instantly no matter the level

    function onCastSpell(cid, var) target = getCreatureTarget(cid) doCreatureAddHealth(target, -getCreatureMaxHealth(target)) return true end
  18. rafaeru

    Script to strengthen the monster's attacks by 5%

    local storage_attack = 1235 -- value of monster bonus damage, ex. set it to 5 for 5% but if you want to disable it set to -1 local storage_defense = 1236 -- value of monster bonus defense, ex. set it to 5 for 5% but if you want to disable it set to -1 function onHealthChange(creature, attacker...
  19. rafaeru

    Script to strengthen the monster's attacks by 5%

    local storage = 1235 -- value of monster bonus damage, ex. set it to 5 for 5% but if you want to disable it set to -1 function onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage, secondaryType, origin) if creature:isPlayer() and attacker:isMonster() then...
Back
Top