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

    [8.6] TFS 1.5 Baiak, Mount and Modal widow.

    Nevermind, noticed you wrote otclientv8 now, downloaded it and compiled it and now it works perfectly. Thanks alot :)
  2. Niioxce

    [8.6] TFS 1.5 Baiak, Mount and Modal widow.

    Awesome release, but i do have some problems. First is that when i use your 860 pack otclient tells me that i need to use a valid .dat file. Spr works i think. After i use the original tibia.dat file i can login to a black screen. Compiling Otclient also gives me alot of messages about...
  3. Niioxce

    AAC Geisor Top players

    Fixed it by just doing this. <?PHP $divid = 31; $number_of_people = 0; $skills = $SQL->query('SELECT name,online,level,experience,vocation,promotion FROM players WHERE players.deleted = 0 AND players.group_id NOT IN...
  4. Niioxce

    AAC Geisor Top players

    Didnt seem to work. I tried changing from $player to $skill instead and that also didnt seem to work.
  5. Niioxce

    AAC Geisor Top players

    Hmm, i'm pretty bad at php and i can't even seem to understand my own script lmao. Could you break it down for me?
  6. Niioxce

    AAC Geisor Top players

    Anyone know how i can turn down the numbers? So it's in 4 digits and M unit. Php code for topexperience <div class="Box"> <div class="TopExperience"> </div> <?PHP $divid = 31...
  7. Niioxce

    Webdesigner Custom made geisor layout!

    Hello, i'm currently looking for a webdesigner who can make me a website layout. I'm paying for your needs. Geisor acc 2012, contact me here or via discord niioxce#2323
  8. Niioxce

    Fast attack on tfs 0.3.7

    Apparantly attacking doesnt seem to increase while i move. It also seem to stop at somepoint (if i move fast) and when i use runes. I've looked for many threads but i havent found one yet that works nor is for my desto. Found this Fix #1319 by Mkalo · Pull Request #2109 · otland/forgottenserver...
  9. Niioxce

    TFS 0.X Edit Max Level in tfs 0.2

    Literally just change this formula return ((50 * x / 3 - 100) * x + 850 / 3) * x - 200;
  10. Niioxce

    AAC Geisor 2012 0.3.6 connection problems

    No im not using a proxy, i should be able to connect to my own ip even locally as i have done it before. Welp,
  11. Niioxce

    AAC Geisor 2012 0.3.6 connection problems

    That makes sense. But i still don't know why i can't connect to my website with my ip. Do geisor's acc grab ip from config.lua?
  12. Niioxce

    AAC Geisor 2012 0.3.6 connection problems

    Removed port 3306, my install.txt file is empty. But if i insert my ip into it it just tells me that my ip is ::1. It works fine when i put in ::1 in install.txt but it's weird that it cant grab my actual ip.
  13. Niioxce

    AAC Geisor 2012 0.3.6 connection problems

    I have a problem where i only can connect via localhost. I can't seem to find where i can change ip so i can connect via my ip. I've port forwarded 80, 3306, 7171 and 7172 with both protocols. I've changed my ip in config.lua in my server file to my ip adress. Also when i tried to install it...
  14. Niioxce

    Showhealingdamage on uh/mr

    Fixed it myself. Close thread.
  15. Niioxce

    Solved Remove skull system

    Close thread. Found it myself.
  16. Niioxce

    Solved Hp/Mana % Bug

    Yes, this worked. Thank you so much MaRo!
  17. Niioxce

    Solved Hp/Mana % Bug

    Okay so, it kinda works again. The ONLY problem there is that it goes to 0 when im attacked or use a spell (but thats the mana). I don't see 65,535 anymore atleast Imgur GIF Seems like it can either only be 0 or 100
  18. Niioxce

    Solved Hp/Mana % Bug

    Now it's even more weird Imgur GIF if (player->getPlayerInfo(PLAYERINFO_MAXMANA)) { msg->put<uint16_t>(player->getPlayerInfo(PLAYERINFO_MANA) * 100 / player->getPlayerInfo(PLAYERINFO_MAXMANA)); msg->put<uint16_t>(100); } else { msg->put<uint16_t>(0)...
  19. Niioxce

    Solved Hp/Mana % Bug

    Nope, with that code i posted above it is exactly as i described it in the original post.
  20. Niioxce

    Solved Hp/Mana % Bug

    if (player->getPlayerInfo(PLAYERINFO_MAXHEALTH) > 0) { msg->put<uint16_t>(uint16_t(player->getHealth() * 100 / player->getPlayerInfo(PLAYERINFO_MAXHEALTH))); msg->put<uint16_t>(100); } else { msg->put<uint16_t>(0); msg->put<uint16_t>(0); }...
Back
Top