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

  1. Westwol

    OpenTibia Items and outfits images generator for website

    I was trying to export 860 outfits and came across with this error. Edit: it works using the offline version.
  2. Westwol

    C++ Viewer should be able to look at casters items

    Once you re-compile your sources with these changes.
  3. Westwol

    C++ Viewer should be able to look at casters items

    All the changes have to be made in protocolgame.cpp.
  4. Westwol

    C++ Viewer should be able to look at casters items

    https://github.com/mattyx14/otxserver/blob/otxserv2/path_8_6x/sources/protocolgame.cpp#L625 After this line add: case 0x8C: parseLookAt(msg); break; Replace the entire function: void ProtocolGame::parseLookAt(NetworkMessage& msg) { Position pos = msg.getPosition(); uint16_t spriteId =...
  5. Westwol

    C++ Viewer should be able to look at casters items

    If you don't provide full source code there's no way I can help.
  6. Westwol

    C++ Viewer should be able to look at casters items

    Packets sent by spectators are parsed in protocolspectator.cpp. You will have to add the method case 0x8C parseLookAt if you want players be able to look at items, players and monsters. Please provide a link of the source code.
  7. Westwol

    Cast System

    Create an account with the account name: 10 It should work.
  8. Westwol

    [TFS 1.2] Bonus XP for using Client 12, instead of 10

    function Player:onGainExperience(source, exp, rawExp) if not source or source:isPlayer() then return exp end -- Client 12 Bonus Experience local clientVersion = self:getClient().version if clientVersion >= 1200 then exp = exp * 2 end -- Soul...
  9. Westwol

    Cam System 10.98 (TFS 1.3)

    I like the concept of this feature, but as you said, saving replays on memory is overkill. I would save the records in a single .txt file.
  10. Westwol

    Programmer tfs 1.2 function getDamageMap() (bugged)

    Did you make sure to register the creature with the event?
  11. Westwol

    TFS 1.X+ Party Members? How can i count Leader too?

    If you want to access to leader user data: local leader = party:getLeader() if leader then -- do stuff end
  12. Westwol

    Solved items.otb and items.dat

    https://github.com/malucooo/otxserver-new/commit/fb95183eaf63882c49dc23d07275405d707bdc0a
  13. Westwol

    C++ Bless System tfs 1.2

    That is not possible due client limitations.
  14. Westwol

    Programmer Hacking, coding, OTCV8 bots -- SecurizeMe

    I might use your services in the near future. Will let you know.
  15. Westwol

    Full server scripts from 0.3.7 to 1.3

    You can always use compat files if you want to stick with the old scripting style (which is not recommended when it comes to perfomance in long scripts), still there will be some bugs to sort out and yeah it's gonna take some time.
Back
Top