12.08.2010, 08:41
Hey! i have problems with house systhem! - By Antironix
and i have these erors:
Код:
stock GetHouseStats(playerid, hid)
{
new str2[256];
format(str2, sizeof(str2), "Owned by: %s", hInfo[hid][Name]);
GameTextForPlayer(playerid, c_y, str2, 3000, 4); // Error Line because i want to change SendClientMessage to Game Text for player!
if(strcmp(hInfo[hid][Renter],"ForRent",true))
{
format(str2, sizeof(str2), "Rented by: %s", hInfo[hid][Renter]);
SendClientMessage(playerid, c_y, str2);
}
format(str2,sizeof(str2),"Cost: %i",hInfo[hid][Cost]);
SendClientMessage(playerid, c_y, str2);
}
Код:
error 035: argument type mismatch (argument 2)


?