• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Recent content by poncex

  1. P

    Problem with item detection in module

    Of course, in fact, as I said at the beginning, that was the function I was using from the client. This is because, as a Sun user, I'm just learning how to work with opcodes. I still don't know how to send data or display elements through opcode. That's why I had to use the client function (also...
  2. P

    Problem with item detection in module

    To open the module through the npc I use the function openUpgradeSpellModule() spelllistButton:setOn(true) spelllistWindow:show() spelllistWindow:raise() spelllistWindow:focus() updateSpellInformation() end which in turn is declared in a file in libs on my server, and for...
  3. P

    Problem with item detection in module

    Hi @chucky91 , thanks for responding. In fact, the code I use is similar to the one you posted. local SPELLUPGRADE_OPCODE = 20 local recipes = { -- Healing ["Mass Healing"] = { maxLevel = 10, storage = 49998, requiredItems = { {id = 6547, count = 5}, {id = 6549, count = 2} }...
  4. P

    Problem with item detection in module

    The idea is to do it using opcode
  5. P

    Problem with item detection in module

    Hi everyone, I'm finishing my module but I'm having a problem detecting if the player has the necessary items to be able to craft. At the moment I've only been able to achieve this with the g_game.getContainers function. but the items are only reflected in the module if the backpack with the...
  6. P

    shaders do not appear on monsters

    I thought no one was going to comment on the post xD, In my case, the only thing I had to do was modify the line in the monsters.cpp file, leaving it like this: if ((attr = node.attribute("shader"))) { mType->info.outfit.lookShader = pugi::cast<uint16_t>(attr.value()); }...
  7. P

    shaders do not appear on monsters

    No :v 1751485717 The solution isn't difficult. The problem, at least for me, is that it doesn't detect shader names, at least for Monsters (unlike NPCs, where you can add the shader name to their respective XML files and it works correctly). I just had to change it so that instead of detecting...
  8. P

    shaders do not appear on monsters

    Solved.
  9. P

    shaders do not appear on monsters

    Hi everyone, I followed this tutorial: https://github.com/OTCv8/forgottenserver/compare/7f5b4fbc08711124dec86b0fcd7bfd78dd1165c4..239f555b0f71cfe0e17b6e5012518b25696d2f76#diff-eb01d79b279ebf659ed73216c0b3c490685221c9358e058ce55a1c8ab4e99c35 to be able to add wings, shaders, etc. to my server...
  10. P

    Windows problem opening servers

    Hello everyone and thanks for answering, I've tried everything you told me and unfortunately nothing has worked, now I did a new test using Canary servers to see if the same error also occurs and unexpectedly everything opened correctly both the server and client, etc. so I gather the problem...
  11. P

    Windows problem opening servers

    Thank you very much for responding. The system is x64-based, and the console is compiled as x64. I installed everything basic, at least to run the server, and so far it doesn't tell me that any DLLs are missing. Now, as for the processor, I could run it and not at the same time, since it's a...
  12. P

    Windows problem opening servers

    Yes, i stopped using the PC for a while and when I started using it again it started with these errors.
  13. P

    Windows problem opening servers

    Hello, thanks for responding. I've been trying with other SSDs, etc., and the problem persists. To clarify, my servers on other PCs do open normally (meaning that I can open servers with websites and all that). I tried installing redistributables, and everything, and still nothing, the same...
  14. P

    Windows problem opening servers

    Thanks for responding, the server has all its corresponding files, since I was using it from another PC, when I compressed it to use it on my other PC is when the problem occurs (when using it on the second PC) since it throws errors in the event viewer, the server also has a restarter file...
  15. P

    Windows problem opening servers

    Hi everyone, I formatted my PC a few days ago and now when I try to open my servers they don't open, the console just stays black without loading anything and it closes. I checked the Windows event viewer and it shows the capture error. I have reformatted the PC and it still doesn't work...
Back
Top