The FTB Forum is now read-only, and is here as an archive.
To participate in our community discussions, please join our Discord! https://ftb.team/discord
72 Is this when I send out Aggron and have her eat your knives again, or are you guys just going to throw my attempt at comic relief out the window like you did last time?
78 to be honest, it shouldn't be hard to implement.
I need to load all the categories (which I already have a function for)
and give them a button to remove them.
82
class human {
private name;
private isAlive=true;
public function setName($name){
$this->name=$name;
}
public function kill(){
$this->isAlive=false;
}
}
$sgbros1=new human();
$sgbros1->setName("sgbros1");
$sgbros1->kill();