• 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. Natan Beckman

    Gesior 2012 Error

    classes/account.php In: public $data = array( add public $data = array( 'guild_points' => null In: public static $fields = array( add: public static $fields = array( 'guild_points' search: public function setPremiumPoints($value){$this->data['premium_points'] = $value;} public function...
  2. Natan Beckman

    Solved Monster no hit summon moster

    After several tests. I Solved: else if(target->getMonster()) { if(attacker->getMonster() && !target->getPlayerMaster() && !attacker->getPlayerMaster()) return RET_YOUMAYNOTATTACKTHISCREATURE; if(!target->isAttackable()) return...
  3. Natan Beckman

    Solved Monster no hit summon moster

    Hello Summ The monster attack monster summon the monster summon no attack monster =/
  4. Natan Beckman

    Stian's Dev-cpp repack 0.2 (with crypto++ and 64bit) !

    Stian's Repack Dev-Cpp Stian's Repack Dev-Cpp 0.2, 64bit
  5. Natan Beckman

    Fix/Patch Mysql++Connector - RAM lack

    Thanks a lot! :D
  6. Natan Beckman

    TalkAction ShopGuild Points 100% add in player offline.

    And add: public function setGuildPoints($value){$this->data['guild_points'] = $value;} public function getGuildPoints(){return $this->data['guild_points'];}
  7. Natan Beckman

    Linux Network DDoS

    I solved, thanks for all who tried to help!
  8. Natan Beckman

    Linux Network DDoS

    My server received a DDoS attack. Much of the players took one kick. And the others were unable to get into the OT. I wonder what can I do to protect my server against such event. My dedicated is in OVH.us and DDoS Protection: CSF DDoS Deflate Mod_evasive look attack: This much larger...
  9. Natan Beckman

    Compiling Can anyone explain me the difference between

    Can anyone explain me the difference between: # Config for 64Bits #DEBUG_FLAGS="-O0 -march=native -fomit-frame-pointer" #DEBUG_FLAGS="-O3 -march=native -fomit-frame-pointer" O0 or O3? I use Linux Ubuntu 13 64 bits
  10. Natan Beckman

    Solved Monster no hit summon moster

    Perfect Summ you is the best! Thanks a lot.
  11. Natan Beckman

    Solved Monster no hit summon moster

    I ADD Summ, no solved: else if(target->getMonster()) { if(attacker->getMonster() && !target->getPlayerMaster()) return RET_YOUMAYNOTATTACKTHISCREATURE; if(attacker->getMonster()) return RET_YOUMAYNOTATTACKTHISCREATURE...
  12. Natan Beckman

    Solved Monster no hit summon moster

    No solved :C i tested all
  13. Natan Beckman

    Solved Monster no hit summon moster

    Summ Sorry, i'm newbie how i add code? Look: else if(target->getMonster()) { if(attacker->getMonster() && !attacker->getPlayerMaster()) return RET_YOUMAYNOTATTACKTHISCREATURE; if(attacker->getMonster()) return...
  14. Natan Beckman

    Solved Monster no hit summon moster

    The monster no attack summon moster: Help Code: else if(target->getMonster()) { if(attacker->getMonster()) return RET_YOUMAYNOTATTACKTHISCREATURE; if(!target->isAttackable()) return RET_YOUMAYNOTATTACKTHISCREATURE; const Player*...
  15. Natan Beckman

    exhaust/disable capacity in trade window? WILL PAY FOR SOLUTION

    in npc.lua search: local exhaustionInSeconds = 1 local storage = 45814 if(exhaustion.check(cid, storage) == true) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You cant buy it so fast.") return 0 end change for: local exhaustionInSeconds = 0 and...
Back
Top