• 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!

Recent content by VitoxMaster

  1. VitoxMaster

    NPC shows items to sell that the player doesn't have in their backpack

    @Mateus Robeerto Thank you very much, as you said it works now. My problem was migrating from 0.3.4 to Nekiro Downagrade 1.5. When I found this thread I kinda lost that direction in a bug research. I think that your response should be marked as a solution. Thanks once again for fast help :D 👍
  2. VitoxMaster

    NPC shows items to sell that the player doesn't have in their backpack

    Thanks for the response. I tried to adapt to your suggestion. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) -- OTServ event handling functions function onCreatureAppear(cid)...
  3. VitoxMaster

    NPC shows items to sell that the player doesn't have in their backpack

    Any solution to this? From my observation it looks like when you add the same amulet to the shop_buyable and shop_sellable it will lead to such problems. In the 'sell' window section I see charges set as an amount. When I delete item from the shop_sellable list it will work fine in sell section...
  4. VitoxMaster

    OTClient Disabling space bar when chats active & adding new hotkeys - OTclientv8

    I figured out the solution. I will leave it for the people who want to disable hotkeys & actions bars when chat is active (wasd walking is inactive). modules/game_console/console.lua function toggleChat() if consoleToggleChat:isChecked() then modules.game_hotkeys.reload()...
  5. VitoxMaster

    OpenTibia OTClient that unpack map.otbm to .png files - v4.0

    Is there any configuration to disable that hard check on Tibia.dat and Tibia.spr? My Otclientv8 shows that there is something wrong with Tibia.dat but it runs anyway and works well. Unfortunately mapgen cannot open properly and I had to use original tibia 10.98 dat to mimic my custom .dat.
  6. VitoxMaster

    Windows (Too much delay) Vps/Website Hosted

    If you think that there is problem with that DB consider moving DB to the server where you have your engine to reduce latency. Observe if you have any deadlocks / row locks on your main tables. Try to find out which queries execute the longest period of time. You can rewrite such queries or...
  7. VitoxMaster

    Windows (Too much delay) Vps/Website Hosted

    Any peaks in ram / processor usage? Is it under the constant load? Do you experience any DDOS attacks? How many packets per seconds your server allows? Maybe players specific activity increase server load (scripts regularly running) Do you experience lags after immediately or after few hours? Do...
  8. VitoxMaster

    Solved NPC with more than 255 (limit) items on list [OTVclientv8 + TFS 1.5 Nekiro 8.6]

    @lursky helped me in an application of correct changes. For now changes look as follow: Server side (Nekiro TFS 1.5 8.6): src/protocolgame.cpp msg.add<uint16_t>(itemsToSend); uint16_t itemsToSend = std::min<size_t>(saleMap.size(), std::numeric_limits<uint16_t>::max())...
  9. VitoxMaster

    Solved NPC with more than 255 (limit) items on list [OTVclientv8 + TFS 1.5 Nekiro 8.6]

    @lursky Thanks for your reply, I've tried your solution but I'm not sure if it's enough. Debugging otclient showed me that the function responsible for the window opening is: void ProtocolGame::parseOpenNpcTrade(const InputMessagePtr& msg) { std::vector<std::tuple<ItemPtr, std::string, int...
  10. VitoxMaster

    [TFS 1.5 8.6] STAT_MAXHITPOINTS problem with multiple items

    Someone reported to me that such thing happened. He was slowed down by quara and couldn't 'return' to regular speed. He had to log out. I can confirm that something like that can occur, but I'm not sure what's the reason (I haven't taken it to the workbench to test it on my own so far). For sure...
  11. VitoxMaster

    TFS 1.5 Healing value in server chat not exist

    I will try it later. Thanks!
  12. VitoxMaster

    TFS 1.5 Healing value in server chat not exist

    Bump, I'm experiencing the same issue.
  13. VitoxMaster

    AOL cost?

    Hello, Personally I would make it in price of 1 regular bless but effectiveness of AOL would depend on rest of the blesses (so I guess kind of standard system but requires AOL to make it work - but maybe 3 blesses + AOL totally reduce chance of dropping). AOL then should be assigned to player...
  14. VitoxMaster

    Solved NPC with more than 255 (limit) items on list [OTVclientv8 + TFS 1.5 Nekiro 8.6]

    Hi everyone. I couldn't find similar topic so I've decided to post it. Perhaps someone will be able to guide me or provide some tips / reasonable solution. On my server I wanted to have just 1 NPC who buys all the creature products. Everything was fine when list of items was smaller than 255...
Back
Top