Blockland Forums > Suggestions & Requests
Longer lasting bodies and items?
Pages: (1/1)
Zalot:
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.
Greek2me:
Open console and enter this:
--- Code: ---$CorpseTimeoutValue = 60000;
--- End code ---
That should make corpses stay for 1 minute.
To change the item time, try this:
--- Code: ---$a = 30000; $Game::Item::PopTime=$a;$Item::PopTime=$a;$ItemTime=$a;
--- End code ---
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)
Zalot:
--- Quote from: Greek2me on January 27, 2013, 07:58:33 PM ---Open console and enter this:
--- Code: ---$CorpseTimeoutValue = 60000;
--- End code ---
That should make corpses stay for 1 minute.
To change the item time, try this:
--- Code: ---$a = 30000; $Game::Item::PopTime=$a;$Item::PopTime=$a;$ItemTime=$a;
--- End code ---
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)
--- End quote ---
Thank you. I make this automatic via a script.
Pages: (1/1)