Quote:
Originally Posted by tom_jonez
Really saves some time when u use it. Hope it helps.
|
It may save a few seconds writing your mode but it's much slower in execution, you're better off using:
pawn Код:
#define SendError(%0,%1) \
SendClientMessage((%0), 0xAE2020AA, %1)
Used exactly the same as your version but as efficient in execution as the original version.
Remember, overhead of writing something the long way is fine if it speeds your script up, you should never sacrifice ease of coding for script efficiency.