question

Terry Papamarkou avatar image
Terry Papamarkou asked

virtual currency not recieved by player

Hi,

I add virtual currency to one of my players through playfab backend, it updates their balance inside of playfab but the player does not recieve it on their ios device. However, when i test this process on myself i do recieve it. Players are successfully loading their currency balance from playfab. Is it because my title is still in development mode?

Player Inventory
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
Neils Shi avatar image
Neils Shi answered

Titles in Development mode will not prevent players from receiving virtual currency. For more info about limits on development mode titles, please refer to Development mode - PlayFab | Microsoft Learn (https://learn.microsoft.com/en-us/gaming/playfab/features/pricing/development-mode#limits) . We suggest that you may use data explorer (https://learn.microsoft.com/en-us/gaming/playfab/data-analytics/learn-data/data-explorer/getting-started-with-data-explorer-advanced) to query related events to check whether virtual currency is successfully granted to the players. You can refer to the following example query expression:

 ['events.all']
 | where FullName_Name == 'player_virtual_currency_balance_changed'
 | where Entity_Id == ' the entity id of the player who did not receive virtual currency '
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.