16.03.2017, 19:15
Quote:
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 } |
Line
DestroyPickup(meatDrops); // destroying pickup after 20 second