21.02.2011, 17:16
Short explanation:
I'm creating a little "video" made of several textdraws, and I would like those textdraws to switch after some seconds, but I keep failing on that,
For now I created only 1 textdraw and I would like to delay register dialog from popping up, but somehow I can't..
I'm creating a little "video" made of several textdraws, and I would like those textdraws to switch after some seconds, but I keep failing on that,
For now I created only 1 textdraw and I would like to delay register dialog from popping up, but somehow I can't..
pawn Код:
else if (PlayerStep[playerid] == 1)
{
TextDrawShowForPlayer(playerid, Textdraw5);
TextDrawShowForPlayer(playerid, Textdraw101);
TextDrawShowForPlayer(playerid, Textdraw101);
TextDrawShowForPlayer(playerid, Textdraw102);
TextDrawShowForPlayer(playerid, Textdraw103);
TextDrawShowForPlayer(playerid, Textdraw104);
TextDrawShowForPlayer(playerid, Textdraw105);
TextDrawShowForPlayer(playerid, Textdraw106);
TextDrawShowForPlayer(playerid, Textdraw107);
PlayerStep[playerid] = SetTimerEx("PlayerStep", 25000, false, "i", playerid);
PlayerStep[playerid] = 2;
if (PlayerStep[playerid] == 2)
{
ShowPlayerDialog(playerid, 1246, DIALOG_STYLE_INPUT,"Dobrodoљao, Molimo vas da se Registrirate","Napiљite lozinku da bi se Registrirali.","Registriraj","Napusti");
}
}