14.08.2012, 12:43
So, there isn't a huge difference, because if we do something as that:
pawn Код:
stock SendMsg(playerid, const msg[])
{
new info[128];
format(info,128,"INFO: %s",msg);
SendClientMessage(playerid,-1,info);
return 1;
}
//I think it's the same as this:
stock SendMsg(playerid, msg[])
{
new info[128];
format(info,128,"INFO: %s",msg);
SendClientMessage(playerid,-1,info);
return 1;
}