xabbo-scripts/Scripts/UserInfo Export.csx
Administrator 7a548130a3 Move all scripts into Scripts/ subfolder
Keeps the repo root clean - only README.md visible on landing page.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-16 09:49:37 +01:00

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());