pocketmine\Player::setExp PHP Method

setExp() public method

Deprecation: Use Human::setTotalXp($xp), this method will be removed in the future.
public setExp ( integer $exp )
$exp integer
    public function setExp(int $exp)
    {
        trigger_error("This method is deprecated, do not use it", E_USER_DEPRECATED);
        return $this->setTotalXp($exp);
    }
Player