06.11.2011, 08:13
Here is a little tip for future coding. Defines are quicker than stocks. When you have something like the Kill stock function, you can easily make it into a define which would use less resources.
Can go into
pawn Код:
stock Kill(playerid)
{
SetPlayerHealth(playerid, 0);
return 1;
}
pawn Код:
#define Kill(%1) SetPlayerHealth(%1, 0)