[HELP] i search userflag

UserProfile.ProfileData.isDevAccount // Dev
gUserProfile.ProfileData.AccountType == 2 // Survivor
gUserProfile.ProfileData.AccountType == 0 // Legend

New Source infestation perm.
ProfileData.AccountType >= 20 && ProfileData.AccountType <= 29; // Trial Account
ProfileData.AccountType >= 50 && ProfileData.AccountType <= 59; // Russian Account

Code:
uint32_t    TimePlayed;    // account time played (not char!), in secondsorif(gdata->info.channel != 4 && !(gdata->info.flags & GBGameInfo::SFLAGS_TrialsAllowed) && gUserProfile.IsTrialAccount())
 
Upvote 0
Search in WarZ_Server:

Search: (if you want see tab list flags)
Code:
// report joined player name to all users


and this

Search: (if you want see tab list flags)
Code:
// report list of current players to user, including us


WarZ.sln:


Search:(this is for chat flags)
Code:
uint32_t flags = 0;

and this:

Search:(this is for chat flags)
Code:
// set userflag
 
Upvote 0
Back