Author Topic: Longer lasting bodies and items?  (Read 1136 times)

I was just wondering if it would be possible to make items and bodies last a minute or so before disappearing, as currently you only have a few seconds to grab and item before it disappears.
« Last Edit: January 27, 2013, 06:44:31 PM by Zalot »

Open console and enter this:
Code: [Select]
$CorpseTimeoutValue = 60000;That should make corpses stay for 1 minute.

To change the item time, try this:
Code: [Select]
$a = 30000; $Game::Item::PopTime=$a;$Item::PopTime=$a;$ItemTime=$a;That should change the item time to 30 seconds. (I'm not sure which variable is the correct one, so I just included all of them)

Open console and enter this:
Code: [Select]
$CorpseTimeoutValue = 60000;That should make corpses stay for 1 minute.

To change the item time, try this:
Code: [Select]
$a = 30000; $Game::Item::PopTime=$a;$Item::PopTime=$a;$ItemTime=$a;That should change the item time to 30 seconds. (I'm not sure which variable is the correct one, so I just included all of them)
Thank you. I make this automatic via a script.