26.11.2015, 07:32
You can't use '==' in strings, use strcmp.
and your LandOwner variable should be like that
PHP код:
new pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pName, sizeof(pName));
if(!strcmp(LandInfo[land][landOwner], pName))
{
// player names matches.
}
PHP код:
LandOwner[MAX_PLAYER_NAME]