04.01.2009, 05:08
Quote:
Originally Posted by Zezombia
Your getting playerid errors because it's not defined. Change the callback to:
pawn Code:
See if that helps, then report back. |
but it still doesn't returns any message:
pawn Code:
public OnPlayerConnect(playerid)
{
new file[256], pname[MAX_PLAYER_NAME];
GetPlayerName(playerid, pname, sizeof(pname));
format(file, sizeof(file), "/applies/%s.ini", pname);
if(dini_Exists(file)) return SendClientMessage(playerid, red, "You have already made your application!");
if (!fexist(file)) return SendClientMessage(playerid,green,"Wanna apply for Administrator ? Type /aa for a IN-GAME Admin Apply!!");
return 1;
}
i don't know much about dini, dudb etc.