1 items

File information

Last updated

Original upload

Created by

Error - Please enter an author

Uploaded by

hatejuice

Virus scan

Safe to use

Tags for this mod

About this mod

Disables Blood Echo loss. Compatible with vanilla & Enhanced 0.9.5. Includes optional chalice-only version.

Share
Requirements
Permissions and credits
Changelogs
Unlike the ActionButtonParam method, this event script applies a vanilla SpEffect (1934) containing the Ring of Sacrifice stateInfo (159) from Dark Souls. This method prevents enemies from picking up lost Blood Echoes.

Make a backup of the original (or Enhanced) common.emevd.dcx file found at dvdroot_ps4\event.

Chalices Only version - Make a backup of the original (or Enhanced) m29.emevd.dcx file found at dvdroot_ps4\event.

Installation:

1. Open .zip file
2. Extract dvdroot_ps4 to game or DLC folder
3. When prompted, replace the existing file

For shadPs4 users who have Enabled Separate Update Folder:
Keep in mind mods must be placed in the DLC directory defined in Settings -> Game Install Directory, not the base game.

For modders:
The script initializes an event (33033, 7777777) at the end of $Event(0 and sets SpEffect 1934 at the end of the file.

You may choose any number for the event long as the IDs match and don't conflict with an existing event.

Example:

InitializeEvent(0, 33033, 0);

 
...

$Event(33033, Default, function() {
SetSpEffect(10000, 1934, false);
EndEvent();
});