• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Mkalo

    Compiling Unfair Fight 8.60 0.4

    Set a storage with the value of unfairFightReduction and add a check in the login.lua to send the message.
  2. Mkalo

    Watch out for scammer my friends! www.vikingtibia.com.br

    There's no screenshot with the day that the transaction was made. If you could provide that.
  3. Mkalo

    Compiling Unfair Fight 8.60 0.4

    I'm still here on forum. In player.cpp: Change: if(skillLoss) { uint64_t lossExperience = getLostExperience(); removeExperience(lossExperience, false); To: if(skillLoss) { uint64_t lossExperience = getLostExperience(); uint8_t...
  4. Mkalo

    Compiling Library error

    Try putting the directory for boost manually in visual studio.
  5. Mkalo

    Compiling Library error

    You either don't have boost installed or you didn't execute the tfssdk's bat file in the right directory or executed it with no admin permission
  6. Mkalo

    So who is gonna start on the new OpenPvP world (Verlana)?

    Find another one, this BR ain't playing Tibia no more.
  7. Mkalo

    So who is gonna start on the new OpenPvP world (Verlana)?

    zajtin pls no tag usels post tibia dedek
  8. Mkalo

    Lua TFS 1.2 Player:onMoveItem

    if toPosition.x == CONTAINER_POSITION and toPosition.y == CONST_SLOT_NECKLACE then return false end
  9. Mkalo

    XP Gain Rate (Tibia 10.98 client) modify TFS 1.2

    Not with Lua. https://github.com/otland/forgottenserver/blob/master/src/protocolgame.cpp#L2837
  10. Mkalo

    Programmer I search for Programmer for TFS 1.3

    It's sad to see posts like that from brazilians...
  11. Mkalo

    Give a Nickname to User Above!

    Xerapussy
  12. Mkalo

    leaving too thx bois for nice times and joy

    auroraglobal-ot.com
  13. Mkalo

    How the fck do you compile otclient, ive struggled with it for hours!

    You should compile it as release, not debug.
  14. Mkalo

    How to use pagination on containers?

    Can you not quadruple post? You can use the EDIT function. There reason why you cant move it to the container with pagination: You need the flag FLAG_NOLIMIT to move items to paginated containers. (item:moveTo uses this flag). If you wanna add pagination to all containers you have to edit the...
  15. Mkalo

    Team Spectrum RPG [Mappers] [Developers] [Writers]

    Welcome back!
  16. Mkalo

    Help with script

    [.URL='http://.'][/URL]
  17. Mkalo

    Ingame issues (Does not give error on TFS)

    You can fork the TFS and revert the commit that changed 10.77 to 10.98
  18. Mkalo

    Function Performance Optimization

    Yes it is O(log n) (base-2) as looping through every entry is O(n).
  19. Mkalo

    Function Performance Optimization

    Alright as you asked for PERFORMANCE here it is the best solution you can have for this: titles = { {5, "Private First Class"}, {13, "Specialist"}, {25, "Corporal"}, {33, "Sergeant"}, {47, "Staff Sergeant"}, {100, "Sergeant First Class"} } function binarysearch(t, v, l...
Back
Top