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

    Linux Client Tibia 10.77 for Linux

    OTClient doesn'r support the new animationsystem properly so i would highly recommend NOT using 10.57+ with OTC
  2. Milice

    mana/hp bar in %

    You cannot do this in anything else but sources, so if you don't want it done in ".cpp" you cannot do it.
  3. Milice

    Linux Client Tibia 10.77 for Linux

    http://clients.************/linux.php?tibia=1077
  4. Milice

    Get player info by socket

    0x01 is just 1, hex to dec works like: (0*16^1)+(1*16^0) = 0 + 1 = 1 in decimal. While 0x is just an idendifier to tell the program that it should interpret it as a hexadecimal integer.
  5. Milice

    Get player info by socket

    0x01 uint16_t(4 byte int) request If(whatever the request info is defined to be) string(length, buffer) 6,Milice Pretty much the basic idea
  6. Milice

    -

    Change the RATE_EXPERIENCE to a double or float in configmanager. Also you'll have to fix a getDouble function
  7. Milice

    Compiling I have multiple versions of Lua installed, but can't select the one i want

    Then i work recommend upgrading tfs and otclient to use 5.3 and remove the old ones
  8. Milice

    Compiling I have multiple versions of Lua installed, but can't select the one i want

    Just uninstall the other versions of lua meanwhile?
  9. Milice

    Solved [Znote AAC Shop System] Shop doesn't give Items wich are bought.

    This can be caused by an entry in the communications table between lua and mysql contains an item which is not of "type" 1. Go and remove everthing with another type and try again
  10. Milice

    Compiling Exhaust on up/down stairs

    toCylinder is the cylinder on which you are moving something to, example if you put a gold coin in your backpack the backpack will be the toCylinder. To get the position of which it would be toCylinder->getPosition() or fromCylinder->getPosition()
  11. Milice

    Compiling Exhaust on up/down stairs

    Try map. Instead of map->
  12. Milice

    Compiling Exhaust on up/down stairs

    Look up item.hasFloorChange or something like that
  13. Milice

    Compiling Exhaust on up/down stairs

    uint32_t key = X; int32_t value; if(player->getStorageValue(key, value) && value == Y) { //do something, or not. Whatever floats your boat. } this should work in TFS 1.x. If it doesn't work on whatever else you might be using it should be pretty much the same thing, just do a search.
  14. Milice

    Windows Testing server engine.

    A simple way to test approx how many u can have would be to check ram/cpu usage, log in with one player and calculate difference. initRam + (playerRam * x) or (sysRam - initRam) / playerRam
  15. Milice

    Command !exp !mana TFS 1.0

    Sure, i see your point. But can you honestly say that you're NOT tired if OTs opening up, earning a couple of bucks and close a week after?
  16. Milice

    Command !exp !mana TFS 1.0

    If you actually read my post you'll see that i said that the code isn't proper, if you can't even google the solution you probably shouldn't open a server in the first place cuz it will probably die as soon as a bug is found.
  17. Milice

    Command !exp !mana TFS 1.0

    Really? It's like a 4 line code. function onSay(player, param) player:sendTextMessage(player:getExperience(), MESSAGE_INFO_DESCR) /player:getMaxMana() return false end Psudo code written on my phone so u'll have to look up the exact function names and param urself. Think u can handle...
  18. Milice

    Lua Exhaust on wearing item

    What Limos said ^. Although if you want to make this global for all the items then a small source edit is the way to go.
  19. Milice

    Programmer Bounty added to grant Object Builder 10.76 Support.

    I'm gonna sit down some night and try and get this done, so just be a bit patient
  20. Milice

    Linux OTItemEditor compilation on Ubuntu

    sudo apt-get install xbuild
Back
Top