Posts by BoredUltimatum
-
-
Small issue here,
When trying to send items back mid raid, it fails to do so.If you mean it gives a failed notice in raid check you have money out in your rig and/or pockets first. It has the same issue as official not finding money on you. If you mean it succeeds and after you get back to the hideout you can't receive the items,
I noticed that intermittent issue sending stuff back. I'm not sure the cause yet (sending multiple times in the same raid, nested items?) but it can be manually fixed now by going in to the user/profiles/{your-guid}.json file, "dialogues", then the BTR entry "656f0f98d80a697f855d34b1". Find the latest message with all the items and ensure any entries with "slotId" as a GUID or number are changed to "main". For example:
Code
Display More{ "_id": "681a824df715d97c4419e610", "uid": "656f0f98d80a697f855d34b1", "type": 15, "dt": 1746567757, "text": "", "templateId": "657399489b19e826a721d75c 2", "hasRewards": true, "rewardCollected": false, "items": { "stash": "656f0f98d80a697f855d34b1", "data": [ { "_id": "681a824df715d97c4419e611", "_tpl": "59e7643b86f7742cbf2c109a", "slotId": "67f6c26d0005f36d084444ce", "location": { "x": 0, "y": 0, "r": "Horizontal" }, "upd": { "SpawnedInSession": true }, "parentId": "656f0f98d80a697f855d34b1" }, { "_id": "681a824df715d97c4419e612", "_tpl": "59e36c6f86f774176c10a2a7", "slotId": "67f6c26d0005f36d084444ce", "location": { "x": 3, "y": 0, "r": "Horizontal" }, "upd": { "SpawnedInSession": true, "Resource": { "Value": 0 } }, "parentId": "656f0f98d80a697f855d34b1" },
Becomes:
Code
Display More{ "_id": "681a824df715d97c4419e610", "uid": "656f0f98d80a697f855d34b1", "type": 15, "dt": 1746567757, "text": "", "templateId": "657399489b19e826a721d75c 2", "hasRewards": true, "rewardCollected": false, "items": { "stash": "656f0f98d80a697f855d34b1", "data": [ { "_id": "681a824df715d97c4419e611", "_tpl": "59e7643b86f7742cbf2c109a", "slotId": "main", "location": { "x": 0, "y": 0, "r": "Horizontal" }, "upd": { "SpawnedInSession": true }, "parentId": "656f0f98d80a697f855d34b1" }, { "_id": "681a824df715d97c4419e612", "_tpl": "59e36c6f86f774176c10a2a7", "slotId": "main", "location": { "x": 3, "y": 0, "r": "Horizontal" }, "upd": { "SpawnedInSession": true, "Resource": { "Value": 0 } }, "parentId": "656f0f98d80a697f855d34b1" },
Trying to determine and fix the cause
-
BoredUltimatum added a new version:
QuoteAdded in raid item transfer menu, default open key is 'insert' which can be changed in the F12 menu.
-
BoredUltimatum added a new version:
QuoteFixed loading bug
-
BoredUltimatum added a new file:
QuoteThis is a proof of concept mod as a learning experience but appears to be working. At the start of raid it unlocks doors, containers, and/or exfil locations (including scav).
Press F12 to bring up the SPT plugin settings window and under SPT_Unlocker:
- Unlock Doors Enabled: unlocks doors
- Unlock Containers Enabled: unlocks 'lockable containers' such as safes, Shturman's stash, etc
- Unlock Exfils Enabled: unlocks PMC exfils regardless of spawn location
- Exfil Guaranteed Chance: all exfils are guaranteed to be active (vehicle extracts, etc)
- Unlock Scav Exfils for PMCs: adds scav exfil locations to PMC's
- Open Item Transfer Menu: configured key opens an item transfer menu to send items back mid raid
KNOWN ISSUES:
- When disabling scav extracts after having them enabled for a raid, a timer will still come up when entering a scav exfil zone; however, the player won't extract when the timer ends.
- [Fixed in version 1.0.3] When transferring non empty containers (bags, etc) the EFT internal code packs them in such a way that breaks their delivery. Working on a fix for the root cause. A manual workaround for now is to update the user/profiles/{GUID}.json file, under 'dialogs' and the BTR ID '656f0f98d80a697f855d34b1', find the bad message and update the 'items' field such that:
- 'stash' is the BTR ID '656f0f98d80a697f855d34b1'
- any entries under 'data' where 'parentId' is '656f0f98d80a697f855d34b1' then the 'slotid' should be 'main'
Again, this is a proof of concept. Please notify of any bugs.