1.7.7.1 Loot cleanup

Torquenstein

New Member
According to the 1.7.7 patch they changed the loot cleanup. Is this actually working for anybody? My RPT is showing as "CLEANUP:TOTAL 179 LOOT BAGS" every few minutes. Which I think is causing frame issues?

EDIT: Actually, its every 60 seconds on the dot.

Loot Cleanup has now been fully resolved. Old loot piles will now be cleaned every 60 minutes and no players within 250 meters(WIP). (Server performance boost)
 
I can confirm this. But in our case it is every second or two. We are running 1.7.7.1.

Code:
Line 12743: 17:13:03 "CLEANUP: INITIALIZING CLEANUP SCRIPT"
 Line 12743: 17:13:03 "CLEANUP: INITIALIZING CLEANUP SCRIPT"
 Line 12956: 17:14:03 "CLEANUP:TOTAL 70 LOOT BAGS"
 Line 12980: 17:15:03 "CLEANUP:TOTAL 85 LOOT BAGS"
 Line 12981: 17:15:03 "CLEANUP: DELETED 1 LOOT BAGS"
 Line 13067: 17:16:03 "CLEANUP:TOTAL 99 LOOT BAGS"
 Line 13068: 17:16:03 "CLEANUP: DELETED 3 LOOT BAGS"
 Line 13280: 17:17:03 "CLEANUP:TOTAL 120 LOOT BAGS"
 Line 13281: 17:17:03 "CLEANUP: DELETED 1 LOOT BAGS"
 Line 13306: 17:18:03 "CLEANUP:TOTAL 129 LOOT BAGS"
 Line 13397: 17:19:03 "CLEANUP:TOTAL 142 LOOT BAGS"
 Line 13398: 17:19:03 "CLEANUP: DELETED 3 LOOT BAGS"
 Line 13474: 17:20:03 "CLEANUP:TOTAL 144 LOOT BAGS"
 Line 13527: 17:21:03 "CLEANUP:TOTAL 151 LOOT BAGS"
 Line 13602: 17:22:03 "CLEANUP:TOTAL 173 LOOT BAGS"
 Line 13628: 17:23:03 "CLEANUP:TOTAL 190 LOOT BAGS"
 Line 13674: 17:24:03 "CLEANUP:TOTAL 203 LOOT BAGS"
 Line 13697: 17:25:03 "CLEANUP:TOTAL 208 LOOT BAGS"
 Line 13806: 17:26:03 "CLEANUP:TOTAL 240 LOOT BAGS"
 Line 13869: 17:27:03 "CLEANUP:TOTAL 276 LOOT BAGS"
 Line 13902: 17:28:03 "CLEANUP:TOTAL 312 LOOT BAGS"
 Line 13985: 17:29:03 "CLEANUP:TOTAL 318 LOOT BAGS"
 Line 14028: 17:30:03 "CLEANUP:TOTAL 326 LOOT BAGS"
 Line 14050: 17:31:03 "CLEANUP:TOTAL 330 LOOT BAGS"
 Line 14092: 17:32:03 "CLEANUP:TOTAL 351 LOOT BAGS"
 Line 14507: 17:33:03 "CLEANUP:TOTAL 357 LOOT BAGS"
 Line 14508: 17:33:03 "CLEANUP: DELETED 1 LOOT BAGS"
 Line 14552: 17:34:03 "CLEANUP:TOTAL 366 LOOT BAGS"
 Line 14650: 17:35:04 "CLEANUP:TOTAL 386 LOOT BAGS"
 Line 14712: 17:36:04 "CLEANUP:TOTAL 399 LOOT BAGS"
 Line 14713: 17:36:04 "CLEANUP: DELETED 2 LOOT BAGS"

This is not only resulting in ZERO LOOT, but is also severely impacting server performance.
Any ideas? I am currently looking into the cleanup scripts to see what is triggering this and see if I can resolve it.
 
would be interested in it to..

As ist in the Server_cleanup its triggered very often. I think the best way is to add a line to execute objectcleanup only every 30 mins or so
 
I edited the servercleanup.fsm
from
Code:
((diag_tickTime - _timeNem) > 60)

to
Code:
((diag_tickTime - _timeNem) > 600)

Which changed the cleanup time to 10 minutes, but still have loot spawn issues and bad performance for some people.
 
have done the same. As Total Loot message shows the total loot, not the total loot deleted i think this cleanup has nothing to do with the lootspawn. Just with performance.
 
Changed the value

Code:
((diag_tickTime - _timeNem) > 3600)

to what it was meant to be (60 minutes).

Server performs way better and loot spawns are noticeably improved.
 
i try a lower values as the agecheck comes in the script. So if timing comes bad your loot will stay for 1:59 h.

At the moment iam testing 1800.
 
I'm not getting anyhting in my rpt about loot bags being cleared. Hrm

Edit: I have no date set in my hivext. This may be why. Testing that out.
 
I have reverted this value back to something practical (600 - 10 minutes).

Server FPS still shows improvement and loot spawns are actually despawning now.
 
i've changed my
Code:
((diag_tickTime - _timeNem) > 3600)
to 600 and my loot isnt clearing up, whats the line to fix this?
 
Back
Top