• 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

    C++ I need a encrypt my .spr

    sorry error post ----
  2. NvSo

    [8.6] Problem with OTB version

    I'm so sorry that HxD Hex Editor is a deprecated tool :( I apologize I will not do it again. runs away crying~
  3. NvSo

    [8.6] Problem with OTB version

    check attached file its your items.otb on v20 Tibia 8.60 v2:
  4. NvSo

    RevScripts erro to start event comand

    I advise you to look for support in the right place, for Canary revscripts it is better to ask for help directly on the OpenTibiaBR discord For working Castle War you can looking on: https://docs.opentibiabr.com/others/downloads/revscripts/systems#revscript-castle-war
  5. NvSo

    [Poland][13.1] Verina.Online

    It looks very nice and promising, I'm going to try it!, and please add HTTPS to your site :)
  6. NvSo

    transf action para tfs 1.4

    add on final Teste:actionid(HERE YOUR LEVER AID) example: Teste:actionid(2500) -- Change the action id Teste:register()
  7. NvSo

    about mount tfs 1.5 8.0

    So the problem you have is at the moment of parsing the mounts, something must be missing from the base. I have to try it to find out what could be missing exactly what I believe I have the same code.
  8. NvSo

    about mount tfs 1.5 8.0

    Do you have any errors in the log?. i use this on my server for mount and addons and some custom: on the downgrade of .spr and .dat u already update ur items.otb sync the server with new items on client?
  9. NvSo

    TFS 1.X+ [TFS 1.5] Potion of experience

    use search next time, u can use and modify this: https://otland.net/threads/exp-scroll-not-working-tfs-1-2.239383/post-2609290 only modify item to your desire item
  10. NvSo

    transf action para tfs 1.4

    maybe this: function onUse(cid, item, fromPosition, itemEx, toPosition) local item1Pos = {x = 570, y = 531, z = 7, stackpos = 255} -- item1Pos local item2Pos = {x = 571, y = 531, z = 7, stackpos = 255} -- item2Pos local item3Pos = {x = 570, y = 531, z = 7, stackpos = 255} --...
  11. NvSo

    about mount tfs 1.5 8.0

    Correct? game.cpp void Game::playerToggleMount(uint32_t playerId, bool mount) { Player* player = getPlayerByID(playerId); if (!player) { return; } player->toggleMount(mount); } void Game::playerChangeOutfit(uint32_t playerId, Outfit_t outfit) { if...
  12. NvSo

    Otclient tasks button

    need rework your Tasks Module to work via client without NPC.
  13. NvSo

    someone convert this script to work in tfs 1.5 nekiro 8.0 ?

    add the local rand below the OnUse function like: local rand = math.random(0, 100) it should look like this: local function Teleport10(cid) if isPlayer(cid) then local xpos = getPlayerStorageValue(cid, 111) local ypos = getPlayerStorageValue(cid, 222) local...
  14. NvSo

    Rushabra 8.0 - Development

    Due Rushabra has unique ideas 🤯, but at the same time taken from other servers :rolleyes:, so please keep us posted, thanks. :)
  15. NvSo

    Otclient tasks button

    If you have a tasks module, you just have to know first what type of button you want to include. You should check the module first to see if it has a button for tasks that you can easily find in the init() section of the module in question, for example: tasksButton =...
  16. NvSo

    OTClient Otcv8 remove the limits of level displayed, mana and life

    Limits? the limit its int32_t so you can change the limits -The maximum value for int32_t is 2.147.483.647 If you want to increase the range of possible values, you can use the int64_t data type instead of int32_t, the maximum value for int64_t is 9.223.372.036.854.775.807 So.. You need...
  17. NvSo

    someone convert this script to work in tfs 1.5 nekiro 8.0 ?

    local function Teleport10(cid) if isPlayer(cid) then local xpos = getPlayerStorageValue(cid, 111) local ypos = getPlayerStorageValue(cid, 222) local zpos = getPlayerStorageValue(cid, 333) local spos = {x = xpos, y = ypos, z = zpos} doTeleportThing(cid...
  18. NvSo

    RevScripts Spell with random target going through walls

    already tested with adding blockwalls="1" on the XML part?
  19. NvSo

    Is there a good tibia pokemon ot that has menus etc in english?

    Most servers of this type are part of the Brazilian community. So if you want one with titles and everything in English, it is better that you get a base that meets your expectations and translate it. Greetings! You can take a look at...
  20. NvSo

    TFS 1.X+ TFS 1.5 772 downgrade + OTclientV8 unhandled opcode 128

    u need update your void ProtocolGame::sendOutfitWindow() see the comented functions. and then compare from 8.60: https://github.com/nekiro/TFS-1.5-Downgrades/blob/fc9157b919405ecde6f30e471255be4e2746884e/src/protocolgame.cpp#L2072
Back
Top