#4

1. Indentation
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);
You cannot format a client message, it has been replaced with:
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);
3. A little bit of a cleanup.
Reply


Messages In This Thread
Rob - by nezo2001 - 05.01.2015, 11:09
Re: Rob - by Banana_Ghost - 05.01.2015, 11:25
Re: Rob - by nezo2001 - 05.01.2015, 11:31
Re: Rob - by Banana_Ghost - 05.01.2015, 11:33
Re: Rob - by nezo2001 - 05.01.2015, 11:35
Re: Rob - by Banana_Ghost - 05.01.2015, 11:37
Re: Rob - by nezo2001 - 05.01.2015, 11:49
Re: Rob - by Banana_Ghost - 05.01.2015, 11:56
Re: Rob - by nezo2001 - 05.01.2015, 12:13
Re: Rob - by Banana_Ghost - 05.01.2015, 12:16

Forum Jump:


Users browsing this thread: 1 Guest(s)