Guest User

Untitled

a guest
Jan 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. wallet = 20.0
  2. inventory = 0.0
  3. wallet_data = [wallet]
  4. inventory_data = [inventory]
  5. networth_data = [wallet+inventory]
  6. times = [0]
  7.  
  8. for e in events:
  9. if e.type == 'ItemBought':
  10. inventory += e.value
  11. wallet -= e.price
  12. if e.type == 'AuctionSold':
  13. wallet += e.price
  14. inventory -= e.value
  15. wallet_data.append(wallet)
  16. inventory_data.append(inventory)
  17. networth_data.append(wallet+inventory)
  18. times.append(e.time)
Add Comment
Please, Sign In to add comment