01.03.2013, 18:10
try to this example if it will work.
pawn Код:
if(dialogid == DIALOG_LOGIN)//your login dialog
{
if(response == 0)//no response
{
//Your Message here
}
if(response == 1)//password has entered correctly and ready to spawn!
{
//Loads all account information
SpawnPlayer(playerid);//spawns a player directly
}
return 1;
}