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

    Programmer Bounty added to grant Object Builder 10.76 Support.

    New version avaliable - Fix 0.3 -> Fixed "replace" function. -> Fixed "export" function for image formats. -> IMPORT OBD function is now backwards compatible with OBD files created with OFFICIAL ObjectBuilder versions. ---> OBDv2 files NOT supported ---> OBD files created with Athenuz...
  2. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    It is super clear in my first post and in the readme that: -- -- -- The problem with Mackan is that he was trying to use the "Replace" function which is not updated, import and export function works perfectly with the compatible versions.
  3. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    I am sorry but I still can't reproduce the bug using your steps, it worked just fine with your steps, no manual fix. http://prntscr.com/a9edbo Maybe you can show me in Skype or something?
  4. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    Did you read the readme? Export PNG or any other type than OBD format is not supported, so that's totally expected. Once again ... can you explain step to step how to reproduce...
  5. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    I can't reproduce this bug with the provided information, can you give me a step to step on how to reproduce and a OBD sample (in private if you want)
  6. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    That's not a bug in files, ObjectBuilder nor the OTClient, that's what happen when you try to open a 4 colors channel sprite (RGBA) file and the client only supports 3 colors (no transparency) are you sure you enabled the transparency support? What OTClient version you using? Normally you...
  7. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    goto latest: https://otland.net/threads/bounty-added-to-grant-object-builder-10-76-support.233227/page-9#post-2331385
  8. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    Latest official Tibia version (and every official Tibia version in general) doesn't have support for transparency. If you want add transparency support you have to open the files without transsparency once, then compile with the transparency option enabled, next time you open it remember to...
  9. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    goto latest https://otland.net/threads/bounty-added-to-grant-object-builder-10-76-support.233227/page-9#post-2331385
  10. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    ofc is possible Links are up again
  11. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    beastn suggested to take the links down while we get the boutysource part done, they will be working again asap
  12. J

    Programmer Bounty added to grant Object Builder 10.76 Support.

    This version allows you to open, edit, and compile being compatible for both tibia client and otclient, it also allows you to export and import OBD files generated with this version is not backwards compatible, you probably should not try to import an OBD generated by another version of this...
  13. J

    onPrepareDeath ?

    function onPrepareDeath(cid, deathList) for _, pid in ipairs(deathList) do if isCreature(pid) and (getCreaturename(pid):lower() == 'mooh\'tah master') then setGlobalStorageValue(3275, 0) doRemoveCreature(pid) doCreatureSay(cid, "ASDASDASDAS.", TALKTYPE_ORANGE_1, false, 0...
  14. J

    onPrepareDeath ?

    did that code broadcasted the correct name?
  15. J

    onPrepareDeath ?

    Try disabling em o.o
  16. J

    onPrepareDeath ?

    There is a chance that kill, death and preparedeath events interfere each other
  17. J

    onPrepareDeath ?

    Mind showing the login and the XML?
  18. J

    onPrepareDeath ?

    Is is registered in login and xml? Also console or GUI?
  19. J

    onPrepareDeath ?

    function onPrepareDeath(cid, lastHitKiller, mostDamageKiller) print(lastHitKiller) return true end If is a number use getCreatureName(lastHitKiller) to compare.
Back
Top