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

    [ProtocolGame::onRecvFirstMessage] RSA Decrypt Failed

    I've changed engine to: https://github.com/opentibiabr/otservbr-global Now everything is working.
  2. S

    TFS 1.X+ SMS SHOP

    Same file where you setup items for shop. Your acc maker > public_html > config.lua Just don't show passwords from config file.
  3. S

    TFS 1.X+ SMS SHOP

    Show your settings for items in shop.
  4. S

    TFS 1.X+ PlayerFlag_SetMaxSpeed

    player.h static constexpr int32_t PLAYER_MAX_SPEED = 4500; change to: static constexpr int32_t PLAYER_MAX_SPEED = 20000; Your max speed now = 10000, depending on level and items that you have.
  5. S

    [ProtocolGame::onRecvFirstMessage] RSA Decrypt Failed

    I have working engine and login on 11.46 but i have problem with login to 12.35. Could you please write all possible reasons of this error in console so i can check everything? I've changed this RSA in client but still same error. I type email, password then press login. I can see character and...
  6. S

    Lua Reward chest not working - [TFS 1.2]

    local monster = Game.createMonster(BOSSf, BOSS_POSf) if monster ~= nil then if monster:getType():isRewardBoss() then monster:setReward(true) end end You need to add "monster:setReward(true)" like above when spawning boss with script or command.
  7. S

    TFS 1.X+ Boss reward chest

    local monster = Game.createMonster(BOSSf, BOSS_POSf) if monster ~= nil then if monster:getType():isRewardBoss() then monster:setReward(true) end end You need to add "monster:setReward(true)" like above when spawning boss with script or command.
  8. S

    AAC [Znote AAC 1.5] admin.php

    Give shop points to character is not working. Checking how many points i have is null? post data Print: - Array ( [points_char] => [God] Shadow [points_value] => 7 ) fetching account id from players table Print: - Array ( [id] => 7 ) Fetching existing points from znote_accounts...
  9. S

    Error on Making Accounts

    I have exactly same problem, everything looks fine but account is not created in database. User, password and database name looks fine. I just changed machine.
  10. S

    Windows Gesior Help ! (Image Verification is missing)

    apt-get install php5.6-gd php5.6 = version of your php
  11. S

    Image Verification is missing.

    apt-get install php5.6-gd php5.6 = version of your php
  12. S

    (database issue) failed to establish a connection

    You miss dll files, easiest way to get all dll files is installing microsoft visual studio 2015.
  13. S

    The application was unable to start correctly (0xc000007b).

    You miss dll files. Best way to make it working is installing microsoft visual studio 2015. After installation you will have all dll files you need.
  14. S

    How to make a larger background image

    You probably can't if you don't know how to rewrite client.
  15. S

    Lua TFS 1.2 Glooth axe, sword, club not removing charges

    Does anyone know how to make glooth weapons losing charges (on attack and skill use) and then when it's 0 remove weapon? Because this is not working: items.xml <item id="23549" article="a" name="glooth club"> <attribute key="defense" value="1" /> <attribute key="attack"...
  16. S

    Lua [TFS 1.2] !commands full list of commands from talkactions.xml

    It's working now, cool -.^
  17. S

    Lua [TFS 1.2] !commands full list of commands from talkactions.xml

    function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local list = getFileKeywords([[data\talkations\talkactions.xml]], {{keyword= 'words', index = 'words'}}) local t = {} for i = 1, #list do table.insert(t...
  18. S

    Lua [TFS 1.2] !commands full list of commands from talkactions.xml

    Xeraphus how to use this function? I give it a try and there was an empty result.
Back
Top