Good vs. Evil

  • FTB will be shutting down this forum by the end of July. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Someone Else 37

Forum Addict
Feb 10, 2013
1,876
1,440
168
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?
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
76 and.....at school with nothing to do for school
*looks at trello board*
oh, shit I totally forgot that thing
*facepalms his head to oblivion*
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
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.
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
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();