Example #1
0
 /**
  ** Default constructor
  **/
 public function __construct($name, $color, $bank, $maxvehicles, $maxmembers, $membercount)
 {
     $this->name = $name;
     $this->color = $color;
     $this->bank = $bank;
     $this->maxvehicles = $maxvehicles;
     $this->maxmembers = $maxmembers;
     $this->membercount = $membercount;
     $this->id = Factions::MakeID($name);
 }