diff --git a/_content/Compiler - MMD - Haks.bat b/_content/Compiler - MMD - Haks.bat new file mode 100644 index 00000000..ef43026c --- /dev/null +++ b/_content/Compiler - MMD - Haks.bat @@ -0,0 +1,6 @@ +:loop +"C:\NWN Work\nwnsc.exe" -o -w -n "C:\Games\Steam\steamapps\common\Neverwinter Nights" -i "D:\NWN Repos\MMD_PRC8\_content\_hak\prc8_mmd_top";"D:\NWN Repos\PRC8\nwn\nwnprc\trunk\include" "D:\NWN Repos\MMD_PRC8\_content\_hak\prc8_mmd_top\*.nss" +if %errorLevel% == -1 goto :loop + + +pause \ No newline at end of file diff --git a/_content/_hak/prc8_mmd_top/_kb_inc_invmgmt.nss b/_content/_hak/prc8_mmd_top/_kb_inc_invmgmt.nss new file mode 100644 index 00000000..77817587 --- /dev/null +++ b/_content/_hak/prc8_mmd_top/_kb_inc_invmgmt.nss @@ -0,0 +1,156 @@ +//////////////////////////////////////////////////////////////////////////////// +// // // +// _kb_inc_invmgmt (include file) // VERSION 3.3 // +// // // +// by Scrotok on 9 Feb 03 //////////////////////////// +// Thanks to Keron Blackfeld for 99% of the work! // +// email Questions and Comments to: jnbplatte@intellisys.net // +// // +//////////////////////////////////////////////////////////////////////////////// +// // +// CAUTION: You MUST re-save/compile (or press F7 for "Save and Compile") // +// the "_kb_corpse_death" and "_kb_corpse_distb" scripts if you make any // +// changes to "_kb_inc_invmgmt" (for programmers only: because it is an // +// #include file). // +// // +// CAUTION: You MUST re-save (not the F7 key!) "_kb_loot_corpse" if you make // +// any changes to "_kb_inc_invmgmt" (for programmers only: because it is an // +// #include file). To re-save it, make a change to the script, then UNDO // +// the change, then re-save. // +// // +// NEWBIES: You don't need to place this script anywhere -- it's already // +// taken care of for you. // +// // +// This script works in conjunction with the "_kb_loot_corpse" script. It // +// contains common functions used in "_kb_corpse_death", "_kb_corpse_distb", // +// and "_kb_loot_corpse". // +// // +//////////////////////////////////////////////////////////////////////////////// + +/* Version 3.2 Change Log: + - ClearInventory was 99% the same as DestroyInventory except for the + dropped weapons, so they were consolidated. + - DestroyInventory rewritten to use equipped item integers in a loop. + - DestroyDroppedWeapons is a new function which does only that. + - added TransferToBones function to move lootable corpse placeable inventory to bones + - added BonesCleanup function to get rid of the bones after nBonesFade + - changed comments to clarify weapons/shields/torches are affected by "weapons" parameters/functions +*/ + +/************************************************************************ + ** This function is used to clear the entire inventory of an object ** + ** (except for Creature Slots, which have no bearing here), so that ** + ** when the object is destroyed, no Lootbags are left behind to ** + ** litter up the landscape & devour system resources. Plot items are ** + ** not affected. ** + ************************************************************************/ +void DestroyInventory(object oCorpse) +{ + +/* Version 3.2 - function rewritten */ + + object oLoot; int x; + + //Get any gold from the dead creature + x = GetGold(oCorpse); + if (x) TakeGoldFromCreature(x, oCorpse, TRUE); + + // Destroy any loot the dead creature has equipped + // 0=head, 1=chest, 2=boot, 3=arms, 4=rhand, 5=lhand, 6=cloak, + // 7=lring, 8=rring, 9=neck, 10=belt, 11=arrow, 12=bullet, 13=bolt + for (x = 0; x < 4; x++) + { + oLoot = GetItemInSlot(x, oCorpse); + if (GetIsObjectValid(oLoot)) + { + if (!GetPlotFlag(oLoot)) + DestroyObject(oLoot); + } + } + // skipped 4 & 5 = equipped weapons (rhand & lhand) + for (x = 6; x < 14; x++) + { + oLoot = GetItemInSlot(x, oCorpse); + if (GetIsObjectValid(oLoot)) + { + if (!GetPlotFlag(oLoot)) + DestroyObject(oLoot); + } + } + + // Destroy remaining loot on creature + oLoot = GetFirstItemInInventory(oCorpse); + while (GetIsObjectValid(oLoot)) + { + if (!GetPlotFlag(oLoot)) + DestroyObject(oLoot); + oLoot = GetNextItemInInventory(oCorpse); + } +} + +/************************************************************************ + ** This function is used to destroy unclaimed dropped weapons. ** + ** Plot items are not affected. ** + ** ** + ** NOTE: Shields/torches are also considered "weapons" for the ** + ** purposes of this script. ** + ** ** + ** NOTE: The lootable corpse placeable or the bones can call this ** + ** script. ** + ************************************************************************/ +void DestroyDroppedWeapons(object oLootCorpse) +{ + //Check to see if anyone Possesses the Left Weapon + object oLeftWpn = GetLocalObject(oLootCorpse, "oLeftWpn"); + // If Left Weapon is unclaimed... + if (GetItemPossessor(oLeftWpn) == OBJECT_INVALID) + { + // If dropped weapon is not Plot + if (!GetPlotFlag(oLeftWpn)) + DestroyObject(oLeftWpn); + } + //Check to see if anyone Possesses the Right Weapon + object oRightWpn = GetLocalObject(oLootCorpse, "oRightWpn"); + // If Right Weapon is unclaimed... + if (GetItemPossessor(oRightWpn) == OBJECT_INVALID) + { + // If dropped weapon is not Plot + if (!GetPlotFlag(oRightWpn)) + DestroyObject(oRightWpn); + } +} + +/********************************************************* + ** This script gets rid of the bones after they fade ** + *********************************************************/ +void BonesCleanup(object oBones, int nKeepWeaponsBonesFade) +{ + // Empty the bones inventory + DestroyInventory(oBones); + // Delete unclaimed, dropped, non-Plot weapons unless nKeepWeaponsBonesFade = 1 + if (!nKeepWeaponsBonesFade) + DestroyDroppedWeapons(oBones); + // Delete the bones + DestroyObject(oBones); +} + +/****************************************************************************** + ** This script moves all items from lootable corpse placeable to the bones ** + ******************************************************************************/ +void TransferToBones(object oLootCorpse, object oBones) +{ + // Move gold to the bones + if (GetGold(oLootCorpse)) + { + AssignCommand(oBones, TakeGoldFromCreature(GetGold(oLootCorpse), oLootCorpse, FALSE)); + } + // Move inventory items to the bones + object oLoot = GetFirstItemInInventory(oLootCorpse); + while (GetIsObjectValid(oLoot)) + { + AssignCommand(oBones, ActionTakeItem(oLoot, oLootCorpse)); + oLoot = GetNextItemInInventory(oLootCorpse); + } +} + +//void main() {} diff --git a/_content/_hak/prc8_mmd_top/_kb_loot_corpse.nss b/_content/_hak/prc8_mmd_top/_kb_loot_corpse.nss new file mode 100644 index 00000000..ceb822e3 --- /dev/null +++ b/_content/_hak/prc8_mmd_top/_kb_loot_corpse.nss @@ -0,0 +1,855 @@ +//////////////////////////////////////////////////////////////////////////////// +// // // +// _kb_loot_corpse (include file) // VERSION 3.3 // +// // // +// by Scrotok on 9 Feb 03 //////////////////////////// +// Thanks to Keron Blackfeld for 99% of the work! // +// email Questions and Comments to: jnbplatte@intellisys.net // +// // +//////////////////////////////////////////////////////////////////////////////// +// // +// CAUTION: You MUST re-save/compile (F7 key) "nw_c2_default7" whenever // +// "_kb_loot_corpse" is modified! // +// // +// CAUTION: You MUST re-save (not the F7 key!) "_kb_loot_corpse" if you make // +// any changes to "_kb_inc_invmgmt" (for programmers only: because it is an // +// #include file). To re-save it, make a change to the script, then UNDO // +// the change, then re-save. // +// // +// NEWBIES: You don't need to place this script anywhere -- it's included as // +// part of "nw_c2_default7" using the #include command. All you need to do // +// is configure the script (see below) as desired. // +// // +//////////////////////////////////////////////////////////////////////////////// +// // +// // +// CONFIGURING THE SCRIPT // +// // +// This script supports some configuration by the user. Following the // +// void LeaveCorpse() of the _kb_loot_corpse, you'll find a section where // +// you can set a few things. These include: (with default values displayed) // +// // +// // +// int nUseLootable = TRUE This enables the script. Setting is to FALSE // +// disables it. // +// // +// int nMoveEquipped = TRUE Setting this to FALSE will stop the script // +// from moving equipped items (other than // +// Armour/Helmet and Weapons/Shield/Torch) to // +// the lootable corpse placeable. (To prevent // +// the move/copy of Armour/Helmet and Weapons/ // +// Shield/Torch, use the next four toggles.) // +// Remember that CREATURE SLOTTED items are // +// NEVER moved. // +// // +// int nCopyArmour = TRUE This will use the ResRef to create a copy of // +// the Armour/Helmet the creature is wearing. // +// If you do not want to use this function, you // +// may want to consider the next one (called // +// nMoveArmour). nCopyArmour takes precedence // +// over nMoveArmour if both are TRUE. // +// // +// int nMoveArmour = FALSE Setting this TRUE will just move the armour // +// from the Chest slot to the lootable corpse // +// placeable on death; it will also move the // +// helmet from the Head slot to the lootable // +// corpse placeable. This can be a visual issue // +// when used with NPCs - since when the armour // +// is moved, the NPC will become 'naked'. // +// // +// *** If you do not wish to use either of the armour functions, just set // +// both values to FALSE. Then just add an additional suit of armour // +// and/or helmet to the inventory of creatures you want to have drop // +// their armour/helmet. // +// // +// int nDropWeapons = TRUE This will use the ResRef for dropping the // +// weapons on the ground - which is accomplished // +// by creating new ones on the ground and // +// destroying the ones in the creature's // +// inventory. NOTE: Even though the parameter // +// is called nDropWeapons, anything held in the // +// left or right hand (shield, torch, etc.) is // +// affected by this parameter. nDropWeapons // +// takes precedence over nMoveWeapons if both // +// are TRUE. // +// // +// int nMoveWeapons = FALSE Setting this TRUE will just move the weapons // +// to the Lootable Object just as the rest of // +// inventory is handled. NOTE: Even though the // +// parameter is called nMoveWeapons, anything // +// held in the left or right hand (shield, // +// torch, etc.) is affected by this parameter. // +// // +// *** If you do not wish to use either of the weapon functions, just set // +// both values to FALSE. Then just add additional weapons/shields/ // +// torches to the inventory of creatures you want to have drop those // +// items. // +// // +// int nUseBlood = TRUE Set this to TRUE if you want a Bloodspot to // +// appear under the corpse for a little extra // +// gory appeal. In addition, it will allow for // +// a grisly display if the corpse is destroyed. // +// Undead/constructs/elementals will not leave a // +// Bloodspot or "gib" when bashed. // +// // +// int nTinyBlood = FALSE Set this to FALSE if you don't want Tiny- // +// sized creatures (rats, bats, etc.) to leave a // +// Bloodspot, scorch mark, or small flame. They // +// will still "gib" normally. Only applies if // +// nUseBlood = TRUE. // +// // +// int nUseFlame = TRUE Set this to TRUE if you want a scorch mark or // +// a small flame (which burns out after 10-120 // +// seconds, and is replaced by a scorch mark) to // +// appear if 1/3 or more of the damage which // +// killed the creature was fire or electrical. // +// Scorch mark or flame will appear instead of // +// Bloodspot. If the total fire or electrical // +// damage exceeds the creature's max HP, a small // +// flame appears instead of a scorch mark. The // +// corpse will still gib normally. Undead, // +// constructs, and elementals will leave a // +// scorch mark, small flame, or nothing. Only // +// applies if nUseBlood = TRUE. // +// // +// int nCorpseFade = 0 This is the delay in actual seconds that the // +// corpse will remain before it fades. If you // +// set this to 0 (zero) it will turn off the // +// corpse fade - allowing all bodies and loot // +// to remain indefinitely. // +// // +// int nUseBonesBash = TRUE Set this to TRUE if you want bones to appear // +// when the corpse is bashed. The bones cannot // +// be bashed; they will only disappear if // +// nBonesFade > 0. // +// // +// int nUseBonesFade = TRUE Set this to TRUE if you want bones to appear // +// when the corpse fades. The bones cannot // +// be bashed; they will only disappear if // +// nBonesFade > 0. // +// // +// int nBonesFade = 60 This is the delay in actual seconds that the // +// bones will remain before they fade. If you // +// set this to 0 (zero) it will turn off the // +// bones fade - allowing all bones (and loot, // +// if the bones contain any) to remain forever. // +// // +// int nTinyBones = FALSE Set this to FALSE if you don't want Tiny- // +// sized creatures (rats, bats, etc.) to turn // +// into bones when their corpse is bashed or // +// fades. Only applies if nUseBonesBash and/or // +// nUseBonesFade = TRUE. // +// // +// int nKeepInventoryBash = FALSE Set this to TRUE if you want all items // +// in a creature's inventory to remain when // +// its corpse is bashed. If installed, // +// DOA's "Bashed Loot Breakage" plugin // +// ("doa_bashbreak") takes precedence over // +// nKeepInventoryBash. // +// // +// int nKeepInventoryFade = FALSE Set this to TRUE if you want all items // +// in a creature's inventory to remain when // +// its corpse fades. // +// // +// int nKeepEmpties = TRUE Set this to FALSE if you want EMPTY corpses // +// to fade immediately after their inventory is // +// emptied (and dropped weapons are claimed, // +// unless nKeepWeaponsEmpty is TRUE). // +// // +// int nKeepWeaponsBonesFade = FALSE Set this to FALSE if you want // +// dropped, unclaimed, non-plot weapons // +// to be destroyed when bones fade. // +// Only valid if nBonesFade > 0. // +// // +// int nKeepWeaponsCorpseFade = TRUE Set this to FALSE if you want // +// dropped, unclaimed, non-plot weapons // +// to be destroyed when corpses fade. // +// Only valid if nCorpseFade > 0. // +// // +// int nKeepWeaponsBash = TRUE Set this to FALSE if you want // +// dropped, unclaimed, non-plot weapons // +// to be destroyed when corpses are // +// bashed. // +// // +// int nKeepWeaponsEmpty = TRUE Set this to TRUE if you want empty // +// corpses to be destroyed even if // +// dropped weapons are unclaimed. // +// // +// *** Even though the 4 parameters listed above start with "nKeepWeapons", // +// anything held in the left or right hand (shield, torch, etc.) is // +// affected by these parameters, not just weapons. // +// // +// int nOverrideForPlacedCorpses = TRUE Set this to TRUE if you want the // +// 'Spawned Corpses' you place to be // +// permament. Setting it to FALSE // +// will cause your Placed Dead // +// creatures to act as the settings // +// above dictate. (i.e. Fading Out // +// after the delay or being emptied) // +// To use this functionality, you // +// should place the _kb_plc_corpse // +// script in the OnSpawn of the // +// critter you want to spawn dead. // +// // +//////////////////////////////////////////////////////////////////////////////// + +/* Version 3.3 Change Log: + - added SetPlotFlag to ensure oLootCorpse can't be destroyed before oHostBody is emptied (and weapons are dropped) + - fixed comments to clarify that "doa_bashbreak" script refers to DOA's "Bashed Loot Breakage" plugin +/* Version 3.2 Change Log: + - consolidated inventory management functions to _kb_inc_invmgmt + - DestroyInventory function calls changed to DestroyInventory + DestroyDroppedWeapons in _kb_inc_invmgmt (identical) + - added nTinyBlood and nUseFlame (added Flameout function and rewrote Bloodspot routine) + - added GetIsObjectValid check before destroying Bloodspot + - removed ActionWait (wasn't needed) + - combined several DelayCommand's into a single function (FadeCorpse) to improve performance + - improved FadeCorpse to take advantage of new functionality (nKeepInventoryFade, nUseBonesFade, etc.) + - fixed bug in DropLeftWeapon/DropRightWeapon that caused dropped weapons to have incorrect GetIdentified value + - fixed bug where 2 copies of droppable, equipped, Plot armor were created instead of 1 when corpse was bashed + - fixed bug that caused copied armor to have incorrect GetPlotFlag and GetIdentified values + - added nUseBonesBash to create bones when corpse is bashed + - added nUseBonesFade to create bones when corpse fades + - added nBonesFade to determine when bones fade (if ever) + - added nTinyBones to prevent bones from appearing for tiny-sized creatures + - added nKeepInventoryBash to keep all items in a creature's inventory when its corpse is bashed + - added nKeepInventoryFade to keep all items in a creature's inventory when its corpse fades + - replaced nKeepWeapons with: nKeepWeaponsBonesFade, nKeepWeaponsCorpseFade, nKeepWeaponsBash, and nKeepWeaponsEmpty + - changed comments to clarify weapons/shields/torches are affected by "weapons" parameters/functions + - changed comments to reflect that undead/constructs/elementals will not leave Bloodspot or "gib" when bashed + - fixed bug so that nCopyArmour takes precedence over nMoveArmour if both are TRUE + - added comments to clarify that nCopyArmour takes precedence over nMoveArmour if both are TRUE + - added comments to clarify that nDropWeapons takes precedence over nMoveWeapons if both are TRUE + - renamed oDeadNPC to oHostBody, and vDeadNPCLoc to vHostBodyLoc for consistency + - fixed bug so that nCopyArmour/nMoveArmour affect helmets equipped in the creature's Head slot, as well + - added support for "Destroy Target" command of DM's Helper wand (used to destroy the corpse or bones) + - added code to pass oLeftWpn/oRightWpn from oHostBody to oLootCorpse for use with Scrotok's Raise Dead/Ressurection Plugin +*/ + +#include "_kb_inc_invmgmt" + +/******************************************************************************* + ** This script was borrowed from the Hard Core Ruleset, where they use it to ** + ** move a Dead PC's inventory to a lootable corpse object. Credit where ** + ** credit is due, I always say. :) ** + *******************************************************************************/ +object strip_equipped(object oHostBody, object oLootCorpse, object oEquip) +{ + if(GetIsObjectValid(oEquip) && GetDroppableFlag(oEquip)) + { + AssignCommand(oLootCorpse, ActionTakeItem(oEquip, oHostBody)); + } + return oEquip; +} + +/******************************************************************************* + ** These scripts drop weapons/shields/torches held in the corpse's hands. ** + ** ** + ** SPECIAL THANKS TO DREZDAR and MOJO for their help in getting these two ** + ** drop weapon scripts written. I never would have gotten the vectors right, ** + ** but THEY sure did! ** + ** ** + ** (East = 0, North = 90, West = 180, South = 270) ** + ** ** + *******************************************************************************/ +void DropLeftWeapon(object oLeftWpn, object oLootCorpse) +{ + if(GetIsObjectValid(oLeftWpn) && GetDroppableFlag(oLeftWpn)) + { + vector vCorpseLoc = GetPositionFromLocation(GetLocation(oLootCorpse)); + float fDifferential = 45.0f + IntToFloat(d20());//Randomize the Drop Angle + float fDistance = 0.5f + (IntToFloat(d10())/10);//Randomize the Drop Distance + float fVarWpnFace = -20.0f - IntToFloat(d20(2));//Randomize the Drop Facing + float fFacing = GetFacing(oLootCorpse); + fFacing = fFacing + fDifferential; + if (fFacing > 360.0f) + { fFacing = 720.0f - fFacing; } + if (fFacing < 0.0f) + { fFacing = 360.0f + fFacing; } + float fWpnFacing = GetFacing(oLootCorpse) + fVarWpnFace; + if (fWpnFacing > 360.0f) + { fWpnFacing = 720.0f - fWpnFacing; } + if (fWpnFacing < 0.0f) + { fWpnFacing = 360.0f + fWpnFacing; } + object oArea = GetArea(oLootCorpse); + //Generate New Location + float fNewX; + float fNewY; + float fNewZ; + if ((fFacing > 0.0f) && (fFacing < 90.0f)) + { fNewX = vCorpseLoc.x + ((cos(fFacing))*fDistance); fNewY = vCorpseLoc.y + ((sin(fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 90.0f) && (fFacing < 180.0f)) + { fNewX = vCorpseLoc.x - ((cos(180.0f - fFacing))*fDistance); fNewY = vCorpseLoc.y + ((sin(180.0f - fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 180.0f) && (fFacing < 270.0f)) + { fNewX = vCorpseLoc.x - ((cos(fFacing - 180.0f))*fDistance); fNewY = vCorpseLoc.y - ((sin(fFacing - 180.0f))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 270.0f) && (fFacing < 360.0f)) + { fNewX = vCorpseLoc.x + ((cos(360.0f - fFacing))*fDistance); fNewY = vCorpseLoc.y - ((sin(360.0f - fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if (fFacing == 0.0f) + { fNewX = vCorpseLoc.x + fDistance; fNewY = vCorpseLoc.y; fNewZ = vCorpseLoc.z; } + else if (fFacing == 90.0f) + { fNewX = vCorpseLoc.x; fNewY = vCorpseLoc.y + fDistance; fNewZ = vCorpseLoc.z; } + else if (fFacing == 180.0f) + { fNewX = vCorpseLoc.x - fDistance; fNewY = vCorpseLoc.y; fNewZ = vCorpseLoc.z; } + else if (fFacing == 270.0f) + { fNewX = vCorpseLoc.x; fNewY = vCorpseLoc.y - fDistance; fNewZ = vCorpseLoc.z; } + vector vNewFinal = Vector(fNewX, fNewY, fNewZ); + location lDropLeft = Location(oArea, vNewFinal, fWpnFacing); + //Drop Weapon + string sLeftWpnRef = GetResRef(oLeftWpn); + int nID = GetIdentified(oLeftWpn); + if (GetPlotFlag(oLeftWpn)) + { + SetPlotFlag(oLeftWpn, FALSE); + DestroyObject(oLeftWpn); + oLeftWpn = CreateObject(OBJECT_TYPE_ITEM, sLeftWpnRef, lDropLeft, FALSE); + SetPlotFlag(oLeftWpn, TRUE); + } + else + { + DestroyObject(oLeftWpn); + oLeftWpn = CreateObject(OBJECT_TYPE_ITEM, sLeftWpnRef, lDropLeft, FALSE); + } + SetIdentified(oLeftWpn, nID); + SetLocalObject(oLootCorpse, "oLeftWpn", oLeftWpn); + } + // We're done with oHostBody, so allow oLootCorpse to be destroyable + AssignCommand(oLootCorpse, ActionDoCommand(SetPlotFlag(oLootCorpse, FALSE))); +} + +void DropRightWeapon(object oRightWpn, object oLootCorpse) +{ + if(GetIsObjectValid(oRightWpn) && GetDroppableFlag(oRightWpn)) + { + vector vCorpseLoc = GetPositionFromLocation(GetLocation(oLootCorpse)); + float fDifferential = -45.0f + IntToFloat(d20());//Randomize the Drop Angle + float fDistance = 0.5f + (IntToFloat(d10())/10);//Randomize the Drop Distance + float fVarWpnFace = 20.0f - IntToFloat(d20(2));//Randomize the Drop Facing + float fFacing = GetFacing(oLootCorpse); + fFacing = fFacing + fDifferential; + if (fFacing > 360.0f) + { fFacing = 720.0f - fFacing; } + if (fFacing < 0.0f) + { fFacing = 360.0f + fFacing; } + float fWpnFacing = GetFacing(oLootCorpse) + fVarWpnFace; + if (fWpnFacing > 360.0f) + { fWpnFacing = 720.0f - fWpnFacing; } + if (fWpnFacing < 0.0f) + { fWpnFacing = 360.0f + fWpnFacing; } + object oArea = GetArea(oLootCorpse); + //Generate New Location + float fNewX; + float fNewY; + float fNewZ; + if ((fFacing > 0.0f) && (fFacing < 90.0f)) + { fNewX = vCorpseLoc.x + ((cos(fFacing))*fDistance); fNewY = vCorpseLoc.y + ((sin(fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 90.0f) && (fFacing < 180.0f)) + { fNewX = vCorpseLoc.x - ((cos(180.0f - fFacing))*fDistance); fNewY = vCorpseLoc.y + ((sin(180.0f - fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 180.0f) && (fFacing < 270.0f)) + { fNewX = vCorpseLoc.x - ((cos(fFacing - 180.0f))*fDistance); fNewY = vCorpseLoc.y - ((sin(fFacing - 180.0f))*fDistance); fNewZ = vCorpseLoc.z; } + else if ((fFacing > 270.0f) && (fFacing < 360.0f)) + { fNewX = vCorpseLoc.x + ((cos(360.0f - fFacing))*fDistance); fNewY = vCorpseLoc.y - ((sin(360.0f - fFacing))*fDistance); fNewZ = vCorpseLoc.z; } + else if (fFacing == 0.0f) + { fNewX = vCorpseLoc.x + fDistance; fNewY = vCorpseLoc.y; fNewZ = vCorpseLoc.z; } + else if (fFacing == 90.0f) + { fNewX = vCorpseLoc.x; fNewY = vCorpseLoc.y + fDistance; fNewZ = vCorpseLoc.z; } + else if (fFacing == 180.0f) + { fNewX = vCorpseLoc.x - fDistance; fNewY = vCorpseLoc.y; fNewZ = vCorpseLoc.z; } + else if (fFacing == 270.0f) + { fNewX = vCorpseLoc.x; fNewY = vCorpseLoc.y - fDistance; fNewZ = vCorpseLoc.z; } + vector vNewFinal = Vector(fNewX, fNewY, fNewZ); + location lDropRight = Location(oArea, vNewFinal, fWpnFacing); + //Drop Weapon + string sRightWpnRef = GetResRef(oRightWpn); + int nID = GetIdentified(oRightWpn); + if (GetPlotFlag(oRightWpn)) + { + SetPlotFlag(oRightWpn, FALSE); + DestroyObject(oRightWpn); + oRightWpn = CreateObject(OBJECT_TYPE_ITEM, sRightWpnRef, lDropRight, FALSE); + SetPlotFlag(oRightWpn, TRUE); + } + else + { + DestroyObject(oRightWpn); + oRightWpn = CreateObject(OBJECT_TYPE_ITEM, sRightWpnRef, lDropRight, FALSE); + } + SetIdentified(oRightWpn, nID); + SetLocalObject(oLootCorpse, "oRightWpn", oRightWpn); + } +} + +/******************************************************************************* + ** This script gets rid of the bloodspot, lootable corpse, and creature body ** + *******************************************************************************/ +void FadeCorpse(object oCorpseBlood, object oLootCorpse, object oHostBody) +{ + //Delete the BloodSpot (if created) + if (GetIsObjectValid(oCorpseBlood)) + { + DestroyObject(oCorpseBlood); + } + // Empty (or don't empty) the lootable corpse placeable + if (GetLocalInt(oLootCorpse, "nKeepInventoryFade") == FALSE) + // Delete all items (except Plot) from lootable corpse placeable + DestroyInventory(oLootCorpse); + else + { + // Do nothing (delete nothing from lootable corpse placeable) + } + // If user wants bones to be created when corpse fades... + if (GetLocalInt(oLootCorpse, "nUseBonesFade")) + { + if ((GetLocalInt(oLootCorpse, "nTinyBones") == FALSE) && (GetCreatureSize(oHostBody) == CREATURE_SIZE_TINY)) + { + // Do nothing -- no bones for tiny creatures if nTinyBones is FALSE + } + else + { + // Create the bones + object oBones = CreateObject(OBJECT_TYPE_PLACEABLE, "loot_bones_obj", GetLocation(oLootCorpse), FALSE); + // Move inventory to bones + TransferToBones(oLootCorpse, oBones); + // Fade bones after nBoneFade seconds + if (GetLocalInt(oLootCorpse, "nBonesFade") > 0) + { + // Remember racial type and Blueprint ResRef for use with Scrotok's Raise Dead/Resurrection plugin + SetLocalInt(oBones, "nRacialType", GetLocalInt(oLootCorpse, "nRacialType")); + SetLocalString(oBones, "sHostBodyResRef", GetLocalString(oLootCorpse, "sHostBodyResRef")); + // Pass dropped weapon/shield/torch info to bones + SetLocalObject(oBones, "oLeftWpn", GetLocalObject(oLootCorpse, "oLeftWpn")); + SetLocalObject(oBones, "oRightWpn", GetLocalObject(oLootCorpse, "oRightWpn")); + int nKeepWeaponsBonesFade = GetLocalInt(oLootCorpse, "nKeepWeaponsBonesFade"); + // Remember nKeepWeaponsBonesFade for use with DM's Helper wand + SetLocalInt(oBones, "nKeepWeaponsBonesFade", nKeepWeaponsBonesFade); + float fBonesFade = IntToFloat(GetLocalInt(oLootCorpse, "nBonesFade")); + AssignCommand(oBones, DelayCommand(fBonesFade, BonesCleanup(oBones, nKeepWeaponsBonesFade))); + } + } + } + // Delete unclaimed, dropped, non-Plot weapons unless nKeepWeaponsCorpseFade = 1 + if (!GetLocalInt(oLootCorpse, "nKeepWeaponsCorpseFade")) + DestroyDroppedWeapons(oLootCorpse); + // Delete the lootable corpse placeable + DestroyObject(oLootCorpse); + // Empty and delete actual creature corpse (body) + DestroyInventory(oHostBody); + /* There is no call to DestroyDroppedWeapons since if the weapons are + dropped, they are already deleted from oHostBody. If the weapons are + not dropped, then the function would still not delete the weapons + since GetItemPossessor would be a valid object */ + SetIsDestroyable(TRUE,FALSE,FALSE); + // NOTE: The following line MUST be last in this script, since oHostBody + // is the same as OBJECT_SELF + DestroyObject(oHostBody); +} + +/******************************************************************************* + ** This script replaces the small flame with a scorch mark ** + *******************************************************************************/ +void Flameout(object oCorpseBlood, object oLootCorpse) +{ + location lBloodLoc = GetLocation(oCorpseBlood); +/* + // Used for debugging + SendMessageToPC(GetFirstPC(), "Flame script started..."); + if (!GetIsObjectValid(oCorpseBlood)) + { + // This should never happen (if you bash/fade corpse, oHostBody is + // destroyed, so Flameout won't run (can't add to action queue of invalid + // object) + SendMessageToPC(GetFirstPC(), "Flame already destroyed... location for new scorch unknown?"); + } +*/ + // Get rid of small flame + DestroyObject(oCorpseBlood); + // ... and turn it into a scorch mark + oCorpseBlood = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_weathmark", lBloodLoc, FALSE); + //Set Local for deletion later if needed + SetLocalObject(oLootCorpse, "oBloodSpot", oCorpseBlood); +} + + +void LeaveCorpse() +{ + //SET YOUR LOOTABLE CORPSES PREFERENCES HERE /////////////// + // + int nUseLootable = TRUE; // Set this to FALSE if you want disable the lootable corpse functionality // + int nMoveEquipped = TRUE; // Set this to FALSE if you don't want to move Equipped items to the corpse // + int nCopyArmour = TRUE; // This will use the ResRef to create a copy of the armour/helmet // + int nMoveArmour = FALSE; // Setting this TRUE will just move the armour/helmet (Naked NPCs) // + int nDropWeapons = TRUE; // This will use the ResRef for dropping the weapons on the ground // + int nMoveWeapons = FALSE; // Setting this TRUE will just move the weapons to the Lootable Object // + int nUseBlood = TRUE; // Set this to TRUE if you want a Bloodspot to appear under the corpse and have // + // "gibs" when a corpse is destroyed. Undead/constructs/elementals won't leave a // + // Bloodspot or gib. // + int nTinyBlood = FALSE; // Set this to FALSE if you don't want Tiny-sized creatures (rats, bats, etc.) to // + // leave a Bloodspot, scorch mark, or small flame. They will still "gib" // + // normally. Only applies if nUseBlood = TRUE. // + int nUseFlame = TRUE; // Set this to TRUE if you want a scorch mark or a small flame (which burns out // + // after 10-120 seconds, and is replaced by a scorch mark) to appear if 1/3 or // + // more of the damage which killed the creature was fire or electrical. Scorch // + // mark or flame will appear instead of Bloodspot. If the total fire or // + // electrical damage exceeds the creature's max HP, a small flame appears instead // + // of a scorch mark. The corpse will still gib normally. Undead, constructs, // + // and elementals will leave a scorch mark, small flame, or nothing. Only // + // applies if nUseBlood = TRUE. // + int nCorpseFade = 0; // Set this to 0 (ZERO) if you DO NOT want the corpses to fade // + int nUseBonesBash = TRUE; // Set this to TRUE if you want bones to appear when the corpse is bashed. The // + // bones cannot be bashed; they will only disappear if nBonesFade > 0. // + int nUseBonesFade = TRUE; // Set this to TRUE if you want bones to appear when the corpse fades. The bones // + // cannot be bashed; they will only disappear if nBonesFade > 0. // + int nBonesFade = 60; // This is the delay in actual seconds that the bones will remain before they fade. // + // If you set this to 0 (zero) it will turn off the bones fade - allowing all // + // bones (and loot, if the bones contain any) to remain forever. // + int nTinyBones = FALSE; // Set this to FALSE if you don't want Tiny-sized creatures (rats, bats, etc.) to // + // turn into bones when their corpse is bashed or fades. Only applies if // + // nUseBonesBash and/or nUseBonesFade = TRUE. // + int nKeepInventoryBash = FALSE; // Set this to TRUE if you want all items in a creature's inventory to remain when // + // its corpse is bashed. If installed, DOA's "Bashed Loot Breakage" plugin // + // ("doa_bashbreak") takes precedence over nKeepInventoryBash. // + int nKeepInventoryFade = FALSE; // Set this to TRUE if you want all items in a creature's inventory to remain when // + // its corpse fades. // + int nKeepEmpties = TRUE; // Set this to FALSE if you want EMPTY corpses to fade immediately. // + int nKeepWeaponsBonesFade = FALSE; // Set this to FALSE if you want dropped, unclaimed, non-plot weapons to be // + // destroyed when bones fade. Only valid if nBonesFade > 0. // + int nKeepWeaponsCorpseFade = TRUE; // Set this to FALSE if you want dropped, unclaimed, non-plot weapons to be // + // destroyed when corpses fade. Only valid if nCorpseFade > 0. // + int nKeepWeaponsBash = TRUE; // Set this to FALSE if you want dropped, unclaimed, non-plot weapons to be // + // destroyed when corpses are bashed. // + int nKeepWeaponsEmpty = TRUE; // Set this to TRUE if you want empty corpses to be destroyed even if dropped // + // weapons are unclaimed. // + int nOverrideForPlacedCorpses = TRUE; // Set this to TRUE if you want the 'Spawned Corpses' you // + // place to be permament. Setting it to FALSE will cause // + // your Placed Dead creatures to act as the settings above dictate. // + // + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + //ALTER THE FOLLOWING AT YOUR OWN RISK :) + object oHostBody = OBJECT_SELF; //Get the Dead Creature Object + string sBaseTag = GetTag(oHostBody); //Get that TAG of the dead creature + string sPrefix = GetStringLeft(sBaseTag, 4); //Look for Dead Prefix + + if(nUseLootable) //If False, do nothing + { + + //Do 'spawned corpse' settings if desired + if (sPrefix == "Dead") + { + if (nOverrideForPlacedCorpses) + { + nKeepEmpties = TRUE; //Set 'Spawned Dead' corpses to Keep Empties + nCorpseFade = 0; //Disable Corpse Fade for 'Spawned Dead' corpses + } + } + + SetIsDestroyable(FALSE,TRUE,FALSE); //Protect our corpse from decaying + +/* +UNDER CONSTRUCTION :) + + // Create lootable corpse object only if oHostBody has something to loot + if (GetIsObjectValid(GetFirstItemInInventory(oHostBody))) + { + + } + else + { + // Don't create lootable corpse object(nothing to loot) + if (nKeepEmpties == FALSE) + { + // Get rid of corpse immediately, since it's already empty + nCorpseFade = 1; + } + else + { + // Ensure oHostBody is destroyed/fades properly + // Ensure blood spot is created and destroyed/fades properly + } + } +*/ + + //Set the spawnpoint for our lootable object and sink it + float fSinkCorpseObj = 0.1f; //set depth to sink lootable object + vector vHostBodyLoc = GetPosition(oHostBody); //get original vector so we can change it + float fCorpseFacing = GetFacing(oHostBody); //get original facing + vector vCorpseLoc = Vector(vHostBodyLoc.x, vHostBodyLoc.y, vHostBodyLoc.z - fSinkCorpseObj); //adjust z-axis to sink lootable object + location lCorpseLoc = Location(GetArea(oHostBody), vCorpseLoc, fCorpseFacing); //create new location + + object oLootCorpse = CreateObject(OBJECT_TYPE_PLACEABLE, "invis_corpse_obj", lCorpseLoc, FALSE); //Spawn our lootable object + SetLocalObject(oLootCorpse, "oHostBody", oHostBody); //Set Local for deletion later if needed + + // Ensure oLootCorpse can't be destroyed until oHostBody is emptied (and weapons are dropped) + SetPlotFlag(oLootCorpse, TRUE); + + SetLocalInt(oLootCorpse, "nKeepEmpty", nKeepEmpties); //Set Local for deletion later if needed + + SetLocalInt(oLootCorpse, "nUseBonesBash", nUseBonesBash); //Set Local for later use + SetLocalInt(oLootCorpse, "nUseBonesFade", nUseBonesFade); //Set Local for later use + SetLocalInt(oLootCorpse, "nBonesFade", nBonesFade); //Set Local for later use + SetLocalInt(oLootCorpse, "nTinyBones", nTinyBones); //Set Local for later use + + SetLocalInt(oLootCorpse, "nKeepInventoryBash", nKeepInventoryBash); //Set Local for later use + SetLocalInt(oLootCorpse, "nKeepInventoryFade", nKeepInventoryFade); //Set Local for later use + + // Remember racial type and Blueprint ResRef for use with Scrotok's Raise Dead/Resurrection plugin + SetLocalInt(oLootCorpse, "nRacialType", GetRacialType(oHostBody)); + SetLocalString(oLootCorpse, "sHostBodyResRef", GetResRef(oHostBody)); + + object oCorpseBlood; + // If nUseBlood is TRUE and oHostBody isn't Undead/Construct/Elemental, set Local for later "gibbing" if bashed + if ((nUseBlood) && (GetRacialType(oHostBody) != RACIAL_TYPE_UNDEAD) && (GetRacialType(oHostBody) != RACIAL_TYPE_CONSTRUCT) && (GetRacialType(oHostBody) != RACIAL_TYPE_ELEMENTAL)) + { + SetLocalInt(oLootCorpse, "nUseBlood", TRUE); + } + // If nUseBlood = TRUE, continue Bloodspot routine + if (nUseBlood) + { + location lBloodLoc = GetLocation(oHostBody); //get original location for placing blood spot + if ((nTinyBlood == FALSE) && (GetCreatureSize(oHostBody) == CREATURE_SIZE_TINY)) + { + // Do nothing -- no bloodspot for tiny creatures if nTinyBlood is FALSE + } + else + { + if (nUseFlame) + { + // If nUseFlame = TRUE, determine if scorch, flame, or bloodspot should appear + int nFireDam = GetDamageDealtByType(DAMAGE_TYPE_FIRE); + int nElecDam = GetDamageDealtByType(DAMAGE_TYPE_ELECTRICAL); + int nTotDam = GetTotalDamageDealt(); + int nMaxHP = GetMaxHitPoints(); + int nFlameout; + +/* + // Used for debugging + SendMessageToPC(GetFirstPC(), "nFireDam: "+IntToString(nFireDam)+" nElecDam: "+IntToString(nElecDam)+" nTotDam: "+IntToString(nTotDam)+" nMaxHP: "+IntToString(nMaxHP)+" nTotDam/3: "+IntToString(nTotDam/3)); +*/ + + // If 1/3 or more of the damage is due to fire or electricity... + // (only the final damage that actually killed the creature is + // considered; tracking the cumulative damage taken would require + // altering the default OnDamaged script for every creature, + // which is not desirable) + if ((nFireDam >= (nTotDam/3)) || (nElecDam >= (nTotDam/3))) + { + // If massive fire or electricity damage, spawn a small flame + // which turns into a scorch mark after 10-120 seconds + // ("massive" means >= max HP) + if ((nFireDam >= nMaxHP) || (nElecDam >= nMaxHP)) + { + oCorpseBlood = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_flamesmall", lBloodLoc, FALSE); +/* + // Used for debugging + nFlameout = 30; +*/ + nFlameout = d12(10); + DelayCommand(IntToFloat(nFlameout), Flameout(oCorpseBlood, oLootCorpse)); + } + else + { + // Otherwise, spawn a scorch mark + oCorpseBlood = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_weathmark", lBloodLoc, FALSE); + } + } + else + { + // Not enough (or zero) fire/electrical damage, so just spawn bloodspot (or do nothing for Undead/Constructs/Elementals) + if ((GetRacialType(oHostBody) != RACIAL_TYPE_UNDEAD) && (GetRacialType(oHostBody) != RACIAL_TYPE_CONSTRUCT) && (GetRacialType(oHostBody) != RACIAL_TYPE_ELEMENTAL)) + { + oCorpseBlood = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_bloodstain", lBloodLoc, FALSE); + } + } + } + else + { + // If nUseFlame = FALSE, just spawn the bloodspot (or do nothing for Undead/Constructs/Elementals) + if ((GetRacialType(oHostBody) != RACIAL_TYPE_UNDEAD) && (GetRacialType(oHostBody) != RACIAL_TYPE_CONSTRUCT) && (GetRacialType(oHostBody) != RACIAL_TYPE_ELEMENTAL)) + { + oCorpseBlood = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_bloodstain", lBloodLoc, FALSE); + } + } + // oBloodSpot will either be a bloodstain, scorch mark, small flame, or OBJECT_INVALID (for Undead/Constructs/Elementals) + SetLocalObject(oLootCorpse, "oBloodSpot", oCorpseBlood); //Set Local for deletion later if needed + } + } + + // Get DEAD CREATURE'S INVENTORY - Move to oLootCorpse + int nAmtGold = GetGold(oHostBody); //Get any gold from the dead creature + if(nAmtGold) + { + AssignCommand(oLootCorpse, TakeGoldFromCreature(nAmtGold, oHostBody, FALSE)); + } + + if (nMoveEquipped) + { + //Get any DROPPABLE loot the dead creature has equipped + object oEquip1 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_ARMS, oHostBody)); + object oEquip2 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_ARROWS, oHostBody)); + object oEquip3 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_BELT, oHostBody)); + object oEquip4 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_BOLTS, oHostBody)); + object oEquip5 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_BOOTS, oHostBody)); + object oEquip6 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_BULLETS, oHostBody)); + object oEquip7 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_CLOAK, oHostBody)); + // Version 3.2: Moved oEquip8 (helmets) to the armour section (see below) + object oEquip9 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_LEFTRING, oHostBody)); + object oEquip10 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_NECK, oHostBody)); + object oEquip11 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_RIGHTRING, oHostBody)); + + SetLocalObject(oLootCorpse, "oEquip1", oEquip1); + SetLocalObject(oLootCorpse, "oEquip2", oEquip2); + SetLocalObject(oLootCorpse, "oEquip3", oEquip3); + SetLocalObject(oLootCorpse, "oEquip4", oEquip4); + SetLocalObject(oLootCorpse, "oEquip5", oEquip5); + SetLocalObject(oLootCorpse, "oEquip6", oEquip6); + SetLocalObject(oLootCorpse, "oEquip7", oEquip7); + // Version 3.2: Moved oEquip8 (helmets) to the armour section (see below) + SetLocalObject(oLootCorpse, "oEquip9", oEquip9); + SetLocalObject(oLootCorpse, "oEquip10", oEquip10); + SetLocalObject(oLootCorpse, "oEquip11", oEquip11); + } + + // Handle Weapons/Shields/Torches equipped (held) in left/right hands + // NOTE: nDropWeapons takes precedence over nMoveWeapons if both are TRUE + /* + If oHostBody has nothing in left/right hand, and has oLeftWpn/ + oRightWpn set (due to Scrotok's Raise Dead/Resurrection plugin), + set oLeftWpn/oRightWpn (dropped weapon info) on oLootCorpse for + later use + */ + if (nDropWeapons) + { + if (GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oHostBody) == OBJECT_INVALID) + { + if (GetIsObjectValid(GetLocalObject(oHostBody, "oRightWpn"))) + { + SetLocalObject(oLootCorpse, "oRightWpn", GetLocalObject(oHostBody, "oRightWpn")); + } + } + if (GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oHostBody) == OBJECT_INVALID) + { + if (GetIsObjectValid(GetLocalObject(oHostBody, "oLeftWpn"))) + { + SetLocalObject(oLootCorpse, "oLeftWpn", GetLocalObject(oHostBody, "oLeftWpn")); + } + } + } + + if (nMoveWeapons || nDropWeapons) + { + //Move equipped Weapons/Shields/Torches from oHostBody to oLootCorpse + object oEquip12 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oHostBody)); + object oEquip13 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oHostBody)); + + // oEquip12/13 == OBJECT_INVALID if oHostBody has nothing in right/left hand slots + SetLocalObject(oLootCorpse, "oEquip12", oEquip12); + SetLocalObject(oLootCorpse, "oEquip13", oEquip13); + } + + if (nDropWeapons) + { + // oEquip12/13 == OBJECT_INVALID if oHostBody has nothing in right/left hand slots + object oEquip12 = GetLocalObject(oLootCorpse, "oEquip12"); + object oEquip13 = GetLocalObject(oLootCorpse, "oEquip13"); + + // Drop the weapons/shields/torches + /* + The following commands destroy oEquip12 and oEquip13, and store + the dropped weapons on oLootCorpse as "oLeftWpn" and "oRightWpn". + Nothing gets stored in oLeftWpn/oRightWpn if oEquip12/13 == + OBJECT_INVALID. + */ + // Make sure DropLeftWeapon comes after DropRightWeapon in the lines + // below, in order for the SetPlotFlag fix (version 3.3) to work + AssignCommand(oLootCorpse, ActionDoCommand(DropRightWeapon(oEquip12, oLootCorpse))); + AssignCommand(oLootCorpse, ActionDoCommand(DropLeftWeapon(oEquip13, oLootCorpse))); + + SetLocalInt(oLootCorpse, "nKeepWeaponsBonesFade", nKeepWeaponsBonesFade); //Set Local to prevent deletion later if needed + SetLocalInt(oLootCorpse, "nKeepWeaponsCorpseFade", nKeepWeaponsCorpseFade); //Set Local to prevent deletion later if needed + SetLocalInt(oLootCorpse, "nKeepWeaponsBash", nKeepWeaponsBash); //Set Local to prevent deletion later if needed + SetLocalInt(oLootCorpse, "nKeepWeaponsEmpty", nKeepWeaponsEmpty); //Set Local for later use + } + + // Handle Armour/Helmets + // NOTE: nCopyArmour takes precedence over nMoveArmour if both are TRUE + if(nCopyArmour) + { + nMoveArmour = FALSE; + // Handle armour + object oArmour = GetItemInSlot(INVENTORY_SLOT_CHEST, oHostBody); + SetLocalObject(oLootCorpse, "oOrigArmour", oArmour); + if (GetDroppableFlag(oArmour)) + { + string sArmourRef = GetResRef(oArmour); + object oLootArmour = CreateItemOnObject(sArmourRef, oLootCorpse); + + SetPlotFlag(oLootArmour, GetPlotFlag(oArmour)); + SetIdentified(oLootArmour, GetIdentified(oArmour)); + + // Set Plot flag to FALSE for original armor so it can be + // destroyed later if corpse is bashed + SetPlotFlag(oArmour, FALSE); + + SetLocalObject(oLootCorpse, "oLootArmour", oLootArmour); + SetLocalObject(oLootCorpse, "oEquip14", oLootArmour); + } + + // Handle helmet + object oHelmet = GetItemInSlot(INVENTORY_SLOT_HEAD, oHostBody); + SetLocalObject(oLootCorpse, "oOrigHelmet", oHelmet); + if (GetDroppableFlag(oHelmet)) + { + string sHelmetRef = GetResRef(oHelmet); + object oLootHelmet = CreateItemOnObject(sHelmetRef, oLootCorpse); + + SetPlotFlag(oLootHelmet, GetPlotFlag(oHelmet)); + SetIdentified(oLootHelmet, GetIdentified(oHelmet)); + + // Set Plot flag to FALSE for original helmet so it can be + // destroyed later if corpse is bashed + SetPlotFlag(oHelmet, FALSE); + + SetLocalObject(oLootCorpse, "oLootHelmet", oLootHelmet); + SetLocalObject(oLootCorpse, "oEquip8", oLootHelmet); + } + } + + if(nMoveArmour) + { + nCopyArmour = FALSE; + // Handle armour + object oEquip14 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_CHEST, oHostBody)); + SetLocalObject(oLootCorpse, "oEquip14", oEquip14); + // Handle helmet + object oEquip8 = strip_equipped(oHostBody, oLootCorpse, GetItemInSlot(INVENTORY_SLOT_HEAD, oHostBody)); + SetLocalObject(oLootCorpse, "oEquip8", oEquip8); + } + + //Get the remaining loot from the dead creature and move it to oLootCorpse + int nEquipCount = 14; + object oLootEQ = GetFirstItemInInventory(oHostBody); + while(GetIsObjectValid(oLootEQ)) + { + nEquipCount++; + // AssignCommand(oLootCorpse, ActionDoCommand(SendMessageToPC(GetFirstPC(), "oEquip"+IntToString(nEquipCount)+": "+GetTag(oLootEQ)))); + + object oEquipTemp = strip_equipped(oHostBody, oLootCorpse, oLootEQ); + string sEquipCount = "oEquip" + IntToString(nEquipCount); + SetLocalObject(oLootCorpse, sEquipCount, oEquipTemp); + oLootEQ = GetNextItemInInventory(oHostBody); + } + + // We're done with oHostBody, so allow oLootCorpse to be destroyable + if (!nDropWeapons) + { + AssignCommand(oLootCorpse, ActionDoCommand(SetPlotFlag(oLootCorpse, FALSE))); + } + + // Fade corpse out of existence after specified delay (unless set to 0) + if (nCorpseFade > 0) + { + float fCorpseFade = IntToFloat(nCorpseFade); + // ActionWait(fCorpseFade); // Removed for version 3.2 + DelayCommand(fCorpseFade, FadeCorpse(oCorpseBlood, oLootCorpse, oHostBody)); + } + } +} +//void main(){} diff --git a/_content/_hak/prc8_mmd_top/_kb_plc_corpse.ncs b/_content/_hak/prc8_mmd_top/_kb_plc_corpse.ncs new file mode 100644 index 00000000..f088e53b Binary files /dev/null and b/_content/_hak/prc8_mmd_top/_kb_plc_corpse.ncs differ diff --git a/_content/_hak/prc8_mmd_top/_kb_plc_corpse.nss b/_content/_hak/prc8_mmd_top/_kb_plc_corpse.nss new file mode 100644 index 00000000..47df7e2e --- /dev/null +++ b/_content/_hak/prc8_mmd_top/_kb_plc_corpse.nss @@ -0,0 +1,38 @@ +//////////////////////////////////////////////////////////////////////////////// +// // // +// _kb_plc_corpse // VERSION 3.3 // +// // // +// by Scrotok on 9 Feb 03 //////////////////////////// +// Thanks to Keron Blackfeld for 99% of the work! // +// email Questions and Comments to: jnbplatte@intellisys.net // +// // +//////////////////////////////////////////////////////////////////////////////// +// // +// This script works in conjunction with the "_kb_loot_corpse" script. // +// Place this script in the OnSpawn event of any creature you want to spawn // +// dead, then add "Dead" as the first 4 letters of its tag -- it will then // +// be lootable! // +// // +//////////////////////////////////////////////////////////////////////////////// + +/* Version 3.2 Change Log: + - changed EffectDamage to include DAMAGE_POWER_PLUS_FIVE to ensure creature spawns dead + - renamed oDeadNPC to oHostBody for consistency +*/ + +void main() +{ + object oHostBody = OBJECT_SELF; //Get the Dead Creature Object + string sBaseTag = GetTag(oHostBody); //Get that TAG of the dead creature + string sPrefix = GetStringLeft(sBaseTag, 4); //Look for Dead Prefix + if (sPrefix == "Dead") //Do Spawned Corpse + { + //Set up and Deliver our Death Blow + /* this is only needed if you need this + creature to SPAWN as a corpse. */ + //Set up for the kill + effect eDamage = EffectDamage(9999, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_FIVE); + //Deliver the killing effect + ApplyEffectToObject (DURATION_TYPE_INSTANT, eDamage, oHostBody); + } +} diff --git a/_content/_hak/prc8_mmd_top/nw_c2_default7.ncs b/_content/_hak/prc8_mmd_top/nw_c2_default7.ncs index 662ee74c..2e3a2c1d 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_c2_default7.ncs and b/_content/_hak/prc8_mmd_top/nw_c2_default7.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_aurablnda.ncs b/_content/_hak/prc8_mmd_top/nw_s1_aurablnda.ncs index 69a359eb..e4aa3c2b 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_aurablnda.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_aurablnda.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_auracoldc.ncs b/_content/_hak/prc8_mmd_top/nw_s1_auracoldc.ncs index 25e81a48..a5e77122 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_auracoldc.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_auracoldc.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_auraelecc.ncs b/_content/_hak/prc8_mmd_top/nw_s1_auraelecc.ncs index 7f66cf4b..2d8e4c0c 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_auraelecc.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_auraelecc.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_aurafirec.ncs b/_content/_hak/prc8_mmd_top/nw_s1_aurafirec.ncs index 7e37f9be..725e1695 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_aurafirec.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_aurafirec.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_auramenca.ncs b/_content/_hak/prc8_mmd_top/nw_s1_auramenca.ncs index 864f53e0..507f0374 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_auramenca.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_auramenca.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_aurastuna.ncs b/_content/_hak/prc8_mmd_top/nw_s1_aurastuna.ncs index 93234a42..b6eda589 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_aurastuna.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_aurastuna.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_aurauneaa.ncs b/_content/_hak/prc8_mmd_top/nw_s1_aurauneaa.ncs index fc49bf0b..34bc1670 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_aurauneaa.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_aurauneaa.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltacid.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltacid.ncs index fcf323ee..a5952b31 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltacid.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltacid.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltcharm.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltcharm.ncs index fa6e617e..2a37c208 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltcharm.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltcharm.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltchrdr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltchrdr.ncs index 8f99f487..1d69902d 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltchrdr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltchrdr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltcold.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltcold.ncs index 09b19ff3..2d00a865 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltcold.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltcold.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltcondr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltcondr.ncs index 5320de0b..6560555f 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltcondr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltcondr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltconf.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltconf.ncs index 8b56a10f..e74ecf44 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltconf.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltconf.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltdaze.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltdaze.ncs index 5ae5e301..b8ec5d24 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltdaze.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltdaze.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltdeath.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltdeath.ncs index b66c290a..ef10b59a 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltdeath.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltdeath.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltdexdr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltdexdr.ncs index 863e85b3..2904c692 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltdexdr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltdexdr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltdisese.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltdisese.ncs index d90e269e..c81e0cc2 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltdisese.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltdisese.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltdomn.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltdomn.ncs index 063a3899..3c354b30 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltdomn.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltdomn.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltfire.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltfire.ncs index dd3f0df3..09ac47c7 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltfire.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltfire.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltintdr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltintdr.ncs index 732cb9d4..748e670f 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltintdr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltintdr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltknckd.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltknckd.ncs index 398ff64c..e9a8d53d 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltknckd.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltknckd.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltlightn.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltlightn.ncs index 7971f256..0286bec7 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltlightn.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltlightn.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltlvldr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltlvldr.ncs index 3dc34d7a..e8628c58 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltlvldr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltlvldr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltparal.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltparal.ncs index 315054f4..95cce179 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltparal.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltparal.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltpoison.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltpoison.ncs index f4a5a40c..e4066f71 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltpoison.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltpoison.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltshards.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltshards.ncs index f2b68769..00a54326 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltshards.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltshards.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltslow.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltslow.ncs index ab2bf8f8..d59eaa30 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltslow.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltslow.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltstrdr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltstrdr.ncs index 4406f768..7819b3e1 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltstrdr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltstrdr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltstun.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltstun.ncs index b37d887d..7a8f0d38 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltstun.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltstun.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltweb.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltweb.ncs index 2905142f..67c36716 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltweb.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltweb.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_bltwisdr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_bltwisdr.ncs index cb603217..93d66dc3 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_bltwisdr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_bltwisdr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_coneacid.ncs b/_content/_hak/prc8_mmd_top/nw_s1_coneacid.ncs index 763346a5..fc71423b 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_coneacid.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_coneacid.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_conecold.ncs b/_content/_hak/prc8_mmd_top/nw_s1_conecold.ncs index fa1c7b2e..c391d7cf 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_conecold.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_conecold.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_coneelec.ncs b/_content/_hak/prc8_mmd_top/nw_s1_coneelec.ncs index 1f2cad0c..d3cd823c 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_coneelec.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_coneelec.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_conesonic.ncs b/_content/_hak/prc8_mmd_top/nw_s1_conesonic.ncs index 4769d6a1..010f94f0 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_conesonic.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_conesonic.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_dragfear.ncs b/_content/_hak/prc8_mmd_top/nw_s1_dragfear.ncs index 53d660db..fb1ce167 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_dragfear.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_dragfear.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_dragfeara.ncs b/_content/_hak/prc8_mmd_top/nw_s1_dragfeara.ncs index 73206fbb..fe3245d9 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_dragfeara.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_dragfeara.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazechaos.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazechaos.ncs index d26aae3e..5c42800f 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazechaos.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazechaos.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazecharm.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazecharm.ncs index fafca7d0..af690f7f 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazecharm.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazecharm.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazeconfu.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazeconfu.ncs index b06cabc2..d632bfa2 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazeconfu.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazeconfu.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazedaze.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazedaze.ncs index b01ab3e3..db489412 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazedaze.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazedaze.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazedeath.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazedeath.ncs index cf1b2f8b..0930ec8c 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazedeath.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazedeath.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazedomn.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazedomn.ncs index b390643e..ac24c75b 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazedomn.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazedomn.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazedoom.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazedoom.ncs index c6a80967..a20712cb 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazedoom.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazedoom.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazeevil.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazeevil.ncs index 9df6b982..3b1140c6 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazeevil.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazeevil.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazefear.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazefear.ncs index fd1e390d..e543fbb3 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazefear.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazefear.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazegood.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazegood.ncs index 5a45f9e7..4f0ea5e9 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazegood.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazegood.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazelaw.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazelaw.ncs index d492409b..ddf8f304 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazelaw.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazelaw.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_gazestun.ncs b/_content/_hak/prc8_mmd_top/nw_s1_gazestun.ncs index 0ffd54d7..9330b147 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_gazestun.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_gazestun.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_hndbreath.ncs b/_content/_hak/prc8_mmd_top/nw_s1_hndbreath.ncs index 5b02d9f5..2a2d1cfc 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_hndbreath.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_hndbreath.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_howlconf.ncs b/_content/_hak/prc8_mmd_top/nw_s1_howlconf.ncs index 09a038a2..2649dadb 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_howlconf.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_howlconf.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_howldaze.ncs b/_content/_hak/prc8_mmd_top/nw_s1_howldaze.ncs index 606f8bda..fc595ffe 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_howldaze.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_howldaze.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_howldeath.ncs b/_content/_hak/prc8_mmd_top/nw_s1_howldeath.ncs index 1e7e120e..c1f8a98c 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_howldeath.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_howldeath.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_howlfear.ncs b/_content/_hak/prc8_mmd_top/nw_s1_howlfear.ncs index 1878ff22..1ac9f0e1 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_howlfear.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_howlfear.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_howlparal.ncs b/_content/_hak/prc8_mmd_top/nw_s1_howlparal.ncs index b3899ae6..42488a9e 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_howlparal.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_howlparal.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_howlsonic.ncs b/_content/_hak/prc8_mmd_top/nw_s1_howlsonic.ncs index 5ea39cc0..ae721fd7 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_howlsonic.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_howlsonic.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_howlstun.ncs b/_content/_hak/prc8_mmd_top/nw_s1_howlstun.ncs index 4505a092..9a8d7f60 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_howlstun.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_howlstun.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_krenscare.ncs b/_content/_hak/prc8_mmd_top/nw_s1_krenscare.ncs index a11930a7..c2c9876b 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_krenscare.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_krenscare.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_mephsalt.ncs b/_content/_hak/prc8_mmd_top/nw_s1_mephsalt.ncs index ab0b266e..5406ee07 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_mephsalt.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_mephsalt.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_mephsteam.ncs b/_content/_hak/prc8_mmd_top/nw_s1_mephsteam.ncs index ba8664b5..f61d7ef1 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_mephsteam.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_mephsteam.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulschrdr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulschrdr.ncs index 1f7a0d22..acc6c119 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulschrdr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulschrdr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulscold.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulscold.ncs index de7893ff..23df913e 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulscold.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulscold.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulscondr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulscondr.ncs index 4f364f04..39b62d7b 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulscondr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulscondr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulsdeath.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulsdeath.ncs index 5f8049a9..68793262 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulsdeath.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulsdeath.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulsdexdr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulsdexdr.ncs index c042b113..60b1f47c 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulsdexdr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulsdexdr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulselec.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulselec.ncs index e8c36f9e..dd6a5f0c 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulselec.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulselec.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulsfire.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulsfire.ncs index dd6247cc..1da13e54 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulsfire.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulsfire.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulsholy.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulsholy.ncs index 91f2d46e..3b93769c 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulsholy.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulsholy.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulsintdr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulsintdr.ncs index 44f629c2..ddf504a3 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulsintdr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulsintdr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulslvldr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulslvldr.ncs index ba715d4e..408bf6e3 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulslvldr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulslvldr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulsneg.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulsneg.ncs index 34c6acd3..7dc823b0 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulsneg.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulsneg.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulsstrdr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulsstrdr.ncs index 63024147..704c1cac 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulsstrdr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulsstrdr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulswind.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulswind.ncs index 09e520af..75d41338 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulswind.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulswind.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_pulswisdr.ncs b/_content/_hak/prc8_mmd_top/nw_s1_pulswisdr.ncs index 1b33c9ab..da829cab 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_pulswisdr.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_pulswisdr.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_smokeclaw.ncs b/_content/_hak/prc8_mmd_top/nw_s1_smokeclaw.ncs index 85ee73d0..2e5a5477 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_smokeclaw.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_smokeclaw.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_stink_a.ncs b/_content/_hak/prc8_mmd_top/nw_s1_stink_a.ncs index 30142be8..bca10c2f 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_stink_a.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_stink_a.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s1_tyrantfga.ncs b/_content/_hak/prc8_mmd_top/nw_s1_tyrantfga.ncs index 5ac4b254..5f27b264 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s1_tyrantfga.ncs and b/_content/_hak/prc8_mmd_top/nw_s1_tyrantfga.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s2_divprot.ncs b/_content/_hak/prc8_mmd_top/nw_s2_divprot.ncs index a61f911c..7f7632cd 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s2_divprot.ncs and b/_content/_hak/prc8_mmd_top/nw_s2_divprot.ncs differ diff --git a/_content/_hak/prc8_mmd_top/nw_s3_balordeth.ncs b/_content/_hak/prc8_mmd_top/nw_s3_balordeth.ncs index b1c3419f..4e9dd36d 100644 Binary files a/_content/_hak/prc8_mmd_top/nw_s3_balordeth.ncs and b/_content/_hak/prc8_mmd_top/nw_s3_balordeth.ncs differ diff --git a/_module/ifo/module.ifo.json b/_module/ifo/module.ifo.json index 01d436b1..8667e981 100644 --- a/_module/ifo/module.ifo.json +++ b/_module/ifo/module.ifo.json @@ -793,7 +793,7 @@ }, "Mod_MinGameVer": { "type": "cexostring", - "value": "1.88" + "value": "1.89" }, "Mod_MinPerHour": { "type": "byte", diff --git a/_module/itp/itempalcus.itp.json b/_module/itp/itempalcus.itp.json index ac8816ab..aef5b0f1 100644 --- a/_module/itp/itempalcus.itp.json +++ b/_module/itp/itempalcus.itp.json @@ -12449,6 +12449,17 @@ "value": "it_dweomerthief" } }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prc_scr_877" + }, + "STRREF": { + "type": "dword", + "value": 16790517 + } + }, { "__struct_id": 0, "NAME": { @@ -13604,6 +13615,17 @@ "value": 16823532 } }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prc_scr_884" + }, + "STRREF": { + "type": "dword", + "value": 16790530 + } + }, { "__struct_id": 0, "NAME": { @@ -13681,6 +13703,17 @@ "value": 16829488 } }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prc_scr_995" + }, + "STRREF": { + "type": "dword", + "value": 16790488 + } + }, { "__struct_id": 0, "NAME": { @@ -14033,17 +14066,6 @@ "value": 767 } }, - { - "__struct_id": 0, - "RESREF": { - "type": "resref", - "value": "prc_scr_997" - }, - "STRREF": { - "type": "dword", - "value": 16790493 - } - }, { "__struct_id": 0, "RESREF": { @@ -14957,6 +14979,17 @@ "value": 16789916 } }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prc_scr_881" + }, + "STRREF": { + "type": "dword", + "value": 16790525 + } + }, { "__struct_id": 0, "RESREF": { @@ -16948,17 +16981,6 @@ "value": 16827179 } }, - { - "__struct_id": 0, - "RESREF": { - "type": "resref", - "value": "prc_scr_995" - }, - "STRREF": { - "type": "dword", - "value": 16790488 - } - }, { "__struct_id": 0, "RESREF": { @@ -19753,6 +19775,17 @@ "value": 16789920 } }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prc_scr_997" + }, + "STRREF": { + "type": "dword", + "value": 16790493 + } + }, { "__struct_id": 0, "NAME": { @@ -20457,6 +20490,17 @@ "value": 878 } }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prc_scr_880" + }, + "STRREF": { + "type": "dword", + "value": 16790522 + } + }, { "__struct_id": 0, "RESREF": { @@ -21073,50 +21117,6 @@ "value": 6340 } }, - { - "__struct_id": 0, - "RESREF": { - "type": "resref", - "value": "prc_scr_874" - }, - "STRREF": { - "type": "dword", - "value": 16790512 - } - }, - { - "__struct_id": 0, - "RESREF": { - "type": "resref", - "value": "prc_scr_865" - }, - "STRREF": { - "type": "dword", - "value": 16790497 - } - }, - { - "__struct_id": 0, - "RESREF": { - "type": "resref", - "value": "prc_scr_868" - }, - "STRREF": { - "type": "dword", - "value": 16790502 - } - }, - { - "__struct_id": 0, - "RESREF": { - "type": "resref", - "value": "prc_scr_871" - }, - "STRREF": { - "type": "dword", - "value": 16790507 - } - }, { "__struct_id": 0, "NAME": { @@ -21304,6 +21304,17 @@ "value": 16828323 } }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prc_scr_868" + }, + "STRREF": { + "type": "dword", + "value": 16790502 + } + }, { "__struct_id": 0, "RESREF": { @@ -21381,6 +21392,17 @@ "value": 16829580 } }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prc_scr_874" + }, + "STRREF": { + "type": "dword", + "value": 16790512 + } + }, { "__struct_id": 0, "NAME": { @@ -21403,6 +21425,17 @@ "value": 16826683 } }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prc_scr_871" + }, + "STRREF": { + "type": "dword", + "value": 16790507 + } + }, { "__struct_id": 0, "RESREF": { @@ -22129,6 +22162,17 @@ "value": 16826689 } }, + { + "__struct_id": 0, + "RESREF": { + "type": "resref", + "value": "prc_scr_865" + }, + "STRREF": { + "type": "dword", + "value": 16790497 + } + }, { "__struct_id": 0, "NAME": { @@ -22195,17 +22239,6 @@ "value": 917 } }, - { - "__struct_id": 0, - "RESREF": { - "type": "resref", - "value": "prc_scr_877" - }, - "STRREF": { - "type": "dword", - "value": 16790517 - } - }, { "__struct_id": 0, "RESREF": { @@ -22305,28 +22338,6 @@ "value": 2671 } }, - { - "__struct_id": 0, - "RESREF": { - "type": "resref", - "value": "prc_scr_880" - }, - "STRREF": { - "type": "dword", - "value": 16790522 - } - }, - { - "__struct_id": 0, - "RESREF": { - "type": "resref", - "value": "prc_scr_881" - }, - "STRREF": { - "type": "dword", - "value": 16790525 - } - }, { "__struct_id": 0, "NAME": { @@ -23020,17 +23031,6 @@ "value": 16829598 } }, - { - "__struct_id": 0, - "RESREF": { - "type": "resref", - "value": "prc_scr_884" - }, - "STRREF": { - "type": "dword", - "value": 16790530 - } - }, { "__struct_id": 0, "NAME": { diff --git a/_module/ncs/69_hench_pickup.ncs b/_module/ncs/69_hench_pickup.ncs index ce9824b6..0e841f06 100644 Binary files a/_module/ncs/69_hench_pickup.ncs and b/_module/ncs/69_hench_pickup.ncs differ diff --git a/_module/ncs/69_hench_scout1.ncs b/_module/ncs/69_hench_scout1.ncs index ae39c9dd..ec27b38a 100644 Binary files a/_module/ncs/69_hench_scout1.ncs and b/_module/ncs/69_hench_scout1.ncs differ diff --git a/_module/ncs/_kb_corpse_death.ncs b/_module/ncs/_kb_corpse_death.ncs index 22261ce0..5a27f4d2 100644 Binary files a/_module/ncs/_kb_corpse_death.ncs and b/_module/ncs/_kb_corpse_death.ncs differ diff --git a/_module/ncs/_kb_corpse_distb.ncs b/_module/ncs/_kb_corpse_distb.ncs index d16d99b7..874e891d 100644 Binary files a/_module/ncs/_kb_corpse_distb.ncs and b/_module/ncs/_kb_corpse_distb.ncs differ diff --git a/_module/ncs/at_enter_pc_room.ncs b/_module/ncs/at_enter_pc_room.ncs index 69b2c5c9..fa6dfe40 100644 Binary files a/_module/ncs/at_enter_pc_room.ncs and b/_module/ncs/at_enter_pc_room.ncs differ diff --git a/_module/ncs/bleeding_ondying.ncs b/_module/ncs/bleeding_ondying.ncs index 38609b52..d11be2ee 100644 Binary files a/_module/ncs/bleeding_ondying.ncs and b/_module/ncs/bleeding_ondying.ncs differ diff --git a/_module/ncs/cook_meat.ncs b/_module/ncs/cook_meat.ncs index 74e990ad..abd196f7 100644 Binary files a/_module/ncs/cook_meat.ncs and b/_module/ncs/cook_meat.ncs differ diff --git a/_module/ncs/door_click.ncs b/_module/ncs/door_click.ncs index 66737feb..cb21144a 100644 Binary files a/_module/ncs/door_click.ncs and b/_module/ncs/door_click.ncs differ diff --git a/_module/ncs/follow_pc.ncs b/_module/ncs/follow_pc.ncs index 2f833086..325bb73f 100644 Binary files a/_module/ncs/follow_pc.ncs and b/_module/ncs/follow_pc.ncs differ diff --git a/_module/ncs/mod_nui.ncs b/_module/ncs/mod_nui.ncs index bad69785..23a5d549 100644 Binary files a/_module/ncs/mod_nui.ncs and b/_module/ncs/mod_nui.ncs differ diff --git a/_module/ncs/nui_f_storage.ncs b/_module/ncs/nui_f_storage.ncs index 9cdc8389..3e3dcaf1 100644 Binary files a/_module/ncs/nui_f_storage.ncs and b/_module/ncs/nui_f_storage.ncs differ diff --git a/_module/ncs/nw_c2_default1.ncs b/_module/ncs/nw_c2_default1.ncs index b2834220..5aebc39b 100644 Binary files a/_module/ncs/nw_c2_default1.ncs and b/_module/ncs/nw_c2_default1.ncs differ diff --git a/_module/ncs/nw_c2_default2.ncs b/_module/ncs/nw_c2_default2.ncs index 421d4cba..68f702aa 100644 Binary files a/_module/ncs/nw_c2_default2.ncs and b/_module/ncs/nw_c2_default2.ncs differ diff --git a/_module/ncs/nw_c2_default3.ncs b/_module/ncs/nw_c2_default3.ncs index 30c94d39..c54384cc 100644 Binary files a/_module/ncs/nw_c2_default3.ncs and b/_module/ncs/nw_c2_default3.ncs differ diff --git a/_module/ncs/nw_c2_default4.ncs b/_module/ncs/nw_c2_default4.ncs index d7e02858..b8de03c1 100644 Binary files a/_module/ncs/nw_c2_default4.ncs and b/_module/ncs/nw_c2_default4.ncs differ diff --git a/_module/ncs/nw_c2_default5.ncs b/_module/ncs/nw_c2_default5.ncs index 85befee7..1502fbc3 100644 Binary files a/_module/ncs/nw_c2_default5.ncs and b/_module/ncs/nw_c2_default5.ncs differ diff --git a/_module/ncs/nw_c2_default6.ncs b/_module/ncs/nw_c2_default6.ncs index 72ba74c5..1727698b 100644 Binary files a/_module/ncs/nw_c2_default6.ncs and b/_module/ncs/nw_c2_default6.ncs differ diff --git a/_module/ncs/nw_c2_default8.ncs b/_module/ncs/nw_c2_default8.ncs index d2e3160f..2df2091a 100644 Binary files a/_module/ncs/nw_c2_default8.ncs and b/_module/ncs/nw_c2_default8.ncs differ diff --git a/_module/ncs/nw_c2_defaultb.ncs b/_module/ncs/nw_c2_defaultb.ncs index e1c07979..146034f3 100644 Binary files a/_module/ncs/nw_c2_defaultb.ncs and b/_module/ncs/nw_c2_defaultb.ncs differ diff --git a/_module/ncs/nw_ch_ac2.ncs b/_module/ncs/nw_ch_ac2.ncs index 25a19853..f0369fb5 100644 Binary files a/_module/ncs/nw_ch_ac2.ncs and b/_module/ncs/nw_ch_ac2.ncs differ diff --git a/_module/ncs/nw_o2_boss.ncs b/_module/ncs/nw_o2_boss.ncs index c5835be1..57cdce63 100644 Binary files a/_module/ncs/nw_o2_boss.ncs and b/_module/ncs/nw_o2_boss.ncs differ diff --git a/_module/ncs/nw_o2_classweap.ncs b/_module/ncs/nw_o2_classweap.ncs index f7d00fa6..354ca56c 100644 Binary files a/_module/ncs/nw_o2_classweap.ncs and b/_module/ncs/nw_o2_classweap.ncs differ diff --git a/_module/ncs/nw_o2_generalhig.ncs b/_module/ncs/nw_o2_generalhig.ncs index 610c84b5..35297075 100644 Binary files a/_module/ncs/nw_o2_generalhig.ncs and b/_module/ncs/nw_o2_generalhig.ncs differ diff --git a/_module/ncs/nw_o2_generallow.ncs b/_module/ncs/nw_o2_generallow.ncs index 1c000d2b..55674bc1 100644 Binary files a/_module/ncs/nw_o2_generallow.ncs and b/_module/ncs/nw_o2_generallow.ncs differ diff --git a/_module/ncs/nw_o2_generalmed.ncs b/_module/ncs/nw_o2_generalmed.ncs index f2b65e84..169bf904 100644 Binary files a/_module/ncs/nw_o2_generalmed.ncs and b/_module/ncs/nw_o2_generalmed.ncs differ diff --git a/_module/ncs/obj_us_chest.ncs b/_module/ncs/obj_us_chest.ncs index 63244d57..2b30867b 100644 Binary files a/_module/ncs/obj_us_chest.ncs and b/_module/ncs/obj_us_chest.ncs differ diff --git a/_module/ncs/on_mod_enter.ncs b/_module/ncs/on_mod_enter.ncs index 2db77a53..1707a89d 100644 Binary files a/_module/ncs/on_mod_enter.ncs and b/_module/ncs/on_mod_enter.ncs differ diff --git a/_module/ncs/on_pcdie.ncs b/_module/ncs/on_pcdie.ncs index 7ea848f9..556d12fe 100644 Binary files a/_module/ncs/on_pcdie.ncs and b/_module/ncs/on_pcdie.ncs differ diff --git a/_module/ncs/picklock.ncs b/_module/ncs/picklock.ncs index 2d2cf024..74f6d708 100644 Binary files a/_module/ncs/picklock.ncs and b/_module/ncs/picklock.ncs differ diff --git a/_module/ncs/port_archspire.ncs b/_module/ncs/port_archspire.ncs index 6b37df3d..910ea290 100644 Binary files a/_module/ncs/port_archspire.ncs and b/_module/ncs/port_archspire.ncs differ diff --git a/_module/ncs/port_valeford.ncs b/_module/ncs/port_valeford.ncs index 8c45d4cd..d66609b3 100644 Binary files a/_module/ncs/port_valeford.ncs and b/_module/ncs/port_valeford.ncs differ diff --git a/_module/ncs/prc_pwonspawn.ncs b/_module/ncs/prc_pwonspawn.ncs index e02721c4..79012fd5 100644 Binary files a/_module/ncs/prc_pwonspawn.ncs and b/_module/ncs/prc_pwonspawn.ncs differ diff --git a/_module/ncs/ra_close_door.ncs b/_module/ncs/ra_close_door.ncs index 1f194772..2876a3e5 100644 Binary files a/_module/ncs/ra_close_door.ncs and b/_module/ncs/ra_close_door.ncs differ diff --git a/_module/ncs/rnd_magicitem.ncs b/_module/ncs/rnd_magicitem.ncs index 0b06c794..528599be 100644 Binary files a/_module/ncs/rnd_magicitem.ncs and b/_module/ncs/rnd_magicitem.ncs differ diff --git a/_module/ncs/se_door_death.ncs b/_module/ncs/se_door_death.ncs index 5f80da18..12091647 100644 Binary files a/_module/ncs/se_door_death.ncs and b/_module/ncs/se_door_death.ncs differ diff --git a/_module/ncs/spawn_mummy_onds.ncs b/_module/ncs/spawn_mummy_onds.ncs index b568eefc..9183af82 100644 Binary files a/_module/ncs/spawn_mummy_onds.ncs and b/_module/ncs/spawn_mummy_onds.ncs differ diff --git a/_module/ncs/ss_treasure_spwn.ncs b/_module/ncs/ss_treasure_spwn.ncs index 1ab0f190..d51738d2 100644 Binary files a/_module/ncs/ss_treasure_spwn.ncs and b/_module/ncs/ss_treasure_spwn.ncs differ diff --git a/_module/ncs/townportal.ncs b/_module/ncs/townportal.ncs index b0f83324..8f588273 100644 Binary files a/_module/ncs/townportal.ncs and b/_module/ncs/townportal.ncs differ diff --git a/_module/ncs/use_altar_evil.ncs b/_module/ncs/use_altar_evil.ncs index cbaf3662..d847128b 100644 Binary files a/_module/ncs/use_altar_evil.ncs and b/_module/ncs/use_altar_evil.ncs differ diff --git a/_module/ncs/use_altar_good.ncs b/_module/ncs/use_altar_good.ncs index d1c41932..f8ba8c85 100644 Binary files a/_module/ncs/use_altar_good.ncs and b/_module/ncs/use_altar_good.ncs differ diff --git a/_module/ncs/use_mirror.ncs b/_module/ncs/use_mirror.ncs index 533aa8df..609f016e 100644 Binary files a/_module/ncs/use_mirror.ncs and b/_module/ncs/use_mirror.ncs differ diff --git a/_module/ncs/use_obelisk.ncs b/_module/ncs/use_obelisk.ncs index ec762b47..c78c675b 100644 Binary files a/_module/ncs/use_obelisk.ncs and b/_module/ncs/use_obelisk.ncs differ diff --git a/_module/ncs/vtw_mta.ncs b/_module/ncs/vtw_mta.ncs index 85fc48dd..2c372340 100644 Binary files a/_module/ncs/vtw_mta.ncs and b/_module/ncs/vtw_mta.ncs differ diff --git a/_module/ncs/x0_ch_hen_conv.ncs b/_module/ncs/x0_ch_hen_conv.ncs index 3c95280f..fa13b9bc 100644 Binary files a/_module/ncs/x0_ch_hen_conv.ncs and b/_module/ncs/x0_ch_hen_conv.ncs differ diff --git a/_module/ncs/x0_ch_hen_heart.ncs b/_module/ncs/x0_ch_hen_heart.ncs index 3580b3a0..4a10674e 100644 Binary files a/_module/ncs/x0_ch_hen_heart.ncs and b/_module/ncs/x0_ch_hen_heart.ncs differ diff --git a/_module/ncs/x0_ch_hen_percep.ncs b/_module/ncs/x0_ch_hen_percep.ncs index e4240730..6e7a992f 100644 Binary files a/_module/ncs/x0_ch_hen_percep.ncs and b/_module/ncs/x0_ch_hen_percep.ncs differ diff --git a/_release/Mordenkainen's Magnificent Dungeon [PRC8-CEP3].7z b/_release/Mordenkainen's Magnificent Dungeon [PRC8-CEP3].7z index 6cb53ec4..d5e9216b 100644 Binary files a/_release/Mordenkainen's Magnificent Dungeon [PRC8-CEP3].7z and b/_release/Mordenkainen's Magnificent Dungeon [PRC8-CEP3].7z differ