first time register show server rules
#3

Quote:
Originally Posted by -Prodigy-
Посмотреть сообщение
There are couple of ways to do this, you can try the following:
pawn Код:
//On top of your script
new bool: gRegistered[MAX_PLAYERS] = {false, ...};

// When they connect
gRegistered[playerid] = false;

// When they register
gRegistered[playerid] = true;

// When they disconnect
gRegistered[playerid] = false;

// OnSpawn
if(gRegistered[playerid])
{
    ShowPlayerDialog(playerid, 1337, DIALOG_STYLE_MSGBOX, "Rules", "Rules", "OK", "Close");
}
+rep working like a charm sweet!
Reply


Messages In This Thread
first time register show server rules - by kbalor - 24.10.2013, 19:55
Re: first time register show server rules - by -Prodigy- - 24.10.2013, 19:57
Re: first time register show server rules - by kbalor - 24.10.2013, 20:18

Forum Jump:


Users browsing this thread: 1 Guest(s)