05.01.2015, 11:33
1. Indentation
2.
You cannot format a client message, it has been replaced with:
3. A little bit of a cleanup.
2.
pawn Код:
format(string,sizeof(string),"%s has robbed %s",name, name2);
SendClientMessage(playerid, COLOR_SILVER, "You robbed %d", money);
SendClientMessage(targetid, COLOR_SILVER, "You got robbed and lost %d", money/10);
SendClientMessageToAll(COLOR_GREEN,string);
pawn Код:
format(string,sizeof(string),"%s has robbed %s",name, name2);
SendClientMessageToAll(COLOR_GREEN,string);
format(string,sizeof(string),"You robbed $%d", money/10);
SendClientMessage(playerid,COLOR_SILVER,string);
format(string,sizeof(string),"You got robbed and lost $%d", money/10);
SendClientMessage(targetid,COLOR_SILVER,string);