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

    [7.72] RealOTX with CastSystem - OpenSource

    maybe need vcredist aio? https://www.techpowerup.com/download/visual-c-redistributable-runtime-package-all-in-one/
  2. NvSo

    Anyone has this sprite? mw

    I see that you are using 7.92, and I see many other hypocritical comments that I imagine do not use TFS in their projects at all, and have a client made of 0 to be able to comment on it. and since I don't care in the slightest who copies whose ideas or whether they get their content from Tibia...
  3. NvSo

    Clone items in TFS 1.X

    It seems to me that they are using some old downgrade where the postRemoveNotification() method is not being sent correctly. That's what someone else (a good person) I've been talking to on Discord had noticed. For my part, I reviewed the methods and I can't find anything relevant in them since...
  4. NvSo

    Clone items in TFS 1.X

    Tested on TFS 1.3 pre 1.4 no work here.
  5. NvSo

    color+itens

    I'm not at all good with modules, much less opcodes. In fact, on my part everything is very rudimentary, I use a list of items used as a library in the client. I did not send information from the server at any time other than for the rarity of the items. But I get the information table directly...
  6. NvSo

    color+itens

    When I mentioned the function of the bot module it is so that you can have a clear example of how it works, it is best to use your own module, from scratch with the precise functions to obtain the "thing" of the item in question, in this case, can be the tooltip information which, once obtained...
  7. NvSo

    How can I place new items to this server?

    Try replacing the folders attached and enable vcpkg manifest: The first time you compile it will inform you of many errors, you need close the visual studio and reopen it and try to compile again. and this time it going to compile successfully.
  8. NvSo

    How can I place new items to this server?

    ok then check my changes: https://github.com/Corlyone/TFS-1.5-Downgrades/commit/4cac5196f52a0f360c67ffd6731765de1cd37770 i compile here
  9. NvSo

    How can I place new items to this server?

    install vcpkg install --triplet x64-windows fmt
  10. NvSo

    How can I place new items to this server?

    Show the errors, we can only view the log but not the erros properly. but i think its the fmtv10 error so you can check and apply this commits to compile without errors: https://github.com/Unreal-TFS/forgottenserver/commit/bb9635e07e679ee88bbf207b4cd2b073a29657b2...
  11. NvSo

    How can I place new items to this server?

    Using and working on sabrehavens, although it is a good base, is not a good idea. The structure of the quests and NPCs as well as the items is not the most friendly to work with. If your plan is to move to tfs and you are going to make a retro version, I suggest using the latest nekiro...
  12. NvSo

    TFS 1.X+ Castle Boost exp

    I have similar xpboost scripts and I use them this way: function Player:onGainExperience(source, exp, rawExp) local xpCastle = 0 if self:getGuild() and self:getGuild():getId() == CASTLE24H:getGuildIdFromCastle() then xpCastle = exp * 1.20 -- +20% XP end return exp + xpCastle end
  13. NvSo

    AAC [MYAAC]Characters page

    search for: system/templates/characters.html.twig
  14. NvSo

    TFS 1.X+ Cannot connect to the server after recompiling another source

    try set ur local ip these with 192.168.0.1 example, search on your conection, client and server need the same ip. if u use remote host thats another thing
  15. NvSo

    Solved Optimize elseif script.

    Every day we learn something new! i need more practice :) and its sure, as the original was, now it is at least times better XD
  16. NvSo

    C++ decrease speed on equiped items (slots)

    u want decrease speed? I think I'm sure that if you use the value negatively it should work, or at least that's how the logic seems to work in version 0.6.5, I don't know if it makes much difference. <attribute key="speed" value="-10" />...
  17. NvSo

    Storage tfs 1.5 error

    If you are using function onLogin(player) it is better that you use the function in this way: player:getStorageValue
  18. NvSo

    TFS 1.X+ Cannot connect to the server after recompiling another source

    try with packetCompression = false in config.lua and ofc check if u're using the OTSERV_RSA in the client properly
  19. NvSo

    Solved Optimize elseif script.

    You will always need to check if the item exists or not before using the lever as well as the correct looktype. Try: local config = { pricePos = Position({ x=1918, y=1232, z=5 }), addonName = { "first", "second" } } local outfits = { [50001] = { items = { { id =...
  20. NvSo

    Solved Optimize elseif script.

    The shortest way is to call the storages by an array of them from 50001 to 50050 (or ur expected range) that is one of the first things you can shorten, for the rest you are already using calls to different items as well as different storages, to the being a toggle there isn't much you can do to...
Back
Top