• 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

    when internet player dropped reduce monster damage

    Are we talking when the player goes dark or the server itself? If its for the players u can toy around with the recievePing function
  2. Milice

    [France] Burmourne Evolution 10.82 - ONLINE NOW

    So far seems like a really nice server, probably one of the nicests server owners i know, all the best wishes. Cheers :3
  3. Milice

    Cast system and casino npc

    You dont have time to study, that kinda implies that you dont have time to properly manage your server either then. So i'd say until you've made time, just drop it. I think i speak for everyone here when i say that we are sick and tired of shitty unmaged servers going up, grab some donations...
  4. Milice

    Lua Buy more than one backpack of manas at the time.

    Edited my code, try it again
  5. Milice

    Lua Buy more than one backpack of manas at the time.

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) -- OTServ event handling functions start function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  6. Milice

    Loading custom *.dat, *.spr .

    Change the signature of the spr and dat to the corresponding client's default and it should work
  7. Milice

    Solved Xampp can't see tables error 404

    Happy to hear that ^^ Anyhow, if you have a folder named webdav u should remove it or you'll face a big risk of getting rekt xD Cheers.
  8. Milice

    Solved Xampp can't see tables error 404

    Just replace your old phpmyadmin folder with the new one and it should work. Should be c:\xampp\phpmyadmin
  9. Milice

    Solved Xampp can't see tables error 404

    You might want to just replace ur old phpmyadmin with: https://files.phpmyadmin.net/phpMyAdmin/4.5.1/phpMyAdmin-4.5.1-all-languages.7z
  10. Milice

    Custom client 8.0

    Ofcourse people do, but you should be more specific than "custom client", also people don't like doing to much work for free. And by people i mean greedy fuckers like me
  11. Milice

    C++ hp/mana if i have 65535 i see procent 100

    Yep, return (player->getMana() < 65536 ? true : false); Does the exact thing as if(player->getMana() < 65536) return true; else return false; Would do, it's pretty much just a slimmed down if statement :3
  12. Milice

    Linux Player dies gets lvl 1 and skills 0

    Since it's linux i just have to ask the default question, do you have proper permissions? And also, did you try turning it off and on again?xD
  13. Milice

    C++ hp/mana if i have 65535 i see procent 100

    Yeah, same code but with getMana and such. And yeah, it's coded so if ur hp is less than 65536 it shows ur normal hp
  14. Milice

    C++ hp/mana if i have 65535 i see procent 100

    My bad, replace the & for a :, editing my code. Replace the first 2 adU16 of the code u sent me, third one is for cap so leave that one be
  15. Milice

    C++ hp/mana if i have 65535 i see procent 100

    Try this, wrote it on my phone omw home so don't expect any miracles msg.AddU16(player->getHealth() < 65536 ? player->getHealth() : 100); msg.AddU16(player->getHealth() < 65536 ? (uint32_t)player->getPlayerInfo(PLAYERINFO_MAXHEALTH) : 100);
  16. Milice

    C++ hp/mana if i have 65535 i see procent 100

    No, i'm guessing that's the percentage code? Gimme the old code without percent aswell and i'll fit it for ya
  17. Milice

    C++ hp/mana if i have 65535 i see procent 100

    player->getHealth() > 0xFFFF ? 100 & old_code
  18. Milice

    Linux Player dies gets lvl 1 and skills 0

    Without being able to see your code i'd say noone has even the slightest clue. But i bet it's some source edit or creature script, begin with checking ur creaturescripts related to death and/or login
  19. Milice

    Can't delete Account in db with SQLite Studio (v2.1.2)

    Try removing all the other stuff first, player_depotitems and such
  20. Milice

    Compiling ForgottenServer 1.1(10.79) for Tibia 10.82 - Source edit

    Protocollogin, change premium time from uint16_t(days) to byte(isPremium) and uint32_t(unix timestamp premium until) and before those 2 you put another byte which is account state, just set addByte(0); and you'll be fine unless you plan to use frozen accounts and stuff. And then in protocolgame...
Back
Top