16.03.2017, 18:54
set a 20 second timer when you create the pickup
Код:
SetTimer("Destroypickup", 20000, false) //creating 20 second timer
forward Destroypickup();
public Destroypickup()
{
DestroyPickup(meatDrops); // destroying pickup after 20 second
}

