19.03.2010, 23:36
pawn Код:
new bool:variable=0;//set to 0 means haven't gone to the pickup
OnPlayerPickUpPickup ()
{
//.... your stuff
if (!variable)
{
SendClientMessage();//your message
variable=1;
}
}
P.S. However i do not prefer this way, anyway...

