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

    [Recommendation] Data Packs to start new projects

    Hi everyone, how's it going? In 2019 I made the mistake of starting a project (and persisting in the mistake) using a very old database. To help new players, what datapacks do you recommend? I'm currently looking for a recommendation for an updated datapack of a global map in protocol 8.6. Thanks!
  2. potinho

    TFS 0.X [C++] Few stackable items remaining in house

    Hello guys, i realize few days ago when a player looses his house, some stackable items remains at house, even with "Nobody" as owner...if a new player buy this house, stackable itens keep in house, causing a seriours problem. Its not happens everytime, but its getting more common, i tried to...
  3. potinho

    TFS 0.X [C++] Increase the magic level limit.

    For some reason, the Magic Level on my OTXServer 2 limits the Magic Level. The original values are considerably high, but I would like players to have the possibility to got higher Magic Levels. Actually the limit (for use spells, without consider item bonus, etc) is something around 156 for...
  4. potinho

    TFS 0.X [LUA/C++] Upgrade elemental damage on weapon

    Hello guys, i'm in correct way to create this upgrade system who add elemental damage on weapon? I'm using OTX2, it will necessary some C++ change? The script add description but weapon is not dealing elemental damage. Follow code:
  5. potinho

    Lua [OTX 2] Simple Reward System

    Hey everyone, I'm trying to create a simple reward system where predefined rewards with fixed chances are distributed to players within the boss's line of sight (the value is also defined). However, I've been experiencing issues such as rewards being sent incorrectly, bosses dying and not...
  6. potinho

    TFS 0.X Game::checkCreatureWalk and Game::checkCreatures optimization

    Hi guys, I have moved my server from a Ryzen VPS to a regular VPS and I noticed that the use of the functions mentioned in the title has increased a lot. For me, it is not an option to migrate now because I am on a machine that has a stable network, which did not happen on the other one. Is it...
  7. potinho

    Programmer [OTX 2] Freeze in 1 char when running more then 3 MCs

    I want to fix this problem in my OTX2: A player leaves 3 or 4 characters in the MC, after a certain time, only one of them freezes (as if it were lag/freeze) and dies, but the others continue normally (maybe it happens with 1 char, not confirmed yet). I can't reproduce this, seems to be in...
  8. potinho

    C++ [OTX 2] Game::playerRequestOutfit running slow

    I dont know why its happening, there's something can i do to improve this? Appearly exhaust its not being applied correctly. bool Game::playerRequestOutfit(uint32_t playerId) { Player* player = getPlayerByID(playerId); if(!player || player->isRemoved()) return false...
  9. potinho

    TFS 0.X Missing trigger when leaving guilds

    My server have in AAC (Gesior) a button to "clean up players", for some reason, while joining and leaving guilds some players got bugged. So, constantly i need to press this button: Thats what this button do: if($action == 'cleanup_players') { if($logged) {...
  10. potinho

    Google reCaptcha

    Hello everyone, today I want to alert OT administrators that Google's reCaptcha will undergo a change, in addition to being migrated into Google Cloud projects and will have a charge of over 10 thousand requests, starting at 8 dollars. That said, I migrated to hCaptcha, which was extremely...
  11. potinho

    TFS 0.X [LUA] Convert/Optimize MOD

    I need help to convert this MOD to LUA, optimizing it and making some changes, like save outfit and colors before entering in arena, keeping fully working without bugs, or have a done system like this. This MOD are inverting team respawn after first death of player, beside its calling a lot of...
  12. potinho

    Lua [TFS 0.X] Ultimate Survival MOD - Monster waves event

    Hello guys, i'm trying to use this MOD in my server but i cant make it work totally. Sometimes i cant advance to next wave, sometimes i advance to next wave but the reward from previous wave its not delivered to player. And now i get this error at each killed monster. Can u guys help me to fix...
  13. potinho

    TFS 0.X Spells running slow at stats

    Hello guys, since few hours ago some spells are executing slow, in my stats system. There's something can i do to improve? The spells code are so simply. For example, follow ultimate hur spell code: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE...
  14. potinho

    TFS 0.X ProtocolGame errors

    Hello guys, It's been a few days since I started to experience slight crashes in the game and, occasionally, I receive messages about invalid packages. Could you help me find the problem? My last changes was in the function bellow, adding Life and Mana Leech: I'm receiving this error in...
  15. potinho

    Lua [TFS 0.X] Dungeon System - Add a boss at end

    Hello guys, im using this system by @Xikini and trying to do a modification: https://otland.net/threads/dungeon-system-0-4-0-3-7-0-3-6.272142/ After kill all monsters inside a dungeon, must be created a boss so, after kill boss, player must be able to get reward and leave dungeon. Im facing...
  16. potinho

    OTClient [TFS 0.X] Using ActionBar with custom items

    Hello, I'm trying to use custom items i've made in my server with OTCv8 action bar, but seems to be not possible. I'm trying to add some scrolls, fluids and got those errors: ERROR: protected lua call failed: /modules/game_actionbar/actionbar.lua:618: attempt to index a nil value stack...
  17. potinho

    OTClient [OTCv8] MOD game_tutorial for Tibia

    Hello guys, I've found on otserv.com.br this module. It attach some kind tutorial on OTCv8 and its very interesting. Buyt is designed for a PokeTibia. Does anyone have it for Tibia? With "neutral" images? Trying to save some work on it. Attachment without images, original is too large
  18. potinho

    TFS 0.X MC Problem - One char lagged and another normal

    This happened a few times, I have two characters in MC, one has normal ping and the other, apparently for no reason, starts to have high ping. What can cause this? Looking at WinMTR (ping + traceroute) everything seems to be ok. I dont know if is related, but those are my iptables rules...
  19. potinho

    C++ [TFS 0.X] Adjust loot message to party members

    I have a loot message in my server. The problem here is loot message isn't sent in party members screen, just in loot channel. I tried to adjust C++ but i cant understand the logic to keep sending message to screen and loot channel for party members, I want to send loot message on party members...
  20. potinho

    Lua [TFS 0.X] Bossroom script is not removing players or creatures

    Hello guys, i tried to adapt an anihilator script to create some bossrooms, monster is summoned and player position are validating, but when new players try to jump in, they can. Script is not validating players inside room or cleaning previous bosses created. What im doing wrong? None errors on...
Back
Top