if (strcmp(cmd, "/myproperties", true) ==0 ) { new count = 0; for(new i; i < sizeof(PropertyInfo); i++) { if(!strcmp(PropertyInfo[i][Name], GetPlayerNameEx(playerid), true)) { count++; format(string, 256, "Property Name: %s", PropertyInfo[i][Name]); SendClientMessage(playerid, COLOR_RED, string); } } return 1; }
if (strcmp(cmd, "/myproperties", true) ==0 )
{
new count = 0;
for(new i; i < sizeof(PropertyInfo); i++)
{
if(strlen(PropertyInfo[i][Name]) != 0 && !strcmp(PropertyInfo[i][Name], GetPlayerNameEx(playerid), true))
{
count++;
format(string, 256, "Property Name: %s", PropertyInfo[i][Name]);
SendClientMessage(playerid, COLOR_RED, string);
}
}
return 1;
}
Originally Posted by MadeMan
This is because your property owners name is empty.
|
Originally Posted by Eric_
I only own one so far.
|