player's data question

Options
I'm using PUN on my unity project,
I want to log more than 1 type of game data in my game, such as MONEY, STARs, and CARD IDs.
I only know there's a function called "SetScore();" but I need more.
How can i do?

Comments

  • Gage_IAG
    Options
    Is this data for a player or data for the room as a whole that players can reference?
  • RenaWevin
    Options
    Gage_IAG said:

    Is this data for a player or data for the room as a whole that players can reference?

    Both of them,
    for example my game is in turnbase system, so the room has an integer "Turns";
    and there's a time limit, so the room has integer "Time_left";
    and players use a dice to move and collect money, so players have integers "Dice_point" & "Money"... etc.