$vipepin = $this->cfg->get("VIP"); $vipepin->remove($args[1]); Error: call to a member function remove() on array Help me please
1. Wrong place to post that, please use development (admins and owner be fair! I have been warned 2-3 times for that) 2. $vippin in an array, it's like trying []::set() 3. Try that: PHP: $vipepin = $this->cfg->get("VIP");unset($vipepin[$args[1]]);$this->cfg->set("VIP", $vipepin);$this->cfg->save();