1. The forums will be archived and moved to a read only mode in about 2 weeks (mid march).

Solved Advanced kits effects broke, help please!

Discussion in 'Help' started by artulloss, Mar 13, 2018.

  1. artulloss

    artulloss Witch

    Messages:
    63
    GitHub:
    artulloss
    [03:30:30] [Server thread/CRITICAL]: Unhandled exception executing command 'kit Tank+' in kit: Call to undefined method pocketmine\entity\Effect::setDuration()
    [03:30:30] [Server thread/CRITICAL]: Error: "Call to undefined method pocketmine\entity\Effect::setDuration()" (EXCEPTION) in "AdvancedKits.master/src/AdvancedKits/Kit" at line 121

    I ran some checks with IDE and everything is fine, I'm using yesterdays build of pocketmine with a couple unrelated edits and I added in clearing to advanced kits.

    Please help my server is broke because of this
    Here is the php file with the error

    <?php
    namespace AdvancedKits;
    use pocketmine\command\ConsoleCommandSender;
    use pocketmine\entity\Effect;
    use pocketmine\item\enchantment\Enchantment;
    use pocketmine\item\enchantment\EnchantmentInstance;
    use pocketmine\item\Item;
    use pocketmine\Player;
    use PiggyCustomEnchants\CustomEnchants\CustomEnchants;
    class Kit{
    private $ak;
    private $data;
    private $name;
    private $cost = 0;
    private $coolDown;
    private $coolDowns = [];
    public function __construct(Main $ak, array $data, string $name){
    $this->ak = $ak;
    $this->data = $data;
    $this->name = $name;
    $this->coolDown = $this->getCoolDownMinutes();
    if(isset($this->data["money"]) and $this->data["money"] != 0){
    $this->cost = (int) $this->data["money"];
    }
    if(file_exists($this->ak->getDataFolder() . "cooldowns/" . strtolower($this->name) . ".sl")){
    $this->coolDowns = unserialize(file_get_contents($this->ak->getDataFolder() . "cooldowns/" . strtolower($this->name) . ".sl"));
    }
    }
    public function getName() : string{
    return $this->name;
    }
    public function handleRequest(Player $player) : bool{
    if($this->testPermission($player)){
    if(!isset($this->coolDowns[strtolower($player->getName())])){
    if(!($this->ak->getConfig()->get("one-kit-per-life") and isset($this->ak->hasKit[strtolower($player->getName())]))){
    if($this->cost){
    if($this->ak->economy->grantKit($player, $this->cost)){
    $this->addTo($player);
    $player->sendMessage($this->ak->langManager->getTranslation("sel-kit", $this->name));
    return true;
    }else{
    $player->sendMessage($this->ak->langManager->getTranslation("cant-afford", $this->name));
    }
    }else{
    $this->addTo($player);
    $player->sendMessage($this->ak->langManager->getTranslation("sel-kit", $this->name));
    return true;
    }
    }else{
    $player->sendMessage($this->ak->langManager->getTranslation("one-per-life"));
    }
    }else{
    $player->sendMessage($this->ak->langManager->getTranslation("cooldown1", $this->name));
    $player->sendMessage($this->ak->langManager->getTranslation("cooldown2", $this->getCoolDownLeft($player)));
    }
    }else{
    $player->sendMessage($this->ak->langManager->getTranslation("no-perm", $this->name));
    }
    return false;
    }
    public function addTo(Player $player){
    $player->removeAllEffects();
    $inv = $player->getInventory();
    $armorInv = $player->getArmorInventory();
    $inv->clearAll();
    $player->getCraftingGrid()->clearAll();
    if(count($inv->getContents()) + count($this->data["items"]) > $inv->getSize()){
    $player->sendMessage($this->ak->langManager->getTranslation("inventory-error"));
    return;
    }
    foreach($this->data["items"] as $itemString){
    $inv->setItem($inv->firstEmpty(), $i = $this->loadItem(...explode(":", $itemString)));
    }
    isset($this->data["helmet"]) and $armorInv->setHelmet($this->loadItem(...explode(":", $this->data["helmet"])));
    isset($this->data["chestplate"]) and $armorInv->setChestplate($this->loadItem(...explode(":", $this->data["chestplate"])));
    isset($this->data["leggings"]) and $armorInv->setLeggings($this->loadItem(...explode(":", $this->data["leggings"])));
    isset($this->data["boots"]) and $armorInv->setBoots($this->loadItem(...explode(":", $this->data["boots"])));
    if(isset($this->data["effects"])){
    foreach($this->data["effects"] as $effectString){
    $e = $this->loadEffect(...explode(":", $effectString));
    if($e !== null){
    $player->addEffect($e);
    }
    }
    }
    if(isset($this->data["commands"]) and is_array($this->data["commands"])){
    foreach($this->data["commands"] as $cmd){
    $this->ak->getServer()->dispatchCommand(new ConsoleCommandSender(), str_replace("{player}", $player->getName(), $cmd));
    }
    }
    if($this->coolDown){
    $this->coolDowns[strtolower($player->getName())] = $this->coolDown;
    }
    $this->ak->hasKit[strtolower($player->getName())] = $this;
    }
    private function loadItem(int $id = 0, int $damage = 0, int $count = 1, string $name = "default", ...$enchantments) : Item{
    $item = Item::get($id, $damage, $count);
    if(strtolower($name) !== "default"){
    $item->setCustomName($name);
    }
    $ench = null;
    foreach($enchantments as $key => $name_level){
    if($key % 2 === 0){ //Name expected
    $ench = Enchantment::getEnchantmentByName((string) $name_level);
    if($ench === null){
    $ench = CustomEnchants::getEnchantmentByName((string) $name_level);
    }
    }elseif($ench !== null){
    if($this->ak->piggyEnchants !== null && $ench instanceof CustomEnchants){
    $this->ak->piggyEnchants->addEnchantment($item, $ench->getName(), (int) $name_level);
    }else{
    $item->addEnchantment(new EnchantmentInstance($ench, (int) $name_level));
    }
    }
    }
    return $item;
    }
    public function loadEffect(string $name = "INVALID", int $seconds = 60, int $amplifier = 1){
    $e = Effect::getEffectByName($name);
    if($e !== null){
    return $e->setDuration($seconds * 20)->setAmplifier($amplifier);
    }
    return null;
    }
    private function getCoolDownMinutes() : int{
    $min = 0;
    if(isset($this->data["cooldown"]["minutes"])){
    $min += (int) $this->data["cooldown"]["minutes"];
    }
    if(isset($this->data["cooldown"]["hours"])){
    $min += (int) $this->data["cooldown"]["hours"] * 60;
    }
    return $min;
    }
    private function getCoolDownLeft(Player $player) : string{
    if(($minutes = $this->coolDowns[strtolower($player->getName())]) < 60){
    return $this->ak->langManager->getTranslation("cooldown-format1", $minutes);
    }
    if(($modulo = $minutes % 60) !== 0){
    return $this->ak->langManager->getTranslation("cooldown-format2", floor($minutes / 60), $modulo);
    }
    return $this->ak->langManager->getTranslation("cooldown-format3", $minutes / 60);
    }
    public function processCoolDown(){
    foreach($this->coolDowns as $player => $min){
    $this->coolDowns[$player] -= 1;
    if($this->coolDowns[$player] <= 0){
    unset($this->coolDowns[$player]);
    }
    }
    }
    private function testPermission(Player $player) : bool{
    return $this->ak->permManager ? $player->hasPermission("advancedkits." . strtolower($this->name)) : (
    (isset($this->data["users"]) ? in_array(strtolower($player->getName()), $this->data["users"]) : true)
    and
    (isset($this->data["worlds"]) ? in_array(strtolower($player->getLevel()->getName()), $this->data["worlds"]) : true)
    );
    }
    public function save(){
    if(count($this->coolDowns) > 0){
    file_put_contents($this->ak->getDataFolder() . "cooldowns/" . strtolower($this->name) . ".sl", serialize($this->coolDowns));
    }
    }
    }

    And here is one of the kits with the error(it occurs with every kit that uses effects)

    Tank+:
    items:
    - '286:0:1:Gax Axe:unbreaking:100'
    - '322:0:6'
    - '438:22:1'
    - '438:22:1'
    - '438:22:1'
    - '438:22:1'
    - '438:22:1'
    - '438:22:1'
    - '438:22:1'
    helmet: '302:0:1:DEFAULT:unbreaking:10'
    chestplate: '311:0:1:DEFAULT:unbreaking:10'
    leggings: '312:0:1:DEFAULT:unbreaking:10'
    boots: '313:0:1:DEFAULT:unbreaking:10'
    commands:
    - 'tell {player} Tank+ Kit claimed!'
    cooldown:
    hours: 0
    minutes: 0
    effects:
    - "slowness:9999:1"
    worlds:
    - "KitPvP"
     
  2. Kenn Fatt

    Kenn Fatt Slime

    Messages:
    82
    GitHub:
    kennfatt
  3. Kenn Fatt

    Kenn Fatt Slime

    Messages:
    82
    GitHub:
    kennfatt
    As you can see here (I took it from yours):
    PHP:
    public function loadEffect(string $name "INVALID"int $seconds 60int $amplifier 1){
    $e Effect::getEffectByName($name);
    if(
    $e !== null){
    return 
    $e->setDuration($seconds 20)->setAmplifier($amplifier);
    }
    you should have to change:
    PHP:
    $e Effect::getEffectByName($name);
    to:
    PHP:
    $effect = new EffectInstance(Effect::getEffectByName($name));

    /** @var Player $player */
    $player->addEffect($effect); // apply it into player
     
    artulloss likes this.
  4. artulloss

    artulloss Witch

    Messages:
    63
    GitHub:
    artulloss
    thank you I will try :D
     
  5. artulloss

    artulloss Witch

    Messages:
    63
    GitHub:
    artulloss
    Still broken :(
     
  6. Kenn Fatt

    Kenn Fatt Slime

    Messages:
    82
    GitHub:
    kennfatt
    It works for me, any error or backtrace?

    I thought you also put:
    PHP:
    /** @var Player $player */
    $player->addEffect($effect);
    If yes, remove that line and try again
     
  7. artulloss

    artulloss Witch

    Messages:
    63
    GitHub:
    artulloss
    [18:59:38] [Server thread/CRITICAL]: Unhandled exception executing command 'kit Combo' in kit: Call to undefined method AdvancedKits\Kit::addTo()
    [18:59:38] [Server thread/CRITICAL]: Error: "Call to undefined method AdvancedKits\Kit::addTo()" (EXCEPTION) in "AdvancedKits-master/src/AdvancedKits/Kit" at line 52
     
  8. Awzaw

    Awzaw Zombie Pigman Poggit Admin

    Messages:
    726
    GitHub:
    awzaw
    Please try the latest dev version.

    Which version are you using, and where did you get it from?
     
    HimbeersaftLP and artulloss like this.
  9. Ace87

    Ace87 Creeper

    Messages:
    1
    GitHub:
    ace87mt
    or did you do it right?2 years old im not expecting a reply lol
     
    MulkiGT likes this.
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.