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

    AAC [MyAAC] - 3 Problems with Storages and Guilds.

    I'm trying to show rebirths on highscores box and characters page on MyAAC (Last version). {% set rows = rows + 1 %} <tr bgcolor="{{ getStyle(rows) }}"> <td>Resets:</td> <td>{{ player.getStorage(14310) }}</td> </tr> On characters page i've tried this, but no success. Always blank. I found this...
  2. DukeeH

    Windows Tibia CLient Generator (860)

    Download files from github. Clean your www folder on xampp/uniserver (web server you use) Move that files there, and open your website. (localhost)
  3. DukeeH

    TFS 1.X+ Boss Room

    Because player storage 9111 is probably -1. The script is working, message and teleport from pos looks like working. Are you sure the player have that storage? You can print it on script, or check with admin.
  4. DukeeH

    Mysql Password (.my.cnf)

    I'm testing the server and re-learning how to use everything on linux after a few years... I've read the wiki https://github.com/DevelopersPL/otshosting-provisioning/wiki/Where-is-what-important-files-and-directories But on my server there's no file .my.cnf with MySQL client config that...
  5. DukeeH

    Lua Bosses drop loot on the ground.

    Thanks for your help, but is it possible that it counts the loot on the monster body? Get what inside the container and drop from -4 to +4 xy from monser body. And the if name could be used for 4 or 5 monsters?
  6. DukeeH

    Lua Bosses drop loot on the ground.

    Hello, I'm using TFS 0.3.7/OTX. I'm trying to make a script that drops bosses loot on the ground. It probably needs to be onkill and should work for 4 or 5 monsters (table on the start). It can be a math random range of -4 to +4 x and y from the monster, so it would be around him. And...
  7. DukeeH

    C++ Rings/boots dossnt regain mana & hp after relog

    if getCreatureCondition(cid, CONDITION_OUTFIT) then doRemoveCondition(cid, CONDITION_OUTFIT) end
  8. DukeeH

    C++ Rings/boots dossnt regain mana & hp after relog

    Normally this problem has to do with Rush/Desert war event, or some other event that they use: doRemoveConditions(cid, false) Search for this function on events or even scripts and delete it, or change for another one, that removes the specific condition.
  9. DukeeH

    AAC Gesior 2012 Highscore Page

    ?? That gesior is global one, but what I linked to you is highscores page, just change it for yours. It will keep your site how it is, and fix the highscores, since the page you have is not compatible with your server.
  10. DukeeH

    can't use action item "you cannot use this object"

    Attribute useable on otb editor? If you have no errors on the script, it's the only option.
  11. DukeeH

    AAC Gesior 2012 Highscore Page

    Just download the right gesior... gesior/Gesior2012 This is for 0.4 3703+
  12. DukeeH

    MyOTClient

    Thanks, great and simple way to do new custom clients.
  13. DukeeH

    Making "FREE" GFX works

    https://www.hdwallpaper.nu/wp-content/uploads/2017/09/suits-5-1024x576.jpg (the two in the middle) idk where to find good pics, but anything suits (tv show) related would be great. what fits best for you, thanks once again.
  14. DukeeH

    Making "FREE" GFX works

    Image size 300x300, avatar and otland banner size, for sign Text you want DukeeH Background image (if you dont have one i can try to find for you): Suits (TV Show) Can be, Mike/Harvey or both. Colors What fits, I think Blue, Black/White. You pick Format Png, if you can give psd I'd thank you.
  15. DukeeH

    AAC MyAAC - Highscores Box

    edit. -- SOLVED: Searched alot and found out about using position: absolute / position: relative. Did some testing and fixing and got it to work.
  16. DukeeH

    AAC MyAAC - Highscores Box

    Up
  17. DukeeH

    TFS 0.X Teleporting after a few seconds

    Understood, @Xikini told me after I made this, to prevent some error if player dies/logouts. Thanks (:
  18. DukeeH

    TFS 0.X Teleporting after a few seconds

    function onUse(cid, item, fromPosition, itemEx, toPosition) if(itemEx.itemid == XXXX) then doSendMagicEffect(toPosition, CONST_ME_POFF) addEvent(doTeleportThing, 1000 * 15, cid, {x = 100, y = 100, z = 7}) return true else doPlayerSendCancel(cid, "You need...
  19. DukeeH

    Rebirth on Highscores

    doAddRebirth and getPlayerRebirth Those functions are not on the script, they're probably on your libs folder, check 050-functions for it.
  20. DukeeH

    AAC MyAAC - Highscores Box

    @Bogart @slawkens No, it didn't. Screenshot I want to move the text up and keep the outfit there, it seems like the text always stays on the bottom of the image.
Back
Top