Quote:
Originally Posted by [XST]O_x
You can use a very simple definition:
pawn Код:
#define SendMessage SendClientMessage
Means the compiler will replace every SendMessage with SendClientMessage on the compilation and vice versa.
Or simply:
pawn Код:
stock SendMessage(playerid,color,message[]) { return SendClientMessage(playerid,color,message); }
|
Thanks!
What about..? ProxDetector?
stock Prox(Float:radi, playerid, string[],col1,col2,col3,col4,col5)
{
ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5);
}
then?
forward ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5);