Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[HELP] i search userflag

Skilled Illusionist
Joined
Nov 27, 2018
Messages
337
Reaction score
66
i search userflag
"Survivor" -> acc type "2"
and
"Pioner" -> acc type "1"

if such exist
 
Joined
Apr 23, 2013
Messages
1,172
Reaction score
1,795
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
Skilled Illusionist
Joined
Nov 27, 2018
Messages
337
Reaction score
66
not gUserProfile.ProfileData.AccountType i only userflag

maybe create new ?
uint32 flags = 0;
 
Upvote 0
Newbie Spellweaver
Joined
May 27, 2018
Messages
46
Reaction score
10
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
Top