Advertisement
Guest User

Untitled

a guest
Dec 7th, 2017
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. PlayFabClientAPI.UpdateUserData(new UpdateUserDataRequest()
  2. {
  3. Data = new Dictionary<string, string>() {
  4. {"Value", "5000"}
  5. }
  6. },
  7. result => Debug.Log("Successfully updated user data"),
  8. error =>
  9. {
  10. Debug.Log("Got error setting user data Ancestor to Arthur");
  11. Debug.Log(error.GenerateErrorReport());
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement