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

    TFS 1.X+ Hard one

    To change value of any items you are using doItemSetAttribute function. So, If you want check new value, just use getItemAttribute function. Something like this: getItemAttribute(itemEx.uid, ITEM_ATTRIBUTE_ARMOR)
  2. P

    Door max level 20 enter!

    backpos = {x=1000, y=1000, z=7} if getPlayerLevel(cid) > 20 then doTeleportThing(cid, backpos) end Something like this. Or just edit scripts/leveldoor.lua and add condition.
  3. P

    Solved How to get time left to X hour.

    Post the server version.
  4. P

    Solved How to get time left to X hour.

    Use os.time()... Programming in Lua : 22.1
  5. P

    Storage script and advanced time

    something like this: local function changeStorage() player:setStorageValue(12454 , 30) end player:setStorageValue(12454 , 40) addEvent(changeStorage, 1000*40)
  6. P

    Storage script and advanced time

    Why are you want do this by spells? Talkaction is better way.
  7. P

    [FRANCE] Iriana 7.4 - Wayback machine. Let's go back in time! [18:00 Wednesday, 19 July]

    Password contains illegal chars (a-z, A-Z and 0-9 only!) or lenght. Oh, you gotta be kidding me. Why i can't use special characters like dot?
  8. P

    OpenTibia OTClient that unpack map.otbm to .png files - v2.0

    Works Fine! Thanks :)
  9. P

    tfs 1.0 Door with key

    https://otland.net/threads/how-to-doors.138592/ Key need action id 2091, no ID!
  10. P

    Tibia 11 Discussion(+Tutorial how to able to use it)

    Someone edited successfully motdUrl?
  11. P

    TFS 1.3 Close force ModalWindow

    Hi, how to close ModalWindow? I want close Window after x time, but I dont know how close for the player.
  12. P

    (Request) Map Tracker 10.76

    https://github.com/jo3bingham/sharpmaptracker/tree/7caa4362be727384046c770e0b43ac9a1f6bfc02 This version on github.
  13. P

    Compiling XP Gain Rate (client) TFS 1.2

    How you increase exp? Show me your code for double weekend.
  14. P

    Compiling XP Gain Rate (client) TFS 1.2

    Change msg.add<uint16_t>(100); // base xp gain rate to msg.add<uint16_t>(g_config.getNumber(ConfigManager::RATE_EXPERIENCE)*100); // base xp gain rate
  15. P

    Compiling XP Gain Rate (client) TFS 1.2

    But why?
  16. P

    Compiling XP Gain Rate (client) TFS 1.2

    https://github.com/malucooo/Otxserver-Testing/blob/master/src/protocolgamebase.cpp#L201 This is only show player that exp i increase. To double exp you need change https://github.com/malucooo/Otxserver-Testing/blob/master/data/events/scripts/player.lua#L183
  17. P

    Compiling XP Gain Rate (client) TFS 1.2

    Show me your sources.
  18. P

    Compiling XP Gain Rate (client) TFS 1.2

    msg.add<uint16_t>(100); // base xp gain rate msg.add<uint16_t>(0); // xp voucher msg.add<uint16_t>(0); // low level bonus msg.add<uint16_t>(0); // xp boost msg.add<uint16_t>(100); // stamina multiplier (100 = x1.0) Change 0 to you value...
  19. P

    tibia 10.98

    http://www.************/windows.php
  20. P

    TFS 1.2 Reward Chest

    Send me your source pack. I try compile.
Back
Top