19.01.2013, 01:59
help me with this code?
The problem is that after grabbing the pickup, to die and wait a few minutes reappears.
I think it is because it has the model 2, but which donot put that model pickup aparesca no more, only when I kill someone grabs aparesca and no longer appears.
pawn Код:
new DineroL;
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(pickupid == DineroL)
{
GivePlayerMoney(playerid, 1000);
DestroyPickup(DineroL);
}
return 1;
}
public OnPlayerDeath(playerid, killerid, reason)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
new Float:X=x+(random(3)-random(3));
new Float:Y=y+(random(3)-random(3));
DineroL = CreatePickup(1550,2,X,Y,z);
GivePlayerMoney(playerid, 1000);
return 1;
}
I think it is because it has the model 2, but which donot put that model pickup aparesca no more, only when I kill someone grabs aparesca and no longer appears.