06.08.2009, 14:59
You have to destroy the pickup. Like this:
pawn Код:
if(pickupid == special1)
{
GivePlayerMoney(playerid, 20000);
SetPlayerScore(playerid, GetPlayerScore(playerid) +2);
SendClientMessage(playerid, COLOR_YELLOW, "You just found the special pacakge");
SendClientMessage(playerid, COLOR_YELLOW, "You have received 2 scores and 20.000$");
DestroyPickup(special1);
}