Exemplo n.º 1
0
 protected override bool giveInner()
 {
     try {
         StoreInventory.GiveVirtualItem(AssociatedItemId, Amount);
     } catch (VirtualItemNotFoundException e) {
         SoomlaUtils.LogError(TAG, "(give) Couldn't find associated itemId: " + AssociatedItemId);
         SoomlaUtils.LogError(TAG, e.Message);
         return(false);
     }
     return(true);
 }