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

    Getting tile names from dat file?

    For those interested, I have uploaded the extracted names (JSON format) from Tibia 13.21.13810 here: https://gist.github.com/Decretis/22f9781dad8ae21d9ac78dc62691b585
  2. Decretis

    OpenTibia Remere's Map Editor 3.5

    That flood fill brings back memories about Simeone's Map Editor :rolleyes: btw I know that the autoborder is pure evil and I barely used it myself but does the "border conditions" function work? I'm talking about these lines from grounds.xml <specific> <conditions> <match_border...
  3. Decretis

    Znote acc maker - premium 30 days for new account

    https://github.com/Znote/ZnoteAAC/blob/master/register.php#L113 $register_data = array( 'name' => $_POST['username'], 'password' => $_POST['password'], 'email' => $_POST['email'], 'created' => time(), 'ip' => ip2long(getIP()), 'flag' => $_POST['flag'], 'premdays' => '30' /* Add...
  4. Decretis

    ShovelKnight Free OTClient protection

    Thanks for reply. I managed to start it but as I can see it doesn't support 10.90 version. Is it in further plans? Anyway it looks really great. ERROR: C++ call failed: Client version 1090 not supported stack traceback: [builtin#146]: at 0x5a924a30 [C]: in function 'setClientVersion'...
  5. Decretis

    ShovelKnight Free OTClient protection

    What about Windows 8 and later users? There's no XP mode anymore :/
  6. Decretis

    Solved New players get letter with information! :)

    function onLogin(player) if player:getLastLoginSaved() == 0 then <red's code goes here> end
  7. Decretis

    Tiles not laying properly - Mapping Issue

    Z-order is for auto-border afaik.
  8. Decretis

    Compiling Black Skull Cant Attack PLayers Without Skulls!

    Should be in config.lua. Sth like killsToBlackSkull. What distro are you using?
  9. Decretis

    Compiling Black Skull Cant Attack PLayers Without Skulls!

    http://tibia.wikia.com/wiki/Black_Skull#Black_Skull It is a feature, not a bug.
  10. Decretis

    [Archived] "[Quick Showoff] Post your latest maps"

    Ehh nothing special.
  11. Decretis

    Post your latest work!

    Kitchen Knife aka my first sprite.
  12. Decretis

    Remer's Map Edited lagg

    Try to close minimap window.
  13. Decretis

    Lua Creature subcategories - Remere's

    I am far away from my pc but I think that you should use tilesets.
  14. Decretis

    Set World Type

    Just change the name of second save event.
  15. Decretis

    [Archived] "[Quick Showoff] Post your latest maps"

    First Necro ever :o
  16. Decretis

    TalkAction [TFS 1.1+] /attr - set item attributes!

    Change local t = param:split(" ", 1) in to local t = param:split(";", 1) and use like /attr descr;hello im someone @topic I had to change local tile = position:getTile() to local tile = Tile(position)
  17. Decretis

    Outfitter 10.76 - showing outfits on website

    Maybe this link will be helpful http://datreader.x10.mx/dat_reader.htm
  18. Decretis

    OTClient 10.74 First frame bug?

    Hello, is there any solution to fix this problem? All standing creatures have wrong sprite.
  19. Decretis

    MoveEvent Teleport for a certain vocation only!

    function onStepIn(cid, item, position, fromPosition) if getPlayerVocation(cid) == 6 then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are an Elder Druid, you can pass :) !") else doPlayerSendCancel(cid, "Only Elder Druids can pass from this teleport.") end doTeleportThing(cid...
Back
Top