PDA

View Full Version : Accounts guid



Rocky
10th November 2013, 18:38
How i can make admin menu at account? Or account create a guid for player?

Rocky
10th November 2013, 18:42
To explain... Account make guid for player with guid 0 or some admin check for username.

malyczolg
10th November 2013, 21:31
u can edit this :


if(response == "admin")
{
if(self.loginname == "xxxxxx")
{
self openMenu(game["menu_admin"]);
self playLocalSound("acces_g");
}
else
{
self iprintlnbold(self.name + " ^7Y^9ou ^7a^9re ^7n^9ot ^7ADMIN");
self playLocalSound("acces_d");
}
}