Beispiel #1
0
 /**
  ** FreezeBank
  ** Sets this faction bank frozen or not frozen.
  **
  ** Parameters:
  ** - state: The new state of the bank account
  **/
 public function FreezeBank($state = true)
 {
     $this->bankfreezed = $state;
     if ($this->bankfreezed) {
         /* Unsell faction sellable properties */
         Houses::UnsellFactionRooms($this);
     }
 }