update 0.3

This commit is contained in:
recroom2016
2022-02-20 02:42:04 -05:00
parent 46ff9f37d3
commit 8c8063a058
6 changed files with 55 additions and 75 deletions

View File

@@ -41,6 +41,7 @@ namespace api2018
// Token: 0x0600036A RID: 874 RVA: 0x00009044 File Offset: 0x00007244
public static string loginCache(ulong userid, ulong platformid)
{
int level = int.Parse(File.ReadAllText("SaveData\\Profile\\level.txt"));
string name = File.ReadAllText("SaveData\\Profile\\username.txt");
return JsonConvert.SerializeObject(new logincached
{
@@ -51,7 +52,7 @@ namespace api2018
Username = name,
DisplayName = name,
XP = 9999,
Level = 10,
Level = level,
RegistrationStatus = 2,
Developer = true,
CanReceiveInvites = false,