25.07.2012, 10:39
You do not have CheckPassword defined.
Define it, like so:
Pretty sure this is the context you are trying to do it in. If the password equals the correct password, it will return 1, which will continue with the if statement.
Define it, like so:
pawn Код:
stock CheckPassword(playerid, password)
{
if(!strcmp(password, "Thisisthepasswordyouwanttobecorrect", false))
{
return true;
}
return false;
}