Advertisement
Guest User

Untitled

a guest
May 30th, 2016
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. foreach (TokenStateDropItem item in m_items) {
  2. if (item.Item == PortfolioManager.RESOURCES_EXP)
  3. continue;
  4.  
  5. m_current = item;
  6. KontagentCustomEventVO evtVO = new KontagentCustomEventVO();
  7.  
  8. if (item.Item == PortfolioManager.RESOURCES_REAL) {
  9. evtVO.subtype2 = "currency";
  10. evtVO.subtype3 = "crystals";
  11. } else {
  12. evtVO.subtype2 = GetToolType(item.Item);
  13. evtVO.subtype3 = item.Item;
  14. }
  15. evtVO.eventValue = item.Value;
  16.  
  17. Track(evtVO);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement