Guest User

Untitled

a guest
Jun 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public var items : System.Collections.HashSet.<System.String>;
  2. public var inv : System.Collections.HashSet.<System.String>;
  3.  
  4. function Start() {
  5.         items = new System.Collections.HashSet.<System.String>();
  6.         inv = new System.Collections.HashSet.<System.String>();
  7.  
  8.     items.Add("Apple");
  9.         items.Add("Condom");
  10.         items.Add("Bottle of Vodka");
  11.         items.Add(".50 Hand Gun");
  12.        // ^-- a good night out
  13. }
  14.  
  15. function AddItem() {
  16.     if(items.Contains("Apple") && !inv.Contains("Apple"))
  17.         {
  18.              items.Remove("Apple");
  19.              inv.Add("Apple");
  20.         }
  21. }
Add Comment
Please, Sign In to add comment