Can I tie Players IGN and UID to ifistar

alexlawson

OpenDayZ Rockstar!
HI, just a quick question im just wondering is there's anyway to tie the admin menu to a player uid and there in game name, this is so I and my other admins can play legit on another name and not be accused of cheating :)

Example:
IGN: Admin UID: 123456789 I have admin menu
IGN: Player UID: 123456789 I have no access to the admin menu
 
you could add a check for player name and if true remove admin status, not sure how you would though :)
maybe
Code:
if (playername == name)then{
isAdmin = true;
};

if (playername == name)then{
isAdmin = false;
};

or maybe this
Code:
if ((getplayerUID = " 1111111") && ((name player) = " nonadmin name"))) then{
isAdmin = false;
disable infistar menu (no idea how to )
}

neither tested just ideas to help :)
 
Back
Top