Keeps the repo root clean - only README.md visible on landing page. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
750 B
C#
21 lines
750 B
C#
StringBuilder allProfileInfo = new StringBuilder();
|
|
|
|
foreach (var user1 in Room.Users)
|
|
{
|
|
var profileInfo = GetProfile(user1.Id);
|
|
await Task.Delay(500);
|
|
|
|
var ds = @$"Name: '{profileInfo.Name}', "
|
|
+ $"Motto: '{profileInfo.Motto}', "
|
|
+ $"FriendAmount: '{profileInfo.Friends}', "
|
|
+ $"ActivityPoints: '{profileInfo.ActivityPoints}', "
|
|
+ $"AccCreated on: '{profileInfo.Created}', "
|
|
+ $"IsFriendwithme: '{profileInfo.IsFriend}', "
|
|
+ $"LastLogin: '{profileInfo.LastLogin}', "
|
|
+ $"AccountLevel: '{profileInfo.Level}', "
|
|
+ $"StargemsAmount: '{profileInfo.StarGems}', ";
|
|
|
|
allProfileInfo.Append(ds);
|
|
}
|
|
Log(allProfileInfo.ToString());
|