I have used economy events in my game. The event is logged when a player gets some golds. But in the dashboard there are always non-players type there. what does it mean? What does the Total mean? And more, the data with Players looks abnormal (the estimated value should be thousands), instead the data with non-players is expected.
my code is like below, every log will contain the player information:
AnalyticsService:LogEconomyEvent(
self.player,
Enum.AnalyticsEconomyFlowType.Source,
coinType,
value,
coin,
transType,
itemSku
)
AnalyticsService:LogEconomyEvent(
self.player,
Enum.AnalyticsEconomyFlowType.Sink,
coinType,
spent,
coin,
transType,
itemSku
)