Advertisement
kasru

PlayerStats RPC

Mar 12th, 2013
2,205
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. var curHp : float = 100;
  5. var maxHp : float = 100;
  6.  
  7. function Update () {
  8.  
  9.     if(curHp <= 0) {
  10.         Network.Destroy(this.gameObject);
  11.     }
  12. }
  13.  
  14. @RPC
  15. function ApplyDamage(damage: int){
  16.     curHp -= damage;
  17.     Debug.Log("hit player " + curHp);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement