18.09.2013, 11:42
like this
i use
i use
pawn Код:
#define MAX_HOUSES 10
CMD:createhouse(playerid,params[])
{
for(new i; i < MAX_HOUSES; i++)
{
//i do the stuff here and finaly i want to send message for player
SendClientMessage(playerid,COLOR_RED,"House: CREATED"); // i just want to send 1 message but it send 10 message in the loop MAX_HOUSES...
}
return 1;
}