Ejemplo n.º 1
0
 public function Freeze($state = true)
 {
     if ($state == true) {
         $this->freezed = true;
         TogglePlayerControllable($this->id, 0);
     } else {
         $this->freezed = false;
         TogglePlayerControllable($this->id, 1);
     }
 }
Ejemplo n.º 2
0
function unfreeze(Player $player, $numparams, $params)
{
    TogglePlayerControllable($player->id, 1);
}