Advertisement
kasru

Tower

Jan 24th, 2013
1,823
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //****** Donations are greatly appreciated.  ******
  2. //****** You can donate directly to Jesse through paypal at  https://www.paypal.me/JEtzler  ******
  3.  
  4. static var tower1health : int = 30;
  5. static var tower1destroyed : boolean = false;
  6.  
  7. function Update () {
  8.  
  9.     if(tower1health <= 0) {
  10.  
  11.         Destroy(this.gameObject);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement