diff --git a/.gitignore b/.gitignore index 4a26522f..770e07fb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.mod +*.BackupMod diff --git a/_module/Aschbourne [PRC8-CEP3].BackupMod b/_module/Aschbourne [PRC8-CEP3].BackupMod deleted file mode 100644 index c2942392..00000000 Binary files a/_module/Aschbourne [PRC8-CEP3].BackupMod and /dev/null differ diff --git a/_module/ncs/_on_active_item.ncs b/_module/ncs/_on_active_item.ncs index 446700ee..c652badb 100644 Binary files a/_module/ncs/_on_active_item.ncs and b/_module/ncs/_on_active_item.ncs differ diff --git a/_module/ncs/ldf_isnotweap.ncs b/_module/ncs/ldf_isnotweap.ncs index 6d98d5b6..bdae2a6a 100644 Binary files a/_module/ncs/ldf_isnotweap.ncs and b/_module/ncs/ldf_isnotweap.ncs differ diff --git a/_module/ncs/ldf_isweapon.ncs b/_module/ncs/ldf_isweapon.ncs index 9dd86810..abf5ad51 100644 Binary files a/_module/ncs/ldf_isweapon.ncs and b/_module/ncs/ldf_isweapon.ncs differ diff --git a/_module/ncs/on_client_enter.ncs b/_module/ncs/on_client_enter.ncs index 09fc1059..cacf93f4 100644 Binary files a/_module/ncs/on_client_enter.ncs and b/_module/ncs/on_client_enter.ncs differ diff --git a/_module/ncs/spawn_leavebody.ncs b/_module/ncs/spawn_leavebody.ncs index 8e29073a..72c33641 100644 Binary files a/_module/ncs/spawn_leavebody.ncs and b/_module/ncs/spawn_leavebody.ncs differ diff --git a/_module/ncs/vamp_only.ncs b/_module/ncs/vamp_only.ncs index 64e3aef6..a3821e21 100644 Binary files a/_module/ncs/vamp_only.ncs and b/_module/ncs/vamp_only.ncs differ diff --git a/_module/nss/_on_active_item.nss b/_module/nss/_on_active_item.nss index 8007a072..211ed202 100644 --- a/_module/nss/_on_active_item.nss +++ b/_module/nss/_on_active_item.nss @@ -3,6 +3,7 @@ void main() { EnableDyeKitMenu(); + ExecuteScript("dmfi_activate", OBJECT_SELF); ExecuteScript(GetTag(GetItemActivated()),OBJECT_SELF); object oItem = GetItemActivated(); object oActivator = GetItemActivator(); diff --git a/_module/nss/on_client_enter.nss b/_module/nss/on_client_enter.nss index 22a5fb96..caaddc4f 100644 --- a/_module/nss/on_client_enter.nss +++ b/_module/nss/on_client_enter.nss @@ -163,20 +163,20 @@ void main() } //:: Give DMFI Wands if player doesn't have them - if ( GetItemPossessedBy(oPC, "dmfi_dicebag") == OBJECT_INVALID ) + if ( GetItemPossessedBy(oPC, "dmfi_pc_dicebag") == OBJECT_INVALID ) { - DelayCommand(1.0, FloatingTextStringOnCreature("DMFI Dicebag acquired.", oPC)); - GiveDMFI(oPC, "dmfi_dicebag"); + DelayCommand(1.0, FloatingTextStringOnCreature("DMFI PC Dicebag acquired.", oPC)); + GiveDMFI(oPC, "dmfi_pc_dicebag"); } - if ( GetItemPossessedBy(oPC, "dmfi_emote") == OBJECT_INVALID ) + if ( GetItemPossessedBy(oPC, "dmfi_pc_emote") == OBJECT_INVALID ) { - DelayCommand(1.0, FloatingTextStringOnCreature("DMFI Emote Wand acquired.", oPC)); - GiveDMFI(oPC, "dmfi_emote"); + DelayCommand(1.0, FloatingTextStringOnCreature("DMFI PC Emote Wand acquired.", oPC)); + GiveDMFI(oPC, "dmfi_pc_emote"); } - if ( GetItemPossessedBy(oPC, "dmfi_naming") == OBJECT_INVALID ) + if ( GetItemPossessedBy(oPC, "dmfi_pc_follow") == OBJECT_INVALID ) { - DelayCommand(1.0, FloatingTextStringOnCreature("DMFI Naming acquired.", oPC)); - GiveDMFI(oPC, "dmfi_naming"); + DelayCommand(1.0, FloatingTextStringOnCreature("DMFI PC Autofollow Wand acquired.", oPC)); + GiveDMFI(oPC, "dmfi_pc_follow"); } //Test to see if PC has a skill book.. if not, then create one. diff --git a/_module/nss/se_new_player.nss b/_module/nss/se_new_player.nss index 39ed9b52..38d097fd 100644 --- a/_module/nss/se_new_player.nss +++ b/_module/nss/se_new_player.nss @@ -46,11 +46,11 @@ int nStartingGear = TRUE; // Give new player starting gear TRUE or FALSE? // If TRUE add ResRef between the quotes below(not tag), // plus stack size,if applicable. // eg. string sResRef = "potion"; int nStack = 6; - string sResRef = "dmfi_dicebag"; int nStack = 1; - string sResRef1 = "dmfi_emote"; int nStack1 = 1; - string sResRef2 = "dmfi_naming"; int nStack2 = 1; - string sResRef3 = "nw_it_mpotion001"; int nStack3 = 10; - string sResRef4 = ""; int nStack4 = 1; + string sResRef = "nw_it_mpotion001"; int nStack = 10; + string sResRef1 = ""; int nStack1 = 1; + string sResRef2 = ""; int nStack2 = 1; + string sResRef3 = ""; int nStack3 = 1; + string sResRef4 = ""; int nStack4 = 1; /************************************************************************************/ /************************** END OF SETTINGS **********************************/ diff --git a/_release/Aschbourne [PRC8-CEP3].7z b/_release/Aschbourne [PRC8-CEP3].7z index 327ab917..8cb6fe88 100644 Binary files a/_release/Aschbourne [PRC8-CEP3].7z and b/_release/Aschbourne [PRC8-CEP3].7z differ