Hi, i have a url to get the score from a user with this user id, so i want to display the scores of the actual user friends, what i do is getting the ids of the friends and then on a for loop i ask for their score with a method
And the method is:
Making server requests in a loop
for(inti=0;i<friends.Count;i++){
}
stringactualId=friends;
StartCoroutine(LoadInfo(actualId));
StartCoroutine(LoadInfo(actualId));
}
And the method is:
IEnumerator LoadInfo(string id)
{...
{...
Making server requests in a loop