• 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

    DDos attack blocking connections on port 7171

    A doubt: Is not better to use "DROP" instead "REJECT", in iptables rules? In case a DoS attack with "REJECT" server sends a response with a little extra charge, with "DROP" packet its just eliminated, without a response. Or for OTs its better to use "REJECT"?
  2. potinho

    TFS 0.X ProtocolGame errors

    I realize a different behavior at this moment, the ground on player SQM change at this hunt, i made a video: And sometimes i got this error: ERROR: no thing at pos:1495 965 5, stackpos:2 at: [C++]...
  3. potinho

    TFS 0.X ProtocolGame errors

    everything seems to work fine
  4. potinho

    otv8 backpack opening limit

    someone find the fix?
  5. potinho

    TFS 0.X ProtocolGame errors

    So make sense i stop to receive more errors removing effects from code in combat.cpp? May be a problem send to client 2 magic effects at same time, besides another effects, like monster spells, exhausted, etc...
  6. potinho

    TFS 0.X ProtocolGame errors

    I dont know if make sense, but after i remove: g_game.addMagicEffect(pCaster->getPosition(), MAGIC_EFFECT_WRAPS_RED); and g_game.addMagicEffect(pCaster->getPosition(), MAGIC_EFFECT_WRAPS_BLUE); g_game.addAnimatedText(pCaster->getPosition(), 11, "+" + std::to_string(amount))...
  7. potinho

    TFS 0.X ProtocolGame errors

    I will try, thanks for reply! Its not this, received error again: ERROR: ProtocolGame parse message exception (38 bytes, 25 unread, last opcode is 0x16 (22), prev opcode is 0x8c (140)): InputMessage eof reached Packet has been saved to packet.log, you can use it to find what was wrong...
  8. 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...
  9. potinho

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

    Thanks bro, seems to work perfectly
  10. 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...
  11. potinho

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

    I guess i've got it. After: local actionType = widget.action or 0 if actionType > ACTION.BLANK then local id if actionType == ACTION.USE_SELF then id = "useSelf" elseif actionType == ACTION.USE_TARGET then id = "useTarget" elseif actionType == ACTION.USE_CROSS then id =...
  12. potinho

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

    Thanks bro, if i find something i will post here. Thanks for help!!!
  13. potinho

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

    I always respect everyone here and try to help when I can. I read the rules again and didn't see that there is a maximum number of topics per member. I read the error, but I believe the solution is not so simple, as it happens with specific types of item. I kindly ask that, if you are unable to...
  14. 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...
  15. potinho

    AAC Stripe Payments Gesior God please help i try for 50hrs already:(

    Are you using Cloudflare?
  16. potinho

    OTClient [OTCv8] MOD game_tutorial for Tibia

    Thanks bro!
  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

    What to use instead of the PayPal?

    I had a bad experience with Stripe, after 1 week using, this company banned my account because a chargeback and keep all my founds. I lost almost $100, the money still there, but my account is banned because 1 chargeback i lost, PayPal never did this to me.
  19. 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...
  20. potinho

    Lua LUA scripting function; onAdvance

    Here's an example i use: local storage = 3746 local levelReward = { [1] = {30, 2160, 1, "crystal coin"}, [2] = {60, 2160, 3, "crystal coins"}, -- lowest level Must be at top, descending down [3] = {100, 2160, 5, "crystal coins"}, -- level, itemID, item_amount, item_name [4] = {150...
Back
Top