31.07.2009, 06:48
Код:
if(gPlayerAccount[playerid] == 0)
{
SendClientMessage(playerid, TEAM_AZTECAS_COLOR, "SERVER: You must register before logining.");
return 1;
}
if(gPlayerLogged[playerid] == 1)
{
SendClientMessage(playerid, TEAM_AZTECAS_COLOR, "SERVER: You are already logged in.");
return 1;
}
new tmppass[64];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
// What should i need to add? for auto login
return 1;
}
Here is my script like i said in the script What should i need to add for auto login after register

