
Originally Posted by
PerfectHits
Hi everyone;
My enlish bad. :(
I want the item to be deleted within 5 minutes of my play. How can I do it?
Help me please :)
You don't need to edit anything in Studio.
Go to your warz_server.sln
Search for:
Code:
DROPPED_ITEM_EXPIRE_TIME
You see something like this.
Code:
const float DROPPED_ITEM_EXPIRE_TIME = 15 * 60.0f; // 60 min
Change the first number to 5. Like this:
Code:
const float DROPPED_ITEM_EXPIRE_TIME = 5 * 60.0f;
Hope it helps you,
Don't forgot to like me :)