diff --git a/gamma_age_v2/DMBookofJournalE.uti b/gamma_age_v2/DMBookofJournalE.uti new file mode 100644 index 00000000..ec6b891e Binary files /dev/null and b/gamma_age_v2/DMBookofJournalE.uti differ diff --git a/gamma_age_v2/Repute.fac b/gamma_age_v2/Repute.fac new file mode 100644 index 00000000..7bd714b5 Binary files /dev/null and b/gamma_age_v2/Repute.fac differ diff --git a/gamma_age_v2/ab_desctrig_fnf.ncs b/gamma_age_v2/ab_desctrig_fnf.ncs new file mode 100644 index 00000000..72cb889b Binary files /dev/null and b/gamma_age_v2/ab_desctrig_fnf.ncs differ diff --git a/gamma_age_v2/ab_desctrig_fnf.nss b/gamma_age_v2/ab_desctrig_fnf.nss new file mode 100644 index 00000000..9792378c --- /dev/null +++ b/gamma_age_v2/ab_desctrig_fnf.nss @@ -0,0 +1,78 @@ +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +/////////////// Created By /////////////// +/////////////// Abaddon, Angel of the Abyss /////////////// +/////////////// Contactabe via BiowareŽ /////////////// +/////////////// Forums and Private Message /////////////// +/////////////// Utilities: /////////////// +/////////////// __Abaddon__ /////////////// +/////////////// /////////////// +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +/////////////// All Scripts and Hakpak's are /////////////// +/////////////// distibuted as is, with no /////////////// +/////////////// warranty or responsibility /////////////// +/////////////// undertaken by the author. /////////////// +/////////////// Caveat Emptor! /////////////// +/////////////// This is freeware, You may /////////////// +/////////////// distribute it in its ORIGINAL /////////////// +/////////////// form at will, if this script /////////////// +/////////////// is used in any large projects such /////////////// +/////////////// as a PW or story module, the author /////////////// +/////////////// would like to be informed, merly as /////////////// +/////////////// a curtosey and indicator of both /////////////// +/////////////// applicability and success :) /////////////// +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +////////////// Script Name: ab_DescTrig /////////////// +////////////// File Name: Descriptive Triggers /////////////// +////////////// Author(s): Abaddon /////////////// +////////////// Galap /////////////// +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +// Commentary/Introduction: // +// ----------------------- // +// Fire and forget trigger. Grabs the name of the trigger +// its attatched to and displays it as floaty text on a PC +// only one time. +// Modified as per Nathraiben's suggestion so that individual tags are no longer +// required on the trigers. +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +////////////// Function Headers /////////////// +/////////////////////////////////////////////////////////////////// + +//Fires The name of the trigger at the entering PC* +// uses an int to make only fire once. +// Int is established on the PC +// String Variance == GetTag(of the trigger) + Has Fired +// *There is a GetIsPC check in this function. +void ab_Trig_Description_FireOnceOnly(); + +void ab_Trig_Description_FireOnceOnly() +{ + object oPC = GetEnteringObject(); + string sDesc = GetName(OBJECT_SELF); + //Determine that the trigger hasnt fired for this PC before + if (GetLocalInt(OBJECT_SELF, GetName(oPC) + "Has Fired") < 1) + { + //Determine that the PC is a valid object + if (GetIsObjectValid(oPC)) + { + //If conditional just to verify that it is a PC not a wandering NPC or something of that nature + if (GetIsPC(oPC)) + { + // I like floaty text :) soo much nicer and more in mood for a player + FloatingTextStringOnCreature(sDesc, oPC, FALSE); + //Set the Int so that it will no longer fire for the PC + SetLocalInt(OBJECT_SELF, GetName(oPC) + "Has Fired", 1); + } + } + } +} +void main() +{ +ab_Trig_Description_FireOnceOnly(); +} + diff --git a/gamma_age_v2/ab_desctrig_mult.ncs b/gamma_age_v2/ab_desctrig_mult.ncs new file mode 100644 index 00000000..a85b0647 Binary files /dev/null and b/gamma_age_v2/ab_desctrig_mult.ncs differ diff --git a/gamma_age_v2/ab_desctrig_mult.nss b/gamma_age_v2/ab_desctrig_mult.nss new file mode 100644 index 00000000..982c92d1 --- /dev/null +++ b/gamma_age_v2/ab_desctrig_mult.nss @@ -0,0 +1,74 @@ +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +/////////////// Created By /////////////// +/////////////// Abaddon, Angel of the Abyss /////////////// +/////////////// Contactabe via BiowareŽ /////////////// +/////////////// Forums and Private Message /////////////// +/////////////// Utilities: /////////////// +/////////////// __Abaddon__ /////////////// +/////////////// /////////////// +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +/////////////// All Scripts and Hakpak's are /////////////// +/////////////// distibuted as is, with no /////////////// +/////////////// warranty or responsibility /////////////// +/////////////// undertaken by the author. /////////////// +/////////////// Caveat Emptor! /////////////// +/////////////// This is freeware, You may /////////////// +/////////////// distribute it in its ORIGINAL /////////////// +/////////////// form at will, if this script /////////////// +/////////////// is used in any large projects such /////////////// +/////////////// as a PW or story module, the author /////////////// +/////////////// would like to be informed, merly as /////////////// +/////////////// a curtosey and indicator of both /////////////// +/////////////// applicability and success :) /////////////// +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +////////////// Script Name: ab_DescTrig /////////////// +////////////// File Name: Descriptive Triggers /////////////// +////////////// Author(s): Abaddon /////////////// +////////////// Galap /////////////// +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +// Commentary/Introduction: // +// ----------------------- // +// Fire and forget trigger. Grabs the name of the trigger +// its attatched to and displays it as floaty text on a PC +// every time they activate the trigger. +// +/////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////// +////////////// Function Headers /////////////// +/////////////////////////////////////////////////////////////////// + +//Fires The name of the trigger at the entering PC* +// uses an int to make only fire once. +// Int is established on the PC +// String Variance == GetTag(of the trigger) + Has Fired +// *There is a GetIsPC check in this function. +void ab_Trig_Description_FireOnceOnly(); + +void ab_Trig_Description_FireOnceOnly() +{ + object oPC = GetEnteringObject(); + string sDesc = GetName(OBJECT_SELF); + //Determine that the PC is a valid object + if (GetIsObjectValid(oPC)) + { + //If conditional just to verify that it is a PC not a wandering NPC or something of that nature + if (GetIsPC(oPC)) + { + // I like floaty text :) soo much nicer and more in mood for a player + FloatingTextStringOnCreature(sDesc, oPC, FALSE); + + + } + } + +} +void main() +{ +ab_Trig_Description_FireOnceOnly(); +} + diff --git a/gamma_age_v2/adventurers_inn.are b/gamma_age_v2/adventurers_inn.are new file mode 100644 index 00000000..8422dc55 Binary files /dev/null and b/gamma_age_v2/adventurers_inn.are differ diff --git a/gamma_age_v2/adventurers_inn.gic b/gamma_age_v2/adventurers_inn.gic new file mode 100644 index 00000000..e3affc70 Binary files /dev/null and b/gamma_age_v2/adventurers_inn.gic differ diff --git a/gamma_age_v2/adventurers_inn.git b/gamma_age_v2/adventurers_inn.git new file mode 100644 index 00000000..fb17086b Binary files /dev/null and b/gamma_age_v2/adventurers_inn.git differ diff --git a/gamma_age_v2/albilope.utc b/gamma_age_v2/albilope.utc new file mode 100644 index 00000000..f2b76138 Binary files /dev/null and b/gamma_age_v2/albilope.utc differ diff --git a/gamma_age_v2/albilope001.utc b/gamma_age_v2/albilope001.utc new file mode 100644 index 00000000..597ed01d Binary files /dev/null and b/gamma_age_v2/albilope001.utc differ diff --git a/gamma_age_v2/albilopegore.uti b/gamma_age_v2/albilopegore.uti new file mode 100644 index 00000000..65ce095f Binary files /dev/null and b/gamma_age_v2/albilopegore.uti differ diff --git a/gamma_age_v2/albilopehide.uti b/gamma_age_v2/albilopehide.uti new file mode 100644 index 00000000..b911cc5f Binary files /dev/null and b/gamma_age_v2/albilopehide.uti differ diff --git a/gamma_age_v2/android.utc b/gamma_age_v2/android.utc new file mode 100644 index 00000000..0fa9e95b Binary files /dev/null and b/gamma_age_v2/android.utc differ diff --git a/gamma_age_v2/android001.utc b/gamma_age_v2/android001.utc new file mode 100644 index 00000000..93e909c5 Binary files /dev/null and b/gamma_age_v2/android001.utc differ diff --git a/gamma_age_v2/android002.utc b/gamma_age_v2/android002.utc new file mode 100644 index 00000000..fc79537b Binary files /dev/null and b/gamma_age_v2/android002.utc differ diff --git a/gamma_age_v2/android003.utc b/gamma_age_v2/android003.utc new file mode 100644 index 00000000..c6488404 Binary files /dev/null and b/gamma_age_v2/android003.utc differ diff --git a/gamma_age_v2/androidproperti.uti b/gamma_age_v2/androidproperti.uti new file mode 100644 index 00000000..0639a6cd Binary files /dev/null and b/gamma_age_v2/androidproperti.uti differ diff --git a/gamma_age_v2/ark.utc b/gamma_age_v2/ark.utc new file mode 100644 index 00000000..278b3d0e Binary files /dev/null and b/gamma_age_v2/ark.utc differ diff --git a/gamma_age_v2/armyofthedeep.uti b/gamma_age_v2/armyofthedeep.uti new file mode 100644 index 00000000..dba2c9fd Binary files /dev/null and b/gamma_age_v2/armyofthedeep.uti differ diff --git a/gamma_age_v2/arn.utc b/gamma_age_v2/arn.utc new file mode 100644 index 00000000..c3d9c471 Binary files /dev/null and b/gamma_age_v2/arn.utc differ diff --git a/gamma_age_v2/arnhide.uti b/gamma_age_v2/arnhide.uti new file mode 100644 index 00000000..c4c66dbe Binary files /dev/null and b/gamma_age_v2/arnhide.uti differ diff --git a/gamma_age_v2/array_example.ncs b/gamma_age_v2/array_example.ncs new file mode 100644 index 00000000..62f9eab4 Binary files /dev/null and b/gamma_age_v2/array_example.ncs differ diff --git a/gamma_age_v2/array_example.nss b/gamma_age_v2/array_example.nss new file mode 100644 index 00000000..53f13f8f --- /dev/null +++ b/gamma_age_v2/array_example.nss @@ -0,0 +1,143 @@ +//#include "inc_array" +#include "nwnx_time" + +// nwnx_data also includes inc_array, so don't double dip. +#include "nwnx_data" + +void Log(string msg) +{ + WriteTimestampedLogEntry(msg); +} + +void TestArrayOnModule() +{ + + string array = "test"; + + // By default, temporary arrays are created on the module. + Array_PushBack_Str(array, "BItem1"); + Array_PushBack_Str(array, "AItem2"); + Array_PushBack_Str(array, "AItem3"); + Array_PushBack_Str(array, "BItem2"); + Array_Debug_Dump(array, "After first load"); + + int foo = Array_Find_Str(array, "AItem3"); + Log("Found element AItem3 at index = " + IntToString(foo)); + + Array_Set_Str(array, 2, "Suck it up..."); + Array_Debug_Dump(array, "After set 2 = 'Suck it up...'"); + + Array_Erase(array, 1); + Array_Debug_Dump(array, "After delete 1"); + + Array_PushBack_Str(array, "MItem1"); + Array_PushBack_Str(array, "QItem2"); + Array_PushBack_Str(array, "NItem3"); + Array_PushBack_Str(array, "KItem2"); + + Array_Debug_Dump(array, "After add more"); + Array_SortAscending(array); + + Array_Debug_Dump(array, "After sort"); + + Array_Shuffle(array); + Array_Debug_Dump(array, "After shuffle"); + + Log( (Array_Contains_Str(array, "NItem3")) ? "Passed.. found it" : "Failed.. should have found it" ); + Log( (Array_Contains_Str(array, "KItem2")) ? "Passed.. found it" : "Failed.. should have found it" ); + Log( (Array_Contains_Str(array, "xxxxxx")) ? "Failed.. not found" : "Passed.. should not exist" ); + + Array_Clear(array); + // Load up the array with 100 entries + int i; + + struct NWNX_Time_HighResTimestamp b; + b = NWNX_Time_GetHighResTimeStamp(); + Log("Start Time: " + IntToString(b.seconds) + "." + IntToString(b.microseconds)); + for (i=0; i<1000; i++) + { + Array_PushBack_Str(array, IntToString(d100()) + " xxx " + IntToString(i)); + } + b = NWNX_Time_GetHighResTimeStamp(); + Log("Loaded 1000: " + IntToString(b.seconds) + "." + IntToString(b.microseconds)); + Array_Shuffle(array); + b = NWNX_Time_GetHighResTimeStamp(); + Log("Shuffled 1000: " + IntToString(b.seconds) + "." + IntToString(b.microseconds)); + for (i=5; i<995; i++) + { + // Delete the third entry a bunch of times + Array_Erase(array, 3); + } + b = NWNX_Time_GetHighResTimeStamp(); + Log("Delete ~990: " + IntToString(b.seconds) + "." + IntToString(b.microseconds)); + Array_Debug_Dump(array, "After mass insert/delete"); + +} + +void TestArrayOnChicken() +{ + string array="chicken"; + // Let's create an array "on" our favorite creature: the deadly nw_chicken + // Note - arrays aren't really attached to the item, but the module, and they + // are tagged with the objects string representation. + object oCreature = CreateObject(OBJECT_TYPE_CREATURE, "nw_chicken", GetStartingLocation()); + if (!GetIsObjectValid(oCreature)) + { + Log("NWNX_Creature test: Failed to create creature"); + return; + } + + Array_PushBack_Str(array, "BItem1", oCreature); + Array_PushBack_Str(array, "AItem2", oCreature); + Array_PushBack_Str(array, "AItem3", oCreature); + Array_PushBack_Str(array, "BItem2", oCreature); + Array_Debug_Dump(array, "After Chicken array load", oCreature); + +} + +void TestNWNXArray() +{ + Log(""); + Log("Start NWNX_Data test."); + string array = "test2"; + + NWNX_Data_Array_PushBack_Str(GetModule(), array, "XItem1"); + NWNX_Data_Array_PushBack_Str(GetModule(), array, "ZItem2"); + NWNX_Data_Array_PushBack_Str(GetModule(), array, "ZItem3"); + NWNX_Data_Array_PushBack_Str(GetModule(), array, "XItem2"); + Array_Debug_Dump(array, "After first load"); + + int foo = NWNX_Data_Array_Find_Str(GetModule(), array, "ZItem3"); + Log("Found element AItem3 at index = " + IntToString(foo)); + + NWNX_Data_Array_Set_Str(GetModule(), array, 2, "Suck it up..."); + Array_Debug_Dump(array, "After set 2 = 'Suck it up...'"); + + NWNX_Data_Array_Erase(NWNX_DATA_TYPE_STRING, GetModule(), array, 1); + Array_Debug_Dump(array, "After delete 1"); + + NWNX_Data_Array_PushBack_Str(GetModule(), array, "MItem1"); + NWNX_Data_Array_PushBack_Str(GetModule(), array, "QItem2"); + NWNX_Data_Array_PushBack_Str(GetModule(), array, "NItem3"); + NWNX_Data_Array_PushBack_Str(GetModule(), array, "KItem2"); + + Array_Debug_Dump(array, "After add more"); + NWNX_Data_Array_SortAscending(NWNX_DATA_TYPE_STRING, GetModule(), array); + + Array_Debug_Dump(array, "After sort"); + +} + +// Uncomment and assign to some event click. +/* */ +void main() +{ + Log("Start"); + + TestArrayOnModule(); + + TestArrayOnChicken(); + + TestNWNXArray(); +} +/* */ diff --git a/gamma_age_v2/ashlw002.uti b/gamma_age_v2/ashlw002.uti new file mode 100644 index 00000000..eab2c3bb Binary files /dev/null and b/gamma_age_v2/ashlw002.uti differ diff --git a/gamma_age_v2/ashlw003.uti b/gamma_age_v2/ashlw003.uti new file mode 100644 index 00000000..837ac112 Binary files /dev/null and b/gamma_age_v2/ashlw003.uti differ diff --git a/gamma_age_v2/ashto002.uti b/gamma_age_v2/ashto002.uti new file mode 100644 index 00000000..a942a33f Binary files /dev/null and b/gamma_age_v2/ashto002.uti differ diff --git a/gamma_age_v2/attercop.utc b/gamma_age_v2/attercop.utc new file mode 100644 index 00000000..f832eb41 Binary files /dev/null and b/gamma_age_v2/attercop.utc differ diff --git a/gamma_age_v2/attercophide.uti b/gamma_age_v2/attercophide.uti new file mode 100644 index 00000000..91d4bed2 Binary files /dev/null and b/gamma_age_v2/attercophide.uti differ diff --git a/gamma_age_v2/autoclose_door.ncs b/gamma_age_v2/autoclose_door.ncs new file mode 100644 index 00000000..1ef3e2f5 Binary files /dev/null and b/gamma_age_v2/autoclose_door.ncs differ diff --git a/gamma_age_v2/autoclose_door.nss b/gamma_age_v2/autoclose_door.nss new file mode 100644 index 00000000..e1709032 --- /dev/null +++ b/gamma_age_v2/autoclose_door.nss @@ -0,0 +1,7 @@ +void main() +{ +object oDoor = OBJECT_SELF; +AssignCommand(oDoor, ActionWait(5.0f)); +AssignCommand(oDoor, ActionCloseDoor(oDoor)); +// AssignCommand(oDoor, ActionDoCommand(SetLocked(oDoor, TRUE))); +} diff --git a/gamma_age_v2/badder.utc b/gamma_age_v2/badder.utc new file mode 100644 index 00000000..f77bad9b Binary files /dev/null and b/gamma_age_v2/badder.utc differ diff --git a/gamma_age_v2/badderchainmail.uti b/gamma_age_v2/badderchainmail.uti new file mode 100644 index 00000000..1534ea3d Binary files /dev/null and b/gamma_age_v2/badderchainmail.uti differ diff --git a/gamma_age_v2/badderhelm.uti b/gamma_age_v2/badderhelm.uti new file mode 100644 index 00000000..f95d5673 Binary files /dev/null and b/gamma_age_v2/badderhelm.uti differ diff --git a/gamma_age_v2/badderhelm001.uti b/gamma_age_v2/badderhelm001.uti new file mode 100644 index 00000000..1133cc99 Binary files /dev/null and b/gamma_age_v2/badderhelm001.uti differ diff --git a/gamma_age_v2/badderhide.uti b/gamma_age_v2/badderhide.uti new file mode 100644 index 00000000..fa7af0cb Binary files /dev/null and b/gamma_age_v2/badderhide.uti differ diff --git a/gamma_age_v2/baddershield.uti b/gamma_age_v2/baddershield.uti new file mode 100644 index 00000000..c7608b60 Binary files /dev/null and b/gamma_age_v2/baddershield.uti differ diff --git a/gamma_age_v2/bamutan.utc b/gamma_age_v2/bamutan.utc new file mode 100644 index 00000000..4d839f70 Binary files /dev/null and b/gamma_age_v2/bamutan.utc differ diff --git a/gamma_age_v2/bamutencarpace.uti b/gamma_age_v2/bamutencarpace.uti new file mode 100644 index 00000000..221cc7fa Binary files /dev/null and b/gamma_age_v2/bamutencarpace.uti differ diff --git a/gamma_age_v2/banded_lg.uti b/gamma_age_v2/banded_lg.uti new file mode 100644 index 00000000..50609aa0 Binary files /dev/null and b/gamma_age_v2/banded_lg.uti differ diff --git a/gamma_age_v2/banded_med.uti b/gamma_age_v2/banded_med.uti new file mode 100644 index 00000000..c75f7dca Binary files /dev/null and b/gamma_age_v2/banded_med.uti differ diff --git a/gamma_age_v2/banded_med_a.uti b/gamma_age_v2/banded_med_a.uti new file mode 100644 index 00000000..86c7bfd9 Binary files /dev/null and b/gamma_age_v2/banded_med_a.uti differ diff --git a/gamma_age_v2/banded_sm.uti b/gamma_age_v2/banded_sm.uti new file mode 100644 index 00000000..825fcdaa Binary files /dev/null and b/gamma_age_v2/banded_sm.uti differ diff --git a/gamma_age_v2/banded_st.uti b/gamma_age_v2/banded_st.uti new file mode 100644 index 00000000..ba6daad1 Binary files /dev/null and b/gamma_age_v2/banded_st.uti differ diff --git a/gamma_age_v2/barxyn.utc b/gamma_age_v2/barxyn.utc new file mode 100644 index 00000000..ada50cd4 Binary files /dev/null and b/gamma_age_v2/barxyn.utc differ diff --git a/gamma_age_v2/bench001.utp b/gamma_age_v2/bench001.utp new file mode 100644 index 00000000..6fab577f Binary files /dev/null and b/gamma_age_v2/bench001.utp differ diff --git a/gamma_age_v2/besiepwres.utp b/gamma_age_v2/besiepwres.utp new file mode 100644 index 00000000..d17f9d34 Binary files /dev/null and b/gamma_age_v2/besiepwres.utp differ diff --git a/gamma_age_v2/besiewidget.uti b/gamma_age_v2/besiewidget.uti new file mode 100644 index 00000000..a4f5590f Binary files /dev/null and b/gamma_age_v2/besiewidget.uti differ diff --git a/gamma_age_v2/bigoon.utc b/gamma_age_v2/bigoon.utc new file mode 100644 index 00000000..78ac9d14 Binary files /dev/null and b/gamma_age_v2/bigoon.utc differ diff --git a/gamma_age_v2/blaash.utc b/gamma_age_v2/blaash.utc new file mode 100644 index 00000000..239b0102 Binary files /dev/null and b/gamma_age_v2/blaash.utc differ diff --git a/gamma_age_v2/blight.utc b/gamma_age_v2/blight.utc new file mode 100644 index 00000000..d8ce2d54 Binary files /dev/null and b/gamma_age_v2/blight.utc differ diff --git a/gamma_age_v2/blightbite.uti b/gamma_age_v2/blightbite.uti new file mode 100644 index 00000000..80698000 Binary files /dev/null and b/gamma_age_v2/blightbite.uti differ diff --git a/gamma_age_v2/blightbuffet.uti b/gamma_age_v2/blightbuffet.uti new file mode 100644 index 00000000..057ac5da Binary files /dev/null and b/gamma_age_v2/blightbuffet.uti differ diff --git a/gamma_age_v2/blighthide.uti b/gamma_age_v2/blighthide.uti new file mode 100644 index 00000000..d5017d0e Binary files /dev/null and b/gamma_age_v2/blighthide.uti differ diff --git a/gamma_age_v2/bloodbird.utc b/gamma_age_v2/bloodbird.utc new file mode 100644 index 00000000..74741553 Binary files /dev/null and b/gamma_age_v2/bloodbird.utc differ diff --git a/gamma_age_v2/bloodbirdhide.uti b/gamma_age_v2/bloodbirdhide.uti new file mode 100644 index 00000000..81e310ba Binary files /dev/null and b/gamma_age_v2/bloodbirdhide.uti differ diff --git a/gamma_age_v2/bplate_med.uti b/gamma_age_v2/bplate_med.uti new file mode 100644 index 00000000..25f630de Binary files /dev/null and b/gamma_age_v2/bplate_med.uti differ diff --git a/gamma_age_v2/bplate_med002.uti b/gamma_age_v2/bplate_med002.uti new file mode 100644 index 00000000..258453eb Binary files /dev/null and b/gamma_age_v2/bplate_med002.uti differ diff --git a/gamma_age_v2/brutorz.utc b/gamma_age_v2/brutorz.utc new file mode 100644 index 00000000..ef48e55c Binary files /dev/null and b/gamma_age_v2/brutorz.utc differ diff --git a/gamma_age_v2/brutorzkick.uti b/gamma_age_v2/brutorzkick.uti new file mode 100644 index 00000000..57299f63 Binary files /dev/null and b/gamma_age_v2/brutorzkick.uti differ diff --git a/gamma_age_v2/buggem.utc b/gamma_age_v2/buggem.utc new file mode 100644 index 00000000..e9ea8b07 Binary files /dev/null and b/gamma_age_v2/buggem.utc differ diff --git a/gamma_age_v2/bulo.utc b/gamma_age_v2/bulo.utc new file mode 100644 index 00000000..f03017b4 Binary files /dev/null and b/gamma_age_v2/bulo.utc differ diff --git a/gamma_age_v2/bulo001.utc b/gamma_age_v2/bulo001.utc new file mode 100644 index 00000000..462face2 Binary files /dev/null and b/gamma_age_v2/bulo001.utc differ diff --git a/gamma_age_v2/bulohide.uti b/gamma_age_v2/bulohide.uti new file mode 100644 index 00000000..a466d0a0 Binary files /dev/null and b/gamma_age_v2/bulohide.uti differ diff --git a/gamma_age_v2/calthen.utc b/gamma_age_v2/calthen.utc new file mode 100644 index 00000000..665581cb Binary files /dev/null and b/gamma_age_v2/calthen.utc differ diff --git a/gamma_age_v2/calthenbite.uti b/gamma_age_v2/calthenbite.uti new file mode 100644 index 00000000..50f794c4 Binary files /dev/null and b/gamma_age_v2/calthenbite.uti differ diff --git a/gamma_age_v2/carrin.utc b/gamma_age_v2/carrin.utc new file mode 100644 index 00000000..3d086769 Binary files /dev/null and b/gamma_age_v2/carrin.utc differ diff --git a/gamma_age_v2/carrinhide.uti b/gamma_age_v2/carrinhide.uti new file mode 100644 index 00000000..c16d5633 Binary files /dev/null and b/gamma_age_v2/carrinhide.uti differ diff --git a/gamma_age_v2/carrinstaff.uti b/gamma_age_v2/carrinstaff.uti new file mode 100644 index 00000000..2eb8bb09 Binary files /dev/null and b/gamma_age_v2/carrinstaff.uti differ diff --git a/gamma_age_v2/centurionrobot.utc b/gamma_age_v2/centurionrobot.utc new file mode 100644 index 00000000..39c39fe1 Binary files /dev/null and b/gamma_age_v2/centurionrobot.utc differ diff --git a/gamma_age_v2/chain_sht_lg.uti b/gamma_age_v2/chain_sht_lg.uti new file mode 100644 index 00000000..262b013c Binary files /dev/null and b/gamma_age_v2/chain_sht_lg.uti differ diff --git a/gamma_age_v2/chain_sht_med.uti b/gamma_age_v2/chain_sht_med.uti new file mode 100644 index 00000000..5185161b Binary files /dev/null and b/gamma_age_v2/chain_sht_med.uti differ diff --git a/gamma_age_v2/chain_sht_sm.uti b/gamma_age_v2/chain_sht_sm.uti new file mode 100644 index 00000000..03f43400 Binary files /dev/null and b/gamma_age_v2/chain_sht_sm.uti differ diff --git a/gamma_age_v2/chain_sht_st.uti b/gamma_age_v2/chain_sht_st.uti new file mode 100644 index 00000000..d2d39075 Binary files /dev/null and b/gamma_age_v2/chain_sht_st.uti differ diff --git a/gamma_age_v2/chainmail_lg.uti b/gamma_age_v2/chainmail_lg.uti new file mode 100644 index 00000000..3ba0deb5 Binary files /dev/null and b/gamma_age_v2/chainmail_lg.uti differ diff --git a/gamma_age_v2/chainmail_med.uti b/gamma_age_v2/chainmail_med.uti new file mode 100644 index 00000000..8a18c479 Binary files /dev/null and b/gamma_age_v2/chainmail_med.uti differ diff --git a/gamma_age_v2/chainmail_sm.uti b/gamma_age_v2/chainmail_sm.uti new file mode 100644 index 00000000..60de518e Binary files /dev/null and b/gamma_age_v2/chainmail_sm.uti differ diff --git a/gamma_age_v2/chainmail_st.uti b/gamma_age_v2/chainmail_st.uti new file mode 100644 index 00000000..7888f016 Binary files /dev/null and b/gamma_age_v2/chainmail_st.uti differ diff --git a/gamma_age_v2/chair.uti b/gamma_age_v2/chair.uti new file mode 100644 index 00000000..9fb68517 Binary files /dev/null and b/gamma_age_v2/chair.uti differ diff --git a/gamma_age_v2/chair001.utp b/gamma_age_v2/chair001.utp new file mode 100644 index 00000000..57a1194a Binary files /dev/null and b/gamma_age_v2/chair001.utp differ diff --git a/gamma_age_v2/chair1_sit.utp b/gamma_age_v2/chair1_sit.utp new file mode 100644 index 00000000..8e94ac20 Binary files /dev/null and b/gamma_age_v2/chair1_sit.utp differ diff --git a/gamma_age_v2/chesexpropertie.uti b/gamma_age_v2/chesexpropertie.uti new file mode 100644 index 00000000..a10f0bb4 Binary files /dev/null and b/gamma_age_v2/chesexpropertie.uti differ diff --git a/gamma_age_v2/chessex.utc b/gamma_age_v2/chessex.utc new file mode 100644 index 00000000..0319fe4e Binary files /dev/null and b/gamma_age_v2/chessex.utc differ diff --git a/gamma_age_v2/chest002.utp b/gamma_age_v2/chest002.utp new file mode 100644 index 00000000..5fc09fe6 Binary files /dev/null and b/gamma_age_v2/chest002.utp differ diff --git a/gamma_age_v2/chest004.utp b/gamma_age_v2/chest004.utp new file mode 100644 index 00000000..494648e4 Binary files /dev/null and b/gamma_age_v2/chest004.utp differ diff --git a/gamma_age_v2/civrobotproperti.uti b/gamma_age_v2/civrobotproperti.uti new file mode 100644 index 00000000..36d5eec5 Binary files /dev/null and b/gamma_age_v2/civrobotproperti.uti differ diff --git a/gamma_age_v2/comclothes1.uti b/gamma_age_v2/comclothes1.uti new file mode 100644 index 00000000..32b9bf54 Binary files /dev/null and b/gamma_age_v2/comclothes1.uti differ diff --git a/gamma_age_v2/comclothes10.uti b/gamma_age_v2/comclothes10.uti new file mode 100644 index 00000000..9641eaee Binary files /dev/null and b/gamma_age_v2/comclothes10.uti differ diff --git a/gamma_age_v2/comclothes2.uti b/gamma_age_v2/comclothes2.uti new file mode 100644 index 00000000..41857dc4 Binary files /dev/null and b/gamma_age_v2/comclothes2.uti differ diff --git a/gamma_age_v2/comclothes3.uti b/gamma_age_v2/comclothes3.uti new file mode 100644 index 00000000..10aaf511 Binary files /dev/null and b/gamma_age_v2/comclothes3.uti differ diff --git a/gamma_age_v2/comclothes4.uti b/gamma_age_v2/comclothes4.uti new file mode 100644 index 00000000..8822a6c6 Binary files /dev/null and b/gamma_age_v2/comclothes4.uti differ diff --git a/gamma_age_v2/comclothes5.uti b/gamma_age_v2/comclothes5.uti new file mode 100644 index 00000000..a1a2746d Binary files /dev/null and b/gamma_age_v2/comclothes5.uti differ diff --git a/gamma_age_v2/comclothes6.uti b/gamma_age_v2/comclothes6.uti new file mode 100644 index 00000000..30801876 Binary files /dev/null and b/gamma_age_v2/comclothes6.uti differ diff --git a/gamma_age_v2/comclothes7.uti b/gamma_age_v2/comclothes7.uti new file mode 100644 index 00000000..7f2c0cc0 Binary files /dev/null and b/gamma_age_v2/comclothes7.uti differ diff --git a/gamma_age_v2/comclothes8.uti b/gamma_age_v2/comclothes8.uti new file mode 100644 index 00000000..f20c85ba Binary files /dev/null and b/gamma_age_v2/comclothes8.uti differ diff --git a/gamma_age_v2/comclothes9.uti b/gamma_age_v2/comclothes9.uti new file mode 100644 index 00000000..2e47d610 Binary files /dev/null and b/gamma_age_v2/comclothes9.uti differ diff --git a/gamma_age_v2/commonerspawner.utp b/gamma_age_v2/commonerspawner.utp new file mode 100644 index 00000000..d886d4c8 Binary files /dev/null and b/gamma_age_v2/commonerspawner.utp differ diff --git a/gamma_age_v2/companionunitrob.utc b/gamma_age_v2/companionunitrob.utc new file mode 100644 index 00000000..bf7896ae Binary files /dev/null and b/gamma_age_v2/companionunitrob.utc differ diff --git a/gamma_age_v2/couch001.utp b/gamma_age_v2/couch001.utp new file mode 100644 index 00000000..f5dee06c Binary files /dev/null and b/gamma_age_v2/couch001.utp differ diff --git a/gamma_age_v2/creaturepalcus.itp b/gamma_age_v2/creaturepalcus.itp new file mode 100644 index 00000000..a55afeeb Binary files /dev/null and b/gamma_age_v2/creaturepalcus.itp differ diff --git a/gamma_age_v2/croaker.utc b/gamma_age_v2/croaker.utc new file mode 100644 index 00000000..2c29ae3d Binary files /dev/null and b/gamma_age_v2/croaker.utc differ diff --git a/gamma_age_v2/cybohunter.utc b/gamma_age_v2/cybohunter.utc new file mode 100644 index 00000000..68515c5f Binary files /dev/null and b/gamma_age_v2/cybohunter.utc differ diff --git a/gamma_age_v2/dabber.utc b/gamma_age_v2/dabber.utc new file mode 100644 index 00000000..c3617d3d Binary files /dev/null and b/gamma_age_v2/dabber.utc differ diff --git a/gamma_age_v2/dabberarnor.uti b/gamma_age_v2/dabberarnor.uti new file mode 100644 index 00000000..1990b29e Binary files /dev/null and b/gamma_age_v2/dabberarnor.uti differ diff --git a/gamma_age_v2/dabbercloak.uti b/gamma_age_v2/dabbercloak.uti new file mode 100644 index 00000000..09fdc087 Binary files /dev/null and b/gamma_age_v2/dabbercloak.uti differ diff --git a/gamma_age_v2/dabberhide.uti b/gamma_age_v2/dabberhide.uti new file mode 100644 index 00000000..1c6c10ef Binary files /dev/null and b/gamma_age_v2/dabberhide.uti differ diff --git a/gamma_age_v2/dark_tunic.uti b/gamma_age_v2/dark_tunic.uti new file mode 100644 index 00000000..f1e79c3b Binary files /dev/null and b/gamma_age_v2/dark_tunic.uti differ diff --git a/gamma_age_v2/deathbot.utc b/gamma_age_v2/deathbot.utc new file mode 100644 index 00000000..9ec1e9b5 Binary files /dev/null and b/gamma_age_v2/deathbot.utc differ diff --git a/gamma_age_v2/debgon.utc b/gamma_age_v2/debgon.utc new file mode 100644 index 00000000..784e7f9b Binary files /dev/null and b/gamma_age_v2/debgon.utc differ diff --git a/gamma_age_v2/debgonproperti.uti b/gamma_age_v2/debgonproperti.uti new file mode 100644 index 00000000..8a9ba7fa Binary files /dev/null and b/gamma_age_v2/debgonproperti.uti differ diff --git a/gamma_age_v2/dem_color_text.utp b/gamma_age_v2/dem_color_text.utp new file mode 100644 index 00000000..b2e2de72 Binary files /dev/null and b/gamma_age_v2/dem_color_text.utp differ diff --git a/gamma_age_v2/desolateanddespa.are b/gamma_age_v2/desolateanddespa.are new file mode 100644 index 00000000..c0301ef5 Binary files /dev/null and b/gamma_age_v2/desolateanddespa.are differ diff --git a/gamma_age_v2/desolateanddespa.gic b/gamma_age_v2/desolateanddespa.gic new file mode 100644 index 00000000..c1883959 Binary files /dev/null and b/gamma_age_v2/desolateanddespa.gic differ diff --git a/gamma_age_v2/desolateanddespa.git b/gamma_age_v2/desolateanddespa.git new file mode 100644 index 00000000..aa229add Binary files /dev/null and b/gamma_age_v2/desolateanddespa.git differ diff --git a/gamma_age_v2/dm_journal_entry.dlg b/gamma_age_v2/dm_journal_entry.dlg new file mode 100644 index 00000000..887bb4be Binary files /dev/null and b/gamma_age_v2/dm_journal_entry.dlg differ diff --git a/gamma_age_v2/dmfi_500xp.uti b/gamma_age_v2/dmfi_500xp.uti new file mode 100644 index 00000000..f90d0c91 Binary files /dev/null and b/gamma_age_v2/dmfi_500xp.uti differ diff --git a/gamma_age_v2/dmfi_activate.ncs b/gamma_age_v2/dmfi_activate.ncs new file mode 100644 index 00000000..bb781f0d Binary files /dev/null and b/gamma_age_v2/dmfi_activate.ncs differ diff --git a/gamma_age_v2/dmfi_activate.nss b/gamma_age_v2/dmfi_activate.nss new file mode 100644 index 00000000..24687f6c --- /dev/null +++ b/gamma_age_v2/dmfi_activate.nss @@ -0,0 +1,345 @@ +//:://///////////////////////////////////////////// +//:: DMFI - widget activation processor +//:: dmfi_activate +//::////////////////////////////////////////////// +/* + Functions to respond and process DMFI item activations. +*/ +//::////////////////////////////////////////////// +//:: Created By: The DMFI Team +//:: Created On: +//::////////////////////////////////////////////// +//:: 2008.05.25 tsunami282 - changes to invisible listeners to work with +//:: OnPlayerChat methods. +//:: 2008.07.10 tsunami282 - add Naming Wand to the exploder. +//:: 2008.08.15 tsunami282 - move init logic to new include. + +#include "dmfi_init_inc" + +//////////////////////////////////////////////////////////////////////// +void dmw_CleanUp(object oMySpeaker) +{ + int nCount; + int nCache; + DeleteLocalObject(oMySpeaker, "dmfi_univ_target"); + DeleteLocalLocation(oMySpeaker, "dmfi_univ_location"); + DeleteLocalObject(oMySpeaker, "dmw_item"); + DeleteLocalString(oMySpeaker, "dmw_repamt"); + DeleteLocalString(oMySpeaker, "dmw_repargs"); + nCache = GetLocalInt(oMySpeaker, "dmw_playercache"); + for(nCount = 1; nCount <= nCache; nCount++) + { + DeleteLocalObject(oMySpeaker, "dmw_playercache" + IntToString(nCount)); + } + DeleteLocalInt(oMySpeaker, "dmw_playercache"); + nCache = GetLocalInt(oMySpeaker, "dmw_itemcache"); + for(nCount = 1; nCount <= nCache; nCount++) + { + DeleteLocalObject(oMySpeaker, "dmw_itemcache" + IntToString(nCount)); + } + DeleteLocalInt(oMySpeaker, "dmw_itemcache"); + for(nCount = 1; nCount <= 10; nCount++) + { + DeleteLocalString(oMySpeaker, "dmw_dialog" + IntToString(nCount)); + DeleteLocalString(oMySpeaker, "dmw_function" + IntToString(nCount)); + DeleteLocalString(oMySpeaker, "dmw_params" + IntToString(nCount)); + } + DeleteLocalString(oMySpeaker, "dmw_playerfunc"); + DeleteLocalInt(oMySpeaker, "dmw_started"); +} + +//////////////////////////////////////////////////////////////////////// +void main() +{ + object oUser = OBJECT_SELF; + object oItem = GetLocalObject(oUser, "dmfi_item"); + object oOther = GetLocalObject(oUser, "dmfi_target"); + location lLocation = GetLocalLocation(oUser, "dmfi_location"); + string sItemTag = GetTag(oItem); + + // listening system initialization moved to new function + dmfiInitialize(oUser); + + dmw_CleanUp(oUser); + + if (GetStringLeft(sItemTag,8) == "hlslang_") + { + // Remove voice stuff + string ssLanguage = GetStringRight(sItemTag, GetStringLength(sItemTag) - 8); + SetLocalInt(oUser, "hls_MyLanguage", StringToInt(ssLanguage)); + SetLocalString(oUser, "hls_MyLanguageName", GetName(oItem)); + DelayCommand(1.0f, FloatingTextStringOnCreature("You are speaking " + GetName(oItem) + ". Type [(what you want to say in brackets)]", oUser, FALSE)); + return; + } + + if (GetStringLeft(sItemTag, 8) == "dmfi_pc_") + { + if (GetStringLeft(sItemTag, 12) == "dmfi_pc_rest") + { + CreateObject(OBJECT_TYPE_PLACEABLE, "dmfi_rest" + GetStringRight(sItemTag, 3), GetLocation(oUser)); + return; + } + if (sItemTag == "dmfi_pc_follow") + { + if (GetIsObjectValid(oOther)) + { + FloatingTextStringOnCreature("Now following "+ GetName(oOther),oUser, FALSE); + DelayCommand(2.0f, AssignCommand(oUser, ActionForceFollowObject(oOther, 2.0f))); + } + return; + } + SetLocalObject(oUser, "dmfi_univ_target", oUser); + SetLocalLocation(oUser, "dmfi_univ_location", lLocation); + SetLocalString(oUser, "dmfi_univ_conv", GetStringRight(sItemTag, GetStringLength(sItemTag) - 5)); + AssignCommand(oUser, ClearAllActions()); + AssignCommand(oUser, ActionStartConversation(OBJECT_SELF, "dmfi_universal", TRUE)); + return; + } + + if (GetStringLeft(sItemTag, 5) == "dmfi_") + { + int iPass = FALSE; + + if (GetIsDM(oUser) || GetIsDMPossessed(oUser)) + iPass = TRUE; + + if (!GetIsPC(oUser)) + iPass = TRUE; + + if (!iPass) + { + FloatingTextStringOnCreature("You cannot use this item." ,oUser, FALSE); + SendMessageToAllDMs(GetName(oUser)+ " is attempting to use a DM item."); + return; + } + + if (sItemTag == "dmfi_exploder") + { + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_afflict"))) CreateItemOnObject("dmfi_afflict", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_dicebag"))) CreateItemOnObject("dmfi_dicebag", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_pc_dicebag"))) CreateItemOnObject("dmfi_pc_dicebag", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_pc_follow"))) CreateItemOnObject("dmfi_pc_follow", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_pc_emote"))) CreateItemOnObject("dmfi_pc_emote", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_server"))) CreateItemOnObject("dmfi_server", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_emote"))) CreateItemOnObject("dmfi_emote", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_encounter"))) CreateItemOnObject("dmfi_encounte", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_faction"))) CreateItemOnObject("dmfi_faction", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_fx"))) CreateItemOnObject("dmfi_fx", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_music"))) CreateItemOnObject("dmfi_music", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_sound"))) CreateItemOnObject("dmfi_sound", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_voice"))) CreateItemOnObject("dmfi_voice", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_xp"))) CreateItemOnObject("dmfi_xp", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_500xp"))) CreateItemOnObject("dmfi_500xp", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_en_ditto"))) CreateItemOnObject("dmfi_en_ditto", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_mute"))) CreateItemOnObject("dmfi_mute", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_peace"))) CreateItemOnObject("dmfi_peace", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_voicewidget"))) CreateItemOnObject("dmfi_voicewidget", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_remove"))) CreateItemOnObject("dmfi_remove", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_dmw"))) CreateItemOnObject("dmfi_dmw", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_target"))) CreateItemOnObject("dmfi_target", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_buff"))) CreateItemOnObject("dmfi_buff", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_dmbook"))) CreateItemOnObject("dmfi_dmbook", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_playerbook"))) CreateItemOnObject("dmfi_playerbook", oOther); + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_jail_widget"))) CreateItemOnObject("dmfi_jail_widget", oOther); + // 2008.07.10 tsunami282 - add naming wand to the exploder + if(!GetIsObjectValid(GetItemPossessedBy(oOther, "dmfi_naming"))) CreateItemOnObject("dmfi_naming", oOther); + return; + } + if (sItemTag == "dmfi_peace") + { //This widget sets all creatures in the area to a neutral stance and clears combat. + object oArea = GetFirstObjectInArea(GetArea(oUser)); + object oP; + while (GetIsObjectValid(oArea)) + { + if (GetObjectType(oArea) == OBJECT_TYPE_CREATURE && !GetIsPC(oArea)) + { + AssignCommand(oArea, ClearAllActions()); + oP = GetFirstPC(); + while (GetIsObjectValid(oP)) + { + if (GetArea(oP) == GetArea(oUser)) + { + ClearPersonalReputation(oArea, oP); + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 25, oP); + SetStandardFactionReputation(STANDARD_FACTION_COMMONER, 91, oP); + SetStandardFactionReputation(STANDARD_FACTION_MERCHANT, 91, oP); + SetStandardFactionReputation(STANDARD_FACTION_DEFENDER, 91, oP); + } + oP = GetNextPC(); + } + AssignCommand(oArea, ClearAllActions()); + } + oArea = GetNextObjectInArea(GetArea(oUser)); + } + } + + // update / remove invisible listeners as needed for onplayerchat + if (sItemTag == "dmfi_voicewidget") + { + object oVoice; + if (GetIsObjectValid(oOther)) // do we have a valid target creature? + { + // 2008.05.29 tsunami282 - we don't use creature listen stuff anymore + SetLocalObject(oUser, "dmfi_VoiceTarget", oOther); + + FloatingTextStringOnCreature("You have targeted " + GetName(oOther) + " with the Voice Widget", oUser, FALSE); + + if (GetLocalInt(GetModule(), "dmfi_voice_initial")!=1) + { + SetLocalInt(GetModule(), "dmfi_voice_initial", 1); + SendMessageToAllDMs("Listening Initialized: .commands, .skill checks, and much more now available."); + DelayCommand(4.0, FloatingTextStringOnCreature("Listening Initialized: .commands, .skill checks, and more available", oUser)); + } + return; + } + else // no valid target of voice wand + { + //Jump any existing Voice attached to the user + if (GetIsObjectValid(GetLocalObject(oUser, "dmfi_StaticVoice"))) + { + DestroyObject(GetLocalObject(oUser, "dmfi_StaticVoice")); + } + //Create the StationaryVoice + object oStaticVoice = CreateObject(OBJECT_TYPE_CREATURE, "dmfi_voice", GetLocation(oUser)); + //Set Ownership of the Voice to the User + SetLocalObject(oUser, "dmfi_StaticVoice", oVoice); + SetLocalObject(oUser, "dmfi_VoiceTarget", oStaticVoice); + DelayCommand(1.0f, FloatingTextStringOnCreature("A Stationary Voice has been created.", oUser, FALSE)); + return; + } + return; + } + if (sItemTag == "dmfi_mute") + { + SetLocalObject(oUser, "dmfi_univ_target", oUser); + SetLocalString(oUser, "dmfi_univ_conv", "voice"); + SetLocalInt(oUser, "dmfi_univ_int", 8); + ExecuteScript("dmfi_execute", oUser); + return; + } + //encounter ditto widget + if (sItemTag == "dmfi_en_ditto") + { + SetLocalObject(oUser, "dmfi_univ_target", oOther); + SetLocalLocation(oUser, "dmfi_univ_location", lLocation); + SetLocalString(oUser, "dmfi_univ_conv", "encounter"); + SetLocalInt(oUser, "dmfi_univ_int", GetLocalInt(oUser, "EncounterType")); + ExecuteScript("dmfi_execute", oUser); + return; + } + //Change target widget + if (sItemTag == "dmfi_target") + { + SetLocalObject(oUser, "dmfi_univ_target", oOther); + FloatingTextStringOnCreature("DMFI Target set to " + GetName(oOther),oUser); + } + //Destroy object widget + if (sItemTag == "dmfi_remove") + { + object oKillMe; + //Targeting Self + if (oUser == oOther) + { + oKillMe = GetNearestObject(OBJECT_TYPE_PLACEABLE, oUser); + FloatingTextStringOnCreature("Destroyed " + GetName(oKillMe) + "(" + GetTag(oKillMe) + ")", oUser, FALSE); + DelayCommand(0.1f, DestroyObject(oKillMe)); + } + else if (GetIsObjectValid(oOther)) //Targeting something else + { + FloatingTextStringOnCreature("Destroyed " + GetName(oOther) + "(" + GetTag(oOther) + ")", oUser, FALSE); + DelayCommand(0.1f, DestroyObject(oOther)); + } + else //Targeting the ground + { + int iReport = 0; + oKillMe = GetFirstObjectInShape(SHAPE_SPHERE, 2.0f, lLocation, FALSE, OBJECT_TYPE_ALL); + while (GetIsObjectValid(oKillMe)) + { + iReport++; + DestroyObject(oKillMe); + oKillMe = GetNextObjectInShape(SHAPE_SPHERE, 2.0f, lLocation, FALSE, OBJECT_TYPE_ALL); + } + FloatingTextStringOnCreature("Destroyed " + IntToString(iReport) + " objects.", oUser, FALSE); + } + return; + } + if (sItemTag == "dmfi_500xp") + { + SetLocalObject(oUser, "dmfi_univ_target", oOther); + SetLocalLocation(oUser, "dmfi_univ_location", lLocation); + SetLocalString(oUser, "dmfi_univ_conv", "xp"); + SetLocalInt(oUser, "dmfi_univ_int", 53); + ExecuteScript("dmfi_execute", oUser); + return; + } + if (sItemTag == "dmfi_jail_widget") + { + if (GetIsObjectValid(oOther) && !GetIsDM(oOther) && oOther != oUser) + { + object oJail = GetObjectByTag("dmfi_jail"); + if (!GetIsObjectValid(oJail)) + oJail = GetObjectByTag("dmfi_jail_default"); + AssignCommand(oOther, ClearAllActions()); + AssignCommand(oOther, JumpToObject(oJail)); + SendMessageToPC(oUser, GetName(oOther) + " (" + GetPCPublicCDKey(oOther) + ")/IP: " + GetPCIPAddress(oOther) + " - has been sent to Jail."); + } + return; + } + + if (sItemTag == "dmfi_encounter") + { + + if (GetIsObjectValid(GetWaypointByTag("DMFI_E1"))) + SetCustomToken(20771, GetName(GetWaypointByTag("DMFI_E1"))); + else + SetCustomToken(20771, "Encounter Invalid"); + if (GetIsObjectValid(GetWaypointByTag("DMFI_E2"))) + SetCustomToken(20772, GetName(GetWaypointByTag("DMFI_E2"))); + else + SetCustomToken(20772, "Encounter Invalid"); + if (GetIsObjectValid(GetWaypointByTag("DMFI_E3"))) + SetCustomToken(20773, GetName(GetWaypointByTag("DMFI_E3"))); + else + SetCustomToken(20773, "Encounter Invalid"); + if (GetIsObjectValid(GetWaypointByTag("DMFI_E4"))) + SetCustomToken(20774, GetName(GetWaypointByTag("DMFI_E4"))); + else + SetCustomToken(20774, "Encounter Invalid"); + if (GetIsObjectValid(GetWaypointByTag("DMFI_E5"))) + SetCustomToken(20775, GetName(GetWaypointByTag("DMFI_E5"))); + else + SetCustomToken(20775, "Encounter Invalid"); + if (GetIsObjectValid(GetWaypointByTag("DMFI_E6"))) + SetCustomToken(20776, GetName(GetWaypointByTag("DMFI_E6"))); + else + SetCustomToken(20776, "Encounter Invalid"); + if (GetIsObjectValid(GetWaypointByTag("DMFI_E7"))) + SetCustomToken(20777, GetName(GetWaypointByTag("DMFI_E7"))); + else + SetCustomToken(20777, "Encounter Invalid"); + if (GetIsObjectValid(GetWaypointByTag("DMFI_E8"))) + SetCustomToken(20778, GetName(GetWaypointByTag("DMFI_E8"))); + else + SetCustomToken(20778, "Encounter Invalid"); + if (GetIsObjectValid(GetWaypointByTag("DMFI_E9"))) + SetCustomToken(20779, GetName(GetWaypointByTag("DMFI_E9"))); + else + SetCustomToken(20779, "Encounter Invalid"); + } + if (sItemTag == "dmfi_afflict") + { + int nDNum; + + nDNum = GetLocalInt(oUser, "dmfi_damagemodifier"); + SetCustomToken(20780, IntToString(nDNum)); + } + + + SetLocalObject(oUser, "dmfi_univ_target", oOther); + SetLocalLocation(oUser, "dmfi_univ_location", lLocation); + SetLocalString(oUser, "dmfi_univ_conv", GetStringRight(sItemTag, GetStringLength(sItemTag) - 5)); + AssignCommand(oUser, ClearAllActions()); + AssignCommand(oUser, ActionStartConversation(OBJECT_SELF, "dmfi_universal", TRUE, FALSE)); + } +} + diff --git a/gamma_age_v2/dmfi_afflict.uti b/gamma_age_v2/dmfi_afflict.uti new file mode 100644 index 00000000..6313c9e5 Binary files /dev/null and b/gamma_age_v2/dmfi_afflict.uti differ diff --git a/gamma_age_v2/dmfi_arrays_inc.nss b/gamma_age_v2/dmfi_arrays_inc.nss new file mode 100644 index 00000000..b777fcc8 --- /dev/null +++ b/gamma_age_v2/dmfi_arrays_inc.nss @@ -0,0 +1,177 @@ +//:://///////////////////////////////////////////// +//:: DMFI - array functions include +//:: dmfi_arrays_inc +//::////////////////////////////////////////////// +/* + Functions to use object-attached local variables as arrays. +*/ +//::////////////////////////////////////////////// +//:: Created By: Noel +//:: Created On: November 17, 2001 +//::////////////////////////////////////////////// +//:: 2007.12.24 tsunami282 - yanked most of these routines from Bioware's +//:: nw_o0_itemmaker, then expanded for bounds management. + +int GetLocalArrayLowerBound(object oidObject, string sVarName); +int GetLocalArrayUpperBound(object oidObject, string sVarName); +void SetLocalArrayLowerBound(object oidObject, string sVarName, int nMin); +void SetLocalArrayUpperBound(object oidObject, string sVarName, int nMax); + +//////////////////////////////////////////////////////////////////////// +int GetLocalArrayInitialized(object oidObject, string sVarName) +{ + string sFullVarName = sVarName + "_INIT"; + return GetLocalInt(oidObject, sFullVarName); +} + +//////////////////////////////////////////////////////////////////////// +void InitializeLocalArray(object oidObject, string sVarName) +{ + int i, iBegin, iEnd; + string sFullVarName; + + if (GetLocalArrayInitialized(oidObject, sVarName)) + { + // wipe current contents + iBegin = GetLocalArrayLowerBound(oidObject, sVarName); + iEnd = GetLocalArrayUpperBound(oidObject, sVarName); + for (i = iEnd; i >= iBegin; i--) + { + sFullVarName = sVarName + IntToString(i); + DeleteLocalInt(oidObject, sFullVarName); + DeleteLocalFloat(oidObject, sFullVarName); + DeleteLocalString(oidObject, sFullVarName); + DeleteLocalObject(oidObject, sFullVarName); + DeleteLocalLocation(oidObject, sFullVarName); + } + } + + SetLocalArrayLowerBound(oidObject, sVarName, 0); + SetLocalArrayUpperBound(oidObject, sVarName, -1); + sFullVarName = sVarName + "_INIT"; + SetLocalInt(oidObject, sFullVarName, TRUE); +} + +//////////////////////////////////////////////////////////////////////// +int GetLocalArrayLowerBound(object oidObject, string sVarName) +{ + string sFullVarName = sVarName + "_MIN"; + return GetLocalInt(oidObject, sFullVarName); +} + +//////////////////////////////////////////////////////////////////////// +int GetLocalArrayUpperBound(object oidObject, string sVarName) +{ + string sFullVarName = sVarName + "_MAX"; + return GetLocalInt(oidObject, sFullVarName); +} + +//////////////////////////////////////////////////////////////////////// +void SetLocalArrayLowerBound(object oidObject, string sVarName, int nMin) +{ + string sFullVarName = sVarName + "_MIN"; + SetLocalInt(oidObject, sFullVarName, nMin); +} + +//////////////////////////////////////////////////////////////////////// +void SetLocalArrayUpperBound(object oidObject, string sVarName, int nMax) +{ + string sFullVarName = sVarName + "_MAX"; + SetLocalInt(oidObject, sFullVarName, nMax); +} + +//////////////////////////////////////////////////////////////////////// +int GetLocalArrayInt(object oidObject, string sVarName, int nVarNum) +{ + string sFullVarName = sVarName + IntToString(nVarNum) ; + return GetLocalInt(oidObject, sFullVarName); +} + +//////////////////////////////////////////////////////////////////////// +void SetLocalArrayInt(object oidObject, string sVarName, int nVarNum, int nValue) +{ + string sFullVarName = sVarName + IntToString(nVarNum) ; + SetLocalInt(oidObject, sFullVarName, nValue); + // update bounds + if (nVarNum < GetLocalArrayLowerBound(oidObject, sVarName)) + SetLocalArrayLowerBound(oidObject, sVarName, nVarNum); + if (nVarNum > GetLocalArrayUpperBound(oidObject, sVarName)) + SetLocalArrayUpperBound(oidObject, sVarName, nVarNum); +} + +//////////////////////////////////////////////////////////////////////// +float GetLocalArrayFloat(object oidObject, string sVarName, int nVarNum) +{ + string sFullVarName = sVarName + IntToString(nVarNum) ; + return GetLocalFloat(oidObject, sFullVarName); +} + +//////////////////////////////////////////////////////////////////////// +void SetLocalArrayFloat(object oidObject, string sVarName, int nVarNum, float fValue) +{ + string sFullVarName = sVarName + IntToString(nVarNum) ; + SetLocalFloat(oidObject, sFullVarName, fValue); + // update bounds + if (nVarNum < GetLocalArrayLowerBound(oidObject, sVarName)) + SetLocalArrayLowerBound(oidObject, sVarName, nVarNum); + if (nVarNum > GetLocalArrayUpperBound(oidObject, sVarName)) + SetLocalArrayUpperBound(oidObject, sVarName, nVarNum); +} + +//////////////////////////////////////////////////////////////////////// +string GetLocalArrayString(object oidObject, string sVarName, int nVarNum) +{ + string sFullVarName = sVarName + IntToString(nVarNum) ; + return GetLocalString(oidObject, sFullVarName); +} + +//////////////////////////////////////////////////////////////////////// +void SetLocalArrayString(object oidObject, string sVarName, int nVarNum, string nValue) +{ + string sFullVarName = sVarName + IntToString(nVarNum) ; + SetLocalString(oidObject, sFullVarName, nValue); + // update bounds + if (nVarNum < GetLocalArrayLowerBound(oidObject, sVarName)) + SetLocalArrayLowerBound(oidObject, sVarName, nVarNum); + if (nVarNum > GetLocalArrayUpperBound(oidObject, sVarName)) + SetLocalArrayUpperBound(oidObject, sVarName, nVarNum); +} + +//////////////////////////////////////////////////////////////////////// +object GetLocalArrayObject(object oidObject, string sVarName, int nVarNum) +{ + string sFullVarName = sVarName + IntToString(nVarNum) ; + return GetLocalObject(oidObject, sFullVarName); +} + +//////////////////////////////////////////////////////////////////////// +void SetLocalArrayObject(object oidObject, string sVarName, int nVarNum, object oidValue) +{ + string sFullVarName = sVarName + IntToString(nVarNum) ; + SetLocalObject(oidObject, sFullVarName, oidValue); + // update bounds + if (nVarNum < GetLocalArrayLowerBound(oidObject, sVarName)) + SetLocalArrayLowerBound(oidObject, sVarName, nVarNum); + if (nVarNum > GetLocalArrayUpperBound(oidObject, sVarName)) + SetLocalArrayUpperBound(oidObject, sVarName, nVarNum); +} + +//////////////////////////////////////////////////////////////////////// +location GetLocalArrayLocation(object oidObject, string sVarName, int nVarNum) +{ + string sFullVarName = sVarName + IntToString(nVarNum) ; + return GetLocalLocation(oidObject, sFullVarName); +} + +//////////////////////////////////////////////////////////////////////// +void SetLocalArrayLocation(object oidObject, string sVarName, int nVarNum, location locValue) +{ + string sFullVarName = sVarName + IntToString(nVarNum) ; + SetLocalLocation(oidObject, sFullVarName, locValue); + // update bounds + if (nVarNum < GetLocalArrayLowerBound(oidObject, sVarName)) + SetLocalArrayLowerBound(oidObject, sVarName, nVarNum); + if (nVarNum > GetLocalArrayUpperBound(oidObject, sVarName)) + SetLocalArrayUpperBound(oidObject, sVarName, nVarNum); +} + diff --git a/gamma_age_v2/dmfi_buff.uti b/gamma_age_v2/dmfi_buff.uti new file mode 100644 index 00000000..8e0bde42 Binary files /dev/null and b/gamma_age_v2/dmfi_buff.uti differ diff --git a/gamma_age_v2/dmfi_cond_dmw.ncs b/gamma_age_v2/dmfi_cond_dmw.ncs new file mode 100644 index 00000000..42bd7e1d Binary files /dev/null and b/gamma_age_v2/dmfi_cond_dmw.ncs differ diff --git a/gamma_age_v2/dmfi_cond_dmw.nss b/gamma_age_v2/dmfi_cond_dmw.nss new file mode 100644 index 00000000..7008bacd --- /dev/null +++ b/gamma_age_v2/dmfi_cond_dmw.nss @@ -0,0 +1,22 @@ + +int StartingConditional() +{ + int nMyNum = GetLocalInt(OBJECT_SELF, "dmfi_dmwOffset"); + SetLocalInt(OBJECT_SELF, "dmfi_dmwOffset", nMyNum+1); + + object oMySpeaker = GetPCSpeaker(); + object oMyTarget = GetLocalObject(oMySpeaker, "dmfi_univ_target"); + location lMyLoc = GetLocalLocation(oMySpeaker, "dmfi_univ_location"); + + string sMyString = GetLocalString(oMySpeaker, "dmw_dialog" + IntToString(nMyNum)); + + if(sMyString == "") + { + return FALSE; + } + else + { + SetCustomToken(8000 + nMyNum, sMyString); + return TRUE; + } +} diff --git a/gamma_age_v2/dmfi_custom_enc.are b/gamma_age_v2/dmfi_custom_enc.are new file mode 100644 index 00000000..15cc2217 Binary files /dev/null and b/gamma_age_v2/dmfi_custom_enc.are differ diff --git a/gamma_age_v2/dmfi_custom_enc.gic b/gamma_age_v2/dmfi_custom_enc.gic new file mode 100644 index 00000000..646985ae Binary files /dev/null and b/gamma_age_v2/dmfi_custom_enc.gic differ diff --git a/gamma_age_v2/dmfi_custom_enc.git b/gamma_age_v2/dmfi_custom_enc.git new file mode 100644 index 00000000..2d3fbb74 Binary files /dev/null and b/gamma_age_v2/dmfi_custom_enc.git differ diff --git a/gamma_age_v2/dmfi_db_biow_inc.ncs b/gamma_age_v2/dmfi_db_biow_inc.ncs new file mode 100644 index 00000000..ecb1c72d Binary files /dev/null and b/gamma_age_v2/dmfi_db_biow_inc.ncs differ diff --git a/gamma_age_v2/dmfi_db_biow_inc.nss b/gamma_age_v2/dmfi_db_biow_inc.nss new file mode 100644 index 00000000..6a771177 --- /dev/null +++ b/gamma_age_v2/dmfi_db_biow_inc.nss @@ -0,0 +1,66 @@ +//DMFI Persistence wrapper functions +//This include file contains the wrapper functions for the +//persistent settings of the DMFI Wand and Widget package +//Advanced users can adapt this to the database system that +//they want to use for NWN. +// +//These functions use the Bioware database by default and use a primitive form +//of "caching" to avoid lots of database R/W + +//::////////////////////////////////////////////// +//:: Created By: The DMFI Team +//:: Created On: +//::////////////////////////////////////////////// +//:: 2008.07.10 tsunami282 - implemented alternate database support, initially +//:: for Knat's NBDE + + +const int DMFI_DB_TYPE = 1; + +void FlushDMFIPersistentData(string sDBName) +{ + // no flushing required for Bioware database +} + +int IsDMFIPersistentDataDirty(string sDBName) +{ + return FALSE; // bioware database system has no cache, so is never dirty +} + +//Int functions +int GetDMFIPersistentInt(string sDBName, string sDBSetting, object oPlayer = OBJECT_INVALID) +{ + int iReturn = GetCampaignInt(sDBName, sDBSetting, oPlayer); + return iReturn; +} + +void SetDMFIPersistentInt(string sDBName, string sDBSetting, int iDBValue, object oPlayer = OBJECT_INVALID) +{ + SetCampaignInt(sDBName, sDBSetting, iDBValue, oPlayer); +} + +//Float functions +float GetDMFIPersistentFloat(string sDBName, string sDBSetting, object oPlayer = OBJECT_INVALID) +{ + float fReturn = GetCampaignFloat(sDBName, sDBSetting, oPlayer); + return fReturn; +} + +void SetDMFIPersistentFloat(string sDBName, string sDBSetting, float fDBValue, object oPlayer = OBJECT_INVALID) +{ + SetCampaignFloat(sDBName, sDBSetting, fDBValue, oPlayer); +} + +//String functions +string GetDMFIPersistentString(string sDBName, string sDBSetting, object oPlayer = OBJECT_INVALID) +{ + string sReturn = GetCampaignString(sDBName, sDBSetting, oPlayer); + return sReturn; +} + +void SetDMFIPersistentString(string sDBName, string sDBSetting, string sDBValue, object oPlayer = OBJECT_INVALID) +{ + SetCampaignString(sDBName, sDBSetting, sDBValue, oPlayer); +} + +//void main (){} diff --git a/gamma_age_v2/dmfi_db_inc.ncs b/gamma_age_v2/dmfi_db_inc.ncs new file mode 100644 index 00000000..ecb1c72d Binary files /dev/null and b/gamma_age_v2/dmfi_db_inc.ncs differ diff --git a/gamma_age_v2/dmfi_db_inc.nss b/gamma_age_v2/dmfi_db_inc.nss new file mode 100644 index 00000000..a96956cd --- /dev/null +++ b/gamma_age_v2/dmfi_db_inc.nss @@ -0,0 +1,40 @@ +//DMFI Persistence wrapper functions +//This include file contains the wrapper functions for the +//persistent settings of the DMFI Wand and Widget package +//Advanced users can adapt this to the database system that +//they want to use for NWN. + +//::////////////////////////////////////////////// +//:: Created By: The DMFI Team +//:: Created On: +//::////////////////////////////////////////////// +//:: 2008.07.10 tsunami282 - implemented alternate database support, initially +//:: for Knat's NBDE + +//Listen Pattern ** variable +//Change this to 0 to make the DMFI W&W more compatible with Jasperre's AI +const int LISTEN_PATTERN = 20600; + +const int DMFI_DB_TYPE_BIOWARE = 1; +const int DMFI_DB_TYPE_NBDE = 2; +const int DMFI_DB_TYPE_RESERVED_3 = 3; +const int DMFI_DB_TYPE_RESERVED_4 = 4; +const int DMFI_DB_TYPE_RESERVED_5 = 5; +const int DMFI_DB_TYPE_RESERVED_6 = 6; +const int DMFI_DB_TYPE_RESERVED_7 = 7; +const int DMFI_DB_TYPE_RESERVED_8 = 8; +const int DMFI_DB_TYPE_RESERVED_9 = 9; +const int DMFI_DB_TYPE_RESERVED_10 = 10; + +// *** DATABASE SELECTION *** +// Only choose one of the following #include lines. Comment out all the others! + +// Standard version uses the default Bioware database +#include "dmfi_db_biow_inc" + +// Alternate version: using Knat's NBDE +// This provides greatly increased speed, but necessitates occasional flushing to disk. +// Flushing requires you to add code to Your module OnHeartbeat event. +// #include "dmfi_db_nbde_inc" + +// void main (){} diff --git a/gamma_age_v2/dmfi_db_nbde_inc.ncs b/gamma_age_v2/dmfi_db_nbde_inc.ncs new file mode 100644 index 00000000..ecb1c72d Binary files /dev/null and b/gamma_age_v2/dmfi_db_nbde_inc.ncs differ diff --git a/gamma_age_v2/dmfi_db_nbde_inc.nss b/gamma_age_v2/dmfi_db_nbde_inc.nss new file mode 100644 index 00000000..42c4ef5c --- /dev/null +++ b/gamma_age_v2/dmfi_db_nbde_inc.nss @@ -0,0 +1,65 @@ +//DMFI Persistence wrapper functions +// modified version for Knat's NBDE support + +//::////////////////////////////////////////////// +//:: Created By: The DMFI Team +//:: Created On: +//::////////////////////////////////////////////// +//:: 2008.07.10 tsunami282 - implemented alternate database support, initially +//:: for Knat's NBDE + +#include "nbde_inc" + +const int DMFI_DB_TYPE = 2; + +void FlushDMFIPersistentData(string sDBName) +{ + NBDE_SetCampaignInt(sDBName, "DMFI_DB_DIRTY", FALSE); + NBDE_FlushCampaignDatabase(sDBName); +} + +int IsDMFIPersistentDataDirty(string sDBName) +{ + return NBDE_GetCampaignInt(sDBName, "DMFI_DB_DIRTY"); +} + +//Int functions +int GetDMFIPersistentInt(string sDBName, string sDBSetting, object oPlayer = OBJECT_INVALID) +{ + int iReturn = NBDE_GetCampaignInt(sDBName, sDBSetting, oPlayer); + return iReturn; +} + +void SetDMFIPersistentInt(string sDBName, string sDBSetting, int iDBValue, object oPlayer = OBJECT_INVALID) +{ + NBDE_SetCampaignInt(sDBName, sDBSetting, iDBValue, oPlayer); + NBDE_SetCampaignInt(sDBName, "DMFI_DB_DIRTY", TRUE); +} + +//Float functions +float GetDMFIPersistentFloat(string sDBName, string sDBSetting, object oPlayer = OBJECT_INVALID) +{ + float fReturn = NBDE_GetCampaignFloat(sDBName, sDBSetting, oPlayer); + return fReturn; +} + +void SetDMFIPersistentFloat(string sDBName, string sDBSetting, float fDBValue, object oPlayer = OBJECT_INVALID) +{ + NBDE_SetCampaignFloat(sDBName, sDBSetting, fDBValue, oPlayer); + NBDE_SetCampaignInt(sDBName, "DMFI_DB_DIRTY", TRUE); +} + +//String functions +string GetDMFIPersistentString(string sDBName, string sDBSetting, object oPlayer = OBJECT_INVALID) +{ + string sReturn = NBDE_GetCampaignString(sDBName, sDBSetting, oPlayer); + return sReturn; +} + +void SetDMFIPersistentString(string sDBName, string sDBSetting, string sDBValue, object oPlayer = OBJECT_INVALID) +{ + NBDE_SetCampaignString(sDBName, sDBSetting, sDBValue, oPlayer); + NBDE_SetCampaignInt(sDBName, "DMFI_DB_DIRTY", TRUE); +} + +//void main (){} diff --git a/gamma_age_v2/dmfi_dicebag.uti b/gamma_age_v2/dmfi_dicebag.uti new file mode 100644 index 00000000..a26caa7c Binary files /dev/null and b/gamma_age_v2/dmfi_dicebag.uti differ diff --git a/gamma_age_v2/dmfi_dmbook.uti b/gamma_age_v2/dmfi_dmbook.uti new file mode 100644 index 00000000..dd31ed56 Binary files /dev/null and b/gamma_age_v2/dmfi_dmbook.uti differ diff --git a/gamma_age_v2/dmfi_dmw.uti b/gamma_age_v2/dmfi_dmw.uti new file mode 100644 index 00000000..95ea7623 Binary files /dev/null and b/gamma_age_v2/dmfi_dmw.uti differ diff --git a/gamma_age_v2/dmfi_dmw_inc.ncs b/gamma_age_v2/dmfi_dmw_inc.ncs new file mode 100644 index 00000000..0a7ef578 Binary files /dev/null and b/gamma_age_v2/dmfi_dmw_inc.ncs differ diff --git a/gamma_age_v2/dmfi_dmw_inc.nss b/gamma_age_v2/dmfi_dmw_inc.nss new file mode 100644 index 00000000..4c117926 --- /dev/null +++ b/gamma_age_v2/dmfi_dmw_inc.nss @@ -0,0 +1,1198 @@ +// VOICE CONFIGURATION - NEW IN 1.07 and UP + +// Set this to 0 if you want to DISABLE listening by NPCs for performance reasons. +// See readme for additional information regarding possible issues and effects. +const int DMFI_LISTENING_GLOBAL = 1; + + +// NOTE: OMW_COLORS is an invisible object that must be present in your module. +// It has high ascii characters in the name and is used to get the color codes. +// This was ripped wholeheartedly by an example posted by Richterm on the bioboards. + +string DST_COLOR_TAGS = GetName(GetObjectByTag("dem_color_text")); +string DST_COLOR_WHITE = GetSubString(DST_COLOR_TAGS, 0, 6); +string DST_COLOR_YELLOW = GetSubString(DST_COLOR_TAGS, 6, 6); +string DST_COLOR_MAGENTA = GetSubString(DST_COLOR_TAGS, 12, 6); +string DST_COLOR_CYAN = GetSubString(DST_COLOR_TAGS, 18, 6); +string DST_COLOR_RED = GetSubString(DST_COLOR_TAGS, 24, 6); +string DST_COLOR_GREEN = GetSubString(DST_COLOR_TAGS, 30, 6); +string DST_COLOR_BLUE = GetSubString(DST_COLOR_TAGS, 36, 6); + +// Colors for each type of roll. Change the colors if you like. +string DMFI_ROLL_COLOR = DST_COLOR_CYAN; +string DST_COLOR_NORMAL = DST_COLOR_WHITE; + +int DMW_START_CUSTOM_TOKEN = 8000; + +//Retrieve targetting information +object oMySpeaker = GetLastSpeaker(); +object oMyTarget = GetLocalObject(oMySpeaker, "dmfi_univ_target"); +location lMyLoc = GetLocalLocation(oMySpeaker, "dmfi_univ_location"); + +// checks if a nearby object is destroyable +int dmwand_isnearbydestroyable(); +// Check if the target can be created with CreateObject +int dmwand_istargetcreateable(); +//Check if target is a destroyable object +int dmwand_istargetdestroyable(); +// checks if the wand was NOT clicked on an object +int dmwand_istargetinvalid(); +// check if the target has an inventory +int dmwand_istargetinventory(); +//Check if the target is not the wand's user +int dmwand_istargetnotme(); +//Check if target is an NPC or monster +int dmwand_istargetnpc(); +//Check if the target is a PC +int dmwand_istargetpc(); +//Check if the target is a PC and not me +int dmwand_istargetpcnme(); +// Check if the target is a PC or NPC +// uses the CON score currently +int dmwand_istargetpcornpc(); +//Check if the target is a PC or an npc and not me +int dmwand_istargetpcornpcnme(); +// Check if target is a placeable +int dmwand_istargetplaceable(); +//bulds the conversion +int dmwand_BuildConversationDialog(int nCurrent, int nChoice, string sConversation, string sParams); +int dmw_conv_ListPlayers(int nCurrent, int nChoice, string sParams = ""); +int dmw_conv_Start(int nCurrent, int nChoice, string sParams = ""); +void dmwand_BuildConversation(string sConversation, string sParams); +void dmwand_StartConversation(); + +// DMFI Color Text function. It returns a colored string. +// sText is the string that will be colored and sColor is the color +// options: yellow, magenta, cyan, red, green, blue - truncated at first letter +// Ex: sMsg = ColorText(sMsg, "y"); //Add the include file - yields yellow colored msg. +string ColorText(string sText, string sColor); +string ColorText(string sText, string sColor) +{ + string sApply = DST_COLOR_NORMAL; + string sTest = GetStringLowerCase(GetStringLeft(sColor, 1)); + if (sTest=="y") sApply = DST_COLOR_YELLOW; + else if (sTest == "m") sApply = DST_COLOR_MAGENTA; + else if (sTest == "c") sApply = DST_COLOR_CYAN; + else if (sTest == "r") sApply = DST_COLOR_RED; + else if (sTest == "g") sApply = DST_COLOR_GREEN; + else if (sTest == "b") sApply = DST_COLOR_BLUE; + + string sFinal = sApply + sText + DST_COLOR_NORMAL; + return sFinal; +} + + +int dmwand_isnearbydestroyable() +{ + object oMyTest = GetFirstObjectInShape(SHAPE_CUBE, 0.6, lMyLoc, FALSE, OBJECT_TYPE_ALL); + int nTargetType = GetObjectType(oMyTest); + return (GetIsObjectValid(oMyTest) && (! GetIsPC(oMyTest)) && ((nTargetType == OBJECT_TYPE_ITEM) || (nTargetType == OBJECT_TYPE_PLACEABLE) || (nTargetType == OBJECT_TYPE_CREATURE))); +} + +int dmwand_istargetcreateable() +{ + if(! GetIsObjectValid(oMyTarget)) { return FALSE; } + + int nTargetType = GetObjectType(oMyTarget); + return ((nTargetType == OBJECT_TYPE_ITEM) || (nTargetType == OBJECT_TYPE_PLACEABLE) || (nTargetType == OBJECT_TYPE_CREATURE)); +} + +int dmwand_istargetdestroyable() +{ + if(! GetIsObjectValid(oMyTarget)) { return FALSE; } + + int nTargetType = GetObjectType(oMyTarget); + if(! GetIsPC(oMyTarget)) + { + return ((nTargetType == OBJECT_TYPE_ITEM) || (nTargetType == OBJECT_TYPE_PLACEABLE) || (nTargetType == OBJECT_TYPE_CREATURE)); + } + return FALSE; +} + +int dmwand_istargetinvalid() +{ + return !GetIsObjectValid(oMyTarget); +} + +int dmwand_istargetinventory() +{ + return (GetIsObjectValid(oMyTarget) && GetHasInventory(oMyTarget)); +} + +int dmwand_istargetnotme() +{ + return (GetIsObjectValid(oMyTarget) && (oMySpeaker != oMyTarget)); +} + +int dmwand_istargetpc() +{ + return (GetIsObjectValid(oMyTarget) && GetIsPC(oMyTarget)); +} + +int dmwand_istargetpcnme() +{ + return (GetIsObjectValid(oMyTarget) && GetIsPC(oMyTarget) && (oMySpeaker != oMyTarget)); +} + +int dmwand_istargetpcornpc() +{ + return (GetIsObjectValid(oMyTarget) && GetAbilityScore(oMyTarget, ABILITY_CONSTITUTION)); +} + +int dmwand_istargetnpc() +{ + return (dmwand_istargetpcornpc() && (!GetIsPC(oMyTarget))); +} + +int dmwand_istargetpcornpcnme() +{ + return (dmwand_istargetpcornpc() && (oMySpeaker != oMyTarget)); +} + +int dmwand_istargetplaceable() +{ + if(! GetIsObjectValid(oMyTarget)) { return FALSE; } + + int nTargetType = GetObjectType(oMyTarget); + return (nTargetType == OBJECT_TYPE_PLACEABLE); +} + +int dmw_conv_Start(int nCurrent, int nChoice, string sParams = "") +{ + string sText = ""; + string sCall = ""; + string sCallParams = ""; + + switch(nCurrent) + { + case 0: + nCurrent = 0; + sText = "Hello there, DM. What can I do for you?"; + sCall = ""; + sCallParams = ""; + break; + + case 1: + nCurrent = 1; + if(dmwand_istargetpcnme()) + { + sText = "Penguin this player."; + sCall = "func_Toad"; + sCallParams = ""; + break; + } + case 2: + nCurrent = 2; + if(dmwand_istargetpcnme()) + { + sText = "Unpenguin this player."; + sCall = "func_Untoad"; + sCallParams = ""; + break; + } + case 3: + nCurrent = 3; + if(dmwand_istargetpcnme()) + { + sText = "Boot this player."; + sCall = "func_KickPC"; + sCallParams = ""; + break; + } + case 4: + nCurrent = 4; + if(dmwand_istargetinvalid()) + { + sText = "List all players..."; + sCall = "conv_ListPlayers"; + sCallParams = "func_PlayerListConv"; + break; + } + + case 5: + nCurrent = 5; + if(dmwand_istargetpcnme()) + { + sText = "Jump this player to my location."; + sCall = "func_JumpPlayerHere"; + sCallParams = ""; + break; + } + case 6: + nCurrent = 6; + if(dmwand_istargetpcnme()) + { + sText = "Jump me to this player's location."; + sCall = "func_JumpToPlayer"; + sCallParams = ""; + break; + } + case 7: + nCurrent = 7; + if(dmwand_istargetpcnme()) + { + sText = "Jump this player's party to my location."; + sCall = "func_JumpPartyHere"; + sCallParams = ""; + break; + } + default: + nCurrent = 0; + sText = ""; + sCall = ""; + sCallParams = ""; + break; + } + + SetLocalString(oMySpeaker, "dmw_dialog" + IntToString(nChoice), sText); + SetLocalString(oMySpeaker, "dmw_function" + IntToString(nChoice), sCall); + SetLocalString(oMySpeaker, "dmw_params" + IntToString(nChoice), sCallParams); + + return nCurrent; +} + +void DMFI_untoad(object oTarget, object oUser) +{ + if (GetLocalInt(oTarget, "toaded")==1) + { + effect eMyEffect = GetFirstEffect(oTarget); + while(GetIsEffectValid(eMyEffect)) + { + if(GetEffectType(eMyEffect) == EFFECT_TYPE_POLYMORPH || GetEffectType(eMyEffect) == EFFECT_TYPE_CUTSCENE_PARALYZE) + RemoveEffect(oTarget, eMyEffect); + + eMyEffect = GetNextEffect(oTarget); + } + } + else + { + FloatingTextStringOnCreature("Dude, he is no toad!", oUser); + } +} + +void DMFI_toad(object oTarget, object oUser) +{ + //This function now toggles the toad status hahnsoo: DMFI 1.08 + if (GetLocalInt(oTarget, "toaded") == 1) + { + effect eMyEffect = GetFirstEffect(oTarget); + while(GetIsEffectValid(eMyEffect)) + { + if(GetEffectType(eMyEffect) == EFFECT_TYPE_POLYMORPH || GetEffectType(eMyEffect) == EFFECT_TYPE_CUTSCENE_PARALYZE) + RemoveEffect(oTarget, eMyEffect); + + eMyEffect = GetNextEffect(oTarget); + } + FloatingTextStringOnCreature("Removed Penguin status from " + GetName(oTarget), oUser, FALSE); + SetLocalInt(oTarget, "toaded", 0); + } + else + { + effect ePenguin = EffectPolymorph(POLYMORPH_TYPE_PENGUIN); + effect eParalyze = EffectCutsceneParalyze(); + AssignCommand(oTarget, ApplyEffectToObject(DURATION_TYPE_PERMANENT, ePenguin, oTarget)); + AssignCommand(oTarget, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eParalyze, oTarget)); + SetLocalInt(oTarget, "toaded", 1); + FloatingTextStringOnCreature("Added Penguin status to " + GetName(oTarget), oUser, FALSE); + } +} + +void DMFI_jail(object oOther, object oUser) +{ + if (GetIsObjectValid(oOther) && !GetIsDM(oOther) && oOther != oUser) + { + object oJail = GetObjectByTag("dmfi_jail"); + if (!GetIsObjectValid(oJail)) + oJail = GetObjectByTag("dmfi_jail_default"); + AssignCommand(oOther, ClearAllActions()); + AssignCommand(oOther, JumpToObject(oJail)); + SendMessageToPC(oUser, GetName(oOther) + " (" + GetPCPublicCDKey(oOther) + ")/IP: " + GetPCIPAddress(oOther) + " - has been sent to Jail."); + } +} + +void dmwand_KickPC(object oTarget, object oUser) +{ + // Create a lightning strike, thunder, scorch mark, and random small + // lightnings at target's location + location lMyLoc = GetLocation (oTarget); + AssignCommand( oUser, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_M), lMyLoc)); + AssignCommand ( oUser, PlaySound ("as_wt_thundercl3")); + object oScorch = CreateObject ( OBJECT_TYPE_PLACEABLE, "plc_weathmark", lMyLoc, FALSE); + object oTargetArea = GetArea(oUser); + int nXPos, nYPos, nCount; + for(nCount = 0; nCount < 5; nCount++) + { + nXPos = Random(10) - 5; + nYPos = Random(10) - 5; + + vector vNewVector = GetPositionFromLocation(lMyLoc); + vNewVector.x += nXPos; + vNewVector.y += nYPos; + + location lNewLoc = Location(oTargetArea, vNewVector, 0.0); + AssignCommand( oUser, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_S), lNewLoc)); + } + DelayCommand ( 20.0, DestroyObject ( oScorch)); + + SendMessageToAllDMs (GetName(oTarget) + " was booted from the game. PC CD KEY: " + GetPCPublicCDKey(oTarget) + " PC IP ADDRESS: " + GetPCIPAddress(oTarget)); + PrintString(GetName(oTarget) + " was booted from the game. PC CD KEY: " + GetPCPublicCDKey(oTarget) + " PC IP ADDRESS: " + GetPCIPAddress(oTarget)); + + // Kick the target out of the game + BootPC(oTarget); +} + +void dmwand_JumpPlayerHere() +{ + location lJumpLoc = GetLocation(oMySpeaker); + AssignCommand(oMyTarget, ClearAllActions()); + AssignCommand(oMyTarget, ActionJumpToLocation(lJumpLoc)); +} + +//Added by hahnsoo, jumps a party to the DM +void dmwand_JumpPartyHere() +{ + location lJumpLoc = GetLocation(oMySpeaker); + object oParty = GetFirstFactionMember(oMyTarget); + while (GetIsObjectValid(oParty)) + { + AssignCommand(oParty, ClearAllActions()); + AssignCommand(oParty, ActionJumpToLocation(lJumpLoc)); + oParty = GetNextFactionMember(oMyTarget); + } +} + +void dmwand_JumpToPlayer() +{ + location lJumpLoc = GetLocation(oMyTarget); + AssignCommand(oMySpeaker, ActionJumpToLocation(lJumpLoc)); +} + +void dmwand_PlayerListConv(string sParams) +{ + int nPlayer = StringToInt(sParams); + int nCache; + int nCount; + + object oPlayer = GetLocalObject(oMySpeaker, "dmw_playercache" + IntToString(nPlayer)); + oMyTarget = oPlayer; + SetLocalObject(oMySpeaker, "dmfi_univ_target", oMyTarget); + + //Go back to the first conversation level + dmwand_BuildConversation("Start", ""); +} + +//:://///////////////////////////////////////////// +//:: File: dmw_conv_inc +//:: +//:: Conversation functions for the DM's Helper +//::////////////////////////////////////////////// + +int dmwand_BuildConversationDialog(int nCurrent, int nChoice, string sConversation, string sParams) +{ + + if(TestStringAgainstPattern(sConversation, "ListPlayers")) + { + return dmw_conv_ListPlayers(nCurrent, nChoice, sParams); + } + + if(TestStringAgainstPattern(sConversation, "Start")) + { + return dmw_conv_Start(nCurrent, nChoice, sParams); + } + + return FALSE; +} + +void dmwand_BuildConversation(string sConversation, string sParams) +{ + int nLast; + int nTemp; + int nChoice = 1; + int nCurrent = 1; + int nMatch; + + if(TestStringAgainstPattern(sParams, "prev")) + { + //Get the number choice to start with + nCurrent = GetLocalInt(oMySpeaker, "dmw_dialogprev"); + + //Since we're going to the previous page, there will be a next + SetLocalString(oMySpeaker, "dmw_dialog9", "Next ->"); + SetLocalString(oMySpeaker, "dmw_function9", "conv_" + sConversation); + SetLocalString(oMySpeaker, "dmw_params9", "next"); + SetLocalInt(oMySpeaker, "dmw_dialognext", nCurrent); + + nChoice = 8; + for(;nChoice >= 0; nChoice--) + { + int nTemp1 = nCurrent; + int nTemp2 = nCurrent; + nMatch = nTemp2; + while((nCurrent == nMatch) && (nTemp2 > 0)) + { + nTemp2--; + nMatch = dmwand_BuildConversationDialog(nTemp2, nChoice, sConversation, sParams); + } + + if(nTemp2 <= 0) + { + //we went back too far for some reason, so make this choice blank + SetLocalString(oMySpeaker, "dmw_dialog" + IntToString(nChoice), ""); + SetLocalString(oMySpeaker, "dmw_function" + IntToString(nChoice), ""); + SetLocalString(oMySpeaker, "dmw_params" + IntToString(nChoice), ""); + } + nLast = nTemp; + nTemp = nTemp1; + nTemp1 = nMatch; + nCurrent = nMatch; + } + + if(nMatch > 0) + { + SetLocalString(oMySpeaker, "dmw_dialog1", "<- previous"); + SetLocalString(oMySpeaker, "dmw_function1", "conv_" + sConversation); + SetLocalString(oMySpeaker, "dmw_params1", "prev"); + SetLocalInt(oMySpeaker, "dmw_dialogprev", nLast); + } + + //fill the NPC's dialog spot + //(saved for last because the build process tromps on it) + dmwand_BuildConversationDialog(0, 0, sConversation, sParams); + } + else + { + //fill the NPC's dialog spot + dmwand_BuildConversationDialog(0, 0, sConversation, sParams); + + //No parameters specified, start at the top of the conversation + if(sParams == "") + { + nChoice = 1; + nCurrent = 1; + } + + //A "next->" choice was selected + if(TestStringAgainstPattern(sParams, "next")) + { + //get the number choice to start with + nCurrent = GetLocalInt(oMySpeaker, "dmw_dialognext"); + + //set this as the number for the "previous" choice to use + SetLocalInt(oMySpeaker, "dmw_dialogprev", nCurrent); + + //Set the first dialog choice to be "previous" + nChoice = 2; + SetLocalString(oMySpeaker, "dmw_dialog1", "<- Previous"); + SetLocalString(oMySpeaker, "dmw_function1", "conv_" + sConversation); + SetLocalString(oMySpeaker, "dmw_params1", "prev"); + } + + //Loop through to build the dialog list + for(;nChoice <= 10; nChoice++) + { + nMatch = dmwand_BuildConversationDialog(nCurrent, nChoice, sConversation, sParams); + //nLast will be the value of the choice before the last one + nLast = nTemp; + nTemp = nMatch; + if(nMatch > 0) { nCurrent = nMatch; } + if(nMatch == 0) { nLast = 0; } + nCurrent++; + } + + //If there were enough choices to fill 10 spots, make spot 9 a "next" + if(nLast > 0) + { + SetLocalString(oMySpeaker, "dmw_dialog9", "Next ->"); + SetLocalString(oMySpeaker, "dmw_function9", "conv_" + sConversation); + SetLocalString(oMySpeaker, "dmw_params9", "next"); + SetLocalInt(oMySpeaker, "dmw_dialognext", nLast); + } + } +} + +int dmw_conv_ListPlayers(int nCurrent, int nChoice, string sParams = "") +{ + string sText = ""; + string sCall = ""; + string sCallParams = ""; + object oPlayer; + int nCache; + + if((! TestStringAgainstPattern(sParams, "next")) && (! TestStringAgainstPattern(sParams, "prev"))) + { + //This is the first time running this function, so cache the objects + // of all players... we don't want our list swapping itself around every + // time you change a page + SetLocalString(oMySpeaker, "dmw_playerfunc", sParams); + int nCount = 1; + oPlayer = GetFirstPC(); + while(GetIsObjectValid(oPlayer)) + { + SetLocalObject(oMySpeaker, "dmw_playercache" + IntToString(nCount), oPlayer); + oPlayer = GetNextPC(); + nCount++; + } + nCount--; + SetLocalInt(oMySpeaker, "dmw_playercache", nCount); + } + + string sFunc = GetLocalString(oMySpeaker, "dmw_playerfunc"); + nCache = GetLocalInt(oMySpeaker, "dmw_playercache"); + + switch(nCurrent) + { + case 0: + nCurrent = 0; + sText = "Who would you like to work on?"; + sCall = ""; + sCallParams = ""; + break; + default: + //Find the next player in the cache who is valid + oPlayer = GetLocalObject(oMySpeaker, "dmw_playercache" + IntToString(nCurrent)); + while((! GetIsObjectValid(oPlayer)) && (nCurrent <= nCache)) + { + nCurrent++; + oPlayer = GetLocalObject(oMySpeaker, "dmw_playercache" + IntToString(nCurrent)); + } + + if(nCurrent > nCache) + { + //We've run out of cache, any other spots in this list should be + //skipped + nCurrent = 0; + sText = ""; + sCall = ""; + sCallParams = ""; + } + else + { + //We found a player, set up the list entry + sText = GetName(oPlayer) + " (" + GetPCPlayerName(oPlayer) + ")"; + sCall = sFunc; + sCallParams = IntToString(nCurrent); + } + break; + } + + SetLocalString(oMySpeaker, "dmw_dialog" + IntToString(nChoice), sText); + SetLocalString(oMySpeaker, "dmw_function" + IntToString(nChoice), sCall); + SetLocalString(oMySpeaker, "dmw_params" + IntToString(nChoice), sCallParams); + + return nCurrent; +} + +void dmwand_DoDialogChoice(int nChoice) +{ + string sCallFunction = GetLocalString(oMySpeaker, "dmw_function" + IntToString(nChoice)); + string sCallParams = GetLocalString(oMySpeaker, "dmw_params" + IntToString(nChoice)); + string sNav = ""; + + string sStart = GetStringLeft(sCallFunction, 5); + int nLen = GetStringLength(sCallFunction) - 5; + string sCall = GetSubString(sCallFunction, 5, nLen); + + if(TestStringAgainstPattern("conv_", sStart)) + { + dmwand_BuildConversation(sCall, sCallParams); + } + else + { + + if(TestStringAgainstPattern("PlayerListConv", sCall)) + { + dmwand_PlayerListConv(sCallParams); + return; + } + + if(TestStringAgainstPattern("Toad", sCall)) + { + DMFI_toad(oMyTarget, oMySpeaker); + return; + } + if(TestStringAgainstPattern("Untoad", sCall)) + { + DMFI_untoad(oMyTarget, oMySpeaker); + return; + } + if(TestStringAgainstPattern("KickPC", sCall)) + { + dmwand_KickPC(oMyTarget, oMySpeaker); + return; + } + + if(TestStringAgainstPattern("JumpPlayerHere", sCall)) + { + dmwand_JumpPlayerHere(); + return; + } + if(TestStringAgainstPattern("JumpToPlayer", sCall)) + { + dmwand_JumpToPlayer(); + return; + } + if(TestStringAgainstPattern("JumpPartyHere", sCall)) + { + dmwand_JumpPartyHere(); + return; + } + } +} + +//Smoking Function by Jason Robinson +location GetLocationAboveAndInFrontOf(object oPC, float fDist, float fHeight) +{ + float fDistance = -fDist; + object oTarget = (oPC); + object oArea = GetArea(oTarget); + vector vPosition = GetPosition(oTarget); + vPosition.z += fHeight; + float fOrientation = GetFacing(oTarget); + vector vNewPos = AngleToVector(fOrientation); + float vZ = vPosition.z; + float vX = vPosition.x - fDistance * vNewPos.x; + float vY = vPosition.y - fDistance * vNewPos.y; + fOrientation = GetFacing(oTarget); + vX = vPosition.x - fDistance * vNewPos.x; + vY = vPosition.y - fDistance * vNewPos.y; + vNewPos = AngleToVector(fOrientation); + vZ = vPosition.z; + vNewPos = Vector(vX, vY, vZ); + return Location(oArea, vNewPos, fOrientation); +} + +//Smoking Function by Jason Robinson +void SmokePipe(object oActivator) +{ + string sEmote1 = "*puffs on a pipe*"; + string sEmote2 = "*inhales from a pipe*"; + string sEmote3 = "*pulls a mouthful of smoke from a pipe*"; + float fHeight = 1.7; + float fDistance = 0.1; + // Set height based on race and gender + if (GetGender(oActivator) == GENDER_MALE) + { + switch (GetRacialType(oActivator)) + { + case RACIAL_TYPE_HUMAN: + case RACIAL_TYPE_HALFELF: fHeight = 1.7; fDistance = 0.12; break; + case RACIAL_TYPE_ELF: fHeight = 1.55; fDistance = 0.08; break; + case RACIAL_TYPE_GNOME: + case RACIAL_TYPE_HALFLING: fHeight = 1.15; fDistance = 0.12; break; + case RACIAL_TYPE_DWARF: fHeight = 1.2; fDistance = 0.12; break; + case RACIAL_TYPE_HALFORC: fHeight = 1.9; fDistance = 0.2; break; + } + } + else + { + // FEMALES + switch (GetRacialType(oActivator)) + { + case RACIAL_TYPE_HUMAN: + case RACIAL_TYPE_HALFELF: fHeight = 1.6; fDistance = 0.12; break; + case RACIAL_TYPE_ELF: fHeight = 1.45; fDistance = 0.12; break; + case RACIAL_TYPE_GNOME: + case RACIAL_TYPE_HALFLING: fHeight = 1.1; fDistance = 0.075; break; + case RACIAL_TYPE_DWARF: fHeight = 1.2; fDistance = 0.1; break; + case RACIAL_TYPE_HALFORC: fHeight = 1.8; fDistance = 0.13; break; + } + } + location lAboveHead = GetLocationAboveAndInFrontOf(oActivator, fDistance, fHeight); + // emotes + switch (d3()) + { + case 1: AssignCommand(oActivator, ActionSpeakString(sEmote1)); break; + case 2: AssignCommand(oActivator, ActionSpeakString(sEmote2)); break; + case 3: AssignCommand(oActivator, ActionSpeakString(sEmote3));break; + } + // glow red + AssignCommand(oActivator, ActionDoCommand(ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_RED_5), oActivator, 0.15))); + // wait a moment + AssignCommand(oActivator, ActionWait(3.0)); + // puff of smoke above and in front of head + AssignCommand(oActivator, ActionDoCommand(ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SMOKE_PUFF), lAboveHead))); + // if female, turn head to left + if ((GetGender(oActivator) == GENDER_FEMALE) && (GetRacialType(oActivator) != RACIAL_TYPE_DWARF)) + AssignCommand(oActivator, ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 1.0, 5.0)); +} + +void EmoteDance(object oPC) +{ + object oRightHand = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND,oPC); + object oLeftHand = GetItemInSlot(INVENTORY_SLOT_LEFTHAND,oPC); + + AssignCommand(oPC,ActionUnequipItem(oRightHand)); + AssignCommand(oPC,ActionUnequipItem(oLeftHand)); + + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY2,1.0)); + AssignCommand(oPC,ActionDoCommand(PlayVoiceChat(VOICE_CHAT_LAUGH,oPC))); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_LOOPING_TALK_LAUGHING, 2.0, 2.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY1,1.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY3,2.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_LOOPING_GET_MID, 3.0, 1.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_LOOPING_TALK_FORCEFUL,1.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY2,1.0)); + AssignCommand(oPC,ActionDoCommand(PlayVoiceChat(VOICE_CHAT_LAUGH,oPC))); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_LOOPING_TALK_LAUGHING, 2.0, 2.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY1,1.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY3,2.0)); + AssignCommand(oPC,ActionDoCommand(PlayVoiceChat(VOICE_CHAT_LAUGH,oPC))); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_LOOPING_GET_MID, 3.0, 1.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY2,1.0)); + + AssignCommand(oPC,ActionDoCommand(ActionEquipItem(oLeftHand,INVENTORY_SLOT_LEFTHAND))); + AssignCommand(oPC,ActionDoCommand(ActionEquipItem(oRightHand,INVENTORY_SLOT_RIGHTHAND))); +} + +void SitInNearestChair(object oPC) +{ + object oSit,oRightHand,oLeftHand,oChair,oCouch,oBenchPew,oStool; + float fDistSit;int nth; + // get the closest chair, couch bench or stool + nth = 1;oChair = GetNearestObjectByTag("Chair", oPC,nth); + while(oChair != OBJECT_INVALID && GetSittingCreature(oChair) != OBJECT_INVALID) + {nth++;oChair = GetNearestObjectByTag("Chair", oPC,nth);} + + nth = 1;oCouch = GetNearestObjectByTag("Couch", oPC,nth); + while(oCouch != OBJECT_INVALID && GetSittingCreature(oCouch) != OBJECT_INVALID) + {nth++;oChair = GetNearestObjectByTag("Couch", oPC,nth);} + + nth = 1;oBenchPew = GetNearestObjectByTag("BenchPew", oPC,nth); + while(oBenchPew != OBJECT_INVALID && GetSittingCreature(oBenchPew) != OBJECT_INVALID) + {nth++;oChair = GetNearestObjectByTag("BenchPew", oPC,nth);} + /* 1.27 bug + nth = 1;oStool = GetNearestObjectByTag("Stool", oPC,nth); + while(oStool != OBJECT_INVALID && GetSittingCreature(oStool) != OBJECT_INVALID) + {nth++;oStool = GetNearestObjectByTag("Stool", oPC,nth);} + */ + // get the distance between the user and each object (-1.0 is the result if no + // object is found + float fDistanceChair = GetDistanceToObject(oChair); + float fDistanceBench = GetDistanceToObject(oBenchPew); + float fDistanceCouch = GetDistanceToObject(oCouch); + float fDistanceStool = GetDistanceToObject(oStool); + + // if any of the objects are invalid (not there), change the return value + // to a high number so the distance math can work + if (fDistanceChair == -1.0) + {fDistanceChair =1000.0;} + + if (fDistanceBench == -1.0) + {fDistanceBench = 1000.0;} + + if (fDistanceCouch == -1.0) + {fDistanceCouch = 1000.0;} + + if (fDistanceStool == -1.0) + {fDistanceStool = 1000.0;} + + // find out which object is closest to the PC + if (fDistanceChair 0) + { + sReturnString =sReturnString + "/" + sClassTwo + "(" + IntToString(nLevelTwo) + ")"; + } + + //If third class exists append to return string + if(nLevelThree > 0) + { + sReturnString =sReturnString + "/" + sClassThree + "(" + IntToString(nLevelThree) + ")"; + } + + return sReturnString; +} + +string dmwand_Gender(object oEntity) +{ + switch (GetGender(oEntity)) + { + case GENDER_MALE: return "Male"; break; + case GENDER_FEMALE: return "Female"; break; + case GENDER_BOTH: return "Both"; break; + case GENDER_NONE: return "None"; break; + case GENDER_OTHER: return "Other"; break; + } + + return "Weirdo"; +} + +string dmwand_ItemInfo(object oItem, int iInt) +{ + string sReturnString = ""; + string sBaseType = ""; + string sStacked = ""; + string sIdentified = ""; + string sGPValue = ""; + string sACValue = ""; + string sProperties = ""; + + switch(GetBaseItemType(oItem)) + { + case BASE_ITEM_AMULET: sBaseType ="Amulet";break; + case BASE_ITEM_ARMOR: sBaseType ="Armor";break; + case BASE_ITEM_ARROW: sBaseType ="Arrow";break; + case BASE_ITEM_BASTARDSWORD: sBaseType ="Bastard Sword";break; + case BASE_ITEM_BATTLEAXE: sBaseType ="Battle Axe";break; + case BASE_ITEM_BELT: sBaseType ="Belt";break; + case BASE_ITEM_BLANK_POTION : sBaseType ="Blank Potion";break; + case BASE_ITEM_BLANK_SCROLL : sBaseType ="Blank Scroll";break; + case BASE_ITEM_BLANK_WAND : sBaseType ="Blank Wand";break; + case BASE_ITEM_BOLT : sBaseType ="Bolt";break; + case BASE_ITEM_BOOK: sBaseType ="Book";break; + case BASE_ITEM_BOOTS: sBaseType ="Boots";break; + case BASE_ITEM_BRACER: sBaseType ="Bracer";break; + case BASE_ITEM_BULLET: sBaseType ="Bullet";break; + case BASE_ITEM_CBLUDGWEAPON: sBaseType ="Bludgeoning Weap.";break; + case BASE_ITEM_CLOAK: sBaseType ="Cloak";break; + case BASE_ITEM_CLUB: sBaseType ="Club";break; + case BASE_ITEM_CPIERCWEAPON: sBaseType ="Pierceing Weap.";break; + case BASE_ITEM_CREATUREITEM: sBaseType ="Creature Item";break; + case BASE_ITEM_CSLASHWEAPON: sBaseType ="Slash Weap.";break; + case BASE_ITEM_CSLSHPRCWEAP: sBaseType ="Slash/Pierce Weap.";break; + case BASE_ITEM_DAGGER: sBaseType ="Dagger";break; + case BASE_ITEM_DART: sBaseType ="Dart";break; + case BASE_ITEM_DIREMACE: sBaseType ="Mace";break; + case BASE_ITEM_DOUBLEAXE: sBaseType ="Double Axe";break; + case BASE_ITEM_DWARVENWARAXE : sBaseType ="Dwarven War Axe";break; + case BASE_ITEM_ENCHANTED_POTION : sBaseType ="Enchanted Potion";break; + case BASE_ITEM_ENCHANTED_SCROLL : sBaseType ="Enchanted Scroll";break; + case BASE_ITEM_ENCHANTED_WAND : sBaseType ="Enchanted Wand";break; + case BASE_ITEM_GEM: sBaseType ="Gem";break; + case BASE_ITEM_GLOVES: sBaseType ="Gloves";break; + case BASE_ITEM_GOLD: sBaseType ="Gold";break; + case BASE_ITEM_GREATAXE: sBaseType ="Great Axe";break; + case BASE_ITEM_GREATSWORD: sBaseType ="Great Sword";break; + case BASE_ITEM_GRENADE : sBaseType ="Grenade";break; + case BASE_ITEM_HALBERD: sBaseType ="Halberd";break; + case BASE_ITEM_HANDAXE: sBaseType ="Hand Axe";break; + case BASE_ITEM_HEALERSKIT: sBaseType ="Healers Kit";break; + case BASE_ITEM_HEAVYCROSSBOW: sBaseType ="Heavy Xbow";break; + case BASE_ITEM_HEAVYFLAIL: sBaseType ="Heavy Flail";break; + case BASE_ITEM_HELMET: sBaseType ="Helmet";break; + case BASE_ITEM_INVALID: sBaseType ="";break; + case BASE_ITEM_KAMA: sBaseType ="Kama";break; + case BASE_ITEM_KATANA: sBaseType ="Katana";break; + case BASE_ITEM_KEY: sBaseType ="Key";break; + case BASE_ITEM_KUKRI: sBaseType ="Kukri";break; + case BASE_ITEM_LARGEBOX: sBaseType ="Large Box";break; + case BASE_ITEM_LARGESHIELD: sBaseType ="Large Shield";break; + case BASE_ITEM_LIGHTCROSSBOW: sBaseType ="Light Xbow";break; + case BASE_ITEM_LIGHTFLAIL: sBaseType ="Light Flail";break; + case BASE_ITEM_LIGHTHAMMER: sBaseType ="Light Hammer";break; + case BASE_ITEM_LIGHTMACE: sBaseType ="Light Mace";break; + case BASE_ITEM_LONGBOW: sBaseType ="Long Bow";break; + case BASE_ITEM_LONGSWORD: sBaseType ="Long Sword";break; + case BASE_ITEM_MAGICROD: sBaseType ="Magic Rod";break; + case BASE_ITEM_MAGICSTAFF: sBaseType ="Magic Staff";break; + case BASE_ITEM_MAGICWAND: sBaseType ="Magic Wand";break; + case BASE_ITEM_MISCLARGE: sBaseType ="Misc. Large";break; + case BASE_ITEM_MISCMEDIUM: sBaseType ="Misc. Medium";break; + case BASE_ITEM_MISCSMALL: sBaseType ="Misc. Small";break; + case BASE_ITEM_MISCTALL: sBaseType ="Misc. Small";break; + case BASE_ITEM_MISCTHIN: sBaseType ="Misc. Thin";break; + case BASE_ITEM_MISCWIDE: sBaseType ="Misc. Wide";break; + case BASE_ITEM_MORNINGSTAR: sBaseType ="Morningstar";break; + case BASE_ITEM_POTIONS: sBaseType ="Potion";break; + case BASE_ITEM_QUARTERSTAFF: sBaseType ="Quarterstaff";break; + case BASE_ITEM_RAPIER: sBaseType ="Rapier";break; + case BASE_ITEM_RING: sBaseType ="Ring";break; + case BASE_ITEM_SCIMITAR: sBaseType ="Scimitar";break; + case BASE_ITEM_SCROLL: sBaseType ="Scroll";break; + case BASE_ITEM_SCYTHE: sBaseType ="Scythe";break; + case BASE_ITEM_SHORTBOW: sBaseType ="Shortbow";break; + case BASE_ITEM_SHORTSPEAR: sBaseType ="Short Spear";break; + case BASE_ITEM_SHORTSWORD: sBaseType ="Short Sword";break; + case BASE_ITEM_SHURIKEN: sBaseType ="Shuriken";break; + case BASE_ITEM_SICKLE: sBaseType ="Sickle";break; + case BASE_ITEM_SLING: sBaseType ="Sling";break; + case BASE_ITEM_SMALLSHIELD: sBaseType ="Small Shield";break; + case BASE_ITEM_SPELLSCROLL: sBaseType ="Spell Scroll";break; + case BASE_ITEM_THIEVESTOOLS: sBaseType ="Thieves Tools";break; + case BASE_ITEM_THROWINGAXE: sBaseType ="Throwing Axe";break; + case BASE_ITEM_TORCH: sBaseType ="Torch";break; + case BASE_ITEM_TOWERSHIELD: sBaseType ="Tower Shield";break; + case BASE_ITEM_TRAPKIT: sBaseType ="Trap Kit";break; + case BASE_ITEM_TRIDENT: sBaseType ="Trident";break; + case BASE_ITEM_TWOBLADEDSWORD: sBaseType ="2 Bladed Sword";break; + case BASE_ITEM_WARHAMMER: sBaseType ="Warhammer";break; + case BASE_ITEM_WHIP : sBaseType ="Whip";break; + } + + sReturnString = sStacked + GetName(oItem) + " (" + sBaseType + ")"; + return sReturnString; +} + +string dmwand_Inventory(object oEntity) +{ + + string sBaseType; + string sReturnString; + + sReturnString = sReturnString + "\nEquipped:\n"; + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_ARMS, oMyTarget))){ sReturnString = sReturnString + "Arms: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_ARMS, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_BELT, oMyTarget))){ sReturnString = sReturnString + "Belt: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_BELT, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_BOOTS, oMyTarget))){ sReturnString = sReturnString + "Boots: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_BOOTS, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_CHEST, oMyTarget))){ sReturnString = sReturnString + "Chest: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_CHEST, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_CLOAK, oMyTarget))){ sReturnString = sReturnString + "Cloak: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_CLOAK, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_HEAD, oMyTarget))){ sReturnString = sReturnString + "Head: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_HEAD, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oMyTarget))){ sReturnString = sReturnString + "Left Hand: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_LEFTRING, oMyTarget))){ sReturnString = sReturnString + "Left Ring: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_LEFTRING, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_NECK, oMyTarget))){ sReturnString = sReturnString + "Neck: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_NECK, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oMyTarget))){ sReturnString = sReturnString + "Right Hand: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_RIGHTRING, oMyTarget))){ sReturnString = sReturnString + "Right Ring: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_RIGHTRING, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_ARROWS, oMyTarget))){ sReturnString = sReturnString + "Arrows: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_ARROWS, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_BOLTS, oMyTarget))){ sReturnString = sReturnString + "Bolts: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_BOLTS, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_BULLETS, oMyTarget))){ sReturnString = sReturnString + "Bullets: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_BULLETS, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_CARMOUR, oMyTarget))){ sReturnString = sReturnString + "Creature Armor: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_CARMOUR, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_CWEAPON_B, oMyTarget))){ sReturnString = sReturnString + "Creature Bite: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_CWEAPON_B, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_CWEAPON_L, oMyTarget))){ sReturnString = sReturnString + "Creature Left: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_CWEAPON_L, oMyTarget),0) + "\n"; } + if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_CWEAPON_R, oMyTarget))){ sReturnString = sReturnString + "Creature Right: " + dmwand_ItemInfo(GetItemInSlot(INVENTORY_SLOT_CWEAPON_R, oMyTarget),0) + "\n"; } + + object oItem = GetFirstItemInInventory(oEntity); + + while(oItem != OBJECT_INVALID) + { + sReturnString = sReturnString + "\n" + dmwand_ItemInfo(oItem, 0); + oItem = GetNextItemInInventory(oEntity); + }; + + return sReturnString; +} + +string dmwand_Race(object oEntity) +{ + switch (GetRacialType(oEntity)) + { + case RACIAL_TYPE_ABERRATION: return "Aberration"; break; + case RACIAL_TYPE_ALL: return "All"; break; + case RACIAL_TYPE_ANIMAL: return "Animal"; break; + case RACIAL_TYPE_BEAST: return "Beast"; break; + case RACIAL_TYPE_CONSTRUCT: return "Construct"; break; + case RACIAL_TYPE_DRAGON: return "Dragon"; break; + case RACIAL_TYPE_DWARF: return "Dwarf"; break; + case RACIAL_TYPE_ELEMENTAL: return "Elemental"; break; + case RACIAL_TYPE_ELF: return "Elf"; break; + case RACIAL_TYPE_FEY: return "Fey"; break; + case RACIAL_TYPE_GIANT: return "Giant"; break; + case RACIAL_TYPE_GNOME: return "Gnome"; break; + case RACIAL_TYPE_HALFELF: return "Half Elf"; break; + case RACIAL_TYPE_HALFLING: return "Halfling"; break; + case RACIAL_TYPE_HALFORC: return "Half Orc"; break; + case RACIAL_TYPE_HUMAN: return "Human"; break; + case RACIAL_TYPE_HUMANOID_GOBLINOID: return "Goblinoid"; break; + case RACIAL_TYPE_HUMANOID_MONSTROUS: return "Monstrous"; break; + case RACIAL_TYPE_HUMANOID_ORC: return "Orc"; break; + case RACIAL_TYPE_HUMANOID_REPTILIAN: return "Reptillian"; break; + case RACIAL_TYPE_MAGICAL_BEAST: return "Magical Beast"; break; + case RACIAL_TYPE_OOZE: return "Ooze"; break; + case RACIAL_TYPE_OUTSIDER: return "Outsider"; break; + case RACIAL_TYPE_SHAPECHANGER: return "Shapechanger"; break; + case RACIAL_TYPE_UNDEAD: return "Undead"; break; + case RACIAL_TYPE_VERMIN: return "Vermin"; break; + } + + return "Unknown"; +} +int DMFI_GetNetWorth(object oTarget) +{ + int n; + object oItem = GetFirstItemInInventory(oTarget); + while(GetIsObjectValid(oItem)) + { + n= n + GetGoldPieceValue(oItem); + oItem = GetNextItemInInventory(oTarget); + } + + + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_ARMS, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_ARROWS, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_BELT, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_BOLTS, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_BOOTS, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_BULLETS, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_CARMOUR, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_CHEST, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_CLOAK, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_CWEAPON_B, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_CWEAPON_L, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_CWEAPON_R, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_HEAD, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_LEFTRING, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_NECK, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oTarget)); + n = n + GetGoldPieceValue(GetItemInSlot(INVENTORY_SLOT_RIGHTRING, oTarget)); + return n; +} + +void DMFI_report(object oTarget, object oUser) +{ + string sSTR = IntToString(GetAbilityScore(oMyTarget,ABILITY_STRENGTH)); + string sINT = IntToString(GetAbilityScore(oMyTarget,ABILITY_INTELLIGENCE)); + string sDEX = IntToString(GetAbilityScore(oMyTarget,ABILITY_DEXTERITY)); + string sWIS = IntToString(GetAbilityScore(oMyTarget,ABILITY_WISDOM)); + string sCON = IntToString(GetAbilityScore(oMyTarget,ABILITY_CONSTITUTION)); + string sCHA = IntToString(GetAbilityScore(oMyTarget,ABILITY_CHARISMA)); + string sReport = "\n-------------------------------------------" + + "\nReported: " + IntToString(GetTimeHour()) + ":" + IntToString(GetTimeMinute()) + + "\nPlayer Name: " + GetPCPlayerName(oMyTarget) + + "\nPublic CDKey: " + GetPCPublicCDKey(oMyTarget) + + "\nChar Name: " + GetName(oMyTarget) + + "\n-------------------------------------------" + + "\nRace: " + dmwand_Race(oMyTarget) + + "\nClass: " + dmwand_ClassLevel(oMyTarget) + + "\nXP: " + IntToString(GetXP(oMyTarget)) + + "\nGender: " + dmwand_Gender(oMyTarget) + + "\nAlign: " + dmwand_Alignment(oMyTarget) + + "\nDeity: " + GetDeity(oMyTarget) + + "\n" + + "\nSTR: " + sSTR + + "\nINT: " + sINT + + "\nWIS: " + sWIS + + "\nDEX: " + sDEX + + "\nCON: " + sCON + + "\nCHA: " + sCHA + + "\n" + + "\nHP: " + IntToString(GetCurrentHitPoints(oMyTarget)) + + " of " + IntToString(GetMaxHitPoints(oMyTarget)) + + "\nAC: " + IntToString(GetAC(oMyTarget)) + + "\nGold: " + IntToString(GetGold(oMyTarget)) + + "\nNet Worth: " + IntToString(DMFI_GetNetWorth(oMyTarget) + GetGold(oMyTarget)) + + "\nInventory:\n " + dmwand_Inventory(oMyTarget) + + "\n-------------------------------------------"; + + SendMessageToPC(oUser, sReport); + SendMessageToAllDMs(sReport); +} diff --git a/gamma_age_v2/dmfi_emote.uti b/gamma_age_v2/dmfi_emote.uti new file mode 100644 index 00000000..2281bd3f Binary files /dev/null and b/gamma_age_v2/dmfi_emote.uti differ diff --git a/gamma_age_v2/dmfi_en_ditto.uti b/gamma_age_v2/dmfi_en_ditto.uti new file mode 100644 index 00000000..e46bdd4b Binary files /dev/null and b/gamma_age_v2/dmfi_en_ditto.uti differ diff --git a/gamma_age_v2/dmfi_encounte.uti b/gamma_age_v2/dmfi_encounte.uti new file mode 100644 index 00000000..e05bdc56 Binary files /dev/null and b/gamma_age_v2/dmfi_encounte.uti differ diff --git a/gamma_age_v2/dmfi_execute.ncs b/gamma_age_v2/dmfi_execute.ncs new file mode 100644 index 00000000..0c096a66 Binary files /dev/null and b/gamma_age_v2/dmfi_execute.ncs differ diff --git a/gamma_age_v2/dmfi_execute.nss b/gamma_age_v2/dmfi_execute.nss new file mode 100644 index 00000000..5e6dc26e --- /dev/null +++ b/gamma_age_v2/dmfi_execute.nss @@ -0,0 +1,4193 @@ +//:://///////////////////////////////////////////// +//:: DMFI - Universal Wand executable +//:: dmfi_execute +//::////////////////////////////////////////////// +/* + Processing for all DMFI wands & widgets universal conversation choices. + + Credits: + Bioware - Dicebag + Arawen - Skill Check Wand (implemented with the Dicebag) + Jhenne (tallonzek@hotmail.com) \ Authors of the original FX Wand, + Doppleganger / DM Wand and Emote Wand + Demetrious - XP wand + Dezran (dezran@roguepenguin.com) - Rod of Affliction + Lurker - Music Wand + Oddbod - FX wand improvements + Ty Worsham (volition) - Sound Creator Beta + OldManWhistler - NPC corpse functions + + hahnsoo (hahns_shin@hotmail.com) - Final Improved FX wand, Universal wand scripts, + Encounter wand, DM Voice scripts, Faction wand, + Spirelands Resting system + J.R.R.Tolkien - References to the One Ring. +*/ +//::////////////////////////////////////////////// +//:: Created By: The DMFI Team +//:: Created On: +//::////////////////////////////////////////////// +//:: 2007.04.12 hahnsoo and Demetrious - version 1.08a +//:: 2007.12.12 Merle - fixes to DMFI rest system +//:: 2008.05.25 tsunami282 - updated for NWN 1.69 (DMFI OnPlayerChat event handling) +//:: 2008.05.26 tsunami282 - XP wand: grant percent XP based on each party member's level, not selected party member + +#include "dmfi_db_inc" +#include "dmfi_dmw_inc" +#include "x2_inc_toollib" +#include "dmfi_plychat_inc" +#include "dmfi_plchlishk_i" +#include "dmfi_getln_inc" + +int iNightMusic; +int iDayMusic; +int iBattleMusic; + +//////////////////////////////////////////////////////////////////////// +object DMFI_NextTarget(object oTarget, object oUser) +{ + object oNew; + + if (GetIsPC(oTarget)) + { + if (GetIsObjectValid(GetNextFactionMember(oTarget))) + oNew = GetNextFactionMember(oTarget); + else + oNew = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, oTarget, 1); + } + else + oNew = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_NOT_PC, oTarget, 1); + + + if (!GetIsObjectValid(oNew)) + { + SendMessageToPC(oUser, "No valid target to transfer to."); + oNew = oTarget; + } + + SetLocalObject(oUser, "dmfi_univ_target", oNew); + SetCustomToken(20680, GetName(oNew)); + FloatingTextStringOnCreature("Target changed to: "+ GetName(oNew), oUser); + return oNew; +} + +//////////////////////////////////////////////////////////////////////// +//DMFI Creates the "settings" creature +void CreateSetting(object oUser) +{ + object oSetting = CreateObject(OBJECT_TYPE_CREATURE, "dmfi_setting", GetLocation(oUser)); + DelayCommand(0.5f, AssignCommand(oSetting, ActionSpeakString(GetLocalString(oUser, "EffectSetting") + " is currently set at " + FloatToString(GetLocalFloat(oUser, GetLocalString(oUser, "EffectSetting")))))); + SetLocalObject(oSetting, "MyMaster", oUser); + SetListenPattern(oSetting, "**", LISTEN_PATTERN); //listen to all text + SetLocalInt(oSetting, "hls_Listening", 1); //listen to all text + SetListening(oSetting, TRUE); //be sure NPC is listening +} + +//////////////////////////////////////////////////////////////////////// +//DMFI Processes the dice rolls +void RollDemBones(object oUser, int iBroadcast, int iMod = 0, string sAbility = "", int iNum = 1, int iSide = 20) +{ + + string sString = ""; + int iRoll = 0; + int iTotal = 0; + //Build the string + sString = sAbility+"Roll " + IntToString(iNum) + "d" + IntToString(iSide) + ": "; + while (iNum > 1) + { + iRoll = Random(iSide) + 1; + iTotal = iTotal + iRoll; + sString = sString + IntToString(iRoll) + " + "; + iNum--; + } + iRoll = Random(iSide) + 1; + iTotal = iTotal + iRoll; + sString = sString + IntToString(iRoll); + if (iMod) + { + iTotal = iTotal + iMod; + sString = sString + " + Modifier: " + IntToString(iMod); + } + sString = sString + " = Total: " + IntToString(iTotal); + + //Perform appropriate animation + if (GetLocalInt(oUser, "dmfi_dice_no_animate")!=1) + { + switch (GetLocalInt(oUser, "dmfi_univ_int")) + { + case 71: AssignCommand(oUser, PlayAnimation(ANIMATION_LOOPING_TALK_PLEADING, 1.0, 5.0f)); break; + case 72: AssignCommand(oUser, PlayAnimation(ANIMATION_FIREFORGET_PAUSE_SCRATCH_HEAD, 1.0)); break; + case 73: AssignCommand(oUser, PlayAnimation(ANIMATION_FIREFORGET_TAUNT, 1.0)); break; + case 74: AssignCommand(oUser, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 1.0)); break; + case 78: AssignCommand(oUser, PlayAnimation(ANIMATION_LOOPING_GET_LOW, 1.0, 5.0f)); break; + case 81: AssignCommand(oUser, PlayAnimation(ANIMATION_LOOPING_CONJURE1, 1.0, 5.0f)); break; + case 82: AssignCommand(oUser, PlayAnimation(ANIMATION_FIREFORGET_DODGE_SIDE, 1.0)); break; + case 83: AssignCommand(oUser, PlayAnimation(ANIMATION_FIREFORGET_TAUNT, 1.0)); break; + case 84: AssignCommand(oUser, PlayAnimation(ANIMATION_LOOPING_LISTEN, 1.0, 5.0f)); break; + case 85: AssignCommand(oUser, PlayAnimation(ANIMATION_FIREFORGET_PAUSE_SCRATCH_HEAD, 1.0)); break; + case 89: AssignCommand(oUser, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BARD_SONG), oUser, 6.0f)); break; + case 91: AssignCommand(oUser, PlayAnimation(ANIMATION_LOOPING_TALK_PLEADING, 1.0, 5.0f)); break; + case 95: AssignCommand(oUser, PlayAnimation(ANIMATION_LOOPING_CONJURE2, 1.0, 5.0f)); break; + case 97: AssignCommand(oUser, PlayAnimation(ANIMATION_FIREFORGET_TAUNT, 1.0)); break; + case 98: AssignCommand(oUser, PlayAnimation(ANIMATION_FIREFORGET_DODGE_DUCK, 1.0)); break; + default: AssignCommand(oUser, PlayAnimation (ANIMATION_LOOPING_GET_MID, 1.0, 3.0)); break; + } + } + + sString = ColorText(sString, "cyan"); + //-------------------------------------------------------- + switch (iBroadcast) + { + case 3: break; //dm only + case 1: AssignCommand(oUser, SpeakString(sString , TALKVOLUME_SHOUT)); break; + case 2: AssignCommand(oUser, SpeakString(sString)); break; + default: if (GetIsPC(oUser)) SendMessageToPC(oUser, sString);break; + } + //-------------------------------------------------------- + AssignCommand(oUser, SpeakString( sString, TALKVOLUME_SILENT_SHOUT)); + return; +} + +//////////////////////////////////////////////////////////////////////// +//This function is for the DMFI PC Dicebag +void DoDiceBagFunction(int iDice, object oUser, int iDMOverride = 0) +{ + string sAbility = ""; + int iTrain =0; + int iNum = 0; + int iSide = 0; + int iMod = 0; + int iLeft; + if (iDice < 100) + iLeft = StringToInt(GetStringLeft(IntToString(iDice), 1)); + else + iLeft = 10; + int iRight = StringToInt(GetStringRight(IntToString(iDice), 1)); + switch (iDice) + { + case 61: iNum = 1; iSide = 20; sAbility="Strength Check, "; iMod = GetAbilityModifier(ABILITY_STRENGTH, oUser); break; + case 62: iNum = 1; iSide = 20; sAbility="Dexterity Check, "; iMod = GetAbilityModifier(ABILITY_DEXTERITY, oUser); break; + case 63: iNum = 1; iSide = 20; sAbility="Constitution Check, "; iMod = GetAbilityModifier(ABILITY_CONSTITUTION, oUser); break; + case 64: iNum = 1; iSide = 20; sAbility="Intelligence Check, "; iMod = GetAbilityModifier(ABILITY_INTELLIGENCE, oUser); break; + case 65: iNum = 1; iSide = 20; sAbility="Wisdom Check, "; iMod = GetAbilityModifier(ABILITY_WISDOM, oUser); break; + case 66: iNum = 1; iSide = 20; sAbility="Charisma Check, "; iMod = GetAbilityModifier(ABILITY_CHARISMA, oUser); break; + case 67: iNum = 1; iSide = 20; sAbility="Fortitude Save, "; iMod = GetFortitudeSavingThrow(oUser); break; + case 68: iNum = 1; iSide = 20; sAbility="Reflex Save, "; iMod = GetReflexSavingThrow(oUser); break; + case 69: iNum = 1; iSide = 20; sAbility="Will Save, "; iMod = GetWillSavingThrow(oUser); break; + + case 71: iNum = 1; iSide = 20; iTrain = 1; sAbility="Animal Empathy Check, "; iMod = GetSkillRank(SKILL_ANIMAL_EMPATHY, oUser); break; + case 72: iNum = 1; iSide = 20; sAbility="Appraise Check, "; iMod = GetSkillRank(SKILL_APPRAISE, oUser); break; + case 73: iNum = 1; iSide = 20; sAbility="Bluff Check, "; iMod = GetSkillRank(SKILL_BLUFF, oUser); break; + case 74: iNum = 1; iSide = 20; sAbility="Concentration Check, "; iMod = GetSkillRank(SKILL_CONCENTRATION, oUser); break; + case 75: iNum = 1; iSide = 20; sAbility="Craft Armor Check, "; iMod = GetSkillRank(SKILL_CRAFT_ARMOR, oUser); break; + case 76: iNum = 1; iSide = 20; sAbility="Craft Trap Check, "; iMod = GetSkillRank(SKILL_CRAFT_TRAP, oUser); break; + case 77: iNum = 1; iSide = 20; sAbility="Craft Weapon Check, "; iMod = GetSkillRank(SKILL_CRAFT_WEAPON, oUser); break; + case 78: iNum = 1; iSide = 20; iTrain = 1; sAbility="Disable Trap Check, "; iMod = GetSkillRank(SKILL_DISABLE_TRAP, oUser); break; + case 79: iNum = 1; iSide = 20; sAbility="Discipline Check, "; iMod = GetSkillRank(SKILL_DISCIPLINE, oUser); break; + + case 81: iNum = 1; iSide = 20; sAbility="Heal Check, "; iMod = GetSkillRank(SKILL_HEAL, oUser); break; + case 82: iNum = 1; iSide = 20; sAbility="Hide Check, "; iMod = GetSkillRank(SKILL_HIDE, oUser); break; + case 83: iNum = 1; iSide = 20; sAbility="Intimidate Check, "; iMod = GetSkillRank(SKILL_INTIMIDATE, oUser); break; + case 84: iNum = 1; iSide = 20; sAbility="Listen Check, "; iMod = GetSkillRank(SKILL_LISTEN, oUser); break; + case 85: iNum = 1; iSide = 20; sAbility="Lore Check, "; iMod = GetSkillRank(SKILL_LORE, oUser); break; + case 86: iNum = 1; iSide = 20; sAbility="Move Silently Check, "; iMod = GetSkillRank(SKILL_MOVE_SILENTLY, oUser); break; + case 87: iNum = 1; iSide = 20; iTrain = 1; sAbility="Open Lock Check, "; iMod = GetSkillRank(SKILL_OPEN_LOCK, oUser); break; + case 88: iNum = 1; iSide = 20; sAbility="Parry Check, "; iMod = GetSkillRank(SKILL_PARRY, oUser); break; + case 89: iNum = 1; iSide = 20; sAbility="Perform Check, "; iMod = GetSkillRank(SKILL_PERFORM, oUser); break; + // 2008.07.30 morderon - added ride check + case 90: iNum = 1; iSide = 20; sAbility="Ride, "; iMod = GetSkillRank(SKILL_RIDE, oUser); break; + case 91: iNum = 1; iSide = 20; sAbility="Persuade Check, "; iMod = GetSkillRank(SKILL_PERSUADE, oUser); break; + case 92: iNum = 1; iSide = 20; iTrain = 1; sAbility="Pick Pocket Check, "; iMod = GetSkillRank(SKILL_PICK_POCKET, oUser); break; + case 93: iNum = 1; iSide = 20; sAbility="Search Check, "; iMod = GetSkillRank(SKILL_SEARCH, oUser); break; + case 94: iNum = 1; iSide = 20; iTrain = 1; sAbility="Set Trap Check, "; iMod = GetSkillRank(SKILL_SET_TRAP, oUser); break; + case 95: iNum = 1; iSide = 20; iTrain = 1; sAbility="Spellcraft Check, "; iMod = GetSkillRank(SKILL_SPELLCRAFT, oUser); break; + case 96: iNum = 1; iSide = 20; sAbility="Spot Check, "; iMod = GetSkillRank(SKILL_SPOT, oUser); break; + case 97: iNum = 1; iSide = 20; sAbility="Taunt Check, "; iMod = GetSkillRank(SKILL_TAUNT, oUser); break; + case 98: iNum = 1; iSide = 20; iTrain = 1; sAbility="Tumble Check, "; iMod = GetSkillRank(SKILL_TUMBLE, oUser); break; + case 99: iNum = 1; iSide = 20; iTrain = 1; sAbility="Use Magic Device Check, "; iMod = GetSkillRank(SKILL_USE_MAGIC_DEVICE, oUser); break; + + case 101: SetLocalInt(oUser, "dmfi_dicebag", 2); SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 2, oUser); SetCustomToken(20681, "Local"); FloatingTextStringOnCreature("Broadcast Mode set to Local", oUser, FALSE); return; break; + case 102: SetLocalInt(oUser, "dmfi_dicebag", 1); SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 1, oUser); SetCustomToken(20681, "Global"); FloatingTextStringOnCreature("Broadcast Mode set to Global", oUser, FALSE); return; break; + case 103: SetLocalInt(oUser, "dmfi_dicebag", 0); SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 0, oUser); SetCustomToken(20681, "Private"); FloatingTextStringOnCreature("Broadcast Mode set to Private", oUser, FALSE); return; break; + default: iNum = iRight; + + switch (iLeft) + { + case 1: iSide = 4; break; + case 2: iSide = 6; break; + case 3: iSide = 8; break; + case 4: iSide = 10; break; + case 5: iSide = 20; break; + } + break; + } + if ((iTrain)&&(iMod==0)) + { + string sMsg = ColorText("No dice roll: Skill requires training", "red"); + SendMessageToPC(oUser, sMsg); + AssignCommand(oUser, SpeakString( sMsg, TALKVOLUME_SILENT_SHOUT)); + return; + } + + + int iTell = GetLocalInt(oUser, "dmfi_dicebag"); + + if (iDMOverride) + iTell = iDMOverride; + + RollDemBones(oUser, iTell, iMod, sAbility, iNum, iSide); +} + +//////////////////////////////////////////////////////////////////////// +//By OldManWhistler for the DMFI Control Wand +void DestroyAllItems() +{ + if (GetIsDead(OBJECT_SELF)) + { + object oItem = GetFirstItemInInventory(); + while (GetIsObjectValid(oItem)) + { + DestroyObject(oItem); + oItem = GetNextItemInInventory(); + } + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_ARMS))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_ARROWS))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_BELT))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_BOLTS))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_BOOTS))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_BULLETS))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_CARMOUR))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_CHEST))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_CLOAK))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_CWEAPON_B))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_CWEAPON_L))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_CWEAPON_R))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_HEAD))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_LEFTHAND))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_LEFTRING))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_NECK))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_RIGHTHAND))) + DestroyObject(oItem); + if (GetIsObjectValid(oItem=GetItemInSlot(INVENTORY_SLOT_RIGHTRING))) + DestroyObject(oItem); + } +} + +//////////////////////////////////////////////////////////////////////// +// Function to destroy a target, by OldManWhistler, for the DMFI Control Wand +void DestroyCreature(object oTarget) +{ + AssignCommand(oTarget,SetIsDestroyable(TRUE,FALSE,FALSE)); + DestroyObject(oTarget); +} + +//////////////////////////////////////////////////////////////////////// +//DMFI NPC Control Wand +void DoControlFunction(int iFaction, object oUser) +{ + object oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + object oArea = GetArea(oUser); + object oChange; + float fAlignShift; + int nAlignShift; + int nReport; + int nMessage; + + object oAlignTarget = GetNearestObject(OBJECT_TYPE_CREATURE, oUser); + + fAlignShift = GetLocalFloat(oUser, "dmfi_reputation"); + + if (fAlignShift == 0.0f) + fAlignShift = 10.0f; + + + nAlignShift = FloatToInt(fAlignShift); + + switch (iFaction) + { + case 10: //Toggle the state of all the encounters in the area + if (GetLocalInt(oArea, "dmfi_encounter_inactive")) + { + oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_ENCOUNTER) + SetEncounterActive(TRUE, oChange); + oChange = GetNextObjectInArea(oArea); + } + FloatingTextStringOnCreature("Bioware encounters are active",oUser, FALSE); + SetLocalInt(oArea, "dmfi_encounter_inactive", FALSE); + } + else + { + oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_ENCOUNTER) + SetEncounterActive(FALSE, oChange); + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE) + { + if (GetIsEncounterCreature(oChange)) + DestroyObject(oChange); //Nuke any encounter creatures in the area + } + oChange = GetNextObjectInArea(oArea); + } + FloatingTextStringOnCreature("Bioware encounters deactivated",oUser, FALSE); + SetLocalInt(oArea, "dmfi_encounter_inactive", TRUE); + } + break; + case 11: ChangeToStandardFaction(oTarget, STANDARD_FACTION_HOSTILE); break; + case 12: ChangeToStandardFaction(oTarget, STANDARD_FACTION_COMMONER); break; + case 13: ChangeToStandardFaction(oTarget, STANDARD_FACTION_DEFENDER); break; + case 14: ChangeToStandardFaction(oTarget, STANDARD_FACTION_MERCHANT); break; + case 15: oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE && !GetIsPC(oChange)) + ChangeToStandardFaction(oChange, STANDARD_FACTION_HOSTILE); + oChange = GetNextObjectInArea(oArea); + }break; + case 16: oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE && !GetIsPC(oChange)) + ChangeToStandardFaction(oChange, STANDARD_FACTION_COMMONER); + oChange = GetNextObjectInArea(oArea); + }break; + case 17: oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE && !GetIsPC(oChange)) + ChangeToStandardFaction(oChange, STANDARD_FACTION_DEFENDER); + oChange = GetNextObjectInArea(oArea); + }break; + case 18: oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE && !GetIsPC(oChange)) + ChangeToStandardFaction(oChange, STANDARD_FACTION_MERCHANT); + oChange = GetNextObjectInArea(oArea); + }break; + case 21: oChange = GetFirstPC(); + while (GetIsObjectValid(oChange)) + { + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 0, oChange); + SetStandardFactionReputation(STANDARD_FACTION_COMMONER, 100, oChange); + SetStandardFactionReputation(STANDARD_FACTION_DEFENDER, 100, oChange); + SetStandardFactionReputation(STANDARD_FACTION_MERCHANT, 100, oChange); + oChange = GetNextPC(); + }break; + case 22: oChange = GetFirstPC(); + while (GetIsObjectValid(oChange)) + { + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 20, oChange); + SetStandardFactionReputation(STANDARD_FACTION_COMMONER, 91, oChange); + SetStandardFactionReputation(STANDARD_FACTION_DEFENDER, 100, oChange); + SetStandardFactionReputation(STANDARD_FACTION_MERCHANT, 50, oChange); + oChange = GetNextPC(); + }break; + case 23: oChange = GetFirstPC(); + while (GetIsObjectValid(oChange)) + { + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 0 , oChange); + SetStandardFactionReputation(STANDARD_FACTION_COMMONER, 0, oChange); + SetStandardFactionReputation(STANDARD_FACTION_DEFENDER, 0, oChange); + SetStandardFactionReputation(STANDARD_FACTION_MERCHANT, 0, oChange); + oChange = GetNextPC(); + }break; + case 24: oChange = GetFirstPC(); + while (GetIsObjectValid(oChange)) + { + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 100, oChange); + SetStandardFactionReputation(STANDARD_FACTION_COMMONER, 100, oChange); + SetStandardFactionReputation(STANDARD_FACTION_DEFENDER, 100, oChange); + SetStandardFactionReputation(STANDARD_FACTION_MERCHANT, 100, oChange); + oChange = GetNextPC(); + }break; + case 25: oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE) + { + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 0, oChange); + SetStandardFactionReputation(STANDARD_FACTION_COMMONER, 0, oChange); + SetStandardFactionReputation(STANDARD_FACTION_DEFENDER, 0, oChange); + SetStandardFactionReputation(STANDARD_FACTION_MERCHANT, 0, oChange); + } + oChange = GetNextObjectInArea(oArea); + }break; + case 26: oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE) + { + AssignCommand(oChange, ClearAllActions(TRUE)); + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 50, oChange); + SetStandardFactionReputation(STANDARD_FACTION_COMMONER, 50, oChange); + SetStandardFactionReputation(STANDARD_FACTION_DEFENDER, 50, oChange); + SetStandardFactionReputation(STANDARD_FACTION_MERCHANT, 50, oChange); + } + oChange = GetNextObjectInArea(oArea); + }break; + case 31: SetLocalObject(oUser, "dmfi_customfaction1", oTarget); nMessage = -1; break; + case 32: SetLocalObject(oUser, "dmfi_customfaction2", oTarget); nMessage = -1;break; + case 33: SetLocalObject(oUser, "dmfi_customfaction3", oTarget); nMessage = -1;break; + case 34: SetLocalObject(oUser, "dmfi_customfaction4", oTarget); nMessage = -1;break; + case 35: SetLocalObject(oUser, "dmfi_customfaction5", oTarget); nMessage = -1;break; + case 36: SetLocalObject(oUser, "dmfi_customfaction6", oTarget); nMessage = -1;break; + case 37: SetLocalObject(oUser, "dmfi_customfaction7", oTarget); nMessage = -1;break; + case 38: SetLocalObject(oUser, "dmfi_customfaction8", oTarget); nMessage = -1;break; + case 39: SetLocalObject(oUser, "dmfi_customfaction9", oTarget); nMessage = -1;break; + case 41: ChangeFaction(oTarget, GetLocalObject(oUser, "dmfi_customfaction1")); nMessage = -1;break; + case 42: ChangeFaction(oTarget, GetLocalObject(oUser, "dmfi_customfaction2")); nMessage = -1;break; + case 43: ChangeFaction(oTarget, GetLocalObject(oUser, "dmfi_customfaction3")); nMessage = -1;break; + case 44: ChangeFaction(oTarget, GetLocalObject(oUser, "dmfi_customfaction4")); nMessage = -1;break; + case 45: ChangeFaction(oTarget, GetLocalObject(oUser, "dmfi_customfaction5")); nMessage = -1;break; + case 46: ChangeFaction(oTarget, GetLocalObject(oUser, "dmfi_customfaction6")); nMessage = -1;break; + case 47: ChangeFaction(oTarget, GetLocalObject(oUser, "dmfi_customfaction7")); nMessage = -1;break; + case 48: ChangeFaction(oTarget, GetLocalObject(oUser, "dmfi_customfaction8")); nMessage = -1;break; + case 49: ChangeFaction(oTarget, GetLocalObject(oUser, "dmfi_customfaction9")); nMessage = -1;break; + case 51: RemoveHenchman(GetMaster(oTarget), oTarget); + SetLocalObject(oUser, "dmfi_henchman", oTarget); nMessage = -1;break; + case 52: RemoveHenchman(oTarget, GetAssociate(ASSOCIATE_TYPE_HENCHMAN, oTarget)); + AddHenchman(oTarget, GetLocalObject(oUser, "dmfi_henchman")); nMessage = -1;break; + case 61: AssignCommand(oTarget, ClearAllActions()); AssignCommand(oTarget, ActionMoveAwayFromObject(oUser, TRUE)); nMessage = -1;break; + case 62: AssignCommand(oTarget, ClearAllActions()); AssignCommand(oTarget, ActionForceMoveToObject(oUser, TRUE, 2.0f, 30.0f)); nMessage = -1;break; + case 63: AssignCommand(oTarget, ClearAllActions()); AssignCommand(oTarget, ActionRandomWalk());nMessage = -1; break; + case 64: AssignCommand(oTarget, ClearAllActions()); AssignCommand(oTarget, ActionRest());nMessage = -1; break; + case 65: oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE && !GetIsPC(oChange)) + { + AssignCommand(oChange, ClearAllActions()); AssignCommand(oChange, ActionMoveAwayFromObject(oUser, TRUE)); + } + oChange = GetNextObjectInArea(oArea); + }nMessage = -1; break; + case 66: oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE && !GetIsPC(oChange)) + { + AssignCommand(oChange, ClearAllActions()); AssignCommand(oChange, ActionForceMoveToObject(oUser, TRUE, 2.0f, 30.0f)); + } + oChange = GetNextObjectInArea(oArea); + }nMessage = -1; break; + case 67: oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE && !GetIsPC(oChange)) + { + AssignCommand(oChange, ClearAllActions()); AssignCommand(oChange, ActionRandomWalk()); + } + oChange = GetNextObjectInArea(oArea); + }nMessage = -1; break; + case 68: oChange = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oChange)) + { + if (GetObjectType(oChange) == OBJECT_TYPE_CREATURE && !GetIsPC(oChange)) + { + AssignCommand(oChange, ClearAllActions()); AssignCommand(oChange, ActionRest()); + } + oChange = GetNextObjectInArea(oArea); + } nMessage = -1;break; + case 69: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDisappear(), oTarget); + DestroyObject(oTarget, 1.0); nMessage = -1;break; + case 70: DestroyCreature(oTarget); nMessage = -1;break; + case 71: AssignCommand(oTarget, SetIsDestroyable(FALSE, TRUE, TRUE)); nMessage = -1;break; + case 72: AssignCommand(oTarget, SetIsDestroyable(FALSE, FALSE, TRUE)); nMessage = -1;break; + case 73: AssignCommand(oTarget, SetIsDestroyable(FALSE, FALSE, FALSE));nMessage = -1; break; + case 74: AssignCommand(oTarget, SetIsDestroyable(TRUE, FALSE, FALSE));nMessage = -1; break; + case 75: AssignCommand(oTarget, SetIsDestroyable(FALSE, TRUE, TRUE)); + DelayCommand(0.1, AssignCommand(oTarget, ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectDeath(), oTarget))); nMessage = -1;break; + case 76: AssignCommand(oTarget, SetIsDestroyable(FALSE, FALSE, TRUE)); + DelayCommand(0.1, AssignCommand(oTarget, ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectDeath(), oTarget))); nMessage = -1;break; + case 77: AssignCommand(oTarget, SetIsDestroyable(FALSE, FALSE, FALSE)); + DelayCommand(0.1, AssignCommand(oTarget, ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectDeath(), oTarget))); nMessage = -1;break; + case 78: AssignCommand(oTarget, SetIsDestroyable(TRUE, FALSE, FALSE)); + DelayCommand(0.1, AssignCommand(oTarget, ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectDeath(), oTarget)));nMessage = -1; break; + case 79: AssignCommand(oTarget, DestroyAllItems()); + DelayCommand(1.0, DestroyCreature(oTarget));nMessage = -1;break; + case 81: //AdjustReputation(oAlignTarget, oTarget, nAlignShift); + AdjustReputation(oTarget, oAlignTarget, nAlignShift); + nReport = GetReputation(oAlignTarget, oTarget); + FloatingTextStringOnCreature("Current Reputation: "+ GetName(oTarget) + " vs. " +GetName(oAlignTarget)+": " + IntToString(nReport), oUser); + nReport = GetReputation(oTarget, oAlignTarget); + FloatingTextStringOnCreature("Current Reputation: "+ GetName(oAlignTarget) + " vs. " +GetName(oTarget)+": " + IntToString(nReport), oUser); + break; + case 82: //AdjustReputation(oAlignTarget, oTarget, -nAlignShift); + AdjustReputation(oTarget, oAlignTarget, -nAlignShift); + nReport = GetReputation(oAlignTarget, oTarget); + FloatingTextStringOnCreature("Current Reputation: "+ GetName(oTarget) + " vs. " +GetName(oAlignTarget)+": " + IntToString(nReport), oUser); + nReport = GetReputation(oTarget, oAlignTarget); + FloatingTextStringOnCreature("Current Reputation: "+ GetName(oAlignTarget) + " vs. " +GetName(oTarget)+": " + IntToString(nReport), oUser); + break; + case 83: SetLocalString(oUser, "EffectSetting", "dmfi_reputation"); + CreateSetting(oUser);nMessage = -1; break; + case 84: nReport = GetReputation(oAlignTarget, oTarget); + FloatingTextStringOnCreature("Current Reputation: "+ GetName(oTarget) + " vs. " +GetName(oAlignTarget)+": " + IntToString(nReport), oUser); + nReport = GetReputation(oTarget, oAlignTarget); + FloatingTextStringOnCreature("Current Reputation: "+ GetName(oAlignTarget) + " vs. " +GetName(oTarget)+": " + IntToString(nReport), oUser); + nMessage = -1;break; + case 9: { + if (GetLocalInt(GetModule(), "dmfi_safe_factions")!=1) + { + SetLocalInt(GetModule(), "dmfi_safe_factions", 1); + SetDMFIPersistentInt("dmfi", "dmfi_safe_factions", 1, oUser); + FloatingTextStringOnCreature("Default non-hostile faction should ignore PC attacks",oUser, FALSE); + } + else + { + SetLocalInt(GetModule(), "dmfi_safe_factions", 0); + SetDMFIPersistentInt("dmfi", "dmfi_safe_factions", 0, oUser); + FloatingTextStringOnCreature("Bioware faction behavior restored",oUser, FALSE); + } + } + + default: nMessage = -1;break; + + } + + if (nMessage!=-1) + { + if (GetIsImmune(oTarget, IMMUNITY_TYPE_BLINDNESS)) + FloatingTextStringOnCreature("Targeted creature is blind immune - no attack will occur until new perception event is fired", oUser); + else + { + effect eInvis =EffectBlindness(); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eInvis, oTarget, 6.1); + FloatingTextStringOnCreature("Faction Adjusted - Perception event will fire in 6 seconds", oUser); + } + } + +} + +//////////////////////////////////////////////////////////////////////// +void IdenStuff(object oTarget) +{ + object oItem = GetFirstItemInInventory(oTarget); + while (GetIsObjectValid(oItem)) + { + if (GetIdentified(oItem)==FALSE) + SetIdentified(oItem, TRUE); + + oItem = GetNextItemInInventory(oTarget); + } +} + +//////////////////////////////////////////////////////////////////////// +void TakeStuff(int Level, object oTarget, object oUser) +{ + object oItem = GetFirstItemInInventory(oTarget); + while (GetIsObjectValid(oItem)) + { + DestroyObject(oItem); + oItem = GetNextItemInInventory(oTarget); + } + + if (Level == 1) + { + DestroyObject(GetItemInSlot(INVENTORY_SLOT_ARMS,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_ARROWS,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_BELT,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_BOLTS,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_BOOTS,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_BULLETS,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_CARMOUR,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_CHEST,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_CLOAK,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_CWEAPON_B,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_CWEAPON_L,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_CWEAPON_R,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_HEAD,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_LEFTHAND,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_LEFTRING,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_NECK,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_RIGHTHAND,oTarget)); + DestroyObject(GetItemInSlot(INVENTORY_SLOT_RIGHTRING,oTarget)); + } + FloatingTextStringOnCreature("DM Intervention: Inventory Destroyed by DM", oTarget); +} + +//////////////////////////////////////////////////////////////////////// +void TakeUber(object oTarget) +{ + int nMultiplier; + if (GetHitDice(oTarget)<11) + nMultiplier = 1; + else if (GetHitDice(oTarget)<16) + nMultiplier = 2; + else if (GetHitDice(oTarget)<20) + nMultiplier = 3; + else + nMultiplier = 5; + object oItem = GetFirstItemInInventory(oTarget); + while (GetIsObjectValid(oItem)) + { + if (GetGoldPieceValue(oItem)>1000*nMultiplier*GetHitDice(oTarget)) + DestroyObject(oItem); + oItem = GetNextItemInInventory(oTarget); + } + FloatingTextStringOnCreature("DM Intervention: Uber type items have been removed", oTarget); +} + +//////////////////////////////////////////////////////////////////////// +void RotateMe(object oTarget, int Amount, object oUser) +{ + location lLocation = GetLocation (oTarget); + if (GetObjectType(oTarget) != OBJECT_TYPE_PLACEABLE) + { + oTarget = GetNearestObject(OBJECT_TYPE_PLACEABLE, oUser); + FloatingTextStringOnCreature("Target was not a placable, used placeable closest to your avitar", oUser); + } + if (Amount == -2) + { + AssignCommand(oTarget, SetFacing(90.0)); + return; + } + if (Amount == -1) + { + AssignCommand(oTarget, SetFacing(0.0)); + return; + } + if (GetIsObjectValid(oTarget)) + AssignCommand(oTarget, SetFacing(GetFacing(oTarget)+Amount)); +} + +//////////////////////////////////////////////////////////////////////// +void DMFI_Object (object oTarget, int Action, object oUser) +{ + location lLocation = GetLocation (oTarget); + if (GetObjectType(oTarget) != OBJECT_TYPE_PLACEABLE) + { + oTarget = GetNearestObject(OBJECT_TYPE_PLACEABLE, oUser); + FloatingTextStringOnCreature("Target was not a placable, used placeable closest to your avitar", oUser); + } + if (GetIsObjectValid(oTarget)) + { + if (Action==1) + { + DestroyObject(oTarget); + DelayCommand(2.0, FloatingTextStringOnCreature(GetName(oTarget) + "destroyed. If 'static', you must leave and return to see effect.", oUser)); + } + else if (Action ==2) + { + AssignCommand(oTarget, PlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); + DelayCommand(0.4,SetPlaceableIllumination(oTarget, FALSE)); + DelayCommand(0.5,RecomputeStaticLighting(GetArea(oTarget))); + } + else if (Action ==3) + { + AssignCommand(oTarget, PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); + DelayCommand(0.4,SetPlaceableIllumination(oTarget, TRUE)); + DelayCommand(0.5,RecomputeStaticLighting(GetArea(oTarget))); + } + } +} + +//////////////////////////////////////////////////////////////////////// +void dmwand_SwapDayNight(int nDay) +{ + int nCurrentHour; + int nCurrentMinute = GetTimeMinute(); + int nCurrentSecond = GetTimeSecond(); + int nCurrentMilli = GetTimeMillisecond(); + + nCurrentHour = ((nDay == 1)?7:19); + + SetTime(nCurrentHour, nCurrentMinute, nCurrentSecond, nCurrentMilli); +} + +//////////////////////////////////////////////////////////////////////// +void dmwand_AdvanceTime(int nHours) +{ + int nCurrentHour = GetTimeHour(); + int nCurrentMinute = GetTimeMinute(); + int nCurrentSecond = GetTimeSecond(); + int nCurrentMilli = GetTimeMillisecond(); + + nCurrentHour += nHours; + SetTime(nCurrentHour, nCurrentMinute, nCurrentSecond, nCurrentMilli); +} + +//////////////////////////////////////////////////////////////////////// +void DMFI_Align(object oUser, object oTarget, int nAlign, int nParty) +{ + if (GetObjectType(oTarget)== OBJECT_TYPE_CREATURE) + { + int nAmount = GetLocalInt(oUser, "dmfi_alignshift"); + + if (nParty) + { + object oParty = GetFirstFactionMember(oTarget, TRUE); + while (GetIsObjectValid(oParty)) + { + AdjustAlignment(oParty, nAlign, nAmount); + oParty = GetNextFactionMember(oTarget, TRUE); + } + FloatingTextStringOnCreature("Party Alignment shifted by " + IntToString(nAmount), oUser); + } + else + { + AdjustAlignment(oTarget, nAlign, nAmount); + FloatingTextStringOnCreature("Target Alignment shifted by " + IntToString(nAmount), oUser); + } + } + else + FloatingTextStringOnCreature("Must target a creature for this action", oUser); + +} + +//////////////////////////////////////////////////////////////////////// +void DMFI_Roll(object oUser) +{ + object oStoreState = GetItemPossessedBy(oUser, "dmfi_dmw"); + int n = GetLocalInt(oUser, "dmfi_alignshift"); + if (n == 1) + n = 2; + else if (n ==2) + n = 5; + else if (n ==5) + n = 10; + else if (n == 10) + n = 1; + FloatingTextStringOnCreature("Adjustment changed to " + IntToString(n), oUser); + SetLocalInt(oUser, "dmfi_alignshift", n); + SetCustomToken(20781, IntToString(n)); + SetDMFIPersistentInt("dmfi", "dmfi_alignshift", n, oUser); +} + + +//////////////////////////////////////////////////////////////////////// +int GetAreaXAxis(object oArea) +{ + + location locTile; + int iX = 0; + int iY = 0; + vector vTile = Vector(0.0, 0.0, 0.0); + + for (iX = 0; iX < 32; ++iX) + { + vTile.x = IntToFloat(iX); + locTile = Location(oArea, vTile, 0.0); + int iRes = GetTileMainLight1Color(locTile); + if (iRes > 32 || iRes < 0) + return(iX); + } + + return 32; +} + +//////////////////////////////////////////////////////////////////////// +int GetAreaYAxis(object oArea) +{ + location locTile; + int iX = 0; + int iY = 0; + vector vTile = Vector(0.0, 0.0, 0.0); + + for (iY = 0; iY < 32; ++iY) + { + vTile.y = IntToFloat(iY); + locTile = Location(oArea, vTile, 0.0); + int iRes = GetTileMainLight1Color(locTile); + if (iRes > 32 || iRes < 0) + return(iY); + } + + return 32; +} + +//////////////////////////////////////////////////////////////////////// +void TilesetMagic(object oUser, int nEffect, int nType) +{ + int iXAxis = GetAreaXAxis(GetArea(oUser)); + int iYAxis = GetAreaYAxis(GetArea(oUser)); + int nBase = GetLocalInt(GetModule(), "dmfi_tileset"); + +// nType definitions: +// 0 fill +// 1 flood +// 2 groundcover + +// nBase definitions: +// 0 default +// 1 Sewer and City - raise the fill effect to -0.1 + + + float ZEffectAdjust = 0.0; + float ZTypeAdjust = 0.1; //default is groundcover + float ZTileAdjust = 0.0; + float ZFinalAxis; + +/* +if (nEffect == X2_TL_GROUNDTILE_ICE) + ZEffectAdjust = -1.0; // lower the effect based on trial and error +*/ + if (nEffect == X2_TL_GROUNDTILE_SEWER_WATER) + ZEffectAdjust = 0.8; + +//now sep based on nType + if (nType == 0) //fill + ZTypeAdjust=-2.0; + else if (nType ==1) + ZTypeAdjust = 2.0; + + ZFinalAxis = ZEffectAdjust + ZTypeAdjust + ZTileAdjust; + +//special case for filling of water and sewer regions + if ((nBase==1) && (nType==0)) + ZFinalAxis = -0.1; + + TLResetAreaGroundTiles(GetArea(oUser), iXAxis, iYAxis); + TLChangeAreaGroundTiles(GetArea(oUser), nEffect , iXAxis, iYAxis, ZFinalAxis); +} + +//////////////////////////////////////////////////////////////////////// +//New DM Wand by Demetrious +void DoNewDMThingy(int iChoice, object oUser) +{ + location lLocation = GetLocalLocation(oUser, "dmfi_univ_location"); + object oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + int iXAxis = GetAreaXAxis(GetArea(oUser)); + int iYAxis = GetAreaYAxis(GetArea(oUser)); + object oCopy; object oParty; + int n; string sName; + + switch (iChoice) + { + case 11: TakeStuff(1, oTarget, oUser); break; + case 12: TakeStuff(0, oTarget, oUser); break; + case 13: IdenStuff(oTarget); break; + case 14: TakeUber(oTarget); break; + case 15: DMFI_NextTarget(oTarget, oUser);break; + case 20: DMFI_NextTarget(oTarget, oUser);break; + case 21: DMFI_Align(oUser, oTarget, ALIGNMENT_GOOD, 0);break; + case 22: DMFI_Align(oUser, oTarget, ALIGNMENT_EVIL, 0);break; + case 23: DMFI_Align(oUser, oTarget, ALIGNMENT_LAWFUL, 0);break; + case 24: DMFI_Align(oUser, oTarget, ALIGNMENT_CHAOTIC, 0);break; + case 25: DMFI_Align(oUser, oTarget, ALIGNMENT_GOOD, 1);break; + case 26: DMFI_Align(oUser, oTarget, ALIGNMENT_EVIL, 1);break; + case 27: DMFI_Align(oUser, oTarget, ALIGNMENT_LAWFUL, 1);break; + case 28: DMFI_Align(oUser, oTarget, ALIGNMENT_CHAOTIC, 1);break; + case 29: DMFI_Roll(oUser); break; + case 31: SendMessageToPC(oUser, "Item name: "+GetName(oTarget)); + SendMessageToPC(oUser, "Item value: "+IntToString(GetGoldPieceValue(oTarget))); + if (GetDroppableFlag(oTarget)) SendMessageToPC(oUser, "Droppable"); + else SendMessageToPC(oUser, "Not droppable"); + if (GetItemCursedFlag(oTarget)) SendMessageToPC(oUser, "Cursed"); + else SendMessageToPC(oUser, "Not cursed"); + if (GetPlotFlag(oTarget)) SendMessageToPC(oUser, "Plot related"); + else SendMessageToPC(oUser, "Not plot related"); + if (GetStolenFlag(oTarget)) SendMessageToPC(oUser, "Stolen"); + else SendMessageToPC(oUser, "Not stolen"); + SendMessageToPC(oUser, "Charges remaining: " + IntToString(GetItemCharges(oTarget))); + break; + + case 32: if (GetObjectType(oTarget)==OBJECT_TYPE_ITEM) + { + SetPlotFlag(oTarget, FALSE); DestroyObject(oTarget); + FloatingTextStringOnCreature(GetName(oTarget)+": Item destroyed", oUser); + } + else + { + FloatingTextStringOnCreature("Invalid target. Target item directly from inventory screen", oUser); + } + break; + case 33: if (GetObjectType(oTarget)==OBJECT_TYPE_ITEM) + { + SetItemCharges(oTarget, 0); + FloatingTextStringOnCreature( GetName(oTarget)+": Remaining charges removed", oUser); + } + else + { + FloatingTextStringOnCreature("Invalid target. Target item directly from inventory screen", oUser); + } + break; + + + case 34: if (GetObjectType(oTarget)==OBJECT_TYPE_ITEM) + { + SetItemCharges(oTarget, 999); + FloatingTextStringOnCreature( GetName(oTarget)+": Item fully recharged",oUser); break; + } + else + { + FloatingTextStringOnCreature("Invalid target. Target item directly from inventory screen", oUser); + } + break; + + case 35: if (GetObjectType(oTarget)==OBJECT_TYPE_ITEM) + { + if (GetDroppableFlag(oTarget)) + { + SetDroppableFlag(oTarget, FALSE); + FloatingTextStringOnCreature(GetName(oTarget)+": can NOT be dropped", oUser); + } + else + { + SetDroppableFlag(oTarget, TRUE); + FloatingTextStringOnCreature( GetName(oTarget)+": can be dropped", oUser); + } + } + else + { + FloatingTextStringOnCreature("Invalid target. Target item directly from inventory screen", oUser); + } + break; + + case 36: if (GetObjectType(oTarget)==OBJECT_TYPE_ITEM) + { + if (GetItemCursedFlag(oTarget)) + { + SetItemCursedFlag(oTarget, FALSE); + FloatingTextStringOnCreature(GetName(oTarget)+": NOT cursed", oUser); + } + else + { + SetItemCursedFlag(oTarget, TRUE); + FloatingTextStringOnCreature( GetName(oTarget)+": set to CURSED", oUser); + } + } + else + { + FloatingTextStringOnCreature("Invalid target. Target item directly from inventory screen", oUser); + } + break; + + case 37: if (GetObjectType(oTarget)==OBJECT_TYPE_ITEM) + { + if (GetPlotFlag(oTarget)) + { + SetPlotFlag(oTarget, FALSE); + FloatingTextStringOnCreature(GetName(oTarget)+": NOT plot related", oUser); + } + else + { + SetPlotFlag(oTarget, TRUE); + FloatingTextStringOnCreature( GetName(oTarget)+": set to PLOT", oUser); + } + } + else + { + FloatingTextStringOnCreature("Invalid target. Target item directly from inventory screen", oUser); + } + break; + case 38: if (GetObjectType(oTarget)==OBJECT_TYPE_ITEM) + { + if (GetStolenFlag(oTarget)) + { + SetStolenFlag(oTarget, FALSE); + FloatingTextStringOnCreature(GetName(oTarget)+": NOT stolen", oUser); + } + else + { + SetStolenFlag(oTarget, TRUE); + FloatingTextStringOnCreature( GetName(oTarget)+": set to Stolen", oUser); + } + } + else + { + FloatingTextStringOnCreature("Invalid target. Target item directly from inventory screen", oUser); + } + break; + + + case 41: DMFI_Object(oTarget, 1, oUser); break; + case 42: DMFI_Object(oTarget, 2, oUser);break; + case 43: DMFI_Object(oTarget, 3, oUser); break; + case 45: RotateMe(oTarget, -2, oUser);break; + case 46: RotateMe(oTarget, -1, oUser);break; + case 47: RotateMe(oTarget, 30, oUser);break; + case 48: RotateMe(oTarget, 45, oUser);break; + case 49: RotateMe(oTarget, 90, oUser);break; + case 40: RotateMe(oTarget, 180, oUser);break; + case 51: dmwand_AdvanceTime(1);break; + case 52: dmwand_AdvanceTime(4);break; + case 53: dmwand_AdvanceTime(8);break; + case 54: dmwand_AdvanceTime(24);break; + case 55: dmwand_SwapDayNight(0);break; + case 50: dmwand_SwapDayNight(1);break; + case 56: SetWeather(GetArea(oUser), WEATHER_CLEAR); break; + case 57: SetWeather(GetArea(oUser), WEATHER_RAIN); break; + case 58: SetWeather(GetArea(oUser), WEATHER_SNOW); break; + case 59: SetWeather(GetArea(oUser), WEATHER_USE_AREA_SETTINGS); break; + case 60: DMFI_report(oTarget, oUser); break; + case 61: DMFI_toad(oTarget, oUser); break; + case 62: DMFI_jail(oTarget, oUser); break; + case 63: AssignCommand(oUser, AddToParty( oUser, GetFactionLeader(oTarget)));break; + case 64: RemoveFromParty(oUser);break; + case 65: ExploreAreaForPlayer(GetArea(oTarget), oTarget); FloatingTextStringOnCreature("Map Given: Target", oUser);break; + case 66: { + FloatingTextStringOnCreature("Map Given: Party", oUser); + object oParty = GetFirstFactionMember(oTarget,TRUE); + while (GetIsObjectValid(oParty)) + { + ExploreAreaForPlayer(GetArea(oTarget), oTarget); + oParty = GetNextFactionMember(oTarget,TRUE); + } + break; + } + case 67: ExportAllCharacters();break; + case 68: dmwand_KickPC(oTarget, oUser);break; + case 69: sName = GetModuleName(); + StartNewModule(sName);break; + case 71: TilesetMagic(oUser, X2_TL_GROUNDTILE_WATER, 0);break; + case 72: TilesetMagic(oUser, X2_TL_GROUNDTILE_ICE, 0);break; + case 73: TilesetMagic(oUser, X2_TL_GROUNDTILE_LAVA, 0) ;break; + case 74: TilesetMagic(oUser, X2_TL_GROUNDTILE_SEWER_WATER, 0);break; + case 75: TilesetMagic(oUser, X2_TL_GROUNDTILE_WATER, 1);break; + case 76: TilesetMagic(oUser, X2_TL_GROUNDTILE_ICE, 1);break; + case 77: TilesetMagic(oUser, X2_TL_GROUNDTILE_LAVA, 1) ;break; + case 78: TilesetMagic(oUser, X2_TL_GROUNDTILE_SEWER_WATER, 1);break; + case 79: TLResetAreaGroundTiles(GetArea(oUser), iXAxis, iYAxis); break; + case 81: TilesetMagic(oUser, X2_TL_GROUNDTILE_ICE, 2);break; + case 82: TilesetMagic(oUser, X2_TL_GROUNDTILE_GRASS, 2);break; + case 83: TilesetMagic(oUser, X2_TL_GROUNDTILE_CAVEFLOOR, 2) ;break; + case 89: TLResetAreaGroundTiles(GetArea(oUser), iXAxis, iYAxis); break; + case 91: StoreCampaignObject("dmfi", "dmfi_copyplayer1", oTarget); + FloatingTextStringOnCreature("Target stored", oUser);break; + case 92: oParty = GetFirstFactionMember(oTarget, TRUE); + n=1; + while (GetIsObjectValid(oParty)) + { + StoreCampaignObject("dmfi", "dmfi_copyplayer"+IntToString(n), oParty); + SendMessageToPC(oUser, GetName(oParty) + " stored"); + n=n+1; + oParty = GetNextFactionMember(oTarget, TRUE); + } + FloatingTextStringOnCreature("Party stored", oUser); + break; + + case 93:n=1; + oCopy = RetrieveCampaignObject("dmfi", "dmfi_copyplayer"+IntToString(n), lLocation); + while (GetIsObjectValid(oCopy)) + { + ChangeToStandardFaction(oCopy, STANDARD_FACTION_COMMONER); + + n=n+1; + oCopy = RetrieveCampaignObject("dmfi", "dmfi_copyplayer"+IntToString(n), lLocation); + AssignCommand(oCopy, SetIsDestroyable(FALSE, TRUE, TRUE)); + } + break; + case 101: SetLocalInt(GetModule(), "dmfi_tileset" , 0); break; + case 102: SetLocalInt(GetModule(), "dmfi_tileset" , 1); break; //sewer/city + + default: break; + } + +} + +//////////////////////////////////////////////////////////////////////// +//This is for the DMFI Dicebag Wand +void DoDMDiceBagFunction(int iDice, object oUser) +{ + object oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + if (!GetIsObjectValid(oTarget)) + oTarget = oUser; + int iOverride = GetLocalInt(oUser, "dmfi_dicebag"); + object oArea = GetArea(oUser); + object oRoll; + int iLeft; + if (iDice < 100) + iLeft = StringToInt(GetStringLeft(IntToString(iDice), 1)); + else + iLeft = 10; + switch (iLeft) + { + case 1: + case 2: + case 3: + case 4: //Single Creature Roll + DoDiceBagFunction(iDice+50, oTarget, iOverride); break; + case 5: + case 6: + case 7: + case 8://All PCs/NPCs in the area + oRoll = GetFirstObjectInArea(oArea); + while (GetIsObjectValid(oRoll)) + { + if ((GetIsPC(oTarget) && GetIsPC(oRoll)) || (!GetIsPC(oTarget) && !GetIsPC(oRoll) && GetObjectType(oRoll) == OBJECT_TYPE_CREATURE)) + DoDiceBagFunction(iDice+10, oRoll, iOverride); + oRoll = GetNextObjectInArea(oArea); + } + break; + case 10: { + switch (iDice) + { + case 101: SetLocalInt(oUser, "dmfi_dicebag", 2); SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 2, oUser); SetCustomToken(20681, "Local"); FloatingTextStringOnCreature("Broadcast Mode set to Local", oUser, FALSE); return; break; + case 102: SetLocalInt(oUser, "dmfi_dicebag", 1); SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 1, oUser); SetCustomToken(20681, "Global"); FloatingTextStringOnCreature("Broadcast Mode set to Global", oUser, FALSE); return; break; + case 103: SetLocalInt(oUser, "dmfi_dicebag", 0); SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 0, oUser); SetCustomToken(20681, "Private"); FloatingTextStringOnCreature("Broadcast Mode set to Private", oUser, FALSE); return; break; + case 104: SetLocalInt(oUser, "dmfi_dicebag", 3); SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 3, oUser); SetCustomToken(20681, "DM Only"); FloatingTextStringOnCreature("Broadcast Mode set to DM Only", oUser, FALSE); return; break; + case 105: DMFI_NextTarget(oTarget, oUser);break; + case 106: { + if (GetLocalInt(oUser, "dmfi_dice_no_animate")==1) + { + SetLocalInt(oUser, "dmfi_dice_no_animate", 0); + FloatingTextStringOnCreature("Rolls will show animation", oUser); + } + else + { + SetLocalInt(oUser, "dmfi_dice_no_animate", 1); + FloatingTextStringOnCreature("Rolls will NOT show animation", oUser); + } + } + } + } + default: break; + +/* +Demetrious - Saving code for all pcs in case I find a way to put it back into the dicebag. + + //All PCs + oRoll = GetFirstPC(); + while (GetIsObjectValid(oRoll)) + { + DoDiceBagFunction(iDice, oRoll, iOverride); + oRoll = GetNextPC(); + }break; +*/ + + + } +} + +//////////////////////////////////////////////////////////////////////// +void DoOneRingFunction(int iRing, object oUser) +{ + switch (iRing) + { + case 1: SetLocalString(oUser, "dmfi_univ_conv", "afflict"); break; + case 2: SetLocalString(oUser, "dmfi_univ_conv", "faction"); break; + case 3: SetLocalString(oUser, "dmfi_univ_conv", "dicebag"); break; + case 4: SetLocalString(oUser, "dmfi_univ_conv", "dmw"); break; + case 5: SetLocalString(oUser, "dmfi_univ_conv", "emote"); break; + case 6: SetLocalString(oUser, "dmfi_univ_conv", "encounter"); break; + case 7: SetLocalString(oUser, "dmfi_univ_conv", "fx"); break; + case 8: SetLocalString(oUser, "dmfi_univ_conv", "music"); break; + case 91: SetLocalString(oUser, "dmfi_univ_conv", "sound"); break; + case 92: SetLocalString(oUser, "dmfi_univ_conv", "voice"); break; + case 93: SetLocalString(oUser, "dmfi_univ_conv", "xp"); break; + case 94: SetLocalString(oUser, "dmfi_univ_conv", "buff");break; + default: SetLocalString(oUser, "dmfi_univ_conv", "dmw"); break; + } + AssignCommand(oUser, ClearAllActions()); + AssignCommand(oUser, ActionStartConversation(OBJECT_SELF, "dmfi_universal", TRUE)); +} + +//////////////////////////////////////////////////////////////////////// +//This function is for the DMFI Sound FX Wand +void DoSoundFunction(int iSound, object oUser) +{ + + location lLocation = GetLocalLocation(oUser, "dmfi_univ_location"); + float fDuration; + float fDelay; + object oTarget; + + if (GetIsDMPossessed(oUser)) + { + fDuration = GetLocalFloat(GetMaster(oUser), "dmfi_effectduration"); + fDelay = GetLocalFloat(GetMaster(oUser), "dmfi_sound_delay"); + } + else + { + fDuration = GetLocalFloat(oUser, "dmfi_effectduration"); + fDelay = GetLocalFloat(oUser, "dmfi_sound_delay"); + } + + switch (iSound) + { + case 11: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_batsflap1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 12: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_bugsscary1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 13: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_crptvoice1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 14: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_orcgrunt1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 15: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_cv_minepick2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 16: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_ratssqeak1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 17: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_na_rockfallg1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 18: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_na_rockfalgl2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 19: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_wt_gustcavrn1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 21: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_cv_belltower3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 22: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_cv_claybreak3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 23: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_cv_glasbreak2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 24: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_cv_gongring3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 25: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_marketgrp4"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 26: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_cv_millwheel1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 27: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_cv_sawing1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 28: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_cv_bellwind1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 29: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_cv_smithhamr2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 31: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_na_firelarge1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 32: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_na_lavapillr1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 33: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_na_lavafire1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 34: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_na_firelarge2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 35: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_na_surf2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 36: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_na_drips1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 37: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_na_waterlap1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 38: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_na_stream4"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 39: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_na_waterfall2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 41: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_crynight3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 42: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_na_bushmove1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 43: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_birdsflap2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 44: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_na_grassmove3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 45: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_hawk1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 46: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_na_leafmove3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 47: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_gulls2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 48: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_songbirds1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 49: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_an_toads1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 51: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_mg_beaker1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 52: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_mg_cauldron1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 53: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_mg_chntmagic1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 54: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_mg_crystalev1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 55: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_mg_crystalic1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 56: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("al_mg_portal1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 57: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_mg_telepin1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 58: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_mg_telepout1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 59: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_mg_frstmagic1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 61: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_tavclap1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 62: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_battlegrp7"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 63: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_laughincf2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 64: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_comtntgrp3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 65: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_chantingm2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 66: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_cryingf2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 67: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_laughingf3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 68: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_chantingf2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 69: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_wailingm6"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 71: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_evilchantm"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 72: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_crows2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 73: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_wailingcf1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 74: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_crptvoice2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 75: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_lafspook2"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 76: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_owlhoot1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 77: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_an_wolfhowl1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 78: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_screamf3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 79: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_pl_zombiem3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 81: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_wt_gustsoft1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 82: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_wt_thundercl3"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 83: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_wt_thunderds4"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + case 84: oTarget = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); DelayCommand(fDelay, AssignCommand(oTarget, PlaySound("as_wt_gusforst1"))); DelayCommand(20.0f, DestroyObject(oTarget)); break; + + //Settings + case 91: + SetLocalString(oUser, "EffectSetting", "dmfi_effectduration"); + CreateSetting(oUser); + break; + case 92: + SetLocalString(oUser, "EffectSetting", "dmfi_sound_delay"); + CreateSetting(oUser); + break; + case 93: + SetLocalString(oUser, "EffectSetting", "dmfi_beamduration"); + CreateSetting(oUser); + break; + case 94: //Change Day Music + iDayMusic = MusicBackgroundGetDayTrack(GetArea(oUser)) + 1; + if (iDayMusic > 33) iDayMusic = 49; + if (iDayMusic > 55) iDayMusic = 1; + MusicBackgroundStop(GetArea(oUser)); + MusicBackgroundChangeDay(GetArea(oUser), iDayMusic); + MusicBackgroundPlay(GetArea(oUser)); + break; + case 95: //Change Night Music + iNightMusic = MusicBackgroundGetDayTrack(GetArea(oUser)) + 1; + if (iNightMusic > 33) iNightMusic = 49; + if (iNightMusic > 55) iNightMusic = 1; + MusicBackgroundStop(GetArea(oUser)); + MusicBackgroundChangeNight(GetArea(oUser), iNightMusic); + MusicBackgroundPlay(GetArea(oUser)); + break; + case 96: //Play Background Music + MusicBackgroundPlay(GetArea(oUser)); + break; + case 97: //Stop Background Music + MusicBackgroundStop(GetArea(oUser)); + break; + case 98: //Change and Play Battle Music + iBattleMusic = MusicBackgroundGetBattleTrack(GetArea(oUser)) + 1; + if (iBattleMusic < 34 || iBattleMusic > 48) iBattleMusic = 34; + MusicBattleStop(GetArea(oUser)); + MusicBattleChange(GetArea(oUser), iBattleMusic); + MusicBattlePlay(GetArea(oUser)); + break; + case 99: //Stop Battle Music + MusicBattleStop(GetArea(oUser)); + break; + + default: break; + } + return; +} + +//////////////////////////////////////////////////////////////////////// +//This function is for the DMFI DM Voice +void DoVoiceFunction(int iSay, object oUser) +{ + object oMod = GetModule(); + object oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oUser, "dmfi_univ_location"); + object oVoice; + string sSay; + + // Invalid target code - Loiter mode + if (!GetIsObjectValid(oTarget)) + { + switch (iSay) + { + case 8: + // // XXXX DM Spy Functionality - Currently BROKEN + // SetDMFIPersistentInt("dmfi", "dmfi_DMSpy", abs(GetDMFIPersistentInt("dmfi", "dmfi_DMSpy", oUser) - 1), oUser); + // if (GetDMFIPersistentInt("dmfi", "dmfi_DMSpy", oUser) == 1) + // FloatingTextStringOnCreature("DM Spy is on.", oUser, FALSE); + // else + // FloatingTextStringOnCreature("DM Spy is off.", oUser, FALSE); + // break; + + // v1.09 - eavesdrop at location + { + int hooknum = GetLocalInt(oUser, "dmfi_MyListenerHook"); + if (hooknum != 0) RemoveListenerHook(hooknum); + int hookparty = GetLocalInt(oUser, "dmfi_MyListenerPartyMode"); + int hookbcast = GetLocalInt(oUser, "dmfi_MyListenerBcastMode"); + hooknum = AppendListenerHook(2, OBJECT_INVALID, lLocation, + DMFI_CHANNELMASK_TALK|DMFI_CHANNELMASK_WHISPER, + hookparty, hookbcast, oUser); + if (hooknum != 0) + { + // move ditto voice to this location (destroying any existing one) + if (GetIsObjectValid(GetLocalObject(oUser, "dmfi_MyVoice"))) + { + DestroyObject(GetLocalObject(oUser, "dmfi_MyVoice")); + DeleteLocalObject(oUser, "dmfi_MyVoice"); + FloatingTextStringOnCreature("You have destroyed your previous Voice", oUser, FALSE); + } + oVoice = CreateObject(OBJECT_TYPE_CREATURE, "dmfi_voice", lLocation); + //Sets the Voice as the object to throw to. + SetLocalObject(oUser, "dmfi_VoiceTarget", oVoice); + //Set Ownership of the Voice to the User + SetLocalObject(oUser, "dmfi_MyVoice", oVoice); + DelayCommand(1.0f, FloatingTextStringOnCreature("The Voice is operational", oUser, FALSE)); + } + else + { + SendMessageToPC(oUser, "ERROR: could not append listener hook!"); + } + SetLocalInt(oUser, "dmfi_MyListenerHook", hooknum); + } + break; + + // case 9: //Destroy any existing Voice attached to the user + // if (GetIsObjectValid(GetLocalObject(oUser, "dmfi_MyVoice"))) + // { + // DestroyObject(GetLocalObject(oUser, "dmfi_MyVoice")); + // DeleteLocalObject(oUser, "dmfi_MyVoice"); + // FloatingTextStringOnCreature("You have destroyed your previous Voice", oUser, FALSE); + // } + // //Create the Voice + // oVoice = CreateObject(OBJECT_TYPE_CREATURE, "dmfi_voice", lLocation); + // //Sets the Voice as the object to throw to. + // SetLocalObject(oUser, "dmfi_VoiceTarget", oVoice); + // //Set Ownership of the Voice to the User + // SetLocalObject(oUser, "dmfi_MyVoice", oVoice); + // DelayCommand(1.0f, FloatingTextStringOnCreature("The Voice is operational", oUser, FALSE)); + // break; + + case 9: + // v1.09 - Toggle location range eavesdropping + { + int partylisten = GetLocalInt(oUser, "dmfi_MyListenerPartyMode"); + partylisten++; + if (partylisten > 2) partylisten = 0; + SetLocalInt(oUser, "dmfi_MyListenerPartyMode", partylisten); + string sRange; + if (partylisten == 0) sRange = "EARSHOT"; + else if (partylisten == 1) sRange = "AREA"; + else sRange = "MODULE"; + DelayCommand(1.0f, FloatingTextStringOnCreature("Location eavesdrop mode for new eavesdroppers set to " + sRange, oUser, FALSE)); + } + break; + + // Create a Loiter Voice + default: + oVoice = CreateObject(OBJECT_TYPE_CREATURE, "dmfi_voice", lLocation); + SetLocalInt(oVoice, "dmfi_Loiter", 1); + SetLocalString(oVoice, "dmfi_LoiterSay", GetDMFIPersistentString("dmfi", "hls206" + IntToString(iSay))); + break; + } + } + + // You targetted yourself = Record Mode + else if (oTarget == oUser) + { + switch (iSay) + { + // Toggle the mute / unmute NPC function + case 8: SetDMFIPersistentInt("dmfi", "dmfi_AllMute", abs(GetDMFIPersistentInt("dmfi", "dmfi_AllMute") - 1)); + if (GetDMFIPersistentInt("dmfi", "dmfi_AllMute") == 1) + FloatingTextStringOnCreature("All NPC conversations are muted", oUser, FALSE); + else + FloatingTextStringOnCreature("All NPC conversations are unmuted", oUser, FALSE); + break; + + // // XXXX Create a Ditto Voice - Duplicate functionality + // case 9: //Destroy any existing Voice attached to the user + // if (GetIsObjectValid(GetLocalObject(oUser, "dmfi_MyVoice"))) + // { + // DestroyObject(GetLocalObject(oUser, "dmfi_MyVoice")); + // DeleteLocalObject(oUser, "dmfi_MyVoice"); + // FloatingTextStringOnCreature("You have destroyed your previous Voice", oUser, FALSE); + // } + // //Create the Voice + // oVoice = CreateObject(OBJECT_TYPE_CREATURE, "dmfi_voice", lLocation); + // + // SetLocalObject(oUser, "dmfi_VoiceTarget", oVoice); + // //Set Ownership of the Voice to the User + // SetLocalObject(oUser, "dmfi_MyVoice", oVoice); + // DelayCommand(1.0f, FloatingTextStringOnCreature("The Voice is operational", oUser, FALSE)); + // break; + + case 9: + { + // v1.09 - toggle eavesdrop bcast - user/alldms + int hookbcast = GetLocalInt(oUser, "dmfi_MyListenerBcastMode"); + hookbcast = !hookbcast; + SetLocalInt(oUser, "dmfi_MyListenerBcastMode", hookbcast); + DelayCommand(1.0f, FloatingTextStringOnCreature("DM-Broadcast mode for new eavesdroppers set to " + (hookbcast ? "ON" : "OFF"), oUser, FALSE)); + } + + case 10: + // v1.09 - cancel eavesdrop mode + { + int hooknum = GetLocalInt(oUser, "dmfi_MyListenerHook"); + if (hooknum != 0) + { + RemoveListenerHook(hooknum); + DeleteLocalInt(oUser, "dmfi_MyListenerHook"); + } + + // destroy any existing ditto voice + if (GetIsObjectValid(GetLocalObject(oUser, "dmfi_MyVoice"))) + { + DestroyObject(GetLocalObject(oUser, "dmfi_MyVoice")); + DeleteLocalObject(oUser, "dmfi_MyVoice"); + FloatingTextStringOnCreature("You have destroyed your previous Voice", oUser, FALSE); + } + } + break; + + default: + // record a new phrase + FloatingTextStringOnCreature("Ready to record new phrase", oUser, FALSE); + SetLocalInt(oUser, "hls_EditPhrase", 20600 + iSay); + // set up to capture next spoken line of text + DMFI_get_line(oUser, TALKVOLUME_TALK, "dmfi_univ_listen", OBJECT_SELF); + break; + } + } + + // You targeted an NPC or Object - Say Something! + else + { + switch (iSay) + { + // Toggle a SINGLE NPC mute / unmute function + case 8: SetLocalInt(oTarget, "dmfi_Mute", abs(GetLocalInt(oTarget, "dmfi_Mute") - 1)); + break; + + case 9: + // XXXXX Set a Single NPC to listen and make it your target - VOICE WIDGET FUNCTION + // SetLocalObject(oUser, "dmfi_VoiceTarget", oTarget); + // if (!GetIsPC(oTarget)) + // { + // FloatingTextStringOnCreature(GetName(oTarget) + " is listening", oUser, FALSE); + // SetListenPattern(oTarget, "**", LISTEN_PATTERN); //listen to all text + // SetLocalInt(oTarget, "hls_Listening", 1); //listen to all text + // SetListening(oTarget, TRUE); //be sure NPC is listening + // } + // //You Targetted a PC - make a voice follow that sucker and listen. + // else + // { + // //delete any valid following voices to stop duplicates + // if (GetIsObjectValid(GetLocalObject(oTarget, "dmfi_VoiceFollow"))) + // { + // DestroyObject(GetLocalObject(oUser, "dmfi_VoiceFollow")); + // FloatingTextStringOnCreature("The prior voice following this character was destroyed", oUser, FALSE); + // } + // + // //Create the Voice + // oVoice = CreateObject(OBJECT_TYPE_CREATURE, "dmfi_voice", lLocation); + // //Sets the Voice as the object to throw to. + // DelayCommand(2.0, SetLocalObject(oTarget, "dmfi_VoiceFollow", oVoice)); //only set this for finding a duplicate later + // DelayCommand(2.0, SetLocalObject(oVoice, "dmfi_follow", oTarget)); //set up the player as something to follow + // DelayCommand(1.0f, FloatingTextStringOnCreature("The Voice will follow and listen to " +GetName(oTarget), oUser, FALSE)); + // } + // break; + + // v1.09 - eavesdrop on pc + { + int hooknum = GetLocalInt(oUser, "dmfi_MyListenerHook"); + if (hooknum != 0) RemoveListenerHook(hooknum); + int hookparty = GetLocalInt(oUser, "dmfi_MyListenerPartyMode"); + int hookbcast = GetLocalInt(oUser, "dmfi_MyListenerBcastMode"); + hooknum = AppendListenerHook(1, oTarget, lLocation, + DMFI_CHANNELMASK_TALK|DMFI_CHANNELMASK_WHISPER, + hookparty, hookbcast, oUser); + if (hooknum != 0) + { + SetLocalObject(oUser, "dmfi_VoiceTarget", oTarget); + if (GetIsPC(oTarget)) + { + // targetted PC - + // delete any valid following voices to stop duplicates + object oVoice = GetLocalObject(oTarget, "dmfi_VoiceFollow"); + if (GetIsObjectValid(oVoice)) + { + DestroyObject(oVoice); + DeleteLocalObject(oTarget, "dmfi_VoiceFollow"); + FloatingTextStringOnCreature("The prior voice following this character was destroyed", oUser, FALSE); + } + + // 08.05.13 tsunami282 - we don't use following voices anymore + // // Create the Voice + // oVoice = CreateObject(OBJECT_TYPE_CREATURE, "dmfi_voice", lLocation); + // // Sets the Voice as the object to throw to. + // DelayCommand(2.0, SetLocalObject(oTarget, "dmfi_VoiceFollow", oVoice)); //only set this for finding a duplicate later + // DelayCommand(2.0, SetLocalObject(oVoice, "dmfi_follow", oTarget)); //set up the player as something to follow + // DelayCommand(1.0f, FloatingTextStringOnCreature("The Voice will follow " +GetName(oTarget), oUser, FALSE)); + } + else + { + // targetted NPC - nothing else needed to do + } + } + else + { + SendMessageToPC(oUser, "ERROR: could not append listener hook!"); + } + SetLocalInt(oUser, "dmfi_MyListenerHook", hooknum); + } + break; + + case 10: + // v1.09 - Toggle PC single/party eavesdropping + { + // v1.09 - toggle eavesdrop mode - single/party + int partylisten = GetLocalInt(oUser, "dmfi_MyListenerPartyMode"); + partylisten++; + if (partylisten > 1) partylisten = 0; + SetLocalInt(oUser, "dmfi_MyListenerPartyMode", partylisten); + DelayCommand(1.0f, FloatingTextStringOnCreature("PC eavesdrop mode for new eavesdroppers set to " + (partylisten ? "PARTY" : "PC ONLY"), oUser, FALSE)); + } + break; + default: + sSay = GetDMFIPersistentString("dmfi", "hls206" + IntToString(iSay)); + AssignCommand(oTarget, SpeakString(sSay)); + break; + } + } +} + +//////////////////////////////////////////////////////////////////////// +//This function is for the DMFI Affliction Wand +void ReportImmunity(object oT, object oUser) +{ + SendMessageToPC(oUser, "Immunities Reported: (blank if none)"); + if (GetIsImmune(oT, IMMUNITY_TYPE_ABILITY_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Ability Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_AC_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE AC Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_ATTACK_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Attack Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_BLINDNESS)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Blindness"); + if (GetIsImmune(oT, IMMUNITY_TYPE_CHARM)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Charm"); + if (GetIsImmune(oT, IMMUNITY_TYPE_CONFUSED)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Confusion"); + if (GetIsImmune(oT, IMMUNITY_TYPE_CRITICAL_HIT)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Critical Hit"); + if (GetIsImmune(oT, IMMUNITY_TYPE_CURSED)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Cursed"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DAMAGE_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Damage Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DAMAGE_IMMUNITY_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Damage Immunity Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DAZED)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Dazed"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DEAFNESS)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Deafness"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DEATH)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Death"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DISEASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Disease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DOMINATE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Dominate"); + if (GetIsImmune(oT, IMMUNITY_TYPE_ENTANGLE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Entangle"); + if (GetIsImmune(oT, IMMUNITY_TYPE_FEAR)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Fear"); + if (GetIsImmune(oT, IMMUNITY_TYPE_KNOCKDOWN)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Knockdown"); + if (GetIsImmune(oT, IMMUNITY_TYPE_MIND_SPELLS)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Mind Spells"); + if (GetIsImmune(oT, IMMUNITY_TYPE_MOVEMENT_SPEED_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Movement Speed Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_NEGATIVE_LEVEL)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Negative Level"); + if (GetIsImmune(oT, IMMUNITY_TYPE_PARALYSIS)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Paralysis"); + if (GetIsImmune(oT, IMMUNITY_TYPE_POISON)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Poison"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SAVING_THROW_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Saving Throw Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SILENCE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Silence"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SKILL_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Skill Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SLEEP)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Sleep"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SLOW)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Slow"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SNEAK_ATTACK)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Sneak Attack"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SPELL_RESISTANCE_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Spell Resistance Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_STUN)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Stun"); + if (GetIsImmune(oT, IMMUNITY_TYPE_TRAP)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Trap"); +} + +//////////////////////////////////////////////////////////////////////// +void CheckForEffect(effect eA, object oT, object oUser) +{ + int Result = FALSE; + effect Check = GetFirstEffect(oT); + + while (GetIsEffectValid(Check)) + { + if (Check == eA) + Result = TRUE; + + Check = GetNextEffect(oT); + } + if (Result) + FloatingTextStringOnCreature("Affliction Wand Saving Throw Failure: " + GetName(oT), oUser); + else + FloatingTextStringOnCreature("Affliction Wand Saving Throw Success: No Effect: " + GetName(oT), oUser); +} + +//////////////////////////////////////////////////////////////////////// +void DoAfflictFunction(int iAfflict, object oUser) +{ + effect eEffect; + object oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + float fDuration; + int nDNum; + effect eD; + effect eA; + effect eT; + effect eVis; + int nBug = 0; + int nSaveAmount; float fSaveAmount; + + if (GetIsDMPossessed(oUser)) + { + nDNum = GetLocalInt(GetMaster(oUser), "dmfi_damagemodifier"); + fDuration = GetLocalFloat(GetMaster(oUser), "dmfi_stunduration"); + fSaveAmount = GetLocalFloat(GetMaster(oUser), "dmfi_saveamount"); + } + else + { + nDNum = GetLocalInt(oUser, "dmfi_damagemodifier"); + fDuration = GetLocalFloat(oUser, "dmfi_stunduration"); + fSaveAmount = GetLocalFloat(oUser, "dmfi_saveamount"); + } + + nSaveAmount = FloatToInt(fSaveAmount); + + if (!(GetObjectType(oTarget) == OBJECT_TYPE_CREATURE) || + GetIsDM(oTarget)) + { + FloatingTextStringOnCreature("You must target a valid creature!", oUser, FALSE); + return; + } + switch (iAfflict) + { + case 11: eD= EffectDamage(d4(nDNum), DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_SPARK_SMALL); break; + case 12: eD = EffectDamage(d6(nDNum), DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_LRG_RED); break; + case 13: eD = EffectDamage(d8(nDNum), DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_LRG_RED); break; + case 14: eD = EffectDamage(d10(nDNum), DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_SPARK_SMALL); break; + case 15: eD = EffectDamage(d12(nDNum), DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_SPARK_SMALL); break; + case 16: eD = EffectDamage(GetCurrentHitPoints(oTarget)/4, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_LRG_RED); break; + case 17: eD = EffectDamage(GetCurrentHitPoints(oTarget)/2, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_LRG_RED); break; + case 18: eD = EffectDamage(GetCurrentHitPoints(oTarget) * 3 / 4, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis =EffectVisualEffect(VFX_COM_CHUNK_RED_SMALL); break; + case 19: eD = EffectDamage(GetCurrentHitPoints(oTarget)-1, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis =EffectVisualEffect(VFX_COM_CHUNK_RED_SMALL); break; + case 21: eA =EffectDisease(DISEASE_FILTH_FEVER); break; + case 22: eA =EffectDisease(DISEASE_MINDFIRE); break; + case 23: eA =EffectDisease(DISEASE_DREAD_BLISTERS); break; + case 24: eA =EffectDisease(DISEASE_SHAKES); break; + case 25: eA =EffectDisease(DISEASE_VERMIN_MADNESS); break; + case 26: eA =EffectDisease(DISEASE_DEVIL_CHILLS); break; + case 27: eA =EffectDisease(DISEASE_SLIMY_DOOM); break; + case 28: eA =EffectDisease(DISEASE_RED_ACHE); break; + case 29: eA =EffectDisease(DISEASE_ZOMBIE_CREEP); break; + case 31: eA =EffectDisease(DISEASE_BLINDING_SICKNESS); break; + case 32: eA =EffectDisease(DISEASE_CACKLE_FEVER); break; + case 33: eA =EffectDisease(DISEASE_BURROW_MAGGOTS); break; + case 34: eA =EffectDisease(DISEASE_RED_SLAAD_EGGS); break; + case 35: eA =EffectDisease(DISEASE_DEMON_FEVER); break; + case 36: eA =EffectDisease(DISEASE_GHOUL_ROT); break; + case 37: eA =EffectDisease(DISEASE_MUMMY_ROT); break; + case 38: eA =EffectDisease(DISEASE_SOLDIER_SHAKES); break; + case 39: eA =EffectDisease(DISEASE_SOLDIER_SHAKES); break; + case 41: eA =EffectPoison(POISON_TINY_SPIDER_VENOM); break; + case 42: eA =EffectPoison(POISON_ARANEA_VENOM); break; + case 43: eA =EffectPoison(POISON_MEDIUM_SPIDER_VENOM); break; + case 44: eA = EffectPoison(POISON_CARRION_CRAWLER_BRAIN_JUICE); break; + case 45: eA = EffectPoison(POISON_OIL_OF_TAGGIT); break; + case 46: eA = EffectPoison(POISON_ARSENIC); break; + case 47: eA = EffectPoison(POISON_GREENBLOOD_OIL); break; + case 48: eA = EffectPoison(POISON_NITHARIT); break; + case 49: eA = EffectPoison(POISON_PHASE_SPIDER_VENOM); break; + case 51: eA = EffectPoison(POISON_LICH_DUST); break; + case 52: eA = EffectPoison(POISON_SHADOW_ESSENCE); break; + case 53: eA = EffectPoison(POISON_LARGE_SPIDER_VENOM); break; + case 54: eA = EffectPoison(POISON_PURPLE_WORM_POISON); break; + case 55: eA = EffectPoison(POISON_IRON_GOLEM); break; + case 56: eA = EffectPoison(POISON_PIT_FIEND_ICHOR); break; + case 57: eA = EffectPoison(POISON_WYVERN_POISON); break; + case 58: eA = EffectPoison(POISON_BLACK_LOTUS_EXTRACT); break; + case 59: eA = EffectPoison(POISON_GARGANTUAN_SPIDER_VENOM); break; + case 60: eT = EffectPetrify(); break; + case 61: eT = EffectBlindness(); break; + case 62: eT = EffectCurse(4,4,4,4,4,4); break; + case 63: eT = EffectFrightened(); break; + case 64: eT = EffectStunned(); break; + case 65: eT = EffectSilence(); break; + case 66: eT = EffectSleep(); break; + case 67: eT = EffectSlow(); break; + case 68: eT = EffectKnockdown(); nBug = 1; break; + case 69: eD = EffectDamage( GetCurrentHitPoints(oTarget)-1, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_NORMAL); + AssignCommand( oTarget, ClearAllActions()); + AssignCommand( oTarget, ActionPlayAnimation( ANIMATION_LOOPING_DEAD_FRONT, 1.0, 99999.0)); + DelayCommand(0.5, SetCommandable( FALSE, oTarget)); break; + case 71: eA = EffectCutsceneDominated();break; + case 72: eA = EffectCutsceneGhost(); break; + case 73: eA = EffectCutsceneImmobilize(); break; + case 74: eA = EffectCutsceneParalyze(); break; + case 75: nBug = -1; break; //special case for combo death effect + case 81: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_POISON) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 82: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_DISEASE) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 83: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_BLINDNESS) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 84: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_CURSE) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 85: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_FRIGHTENED) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 86: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_STUNNED) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 87: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_SILENCE) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 88: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 89: SetCommandable(TRUE, oTarget); + AssignCommand(oTarget, ClearAllActions()); break; + case 80: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_PETRIFY) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break;//Added July 5, 2003 + +// 99 is a duplicate instance - simple copy. - Demetrious + case 91: SetLocalString(oUser, "EffectSetting", "dmfi_stunduration"); + CreateSetting(oUser); + case 92: SetDMFIPersistentInt("dmfi", "DamageModifier", nDNum+1); SetCustomToken(20780, IntToString(nDNum+1));; break; + case 93: + if (nDNum==1) + { + FloatingTextStringOnCreature("Illegal operation: Minimum modifier is 1.", oUser); + break; + } + else + { + SetDMFIPersistentInt("dmfi", "DamageModifier", nDNum-1); SetCustomToken(20780, IntToString(nDNum-1)); ;break; + break; + } + case 94: ReportImmunity(oTarget, oUser); break; + case 95: DMFI_NextTarget(oTarget, oUser); break; + case 99: SetLocalString(oUser, "EffectSetting", "SaveEffectAmount"); + CreateSetting(oUser); break; + case 101: eT = EffectSavingThrowDecrease(SAVING_THROW_FORT, nSaveAmount); break; + case 102: eT = EffectSavingThrowDecrease(SAVING_THROW_REFLEX, nSaveAmount); break; + case 103: eT = EffectSavingThrowDecrease(SAVING_THROW_WILL, nSaveAmount); break; + case 104: eT = EffectSavingThrowIncrease(SAVING_THROW_FORT, nSaveAmount); break; + case 105: eT = EffectSavingThrowIncrease(SAVING_THROW_REFLEX, nSaveAmount); break; + case 106: eT = EffectSavingThrowIncrease(SAVING_THROW_WILL, nSaveAmount); break; + case 107: eT = EffectSavingThrowDecrease(SAVING_THROW_ALL, nSaveAmount); break; + case 108: eT = EffectSavingThrowIncrease(SAVING_THROW_ALL, nSaveAmount); break; + case 109: SetLocalString(oUser, "EffectSetting", "SaveEffectAmount"); + CreateSetting(oUser); + case 100: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if ((GetEffectType(eEffect) == EFFECT_TYPE_SAVING_THROW_INCREASE) + ||(GetEffectType(eEffect) == EFFECT_TYPE_SAVING_THROW_DECREASE)) + RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break;//Added July 5, 2003 + + + + default: break; + } +//code down here to apply the effects an then go back and see if the +//player successfully saved or did not for the diseases and poisons. + + if ((GetEffectType(eD)!= EFFECT_TYPE_INVALIDEFFECT) || + (GetEffectType(eVis) != EFFECT_TYPE_INVALIDEFFECT)) + { + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eD, oTarget); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eVis, oTarget); + return; + } + if (GetEffectType(eA)!= EFFECT_TYPE_INVALIDEFFECT) + { + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eA, oTarget); + DelayCommand(5.0, CheckForEffect(eA, oTarget, oUser)); + return; + } + if ((GetEffectType(eT)!= EFFECT_TYPE_INVALIDEFFECT) || (nBug ==1)) + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eT, oTarget, fDuration); + + if ((GetEffectType(eT)==EFFECT_TYPE_SAVING_THROW_INCREASE) || + (GetEffectType(eT)==EFFECT_TYPE_SAVING_THROW_DECREASE)) + { + DelayCommand(1.0, FloatingTextStringOnCreature("Target Saves: Fortitude " + IntToString(GetFortitudeSavingThrow(oTarget)) + + " Reflex " + IntToString(GetReflexSavingThrow(oTarget)) + " Will " + IntToString(GetWillSavingThrow(oTarget)), oUser)); + } + return; + } + if (nBug == -1) + { + object oFollowMe = GetFirstFactionMember(oTarget, TRUE); + + if (!GetIsObjectValid(oFollowMe)) + oFollowMe = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, oTarget, 1,CREATURE_TYPE_IS_ALIVE, TRUE); + + if (GetIsDM(oFollowMe) || GetIsDMPossessed(oFollowMe)) + oFollowMe = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, oTarget, 2,CREATURE_TYPE_IS_ALIVE, TRUE); + + if (!GetIsObjectValid(oFollowMe)) + oFollowMe = oUser; + + AssignCommand(oFollowMe, ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectCutsceneDominated(), oTarget)); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectCutsceneGhost(), oTarget); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY), oTarget); + } + + return; +} + +//////////////////////////////////////////////////////////////////////// +//This function is for the DMFI XP Wand +void DoXPFunction(int iXP, object oUser) +{ + object oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + object oPartyMember; + int iHD; + int iParty = 0; + int iPercent = 0; + int iReward = 0; + int iGold = 0; + int iValue = 0; + + string sFloating = "DM Granted Bonus"; + + switch (iXP) + { + case 8: DMFI_NextTarget(oTarget, oUser); return; break; + case 11: sFloating = "Roleplaying Bonus"; iPercent = 1; break; + case 12: sFloating = "Roleplaying Bonus"; iPercent = 2; break; + case 13: sFloating = "Roleplaying Bonus"; iPercent = 3; break; + case 14: sFloating = "Roleplaying Bonus"; iPercent = 4; break; + case 15: sFloating = "Roleplaying Bonus"; iPercent = 5; break; + case 21: sFloating = "Main Plot Bonus"; iPercent = 10; break; + case 22: sFloating = "Main Plot Bonus"; iPercent = 20; break; + case 23: sFloating = "Main Plot Bonus"; iPercent = 25; break; + case 24: sFloating = "Main Plot Bonus"; iPercent = 33; break; + case 25: sFloating = "Main Plot Bonus"; iPercent = 50; break; + case 31: sFloating = "Main Plot Bonus"; iPercent = 10; iParty = 1; break; + case 32: sFloating = "Main Plot Bonus"; iPercent = 20; iParty = 1; break; + case 33: sFloating = "Main Plot Bonus"; iPercent = 25; iParty = 1; break; + case 34: sFloating = "Main Plot Bonus"; iPercent = 33; iParty = 1; break; + case 35: sFloating = "Main Plot Bonus"; iPercent = 50; iParty = 1; break; + case 41: sFloating = "Best In Game Bonus"; iPercent = 2; break; + case 42: sFloating = "Best In Game Bonus"; iPercent = 5; break; + case 43: sFloating = "Best In Game Bonus"; iPercent = 10; break; + case 44: sFloating = "Best In Game Bonus"; iPercent = 20; break; + case 45: sFloating = "Best In Game Bonus"; iPercent = 25; break; + case 51: iParty = 1; iReward = 100; break; + case 52: iParty = 1; iReward = 250; break; + case 53: iParty = 1; iReward = 500; break; + case 54: iParty = 1; iReward = 1000; break; + case 55: iParty = 1; iReward = 2000; break; + case 61: iHD = GetHitDice(oTarget); + SendMessageToPC(oUser, GetName(oTarget) +" has received " + IntToString(GetLocalInt(oPartyMember, "dmfi_XPGiven")) + " DMFI WAND XP this session."); + SendMessageToPC(oUser, GetName(oTarget) +" currently has " + IntToString(GetXP(oTarget)) + " total XP."); + SendMessageToPC(oUser, GetName(oTarget) +" currently needs " + IntToString(((iHD * (iHD + 1)) / 2 * 1000) - GetXP(oTarget)) + " to level."); + SendMessageToPC(oUser, GetName(oTarget) +" has "+ IntToString(GetGold(oTarget)) + " gp."); + SendMessageToPC(oUser, GetName(oTarget) +" has items totaling " + IntToString(DMFI_GetNetWorth(oTarget)) + " in gp value."); + return; break; + case 62: oPartyMember=GetFirstFactionMember(oTarget, TRUE); + while (GetIsObjectValid(oPartyMember)==TRUE) + { + iGold = iGold + GetGold(oPartyMember); + iValue = iValue + DMFI_GetNetWorth(oPartyMember); + SendMessageToPC(oUser, GetName(oPartyMember) +" has " + IntToString(GetXP(oPartyMember)) + " XP total."); + oPartyMember = GetNextFactionMember(oTarget, TRUE); + } + SendMessageToPC(oUser, "The party has a total of "+ IntToString(iGold) + " gp."); + SendMessageToPC(oUser, "The party has items totaling " + IntToString(iValue) + " in gp value."); + return; break; + case 63: oPartyMember=GetFirstFactionMember(oTarget, TRUE); + while (GetIsObjectValid(oPartyMember)==TRUE) + { + SendMessageToPC(oUser, GetName(oPartyMember) +" has received " + IntToString(GetLocalInt(oPartyMember, "dmfi_XPGiven")) + " DMFI WAND XP this session."); + oPartyMember = GetNextFactionMember(oTarget, TRUE); + } + return; break; + case 64: oPartyMember=GetFirstFactionMember(oTarget, TRUE); + while (GetIsObjectValid(oPartyMember)==TRUE) + { + int iHD = GetHitDice(oPartyMember); + SendMessageToPC(oUser, GetName(oPartyMember) + " is level " + IntToString(GetHitDice(oPartyMember)) + " and needs " + IntToString(((iHD * (iHD + 1)) / 2 * 1000) - GetXP(oPartyMember)) + " XP to level up."); + oPartyMember = GetNextFactionMember(oTarget, TRUE); + } + return; break; + case 71: sFloating = "DM XP PENALTY"; iReward = -50; break; + case 72: sFloating = "DM XP PENALTY"; iReward = -100; break; + case 73: sFloating = "DM XP PENALTY"; iReward = -250; break; + case 74: sFloating = "DM XP PENALTY"; iReward = -500; break; + case 75: sFloating = "DM XP PENALTY"; iReward = -1000; break; + case 76: sFloating = "DM XP PENALTY"; iReward = -2000; break; + case 77: sFloating = "DM XP PENALTY"; iReward = -((GetHitDice(oTarget) * (GetHitDice(oTarget)-1))/2 * 1000); break; + case 78: sFloating = "DM XP PENALTY"; iReward = -((GetHitDice(oTarget) * (GetHitDice(oTarget)-1))/2 * 1000) - (((GetHitDice(oTarget)-1)*1000)/2); break; + case 79: sFloating = "DM XP PENALTY"; iReward = -((GetXP(oTarget))-(GetXP(oTarget))+1); break; + default: return; + } + + if (iParty==1) + { + // 2008.05.26 tsunami282 - grant percent XP based on each party member's level, not selected party member + int bUsePercent = FALSE; + if (iReward==0) bUsePercent = TRUE; + + oPartyMember=GetFirstFactionMember(oTarget, TRUE); + while (GetIsObjectValid(oPartyMember)) + { + if (bUsePercent) iReward = (GetHitDice(oPartyMember)*iPercent*10); + GiveXPToCreature(oPartyMember, iReward); + SetLocalInt(oPartyMember, "dmfi_XPGiven", GetLocalInt(oPartyMember, "dmfi_XPGiven") + iReward); + FloatingTextStringOnCreature(sFloating + ": " + IntToString(iReward), oPartyMember, FALSE); + SendMessageToAllDMs(GetName(oPartyMember) +" received a "+GetLocalString(oUser, "BonusType")+ " experience reward of "+ IntToString(iReward)+ "."); + oPartyMember = GetNextFactionMember(oTarget, TRUE); + } + // SendMessageToAllDMs("The entire party was granted "+ IntToString(iReward)+ " XP."); + } + + else //single player code + { + if (iReward==0) + iReward = (GetHitDice(oTarget)*iPercent*10); + + int nPrior = GetXP(oTarget); + + SetXP(oTarget, nPrior+iReward); + + SetLocalInt(oTarget, "dmfi_XPGiven", GetLocalInt(oTarget, "dmfi_XPGiven") + iReward); + FloatingTextStringOnCreature(sFloating + ": " + IntToString(iReward), oTarget, FALSE); + SendMessageToAllDMs(GetName(oTarget) +" received a "+GetLocalString(oUser, "BonusType")+ " experience reward of "+ IntToString(iReward)+ "."); + + } + return; +} + +//////////////////////////////////////////////////////////////////////// +//This function is for the DMFI Music Wand +void DoMusicFunction(int iMusic, object oUser) +{ + int iSet; + switch (iMusic) + { + case 11: MusicBackgroundPlay(GetArea(oUser)); return; break; + case 12: MusicBackgroundStop(GetArea(oUser)); DelayCommand(1.0, MusicBackgroundStop(GetArea(oUser))); return; break; + case 13: iSet = TRACK_BATTLE_WINTER; break; + case 14: iSet = TRACK_BATTLE_DESERT; break; + case 15: iSet = TRACK_DESERT_DAY; break; + case 16: iSet = TRACK_DESERT_NIGHT; break; + case 17: iSet = TRACK_WINTER_DAY;break; + case 18: iSet = TRACK_HOTU_UNDERMOUNTAIN; break; + case 19: iSet = TRACK_HOTU_WATERDEEP; break; + case 21: iSet = TRACK_HOTU_BATTLE_BOSS1; break; + case 22: iSet = TRACK_HOTU_BATTLE_BOSS2; break; + case 23: iSet = TRACK_HOTU_BATTLE_HELL; break; + case 24: iSet = TRACK_HOTU_THEME;break; + case 25: iSet = TRACK_HOTU_REBELCAMP;break; + case 26: iSet = TRACK_HOTU_QUEEN;break; + case 27: iSet = TRACK_HOTU_DRACOLICH;break; + case 28: iSet = TRACK_HOTU_FIREPLANE;break; + case 29: iSet = TRACK_HOTU_HELLFROZEOVER;break; + case 31: iSet = 34; break; + case 32: iSet = 35; break; + case 33: iSet = 36; break; + case 34: iSet = 37; break; + case 35: iSet = 38; break; + case 36: iSet = 39; break; + case 37: iSet = 40; break; + case 38: iSet = 41; break; + case 39: iSet = 42; break; + case 41: iSet = 43; break; + case 42: iSet = 44; break; + case 43: iSet = 45; break; + case 44: iSet = 46; break; + case 45: iSet = 47; break; + case 46: iSet = 48; break; + case 51: iSet = 15; break; + case 52: iSet = 16; break; + case 53: iSet = 17; break; + case 54: iSet = 18; break; + case 55: iSet = 19; break; + case 56: iSet = 20; break; + case 57: iSet = 21; break; + case 58: iSet = 29; break; + case 61: iSet = 22; break; + case 62: iSet = 23; break; + case 63: iSet = 24; break; + case 64: iSet = 56; break; + case 65: iSet = 25; break; + case 66: iSet = 26; break; + case 67: iSet = 27; break; + case 68: iSet = 49; break; + case 69: iSet = 50; break; + case 71: iSet = 28; break; + case 72: iSet = 7; break; + case 73: iSet = 8; break; + case 74: iSet = 9; break; + case 75: iSet = 10; break; + case 76: iSet = 11; break; + case 77: iSet = 12; break; + case 78: iSet = 13; break; + case 79: iSet = 14; break; + case 81: iSet = 1; break; + case 82: iSet = 2; break; + case 83: iSet = 3; break; + case 84: iSet = 4; break; + case 85: iSet = 5; break; + case 86: iSet = 6; break; + case 91: iSet = 30; break; + case 92: iSet = 31; break; + case 93: iSet = 32; break; + case 94: iSet = 33; break; + case 95: iSet = 51; break; + case 96: iSet = 52; break; + case 97: iSet = 53; break; + case 98: iSet = 54; break; + case 99: iSet = 55; break; + default: break; + } + + MusicBackgroundStop(GetArea(oUser)); + MusicBackgroundChangeDay(GetArea(oUser), iSet); + MusicBackgroundChangeNight(GetArea(oUser), iSet); + MusicBackgroundPlay(GetArea(oUser)); + return; +} + +//////////////////////////////////////////////////////////////////////// +//This function is for the DMFI Encounter Wand +void Spawn(string sCreature, location lCreature, int iTF = FALSE) +{ + CreateObject(OBJECT_TYPE_CREATURE, sCreature, lCreature, iTF); +} + +//////////////////////////////////////////////////////////////////////// +void CopyMon(object oMon, location lEncounter) +{ + object oCreature = CopyObject(oMon, lEncounter); + effect eEffect = GetFirstEffect(oMon); + while (GetIsEffectValid(eEffect)) + { + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oCreature); + eEffect = GetNextEffect(oMon); + } +} + +//////////////////////////////////////////////////////////////////////// +void CreateCustomEncounter(string Template, location lEncounter) +{ + object oWP = GetWaypointByTag(Template); + int n = 1; + object oMon = GetNearestCreatureToLocation(CREATURE_TYPE_IS_ALIVE, TRUE, GetLocation(oWP), n); + + while (GetIsObjectValid(oMon) && (GetDistanceBetween(oWP, oMon)<8.0) && (n<9)) + { + DelayCommand(IntToFloat(n), CopyMon(oMon, lEncounter)); + n=n+1; + oMon = GetNearestCreatureToLocation(CREATURE_TYPE_IS_ALIVE, TRUE, GetLocation(oWP), n); + } +} + +//////////////////////////////////////////////////////////////////////// +void CreateEncounter(int iEncounter, location lEncounter, object oUser) +{ + SetLocalInt(oUser, "EncounterType", iEncounter); + switch (iEncounter) + { + case 11: //Animal - Low Badger Encounter + SetLocalString(oUser, "EncounterName", "Low Badger"); + CreateObject(OBJECT_TYPE_CREATURE, "NW_BADGER", lEncounter, FALSE); + DelayCommand(1.0f, Spawn("NW_BADGER", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BADGER", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BADGER", lEncounter, FALSE)); + break; + case 12: //Animal - Low Canine Encounter + SetLocalString(oUser, "EncounterName", "Low Canine"); + CreateObject(OBJECT_TYPE_CREATURE, "NW_WOLF", lEncounter, FALSE); + DelayCommand(1.0f, Spawn("NW_WOLF", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_WOLF", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_WOLF", lEncounter, FALSE)); + break; + case 13: //Animal - Low Feline Encounter + SetLocalString(oUser, "EncounterName", "Low Feline"); + CreateObject(OBJECT_TYPE_CREATURE, "NW_COUGAR", lEncounter, FALSE); + DelayCommand(1.0f, Spawn("NW_COUGAR", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_COUGAR", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_COUGAR", lEncounter, FALSE)); + break; + case 14: //Animal - Low Bear Encounter + SetLocalString(oUser, "EncounterName", "Low Bear (Boss)"); + CreateObject(OBJECT_TYPE_CREATURE, "NW_BEARBLCK", lEncounter, FALSE); + DelayCommand(1.0f, Spawn("NW_BEARBLCK", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BEARBLCK", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BEARBRWN", lEncounter, FALSE)); + break; + case 15: //Animal - Boar Encounter + SetLocalString(oUser, "EncounterName", "Boar (Boss)"); + CreateObject(OBJECT_TYPE_CREATURE, "NW_BOAR", lEncounter, FALSE); + DelayCommand(1.0f, Spawn("NW_BOAR", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BOAR", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BOARDIRE", lEncounter, FALSE)); + break; + case 16: //Animal - Medium Feline Encounter + SetLocalString(oUser, "EncounterName", "Medium Feline"); + CreateObject(OBJECT_TYPE_CREATURE, "NW_LION", lEncounter, FALSE); + DelayCommand(1.0f, Spawn("NW_LION", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_LION", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_LION", lEncounter, FALSE)); + break; + case 17: //Animal - High Canine Encounter + SetLocalString(oUser, "EncounterName", "High Canine"); + CreateObject(OBJECT_TYPE_CREATURE, "NW_DIREWOLF", lEncounter, FALSE); + DelayCommand(1.0f, Spawn("NW_DIREWOLF", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_DIREWOLF", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_DIREWOLF", lEncounter, FALSE)); + break; + case 18: //Animal - High Feline Encounter + SetLocalString(oUser, "EncounterName", "High Feline"); + CreateObject(OBJECT_TYPE_CREATURE, "NW_DIRETIGER", lEncounter, FALSE); + DelayCommand(1.0f, Spawn("NW_BEASTMALAR001", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BEASTMALAR001", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BEASTMALAR001", lEncounter, FALSE)); + break; + case 19: //Animal - High Bear Encounter + SetLocalString(oUser, "EncounterName", "High Bear"); + CreateObject(OBJECT_TYPE_CREATURE, "NW_BEARDIRE", lEncounter, FALSE); + DelayCommand(1.0f, Spawn("NW_BEARDIRE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BEARDIRE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BEARDIREBOSS", lEncounter, FALSE)); + break; + + case 21: //Construct - Flesh Golem + SetLocalString(oUser, "EncounterName", "Flesh Golem"); + DelayCommand(1.0f, Spawn("NW_GOLFLESH", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GOLFLESH", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GOLFLESH", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GOLFLESH", lEncounter, FALSE)); + break; + case 22: //Construct - Minogan + SetLocalString(oUser, "EncounterName", "Minogon"); + DelayCommand(1.0f, Spawn("NW_MINOGON", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_MINOGON", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_MINOGON", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_MINOGON", lEncounter, FALSE)); + break; + case 23: //Construct - Clay Golem + SetLocalString(oUser, "EncounterName", "Clay Golem"); + DelayCommand(1.0f, Spawn("NW_GolClay", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GolClay", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GolClay", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GolClay", lEncounter, FALSE)); + break; + case 24: //Construct - Bone Golem + SetLocalString(oUser, "EncounterName", "Bone Golem"); + DelayCommand(1.0f, Spawn("NW_GolBone", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GolBone", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GolBone", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GolBone", lEncounter, FALSE)); + break; + case 25: //Construct - Helmed Horror + SetLocalString(oUser, "EncounterName", "Helmed Horror"); + DelayCommand(1.0f, Spawn("NW_HELMHORR", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_HELMHORR", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_HELMHORR", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_HELMHORR", lEncounter, FALSE)); + break; + case 26: //Construct - Stone Golem + SetLocalString(oUser, "EncounterName", "Stone Golem"); + DelayCommand(1.0f, Spawn("NW_GOLSTONE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GOLSTONE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GOLSTONE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GOLSTONE", lEncounter, FALSE)); + break; + case 27: //Construct - Battle Horror + SetLocalString(oUser, "EncounterName", "Battle Horror"); + DelayCommand(1.0f, Spawn("NW_BATHORROR", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BATHORROR", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BATHORROR", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_BATHORROR", lEncounter, FALSE)); + break; + case 28: //Construct - Shield Guardian + SetLocalString(oUser, "EncounterName", "Shield Guardian"); + DelayCommand(1.0f, Spawn("NW_SHGUARD", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_SHGUARD", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_SHGUARD", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_SHGUARD", lEncounter, FALSE)); + break; + case 29: //Construct - Iron Golem + SetLocalString(oUser, "EncounterName", "Iron Golem"); + DelayCommand(1.0f, Spawn("NW_GOLIRON", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GOLIRON", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GOLIRON", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GOLIRON", lEncounter, FALSE)); + break; + case 31: //Dragon - Adult White Dragon + SetLocalString(oUser, "EncounterName", "Adult White Dragon"); + DelayCommand(1.0f, Spawn("NW_DRGWHITE001", lEncounter, FALSE)); + break; + case 32: //Dragon - Adult Black Dragon + SetLocalString(oUser, "EncounterName", "Adult Black Dragon"); + DelayCommand(1.0f, Spawn("NW_DRGBLACK001", lEncounter, FALSE)); + break; + case 33: //Dragon - Adult Green Dragon + SetLocalString(oUser, "EncounterName", "Adult Green Dragon"); + DelayCommand(1.0f, Spawn("NW_DRGGREEN001", lEncounter, FALSE)); + break; + case 34: //Dragon - Adult Blue Dragon + SetLocalString(oUser, "EncounterName", "Adult Blue Dragon"); + DelayCommand(1.0f, Spawn("NW_DRGBLUE001", lEncounter, FALSE)); + break; + case 35: //Dragon - Adult Red Dragon + SetLocalString(oUser, "EncounterName", "Adult Red Dragon"); + DelayCommand(1.0f, Spawn("NW_DRGRED001", lEncounter, FALSE)); + break; + case 36: //Dragon - Old White Dragon + SetLocalString(oUser, "EncounterName", "Old White Dragon"); + DelayCommand(1.0f, Spawn("NW_DRGWHITE002", lEncounter, FALSE)); + break; + case 37: //Dragon - Old Blue Dragon + SetLocalString(oUser, "EncounterName", "Old Blue Dragon"); + DelayCommand(1.0f, Spawn("NW_DRGBLUE002", lEncounter, FALSE)); + break; + case 38: //Dragon - Old Red Dragon + SetLocalString(oUser, "EncounterName", "Old Red Dragon"); + DelayCommand(1.0f, Spawn("NW_DRGRED002", lEncounter, FALSE)); + break; + case 39: //Dragon - Ancient Red Dragon + SetLocalString(oUser, "EncounterName", "Ancient Red Dragon"); + DelayCommand(1.0f, Spawn("NW_DRGRED003", lEncounter, FALSE)); + break; + case 41: //Elemental - Air Elemental + SetLocalString(oUser, "EncounterName", "Air Elemental"); + DelayCommand(1.0f, Spawn("NW_AIR", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_AIR", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_AIR", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_AIR", lEncounter, FALSE)); + break; + case 42: //Elemental - Earth Elemental + SetLocalString(oUser, "EncounterName", "Earth Elemental"); + DelayCommand(1.0f, Spawn("NW_EARTH", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_EARTH", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_EARTH", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_EARTH", lEncounter, FALSE)); + break; + case 43: //Elemental - Fire Elemental + SetLocalString(oUser, "EncounterName", "Fire Elemental"); + DelayCommand(1.0f, Spawn("NW_FIRE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_FIRE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_FIRE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_FIRE", lEncounter, FALSE)); + break; + case 44: //Elemental - Water Elemental + SetLocalString(oUser, "EncounterName", "Water Elemental"); + DelayCommand(1.0f, Spawn("NW_WATER", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_WATER", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_WATER", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_WATER", lEncounter, FALSE)); + break; + case 45: //Elemental - Huge Air Elemental + SetLocalString(oUser, "EncounterName", "Huge Air Elemental"); + DelayCommand(1.0f, Spawn("NW_AIRHUGE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_AIRHUGE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_AIRHUGE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_AIRHUGE", lEncounter, FALSE)); + break; + case 46: //Elemental - Huge Earth Elemental + SetLocalString(oUser, "EncounterName", "Huge Earth Elemental"); + DelayCommand(1.0f, Spawn("NW_EARTHHUGE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_EARTHHUGE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_EARTHHUGE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_EARTHHUGE", lEncounter, FALSE)); + break; + case 47: //Elemental - Huge Fire Elemental + SetLocalString(oUser, "EncounterName", "Huge Fire Elemental"); + DelayCommand(1.0f, Spawn("NW_FIREHUGE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_FIREHUGE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_FIREHUGE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_FIREHUGE", lEncounter, FALSE)); + break; + case 48: //Elemental - Huge Water Elemental + SetLocalString(oUser, "EncounterName", "Huge Water Elemental"); + DelayCommand(1.0f, Spawn("NW_WATERHUGE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_WATERHUGE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_WATERHUGE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_WATERHUGE", lEncounter, FALSE)); + break; + case 49: //Elemental - Elemental Swarm + SetLocalString(oUser, "EncounterName", "Elemental Swarm"); + DelayCommand(1.0f, Spawn("NW_AIRGREAT", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_EARTHGREAT", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_FIREGREAT", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_WATERGREAT", lEncounter, FALSE)); + break; + case 51: //Giant - Low Ogre + SetLocalString(oUser, "EncounterName", "Low Ogre"); + DelayCommand(1.0f, Spawn("NW_OGRE01", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_OGRE01", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_OGRE02", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_OGRE02", lEncounter, FALSE)); + break; + case 52: //Giant - Low Troll + SetLocalString(oUser, "EncounterName", "Low Troll"); + DelayCommand(1.0f, Spawn("NW_TROLL", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_TROLL", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_TROLL", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_TROLL", lEncounter, FALSE)); + break; + case 53: //Giant - High Ogre + SetLocalString(oUser, "EncounterName", "High Ogre"); + DelayCommand(1.0f, Spawn("NW_OGRECHIEF01", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_OGRECHIEF02", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_OGRECHIEF01", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_OGREMAGE02", lEncounter, FALSE)); + break; + case 54: //Giant - High Troll + SetLocalString(oUser, "EncounterName", "High Troll"); + DelayCommand(1.0f, Spawn("NW_TROLLCHIEF", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_TROLLCHIEF", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_TROLLWIZ", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_TROLLWIZ", lEncounter, FALSE)); + break; + case 55: //Giant - Ettin + SetLocalString(oUser, "EncounterName", "Ettin"); + DelayCommand(1.0f, Spawn("NW_ETTIN", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_ETTIN", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_ETTIN", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_ETTIN", lEncounter, FALSE)); + break; + case 56: //Giant - Hill Giant + SetLocalString(oUser, "EncounterName", "Hill Giant"); + DelayCommand(1.0f, Spawn("NW_GNTHILL", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GNTHILL", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GNTMOUNT", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GNTMOUNT", lEncounter, FALSE)); + break; + case 57: //Giant - Frost Giant + SetLocalString(oUser, "EncounterName", "Frost Giant"); + DelayCommand(1.0f, Spawn("NW_GNTFROST", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GNTFROST", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GNTFROST", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GNTFROST", lEncounter, FALSE)); + break; + case 58: //Giant - Fire Giant + SetLocalString(oUser, "EncounterName", "Fire Giant"); + DelayCommand(1.0f, Spawn("NW_GNTFIRE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GNTFIRE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GNTFIRE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GNTFIRE", lEncounter, FALSE)); + break; + case 59: //Giant - Ogre Mage (Boss) + SetLocalString(oUser, "EncounterName", "Ogre Mage (Boss)"); + DelayCommand(1.0f, Spawn("nw_ogreboss", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("nw_ogreboss", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_OGREMAGEBOSS", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_OGREMAGEBOSS", lEncounter, FALSE)); + break; + case 61: //Humanoid - Goblin + SetLocalString(oUser, "EncounterName", "Goblin"); + DelayCommand(1.0f, Spawn("NW_GOBLINA", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GOBLINA", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GOBLINA", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GOBLINB", lEncounter, FALSE)); + break; + case 62: //Humanoid - Kobold + SetLocalString(oUser, "EncounterName", "Kobold"); + DelayCommand(1.0f, Spawn("NW_KOBOLD002", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_KOBOLD002", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_KOBOLD002", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_KOBOLD001", lEncounter, FALSE)); + break; + case 63: //Humanoid - Low Orc + SetLocalString(oUser, "EncounterName", "Low Orc"); + DelayCommand(1.0f, Spawn("NW_ORCB", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_ORCA", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_ORCA", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_ORCA", lEncounter, FALSE)); + break; + case 64: //Humanoid - High Orc (Wiz) + SetLocalString(oUser, "EncounterName", "High Orc (Wiz)"); + DelayCommand(1.0f, Spawn("NW_OrcChiefA", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_ORCCHIEFB", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_ORCCHIEFB", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_ORCWIZA", lEncounter, FALSE)); + break; + case 65: //Humanoid - Bugbear + SetLocalString(oUser, "EncounterName", "Bugbear"); + DelayCommand(1.0f, Spawn("NW_BUGBEARA", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BUGBEARA", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BUGBEARA", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_BUGBEARB", lEncounter, FALSE)); + break; + case 66: //Humanoid - Lizardfolk + SetLocalString(oUser, "EncounterName", "Lizardfolk"); + DelayCommand(1.0f, Spawn("NW_OLDWARRA", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_OLDWARRA", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_OLDWARRA", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_OLDWARB", lEncounter, FALSE)); + break; + case 67: //Humanoid - Minotaur (Wiz) + SetLocalString(oUser, "EncounterName", "Minotaur (Wiz)"); + DelayCommand(1.0f, Spawn("NW_MINOTAUR", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_MINOTAUR", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_MINOTAUR", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_MINWIZ", lEncounter, FALSE)); + break; + case 68: //Humanoid - Fey + SetLocalString(oUser, "EncounterName", "Fey (Mixed)"); + DelayCommand(1.0f, Spawn("NW_GRIG", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GRIG", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_PIXIE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_PIXIE", lEncounter, FALSE)); + break; + case 69: //Humanoid - Yuan-Ti (Mixed) + SetLocalString(oUser, "EncounterName", "Yuan-Ti (Mixed)"); + DelayCommand(1.0f, Spawn("NW_YUAN_TI001", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_YUAN_TI001", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_YUAN_TI002", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_YUAN_TI003", lEncounter, FALSE)); + break; + case 71: //Insects - Fire Beetle + SetLocalString(oUser, "EncounterName", "Fire Beetle"); + DelayCommand(1.0f, Spawn("NW_BTLFIRE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BTLFIRE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BTLFIRE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_BTLFIRE", lEncounter, FALSE)); + break; + case 72: //Insects - Spitting Fire Beetle + SetLocalString(oUser, "EncounterName", "Spitting Fire Beetle"); + DelayCommand(1.0f, Spawn("NW_BTLFIRE02", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BTLFIRE02", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BTLFIRE02", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_BTLFIRE02", lEncounter, FALSE)); + break; + case 73: //Insects - Low Beetle (Mixed) + SetLocalString(oUser, "EncounterName", "Low Beetle (Mixed)"); + DelayCommand(1.0f, Spawn("NW_BTLBOMB", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BTLBOMB", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BTLSTINK", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_BTLFIRE02", lEncounter, FALSE)); + break; + case 74: //Insects - Giant Spider + SetLocalString(oUser, "EncounterName", "Giant Spider"); + DelayCommand(1.0f, Spawn("NW_SPIDGIANT", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_SPIDGIANT", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_SPIDGIANT", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_SPIDGIANT", lEncounter, FALSE)); + break; + case 75: //Insects - Sword Spider + SetLocalString(oUser, "EncounterName", "Sword Spider"); + DelayCommand(1.0f, Spawn("NW_SPIDSWRD", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_SPIDSWRD", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_SPIDSWRD", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_SPIDSWRD", lEncounter, FALSE)); + break; + case 76: //Insects - Wraith Spider + SetLocalString(oUser, "EncounterName", "Wraith Spider"); + DelayCommand(1.0f, Spawn("NW_SPIDWRA", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_SPIDWRA", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_SPIDWRA", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_SPIDWRA", lEncounter, FALSE)); + break; + case 77: //Insects - Stag Beetle + SetLocalString(oUser, "EncounterName", "Stag Beetle"); + DelayCommand(1.0f, Spawn("NW_BTLSTAG", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BTLSTAG", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BTLSTAG", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_BTLSTAG", lEncounter, FALSE)); + break; + case 78: //Insects - Dire Spider + SetLocalString(oUser, "EncounterName", "Dire Spider"); + DelayCommand(1.0f, Spawn("NW_SPIDDIRE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_SPIDDIRE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_SPIDDIRE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_SPIDDIRE", lEncounter, FALSE)); + break; + case 79: //Insects - Queen Spider + SetLocalString(oUser, "EncounterName", "Queen Spider"); + DelayCommand(1.0f, Spawn("NW_SPIDERBOSS", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_SPIDERBOSS", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_SPIDERBOSS", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_SPIDERBOSS", lEncounter, FALSE)); + break; + case 81: //Undead - Low Zombie + SetLocalString(oUser, "EncounterName", "Zombie"); + DelayCommand(1.0f, Spawn("NW_ZOMBIE01", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_ZOMBIE02", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_ZOMBIE01", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_ZOMBIE02", lEncounter, FALSE)); + break; + case 82: //Undead - Low Skeleton + SetLocalString(oUser, "EncounterName", "Low Skeleton"); + DelayCommand(1.0f, Spawn("NW_SKELETON", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_SKELETON", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_SKELETON", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_SKELETON", lEncounter, FALSE)); + break; + case 83: //Undead - Ghoul + SetLocalString(oUser, "EncounterName", "Ghoul"); + DelayCommand(1.0f, Spawn("NW_GHOUL", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GHOUL", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GHOUL", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GHOUL", lEncounter, FALSE)); + break; + case 84: //Undead - Shadow + SetLocalString(oUser, "EncounterName", "Shadow"); + DelayCommand(1.0f, Spawn("NW_SHADOW", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_SHADOW", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_SHADOW", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_SHADOW", lEncounter, FALSE)); + break; + case 85: //Undead - Mummy + SetLocalString(oUser, "EncounterName", "Mummy"); + DelayCommand(1.0f, Spawn("NW_MUMMY", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_MUMMY", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_MUMMY", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_MUMMY", lEncounter, FALSE)); + break; + case 86: //Undead - High Skeleton + SetLocalString(oUser, "EncounterName", "High Skeleton (Mixed)"); + DelayCommand(1.0f, Spawn("NW_SKELWARR01", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_SKELWARR02", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_SKELMAGE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_SKELPRIEST", lEncounter, FALSE)); + break; + case 87: //Undead - Curst (Mixed) + SetLocalString(oUser, "EncounterName", "Curst (Mixed)"); + DelayCommand(1.0f, Spawn("NW_CURST001", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_CURST002", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_CURST003", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_CURST004", lEncounter, FALSE)); + break; + case 88: //Undead - Doom Knight + SetLocalString(oUser, "EncounterName", "Doom Knight"); + DelayCommand(1.0f, Spawn("NW_DOOMKGHT", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_DOOMKGHT", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_DOOMKGHT", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_DOOMKGHT", lEncounter, FALSE)); + break; + case 89: //Undead - Vampire (Mixed) + SetLocalString(oUser, "EncounterName", "Vampire (Mixed)"); + DelayCommand(1.0f, Spawn("NW_VAMPIRE001", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_VAMPIRE002", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_VAMPIRE003", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_VAMPIRE004", lEncounter, FALSE)); + break; + case 91: //NPC - Low Gypsy + SetLocalString(oUser, "EncounterName", "Low Gypsy"); + DelayCommand(1.0f, Spawn("NW_GYPMALE", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_GYPMALE", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_GYPFEMALE", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_GYPFEMALE", lEncounter, FALSE)); + break; + case 92: //NPC - Low Bandit + SetLocalString(oUser, "EncounterName", "Low Bandit"); + DelayCommand(1.0f, Spawn("NW_BANDIT001", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BANDIT001", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BANDIT001", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_BANDIT002", lEncounter, FALSE)); + break; + case 93: //NPC - Medium Bandit (Mixed) + SetLocalString(oUser, "EncounterName", "Medium Bandit (Mixed)"); + DelayCommand(1.0f, Spawn("NW_BANDIT005", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_BANDIT002", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_BANDIT003", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_BANDIT004", lEncounter, FALSE)); + break; + case 94: //NPC - Low Mercenary (Mixed) + SetLocalString(oUser, "EncounterName", "Low Mercenary (Mixed)"); + DelayCommand(1.0f, Spawn("NW_HUMANMERC001", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_HALFMERC001", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_DWARFMERC001", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_ELFMERC001", lEncounter, FALSE)); + break; + case 95: //NPC - Elf Ranger + SetLocalString(oUser, "EncounterName", "Elf Ranger"); + DelayCommand(1.0f, Spawn("NW_ELFRANGER005", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_ELFRANGER005", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_ELFRANGER005", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_ELFRANGER005", lEncounter, FALSE)); + break; + case 96: //NPC - Low Drow (Mixed) + SetLocalString(oUser, "EncounterName", "Low Drow (Mixed)"); + DelayCommand(1.0f, Spawn("NW_DROWFIGHT005", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_DROWMAGE005", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_DROWROGUE005", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_DROWCLER005", lEncounter, FALSE)); + break; + case 97: //NPC - Medium Mercenary (Mixed) + SetLocalString(oUser, "EncounterName", "Medium Mercenary (Mixed)"); + DelayCommand(1.0f, Spawn("NW_HUMANMERC004", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_HALFMERC004", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_DWARFMERC004", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_ELFMERC004", lEncounter, FALSE)); + break; + case 98: //NPC - High Drow (Mixed) + SetLocalString(oUser, "EncounterName", "High Drow (Mixed)"); + DelayCommand(1.0f, Spawn("NW_DROWFIGHT020", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_DROWMAGE020", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_DROWROGUE020", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_DROWCLER020", lEncounter, FALSE)); + break; + case 99: //NPC - High Mercenary (Mixed) + SetLocalString(oUser, "EncounterName", "High Mercenary (Mixed)"); + DelayCommand(1.0f, Spawn("NW_HUMANMERC006", lEncounter, FALSE)); + DelayCommand(2.0f, Spawn("NW_HALFMERC006", lEncounter, FALSE)); + DelayCommand(3.0f, Spawn("NW_DWARFMERC006", lEncounter, FALSE)); + DelayCommand(4.0f, Spawn("NW_ELFMERC006", lEncounter, FALSE)); + break; + case 101: // Custom Encounters + CreateCustomEncounter("DMFI_E1", lEncounter); break; + case 102: CreateCustomEncounter("DMFI_E2", lEncounter); break; + case 103: CreateCustomEncounter("DMFI_E3", lEncounter); break; + case 104: CreateCustomEncounter("DMFI_E4", lEncounter); break; + case 105: CreateCustomEncounter("DMFI_E5", lEncounter); break; + case 106: CreateCustomEncounter("DMFI_E6", lEncounter); break; + case 107: CreateCustomEncounter("DMFI_E7", lEncounter); break; + case 108: CreateCustomEncounter("DMFI_E8", lEncounter); break; + case 109: CreateCustomEncounter("DMFI_E9", lEncounter); break; + default: + break; + } + return; +} + +//////////////////////////////////////////////////////////////////////// +//An FX Wand function +void FXWand_Firestorm(object oDM) +{ + + // FireStorm Effect + location lDMLoc = GetLocation ( oDM); + + + // tell the DM object to rain fire and destruction + AssignCommand ( oDM, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect ( VFX_FNF_METEOR_SWARM), lDMLoc)); + AssignCommand ( oDM, DelayCommand (1.0, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect (VFX_FNF_SCREEN_SHAKE), lDMLoc))); + + // create some fires + object oTargetArea = GetArea(oDM); + int nXPos, nYPos, nCount; + for (nCount = 0; nCount < 15; nCount++) + { + nXPos = Random(30) - 15; + nYPos = Random(30) - 15; + + vector vNewVector = GetPosition(oDM); + vNewVector.x += nXPos; + vNewVector.y += nYPos; + + location lFireLoc = Location(oTargetArea, vNewVector, 0.0); + object oFire = CreateObject ( OBJECT_TYPE_PLACEABLE, "plc_flamelarge", lFireLoc, FALSE); + object oDust = CreateObject ( OBJECT_TYPE_PLACEABLE, "plc_dustplume", lFireLoc, FALSE); + DelayCommand ( 10.0, DestroyObject ( oFire)); + DelayCommand ( 14.0, DestroyObject ( oDust)); + } + +} + +//////////////////////////////////////////////////////////////////////// +//An FX Wand function +void FXWand_Earthquake(object oDM) +{ + // Earthquake Effect by Jhenne, 06/29/02 + // declare variables used for targetting and commands. + location lDMLoc = GetLocation ( oDM); + + // tell the DM object to shake the screen + AssignCommand( oDM, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), lDMLoc)); + AssignCommand ( oDM, DelayCommand( 2.8, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect ( VFX_FNF_SCREEN_BUMP), lDMLoc))); + AssignCommand ( oDM, DelayCommand( 3.0, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect ( VFX_FNF_SCREEN_SHAKE), lDMLoc))); + AssignCommand ( oDM, DelayCommand( 4.5, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect ( VFX_FNF_SCREEN_BUMP), lDMLoc))); + AssignCommand ( oDM, DelayCommand( 5.8, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect ( VFX_FNF_SCREEN_BUMP), lDMLoc))); + // tell the DM object to play an earthquake sound + AssignCommand ( oDM, PlaySound ("as_cv_boomdist1")); + AssignCommand ( oDM, DelayCommand ( 2.0, PlaySound ("as_wt_thunderds3"))); + AssignCommand ( oDM, DelayCommand ( 4.0, PlaySound ("as_cv_boomdist1"))); + // create a dust plume at the DM and clicking location + object oTargetArea = GetArea(oDM); + int nXPos, nYPos, nCount; + for (nCount = 0; nCount < 15; nCount++) + { + nXPos = Random(30) - 15; + nYPos = Random(30) - 15; + + vector vNewVector = GetPosition(oDM); + vNewVector.x += nXPos; + vNewVector.y += nYPos; + + location lDustLoc = Location(oTargetArea, vNewVector, 0.0); + object oDust = CreateObject ( OBJECT_TYPE_PLACEABLE, "plc_dustplume", lDustLoc, FALSE); + DelayCommand ( 4.0, DestroyObject ( oDust)); + } +} + +//////////////////////////////////////////////////////////////////////// +//An FX Wand function +void FXWand_Lightning(object oDM, location lDMLoc) +{ + // Lightning Strike by Jhenne. 06/29/02 + // tell the DM object to create a Lightning visual effect at targetted location + AssignCommand( oDM, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_M), lDMLoc)); + // tell the DM object to play a thunderclap + AssignCommand ( oDM, PlaySound ("as_wt_thundercl3")); + // create a scorch mark where the lightning hit + object oScorch = CreateObject ( OBJECT_TYPE_PLACEABLE, "plc_weathmark", lDMLoc, FALSE); + object oTargetArea = GetArea(oDM); + int nXPos, nYPos, nCount; + for (nCount = 0; nCount < 5; nCount++) + { + nXPos = Random(10) - 5; + nYPos = Random(10) - 5; + + vector vNewVector = GetPositionFromLocation(lDMLoc); + vNewVector.x += nXPos; + vNewVector.y += nYPos; + + location lNewLoc = Location(oTargetArea, vNewVector, 0.0); + AssignCommand( oDM, ApplyEffectAtLocation ( DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_S), lNewLoc)); + } + DelayCommand ( 20.0, DestroyObject ( oScorch)); +} + +//////////////////////////////////////////////////////////////////////// +void FnFEffect(object oUser, int iVFX, location lEffect, float fDelay) +{ + if (fDelay>2.0) FloatingTextStringOnCreature("Delay effect created", oUser, FALSE); + DelayCommand( fDelay, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(iVFX),lEffect)); +} + +//////////////////////////////////////////////////////////////////////// +void CreateEffects(int iEffect, location lEffect, object oUser) +{ + float fDelay; + float fDuration; + float fBeamDuration; + object oTarget; + + if (GetIsDMPossessed(oUser)) + { + fDelay = GetLocalFloat(GetMaster(oUser), "dmfi_effectdelay"); + fDuration = GetLocalFloat(GetMaster(oUser), "dmfi_effectduration"); + fBeamDuration = GetLocalFloat(GetMaster(oUser), "dmfi_beamduration"); + } + else + { + fDelay = GetLocalFloat(oUser, "dmfi_effectdelay"); + fDuration = GetLocalFloat(oUser, "dmfi_effectduration"); + fBeamDuration = GetLocalFloat(oUser, "dmfi_beamduration"); + } + + if (!GetIsObjectValid(GetLocalObject(oUser, "dmfi_univ_target"))) + oTarget = oUser; + else + oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + switch (iEffect) + { + //SoU/HotU Duration Effects(must have a target) + case 101: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BIGBYS_CLENCHED_FIST), oTarget, fDuration); break; + case 102: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BIGBYS_CRUSHING_HAND), oTarget, fDuration); break; + case 103: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BIGBYS_GRASPING_HAND), oTarget, fDuration); break; + case 104: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BIGBYS_INTERPOSING_HAND), oTarget, fDuration); break; + case 105: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_ICESKIN), oTarget, fDuration); break; + case 106: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_INFERNO), oTarget, fDuration); break; + case 107: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PIXIEDUST), oTarget, fDuration); break; + case 108: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY), oTarget, fDuration); break; + case 109: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_FREEZE_ANIMATION), oTarget, fDuration); break; + case 100: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_GHOSTLY_PULSE), oTarget, fDuration); break; + //Magical Duration Effects + case 10: ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_CALTROPS),lEffect, fDuration); break; + case 11: ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_TENTACLE),lEffect, fDuration); break; + case 12: ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_WEB_MASS),lEffect, fDuration); break; + case 13: FnFEffect(oUser, VFX_FNF_GAS_EXPLOSION_MIND,lEffect, fDelay); break; + case 14: FnFEffect(oUser, VFX_FNF_LOS_HOLY_30,lEffect, fDelay); break; + case 15: FnFEffect(oUser, VFX_FNF_LOS_EVIL_30,lEffect, fDelay); break; + case 16: FnFEffect(oUser, VFX_FNF_SMOKE_PUFF,lEffect, fDelay); break; + case 17: FnFEffect(oUser, VFX_FNF_GAS_EXPLOSION_NATURE,lEffect, fDelay); break; + case 18: FnFEffect(oUser, VFX_FNF_DISPEL_DISJUNCTION,lEffect, fDelay); break; + case 19: FnFEffect(oUser, VFX_FNF_GAS_EXPLOSION_EVIL,lEffect, fDelay); break; + //Magical Status Effects (must have a target) + case 21: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PROT_BARKSKIN), oTarget, fDuration); break; + case 22: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PROT_GREATER_STONESKIN), oTarget, fDuration); break; + case 23: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_ENTANGLE), oTarget, fDuration); break; + case 24: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_ETHEREAL_VISAGE), oTarget, fDuration); break; + case 25: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_GHOSTLY_VISAGE), oTarget, fDuration); break; + case 26: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_INVISIBILITY), oTarget, fDuration); break; + case 27: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BARD_SONG), oTarget, fDuration); break; + case 28: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY), oTarget, fDuration); break; + case 29: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PARALYZED), oTarget, fDuration); break; + case 20: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PROT_SHADOW_ARMOR), oTarget, fDuration); break; + //Magical Burst Effects + case 31: FnFEffect(oUser, VFX_FNF_FIREBALL,lEffect, fDelay); break; + case 32: FnFEffect(oUser, VFX_FNF_FIRESTORM,lEffect, fDelay); break; + case 33: FnFEffect(oUser, VFX_FNF_HORRID_WILTING,lEffect, fDelay); break; + case 34: FnFEffect(oUser, VFX_FNF_HOWL_WAR_CRY,lEffect, fDelay); break; + case 35: FnFEffect(oUser, VFX_FNF_IMPLOSION,lEffect, fDelay); break; + case 36: FnFEffect(oUser, VFX_FNF_PWKILL,lEffect, fDelay); break; + case 37: FnFEffect(oUser, VFX_FNF_PWSTUN,lEffect, fDelay); break; + case 38: FnFEffect(oUser, VFX_FNF_SOUND_BURST,lEffect, fDelay); break; + case 39: FnFEffect(oUser, VFX_FNF_STRIKE_HOLY,lEffect, fDelay); break; + case 30: FnFEffect(oUser, VFX_FNF_WORD,lEffect, fDelay); break; + //Lighting Effects + case 41: ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BLACKOUT),lEffect, fDuration); break; + case 42: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_ANTI_LIGHT_10),oTarget, fDuration); break; + case 43: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_BLUE_20),oTarget, fDuration); break; + case 44: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_GREY_20),oTarget, fDuration); break; + case 45: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_ORANGE_20),oTarget, fDuration); break; + case 46: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_PURPLE_20),oTarget, fDuration); break; + case 47: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_RED_20),oTarget, fDuration); break; + case 48: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_WHITE_20),oTarget, fDuration); break; + case 49: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_YELLOW_20),oTarget, fDuration); break; + //Beam Effects + case 50: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_CHAIN, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 51: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_COLD, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 52: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_EVIL, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 53: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_FIRE, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 54: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_FIRE_LASH, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 55: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_HOLY, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 56: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_LIGHTNING, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 57: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_MIND, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 58: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_ODD, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 59: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_COLD, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_EVIL, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_FIRE, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_FIRE_LASH, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_HOLY, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_LIGHTNING, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_MIND, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_ODD, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + + //Environmental Effects + case 60: FnFEffect(oUser, VFX_FNF_NATURES_BALANCE,lEffect, fDelay);break; + case 61: FXWand_Lightning(oTarget, lEffect); break; + case 62: FXWand_Firestorm(oTarget); break; + case 63: FXWand_Earthquake(oTarget); break; + case 64: FnFEffect(oUser, VFX_FNF_ICESTORM,lEffect, fDelay); break; + case 65: FnFEffect(oUser, VFX_FNF_SUNBEAM,lEffect, fDelay); break; + case 66: SetWeather(GetArea(oUser), WEATHER_CLEAR); break; + case 67: SetWeather(GetArea(oUser), WEATHER_RAIN); break; + case 68: SetWeather(GetArea(oUser), WEATHER_SNOW); break; + case 69: SetWeather(GetArea(oUser), WEATHER_USE_AREA_SETTINGS); break; + //Summon Effects + case 71: FnFEffect(oUser, VFX_FNF_SUMMON_MONSTER_1,lEffect, fDelay); break; + case 72: FnFEffect(oUser, VFX_FNF_SUMMON_MONSTER_2,lEffect, fDelay); break; + case 73: FnFEffect(oUser, VFX_FNF_SUMMON_MONSTER_3,lEffect, fDelay); break; + case 74: FnFEffect(oUser, VFX_FNF_SUMMON_CELESTIAL,lEffect, fDelay); break; + case 75: FnFEffect(oUser, VFX_FNF_SUMMONDRAGON,lEffect, fDelay); break; + case 76: FnFEffect(oUser, VFX_FNF_SUMMON_EPIC_UNDEAD,lEffect, fDelay); break; + case 77: FnFEffect(oUser, VFX_FNF_SUMMON_GATE,lEffect, fDelay); break; + case 78: FnFEffect(oUser, VFX_FNF_SUMMON_UNDEAD,lEffect, fDelay); break; + case 79: FnFEffect(oUser, VFX_FNF_UNDEAD_DRAGON,lEffect, fDelay); break; + case 70: FnFEffect(oUser, VFX_FNF_WAIL_O_BANSHEES,lEffect, fDelay); break; + //SoU/HotU Effects + case 80: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(322), oTarget, fDuration); break; + case 81: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(132), oTarget, fDuration); break; + case 82: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(133), oTarget, fDuration); break; + case 83: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(136), oTarget, fDuration); break; + case 84: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(137), oTarget, fDuration); break; + case 85: FnFEffect(oUser, VFX_FNF_DEMON_HAND,lEffect, fDelay); break; + case 86: FnFEffect(oUser, VFX_FNF_ELECTRIC_EXPLOSION,lEffect, fDelay); break; + case 87: FnFEffect(oUser, VFX_FNF_GREATER_RUIN,lEffect, fDelay); break; + case 88: FnFEffect(oUser, VFX_FNF_MYSTICAL_EXPLOSION,lEffect, fDelay); break; + case 89: FnFEffect(oUser, VFX_FNF_SWINGING_BLADE,lEffect, fDelay); break; + //Settings + case 91: + SetLocalString(oUser, "EffectSetting", "dmfi_effectduration"); + CreateSetting(oUser); + break; + case 92: + SetLocalString(oUser, "EffectSetting", "dmfi_effectdelay"); + CreateSetting(oUser); + break; + case 93: + SetLocalString(oUser, "EffectSetting", "dmfi_beamduration"); + CreateSetting(oUser); + break; + case 94: //Change Day Music + iDayMusic = MusicBackgroundGetDayTrack(GetArea(oUser)) + 1; + if (iDayMusic > 33) iDayMusic = 49; + if (iDayMusic > 55) iDayMusic = 1; + MusicBackgroundStop(GetArea(oUser)); + MusicBackgroundChangeDay(GetArea(oUser), iDayMusic); + MusicBackgroundPlay(GetArea(oUser)); + break; + case 95: //Change Night Music + iNightMusic = MusicBackgroundGetDayTrack(GetArea(oUser)) + 1; + if (iNightMusic > 33) iNightMusic = 49; + if (iNightMusic > 55) iNightMusic = 1; + MusicBackgroundStop(GetArea(oUser)); + MusicBackgroundChangeNight(GetArea(oUser), iNightMusic); + MusicBackgroundPlay(GetArea(oUser)); + break; + case 96: //Play Background Music + MusicBackgroundPlay(GetArea(oUser)); + break; + case 97: //Stop Background Music + MusicBackgroundStop(GetArea(oUser)); + break; + case 98: //Change and Play Battle Music + iBattleMusic = MusicBackgroundGetBattleTrack(GetArea(oUser)) + 1; + if (iBattleMusic < 34 || iBattleMusic > 48) iBattleMusic = 34; + MusicBattleStop(GetArea(oUser)); + MusicBattleChange(GetArea(oUser), iBattleMusic); + MusicBattlePlay(GetArea(oUser)); + break; + case 99: //Stop Battle Music + MusicBattleStop(GetArea(oUser)); + break; + + default: break; + } + DeleteLocalObject(oUser, "EffectTarget"); + return; +} + +//////////////////////////////////////////////////////////////////////// +//This function is for the DMFI Emote Wand +void DoEmoteFunction(int iEmote, object oUser) +{ + object oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + if (!GetIsObjectValid(oTarget)) + oTarget = oUser; + float fDur = 9999.0f; //Duration + + switch (iEmote) + { + case 1: AssignCommand(oTarget, PlayAnimation( ANIMATION_FIREFORGET_DODGE_SIDE, 1.0)); break; + case 2: AssignCommand(oTarget, PlayAnimation( ANIMATION_FIREFORGET_DRINK, 1.0)); break; + case 3: AssignCommand(oTarget, PlayAnimation( ANIMATION_FIREFORGET_DODGE_DUCK, 1.0)); break; + case 4: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_DEAD_BACK, 1.0, fDur)); break; + case 5: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_DEAD_FRONT, 1.0, fDur)); break; + case 6: AssignCommand(oTarget, PlayAnimation( ANIMATION_FIREFORGET_READ, 1.0)); DelayCommand(3.0f, AssignCommand(oTarget, PlayAnimation( ANIMATION_FIREFORGET_READ, 1.0)));break; + case 7: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_SIT_CROSS, 1.0, fDur)); break; + case 81: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_TALK_PLEADING, 1.0, fDur)); break; + case 82: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_CONJURE1, 1.0, fDur)); break; + case 83: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_CONJURE2, 1.0, fDur)); break; + case 84: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_GET_LOW, 1.0, fDur)); break; + case 85: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_GET_MID, 1.0, fDur)); break; + case 86: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_MEDITATE, 1.0, fDur)); break; + case 87: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_TALK_FORCEFUL, 1.0, fDur)); break; + case 88: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_WORSHIP, 1.0, fDur)); break; + case 10: if (!GetLocalInt(oTarget, "hls_emotemute")) FloatingTextStringOnCreature("*emote* commands are off", oTarget, FALSE); + else FloatingTextStringOnCreature("*emote* commands are on", oTarget, FALSE); + SetLocalInt(oTarget, "hls_emotemute", abs(GetLocalInt(oTarget, "hls_emotemute") - 1)); break; + case 91: EmoteDance(oTarget); break; + case 92: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_PAUSE_DRUNK, 1.0, fDur)); break; + case 93: AssignCommand(oTarget, ActionForceFollowObject(GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, oTarget), 2.0f)); break; + case 94: SitInNearestChair(oTarget); break; + case 95: AssignCommand(oTarget, ActionPlayAnimation( ANIMATION_LOOPING_SIT_CROSS, 1.0, fDur)); DelayCommand(1.0f, AssignCommand(oTarget, PlayAnimation( ANIMATION_FIREFORGET_DRINK, 1.0))); DelayCommand(3.0f, AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_SIT_CROSS, 1.0, fDur)));break; + case 96: AssignCommand(oTarget, ActionPlayAnimation( ANIMATION_LOOPING_SIT_CROSS, 1.0, fDur)); DelayCommand(1.0f, AssignCommand(oTarget, PlayAnimation( ANIMATION_FIREFORGET_READ, 1.0))); DelayCommand(3.0f, AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_SIT_CROSS, 1.0, fDur)));break; + case 97: AssignCommand(oTarget, PlayAnimation( ANIMATION_LOOPING_SPASM, 1.0, fDur)); break; + case 98: SmokePipe(oTarget); break; + default: break; + } +} + +//////////////////////////////////////////////////////////////////////// +void DoBuff (int iChoice, object oUser) +{ + int nChoice = 0; + string sType; + object oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + int Party = GetLocalInt(oUser, "dmfi_buff_party"); + int CL; + int nSpell1 = SPELL_ALL_SPELLS; + int nSpell2 = SPELL_ALL_SPELLS; + int nSpell3 = SPELL_ALL_SPELLS; + + + switch (iChoice) + { + case 10: nChoice = -1; break; + case 11: nChoice = SPELL_AURA_OF_VITALITY; break; + case 12: nChoice = SPELL_BARKSKIN; break; + case 13: nChoice = SPELL_BATTLETIDE; break; + case 14: nChoice = SPELL_BLESS; break; + case 16: nChoice = SPELL_CLAIRAUDIENCE_AND_CLAIRVOYANCE; break; + case 17: nChoice = SPELL_CLARITY; break; + case 18: nChoice = SPELL_DEATH_WARD; break; + case 19: nChoice = SPELL_DISPLACEMENT; break; + case 20: nChoice = -1; break; + case 21: nChoice = SPELL_DIVINE_FAVOR; break; + case 22: nChoice = SPELL_DIVINE_POWER; break; + case 23: nChoice = SPELL_ENDURE_ELEMENTS; break; + case 24: nChoice = SPELL_ENTROPIC_SHIELD; break; + case 25: nChoice = SPELL_ELEMENTAL_SHIELD; break; + case 26: nChoice = SPELL_ENERGY_BUFFER; break; + case 27: nChoice = SPELL_ETHEREAL_VISAGE; break; + case 28: nChoice = SPELL_GHOSTLY_VISAGE; break; + case 29: nChoice = SPELL_GLOBE_OF_INVULNERABILITY; break; + case 30: nChoice = -1; break; + case 31: nChoice = SPELL_SANCTUARY; break; + case 32: nChoice = SPELL_GREATER_STONESKIN; break; + case 33: nChoice = SPELL_GREATER_SPELL_MANTLE; break; + case 34: nChoice = SPELL_HASTE; break; + case 35: nChoice = SPELL_INVISIBILITY; break; + case 36: nChoice = SPELL_IMPROVED_INVISIBILITY; break; + case 37: nChoice = SPELL_LESSER_MIND_BLANK;break; + case 38: nChoice = SPELL_LESSER_SPELL_MANTLE; break; + case 39: nChoice = SPELL_MAGE_ARMOR; break; + case 40: nChoice = -1; break; + case 41: nChoice = SPELL_MESTILS_ACID_SHEATH; break; + case 42: nChoice = SPELL_MONSTROUS_REGENERATION; break; + case 43: nChoice = SPELL_PRAYER; break; + case 44: nChoice = SPELL_PREMONITION; break; + case 45: nChoice = SPELL_PROTECTION_FROM_ELEMENTS; break; + case 46: nChoice = SPELL_PROTECTION_FROM_SPELLS; break; + case 47: nChoice = SPELL_REGENERATE; break; + case 48: nChoice = SPELL_RESIST_ELEMENTS; break; + case 49: nChoice = SPELL_SHADOW_SHIELD; break; + case 50: nChoice = -1; break; + case 51: nChoice = SPELL_SHIELD; break; + case 52: nChoice = SPELL_SPELL_MANTLE; break; + case 53: nChoice = SPELL_SPELL_RESISTANCE; break; + case 54: nChoice = SPELL_STONE_BONES; break; + case 55: nChoice = SPELL_STONESKIN; break; + case 56: nChoice = SPELL_TENSERS_TRANSFORMATION; break; + case 57: nChoice = SPELL_TRUE_SEEING; break; + case 58: nChoice = SPELL_DARKNESS; break; + case 59: nChoice = SPELL_WAR_CRY; break; + case 60: nChoice = -1; break; + case 61: sType = "BARD_DEF"; break; + case 62: sType = "BARD_OFF"; break; + case 63: sType = "CLERIC_DEF"; break; + case 64: sType = "CLERIC_OFF"; break; + case 65: sType = "DRUID_DEF"; break; + case 66: sType = "DRUID_OFF"; break; + case 67: sType = "MAGE_DEF"; break; + case 68: sType = "MAGE_OFF"; break; + case 70: nChoice = -1; break; + case 71: sType = "ARMOR"; break; + case 72: sType = "ELEMENTAL"; break; + case 73: sType = "INVIS"; break; + case 74: sType = "MELEE"; break; + case 75: sType = "MIND"; break; + case 76: sType = "SHIELD"; break; + case 77: sType = "SP_PROT"; break; + case 78: sType = "STEALTH"; break; + + case 81: DMFI_NextTarget(oTarget, oUser); nChoice = -1; break; + case 82: SetLocalString(oUser, "dmfi_buff_level", "LOW"); nChoice = -1; + FloatingTextStringOnCreature("Buff level LOW", oUser); + SetCustomToken(20782, "Low"); + SetDMFIPersistentString("dmfi", "dmfi_buff_level", "LOW", oUser); + break; + case 83: SetLocalString(oUser, "dmfi_buff_level", "MID"); nChoice = -1; + FloatingTextStringOnCreature("Buff level MID", oUser); + SetCustomToken(20782, "Mid"); + SetDMFIPersistentString("dmfi", "dmfi_buff_level", "MID", oUser); + break; + case 84: SetLocalString(oUser, "dmfi_buff_level", "HIGH"); nChoice = -1; + FloatingTextStringOnCreature("Buff level HIGH", oUser); + SetCustomToken(20782, "High"); + SetDMFIPersistentString("dmfi", "dmfi_buff_level", "HIGH", oUser); + break; + case 85: SetLocalString(oUser, "dmfi_buff_level", "EPIC"); nChoice = -1; + FloatingTextStringOnCreature("Buff level EPIC", oUser); + SetCustomToken(20782, "Epic"); + SetDMFIPersistentString("dmfi", "dmfi_buff_level", "EPIC", oUser); + break; + case 86: { + if (GetLocalInt(oUser, "dmfi_buff_party")==1) + { + SetLocalInt(oUser, "dmfi_buff_party", 0); + FloatingTextStringOnCreature("Buff set to single target", oUser); + SetCustomToken(20783, "Single Target"); + SetDMFIPersistentInt("dmfi","dmfi_buff_party", 0, oUser); + } + else + { + SetLocalInt(oUser, "dmfi_buff_party", 1); + FloatingTextStringOnCreature("Buff set to party mode", oUser); + SetCustomToken(20783, "Party"); + SetDMFIPersistentInt("dmfi","dmfi_buff_party", 1, oUser); + } + } + case 80: nChoice = -1; break; + default: nChoice = -1; break; + } + + + if (nChoice==-1) + return; + +//set caster level based on set level + string sLevel = GetLocalString(oUser, "dmfi_buff_level"); + + if (sLevel == "LOW") CL = 5; + else if (sLevel == "MID") CL = 10; + else if (sLevel == "HIGH") CL = 15; + else if (sLevel == "EPIC") CL = 20; + + if (nChoice == 0) //only get here if nChoice NOT set + { + string BUFF_TYPE = sType + "_" + sLevel; + + if (BUFF_TYPE == "BARD_DEF_LOW") + { + nSpell1 = SPELL_RESISTANCE; + nSpell2 = SPELL_MAGE_ARMOR; + nSpell3 = SPELL_GHOSTLY_VISAGE; + } + else if (BUFF_TYPE =="BARD_OFF_LOW") + { + nSpell1 = SPELL_BULLS_STRENGTH; + nSpell2 = SPELL_MAGE_ARMOR; + nSpell3 = SPELL_MAGIC_WEAPON; + } + else if (BUFF_TYPE == "BARD_DEF_MID") + { + nSpell1 = SPELL_IMPROVED_INVISIBILITY; + nSpell2 = SPELL_GHOSTLY_VISAGE; + nSpell3 = SPELL_CLARITY; + } + else if (BUFF_TYPE == "BARD_OFF_MID") + { + nSpell1 = SPELL_WAR_CRY; + nSpell2 = SPELL_SUMMON_CREATURE_V; + nSpell3 = SPELL_ETHEREAL_VISAGE; + } + else if (BUFF_TYPE == "BARD_DEF_HIGH") + { + nSpell1 = SPELL_ETHEREAL_VISAGE; + nSpell2 = SPELL_IMPROVED_INVISIBILITY; + nSpell3 = SPELL_HASTE; + } + else if (BUFF_TYPE == "BARD_OFF_HIGH") + { + nSpell1 = SPELL_ETHEREAL_VISAGE; + nSpell2 = SPELL_SUMMON_CREATURE_V; + nSpell3 = SPELL_WAR_CRY; + } + else if (BUFF_TYPE == "BARD_DEF_EPIC") + { + nSpell1 = SPELL_ETHEREAL_VISAGE; + nSpell2 = SPELL_ENERGY_BUFFER; + nSpell3 = SPELL_IMPROVED_INVISIBILITY; + } + else if (BUFF_TYPE == "BARD_OFF_EPIC") + { + nSpell1 = SPELL_ETHEREAL_VISAGE; + nSpell2 = SPELL_SUMMON_CREATURE_VI; + nSpell3 = SPELL_MASS_HASTE; + } + + else if (BUFF_TYPE == "MAGE_DEF_LOW") + { + nSpell1 = SPELL_CLARITY; + nSpell2 = SPELL_GHOSTLY_VISAGE; + nSpell3 = SPELL_PROTECTION_FROM_ELEMENTS; + } + else if (BUFF_TYPE == "MAGE_OFF_LOW") + { + nSpell1 = SPELL_GHOSTLY_VISAGE; + nSpell2 = SPELL_DEATH_ARMOR; + nSpell3 = SPELL_HASTE; + } + else if (BUFF_TYPE == "MAGE_DEF_MID") + { + nSpell1 = SPELL_LESSER_SPELL_MANTLE; + nSpell2 = SPELL_STONESKIN; + nSpell3 = SPELL_ELEMENTAL_SHIELD; + } + else if (BUFF_TYPE == "MAGE_OFF_MID") + { + nSpell1 = SPELL_SPELL_MANTLE; + nSpell2 = SPELL_IMPROVED_INVISIBILITY; + nSpell3 = SPELL_SUMMON_CREATURE_V; + } + else if (BUFF_TYPE == "MAGE_DEF_HIGH") + { + nSpell1 = SPELL_SPELL_MANTLE; + nSpell2 = SPELL_SANCTUARY; + nSpell3 = SPELL_MINOR_GLOBE_OF_INVULNERABILITY; + } + else if (BUFF_TYPE == "MAGE_OFF_HIGH") + { + nSpell1 = SPELL_ETHEREAL_VISAGE; + nSpell2 = SPELL_SUMMON_CREATURE_VIII; + nSpell3 = SPELL_SPELL_MANTLE; + } + else if (BUFF_TYPE == "MAGE_DEF_EPIC") + { + nSpell1 = SPELL_PREMONITION; + nSpell2 = SPELL_SPELL_MANTLE; + nSpell3 = SPELL_GLOBE_OF_INVULNERABILITY; + } + else if (BUFF_TYPE == "MAGE_OFF_EPIC") + { + nSpell1 = SPELL_PREMONITION; + nSpell2 = SPELL_MORDENKAINENS_SWORD; + nSpell3 = SPELL_GLOBE_OF_INVULNERABILITY; + } + else if (BUFF_TYPE == "CLERIC_DEF_LOW") + { + nSpell1 = SPELL_PROTECTION_FROM_ELEMENTS; + nSpell2 = SPELL_CLARITY; + nSpell3 = SPELL_DARKVISION; + } + else if (BUFF_TYPE == "CLERIC_OFF_LOW") + { + nSpell1 = SPELL_PRAYER; + nSpell2 = SPELL_MAGIC_VESTMENT; + nSpell3 = SPELL_BULLS_STRENGTH; + } + else if (BUFF_TYPE == "CLERIC_MID_DEF") + { + nSpell1 = SPELL_SANCTUARY; + nSpell2 = SPELL_SPELL_RESISTANCE; + nSpell3 = SPELL_TRUE_SEEING; + } + else if (BUFF_TYPE == "CLERIC_OFF_MID") + { + nSpell1 = SPELL_SUMMON_CREATURE_VI; + nSpell2 = SPELL_BATTLETIDE; + nSpell3 = SPELL_MONSTROUS_REGENERATION; + } + else if (BUFF_TYPE == "CLERIC_DEF_HIGH") + { + nSpell1 = SPELL_SANCTUARY; + nSpell2 = SPELL_REGENERATE; + nSpell3 = SPELL_MONSTROUS_REGENERATION; + } + else if (BUFF_TYPE == "CLERIC_OFF_HIGH") + { + nSpell1 = SPELL_SUMMON_CREATURE_VIII; + nSpell2 = SPELL_REGENERATE; + nSpell3 = SPELL_BATTLETIDE; + } + else if (BUFF_TYPE == "CLERIC_DEF_EPIC") + { + nSpell1 = SPELL_UNDEATHS_ETERNAL_FOE; + nSpell2 = SPELL_REGENERATE; + nSpell3 = SPELL_SANCTUARY; + } + else if (BUFF_TYPE == "CLERIC_OFF_EPIC") + { + nSpell1 = SPELL_SUMMON_CREATURE_IX; + nSpell2 = SPELL_REGENERATE; + nSpell3 = SPELL_BATTLETIDE; + } + else if (BUFF_TYPE == "DRUID_DEF_LOW") + { + nSpell1 = SPELL_PROTECTION_FROM_ELEMENTS; + nSpell2 = SPELL_BARKSKIN; + nSpell3 = SPELL_ONE_WITH_THE_LAND; + } + else if (BUFF_TYPE == "DRUID_OFF_LOW") + { + nSpell1 = SPELL_GREATER_MAGIC_FANG; + nSpell2 = SPELL_BULLS_STRENGTH; + nSpell3 = SPELL_BLOOD_FRENZY; + } + else if (BUFF_TYPE == "DRUID_DEF_MID") + { + nSpell1 = SPELL_SPELL_RESISTANCE; + nSpell2 = SPELL_MONSTROUS_REGENERATION; + nSpell3 = SPELL_STONESKIN; + } + else if (BUFF_TYPE == "DRUID_OFF_MID") + { + nSpell1 = SPELL_STONESKIN; + nSpell2 = SPELL_FREEDOM_OF_MOVEMENT; + nSpell3 = SPELL_MASS_CAMOFLAGE; + } + else if (BUFF_TYPE == "DRUID_DEF_HIGH") + { + nSpell1 = SPELL_PREMONITION; + nSpell2 = SPELL_TRUE_SEEING; + nSpell3 = SPELL_GREATER_STONESKIN; + } + else if (BUFF_TYPE == "DRUID_OFF_HIGH") + { + nSpell1 = SPELL_SUMMON_CREATURE_VIII; + nSpell2 = SPELL_AURA_OF_VITALITY; + nSpell3 = SPELL_ENERGY_BUFFER; + } + else if (BUFF_TYPE == "DRUID_DEF_EPIC") + { + nSpell1 = SPELL_ELEMENTAL_SWARM; + nSpell2 = SPELL_PREMONITION; + nSpell3 = SPELL_TRUE_SEEING; + } + else if (BUFF_TYPE == "DRUID_OFF_EPIC") + { + nSpell1 = SPELL_PREMONITION; + nSpell2 = SPELL_SHAPECHANGE; + nSpell3 = SPELL_AURA_OF_VITALITY; + } + else if (BUFF_TYPE == "AMROR_LOW") + { + nSpell1 = SPELL_MAGE_ARMOR; + nSpell2 = SPELL_INVISIBILITY_PURGE; + } + else if (BUFF_TYPE == "ARMOR_MID") + { + nSpell1 = SPELL_MAGE_ARMOR; + nSpell2 = SPELL_DARKVISION; + nSpell3 = SPELL_INVISIBILITY_PURGE; + } + else if (BUFF_TYPE == "ARMOR_HIGH") + { + nSpell1 = SPELL_MAGE_ARMOR; + nSpell2 = SPELL_STONESKIN; + nSpell3 = SPELL_GHOSTLY_VISAGE; + } + else if (BUFF_TYPE == "ARMOR_EPIC") + { + nSpell1 = SPELL_GHOSTLY_VISAGE; + nSpell2 = SPELL_MAGE_ARMOR; + nSpell3 = SPELL_PREMONITION; + } + else if (BUFF_TYPE == "ELEMENTAL_LOW") + { + nSpell1 = SPELL_RESISTANCE; + nSpell2 = SPELL_ENDURE_ELEMENTS; + nSpell3 = SPELL_ENDURANCE; + } + else if (BUFF_TYPE == "ELEMENTAL_MID") + { + nSpell1 = SPELL_RESISTANCE; + nSpell2 = SPELL_RESIST_ELEMENTS; + nSpell3 = SPELL_ENDURANCE; + } + else if (BUFF_TYPE == "ELEMENTAL_HIGH") + { + nSpell1 = SPELL_ENDURANCE; + nSpell2 = SPELL_STONESKIN; + nSpell3 = SPELL_PROTECTION_FROM_ELEMENTS; + } + else if (BUFF_TYPE == "ELEMENTAL_EPIC") + { + nSpell1 = SPELL_STONESKIN; + nSpell2 = SPELL_ENERGY_BUFFER; + nSpell3 = SPELL_ENDURANCE; + } + else if (BUFF_TYPE == "INVIS_LOW") + { + nSpell1 = SPELL_CATS_GRACE; + nSpell2 = SPELL_INVISIBILITY; + } + else if (BUFF_TYPE == "INVIS_MID") + { + nSpell1 = SPELL_CATS_GRACE; + nSpell2 = SPELL_MAGE_ARMOR; + nSpell3 = SPELL_INVISIBILITY_SPHERE; + } + else if (BUFF_TYPE == "INVIS_HIGH") + { + nSpell1 = SPELL_MAGE_ARMOR; + nSpell2 = SPELL_CATS_GRACE; + nSpell3 = SPELL_IMPROVED_INVISIBILITY; + } + else if (BUFF_TYPE == "INVIS_EPIC") + { + nSpell1 = SPELL_MAGE_ARMOR; + nSpell2 = SPELL_HASTE; + nSpell3 = SPELL_SANCTUARY; + } + else if (BUFF_TYPE == "MELEE_LOW") + { + nSpell1 = SPELL_MAGIC_WEAPON; + nSpell2 = SPELL_BULLS_STRENGTH; + nSpell3 = SPELL_STONE_BONES; + } + else if (BUFF_TYPE == "MELEE_MID") + { + nSpell1 = SPELL_BULLS_STRENGTH; + nSpell2 = SPELL_STONESKIN; + nSpell3 = SPELL_GREATER_MAGIC_WEAPON; + } + else if (BUFF_TYPE == "MELEE_HIGH") + { + nSpell1 = SPELL_ENDURANCE; + nSpell2 = SPELL_GREATER_STONESKIN; + nSpell3 = SPELL_KEEN_EDGE; + } + else if (BUFF_TYPE == "MELEE_EPIC") + { + nSpell1 = SPELL_TENSERS_TRANSFORMATION; + nSpell2 = SPELL_PREMONITION; + nSpell3 = SPELL_BULLS_STRENGTH; + } + else if (BUFF_TYPE == "MIND_LOW") + { + nSpell1 = SPELL_RESISTANCE; + nSpell2 = SPELL_CLARITY; + } + else if (BUFF_TYPE == "MIND_MID") + { + nSpell1 = SPELL_RESISTANCE; + nSpell2 = SPELL_OWLS_WISDOM; + nSpell3 = SPELL_LESSER_MIND_BLANK; + } + else if (BUFF_TYPE == "MIND_HIGH") + { + nSpell1 = SPELL_OWLS_WISDOM; + nSpell2 = SPELL_MAGE_ARMOR; + nSpell3 = SPELL_LESSER_MIND_BLANK; + } + else if (BUFF_TYPE == "MIND_EPIC") + { + nSpell1 = SPELL_OWLS_WISDOM; + nSpell2 = SPELL_LESSER_MIND_BLANK; + nSpell3 = SPELL_HASTE; + } + else if (BUFF_TYPE == "SHIELD_LOW") + { + nSpell1 = SPELL_SHIELD; + nSpell2 = SPELL_INVISIBILITY; + } + else if (BUFF_TYPE == "SHIELD_MID") + { + nSpell1 = SPELL_SHIELD; + nSpell2 = SPELL_PRAYER; + nSpell3 = SPELL_INVISIBILITY_SPHERE; + } + else if (BUFF_TYPE == "SHIELD_HIGH") + { + nSpell1 = SPELL_SHIELD; + nSpell2 = SPELL_GHOSTLY_VISAGE; + nSpell3 = SPELL_ELEMENTAL_SHIELD; + } + else if (BUFF_TYPE == "SHIELD_EPIC") + { + nSpell1 = SPELL_SHIELD; + nSpell2 = SPELL_SHADOW_SHIELD; + nSpell3 = SPELL_SPELL_MANTLE; + } + else if (BUFF_TYPE == "SP_PROT_LOW") + { + nSpell1 = SPELL_SHIELD; + nSpell2 = SPELL_RESISTANCE; + nSpell3 = SPELL_GHOSTLY_VISAGE; + } + else if (BUFF_TYPE == "SP_PROT_MID") + { + nSpell1 = SPELL_RESISTANCE; + nSpell2 = SPELL_SHIELD; + nSpell3 = SPELL_LESSER_SPELL_MANTLE; + } + else if (BUFF_TYPE == "SP_PROT_HIGH") + { + nSpell1 = SPELL_SHIELD; + nSpell2 = SPELL_ETHEREAL_VISAGE; + nSpell3 = SPELL_GLOBE_OF_INVULNERABILITY; + } + else if (BUFF_TYPE == "SP_PROT_EPIC") + { + nSpell1 = SPELL_PROTECTION_FROM_SPELLS; + nSpell2 = SPELL_GREATER_SPELL_MANTLE; + nSpell3 = SPELL_ETHEREAL_VISAGE; + } + else if (BUFF_TYPE == "STEALTH_LOW") + { + nSpell1 = SPELL_CATS_GRACE; + nSpell2 = SPELL_CLAIRAUDIENCE_AND_CLAIRVOYANCE; + } + else if (BUFF_TYPE == "STEALTH_MID") + { + nSpell1 = SPELL_CATS_GRACE; + nSpell2 = SPELL_CLAIRAUDIENCE_AND_CLAIRVOYANCE; + nSpell3 = SPELL_DISPLACEMENT; + } + else if (BUFF_TYPE == "STEALTH_HIGH") + { + nSpell1 = SPELL_CLAIRAUDIENCE_AND_CLAIRVOYANCE; + nSpell2 = SPELL_CATS_GRACE; + nSpell3 = SPELL_IMPROVED_INVISIBILITY; + } + else if (BUFF_TYPE == "STEALTH_EPIC") + { + nSpell1 = SPELL_CATS_GRACE; + nSpell2 = SPELL_ETHEREAL_VISAGE; + nSpell3 = SPELL_IMPROVED_INVISIBILITY; + } + } + else + { + nSpell1 = nChoice; //set up the single buffs if they were initialized by the choice + } + + string sParty = "target"; + if (Party==1) + { + sParty = "party"; + object oParty = GetFirstFactionMember(oTarget, FALSE); + while (GetIsObjectValid(oParty)) + { + AssignCommand(oTarget, ClearAllActions()); + if (nSpell1!=SPELL_ALL_SPELLS) + AssignCommand(oTarget, ActionCastSpellAtObject(nSpell1, oTarget, METAMAGIC_ANY, TRUE, CL, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + if (nSpell2!=SPELL_ALL_SPELLS) + AssignCommand(oTarget, ActionCastSpellAtObject(nSpell2, oTarget, METAMAGIC_ANY, TRUE, CL, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + if (nSpell3!=SPELL_ALL_SPELLS) + AssignCommand(oTarget, ActionCastSpellAtObject(nSpell3, oTarget, METAMAGIC_ANY, TRUE, CL, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + oParty = GetNextFactionMember (oTarget); + } + } + else + { + AssignCommand(oTarget, ClearAllActions()); + if (nSpell1!=SPELL_ALL_SPELLS) + AssignCommand(oTarget, ActionCastSpellAtObject(nSpell1, oTarget, METAMAGIC_ANY, TRUE, CL, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + if (nSpell2!=SPELL_ALL_SPELLS) + AssignCommand(oTarget, ActionCastSpellAtObject(nSpell2, oTarget, METAMAGIC_ANY, TRUE, CL, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + if (nSpell3!=SPELL_ALL_SPELLS) + AssignCommand(oTarget, ActionCastSpellAtObject(nSpell3, oTarget, METAMAGIC_ANY, TRUE, CL, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + } + SendMessageToPC(oUser, "Buffs Applied to " + sParty + ". Caster Level: " + IntToString(CL)); +} + +//////////////////////////////////////////////////////////////////////// +void ToggleRestVariable(int iCurrent, int iChange, int iDefault, string sTextMessage = "", object oUser = OBJECT_INVALID, string sArea = "") +{ + string sOnOff = "ON"; + if (iCurrent & iChange) //If the variable already exists + { + if (iDefault) + { + sOnOff = "ON"; + } + else + { + sOnOff = "OFF"; + } //Remove the variable + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sArea, iCurrent & ~iChange); + if (sTextMessage != "") + FloatingTextStringOnCreature(sTextMessage + sOnOff, oUser, FALSE); + } + else //if the variable doesn't already exist + { + if (iDefault) + { + sOnOff = "OFF"; + } + else + { + sOnOff = "ON"; + } //Add the variable + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sArea, iCurrent | iChange); + if (sTextMessage != "") + FloatingTextStringOnCreature(sTextMessage + sOnOff, oUser, FALSE); + } +} + +//////////////////////////////////////////////////////////////////////// +void DoRestFunction(int iRest, object oUser) +{ + int iCurrentMod = GetDMFIPersistentInt("dmfi", "dmfi_r_"); + object oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + object oArea = GetArea(oUser); + object oLoop; + string sAreaTag = GetTag(oArea); + int iCurrentArea = GetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag); + + switch (iRest) + { + //Rest All PCs in the area for DMs, Rest for PCs + case 7: + if (GetIsDM(oUser)) + { + oLoop = GetFirstPC(); + while (GetIsObjectValid(oLoop)) + { + if (oArea == GetArea(oLoop)) + ForceRest(oLoop); + oLoop = GetNextPC(); + } + } + else + { + SetLocalInt(oUser, "dmfi_r_bypass", TRUE); AssignCommand(oUser, ActionRest()); + SetLocalInt(oUser, "dmfi_r_init", TRUE); + int iTime = GetTimeSecond() + GetTimeMinute() * 60 + GetTimeHour() * 3600 + GetCalendarDay() * 24 * 3600 + GetCalendarMonth() *3600 * 24 * 28 + GetCalendarYear() * 24 * 28 * 12 * 3600; + SetLocalInt(oUser, "dmfi_r_startseconds", iTime); + AssignCommand(oUser, ActionRest()); + } break; + case 8: + SetLocalString(oUser, "dmfi_univ_conv", "pc_emote"); + AssignCommand(oUser, ClearAllActions()); + AssignCommand(oUser, ActionStartConversation(OBJECT_SELF, "dmfi_universal", TRUE)); break; + case 9: + SetLocalString(oUser, "dmfi_univ_conv", "pc_dicebag"); + AssignCommand(oUser, ClearAllActions()); + AssignCommand(oUser, ActionStartConversation(OBJECT_SELF, "dmfi_universal", TRUE)); break; + case 11: //Set Unlimited Rest (module): default is ON + iCurrentMod = iCurrentMod & ~0x00000002; //Remove No Rest, if it exists + //Toggle the current Unlimited Rest Variable + ToggleRestVariable(iCurrentMod, 0x00000001, TRUE, "GLOBAL: Unlimited Rest is ", oUser); break; + case 12: //Set No Rest (module): default is OFF + iCurrentMod = iCurrentMod | 0x00000001; //Remove Unlimited Rest, if it exists + //Toggle the current No Rest Variable + ToggleRestVariable(iCurrentMod, 0x00000002, FALSE, "GLOBAL: No Rest is ", oUser); break; + case 13: //Limit Rest by Time: default is OFF + ToggleRestVariable(iCurrentMod, 0x00000004, FALSE, "GLOBAL: Limited Rest - Time is ", oUser); break; + case 14: //Limit Rest by Placeables: default is OFF + ToggleRestVariable(iCurrentMod, 0x00000008, FALSE, "GLOBAL: Limited Rest - Placeables is ", oUser); break; + case 15: //Limit Rest by Armor: default is OFF + ToggleRestVariable(iCurrentMod, 0x00000010, FALSE, "GLOBAL: Limited Rest - Armor is ", oUser); break; + case 16: //Limit Hit Points healed from resting: default is OFF + ToggleRestVariable(iCurrentMod, 0x00000020, FALSE, "GLOBAL: Limit Hit Points is ", oUser); break; + case 17: //Allow spell memorization: default is ON + ToggleRestVariable(iCurrentMod, 0x00000040, TRUE, "GLOBAL: Spell Memorization is ", oUser); break; + case 21: //Set Unlimited Rest (Local) + if (iCurrentArea & 0x00000080) + iCurrentMod = iCurrentArea; + iCurrentMod = iCurrentMod & ~0x00000002; //Remove No Rest, if it exists + iCurrentMod = iCurrentMod | 0x00000080; //Add Area Override bitflag + ToggleRestVariable(iCurrentMod, 0x00000001, TRUE, "LOCAL: Unlimited Rest is ", oUser, sAreaTag); + break; + case 22: //Set No Rest (module) + if (iCurrentArea & 0x00000080) + iCurrentMod = iCurrentArea; + iCurrentMod = iCurrentMod | 0x00000001; //Remove Unlimited Rest, if it exists + iCurrentMod = iCurrentMod | 0x00000080; //Add Area Override bitflag + ToggleRestVariable(iCurrentMod, 0x00000002, FALSE, "LOCAL: No Rest is ", oUser, sAreaTag); + break; + case 23: //Limit Rest by Time: default is OFF + if (iCurrentArea & 0x00000080) + iCurrentMod = iCurrentArea; + iCurrentMod = iCurrentMod | 0x00000080; //Add Area Override bitflag + ToggleRestVariable(iCurrentMod, 0x00000004, FALSE, "LOCAL: Limited Rest - Time is ", oUser, sAreaTag); + break; + case 24: //Limit Rest by Placeables: default is OFF + if (iCurrentArea & 0x00000080) + iCurrentMod = iCurrentArea; + iCurrentMod = iCurrentMod | 0x00000080; //Add Area Override bitflag + ToggleRestVariable(iCurrentMod, 0x00000008, FALSE, "LOCAL: Limited Rest - Placeables is ", oUser, sAreaTag); + break; + case 25: //Limit Rest by Armor: default is OFF + if (iCurrentArea & 0x00000080) + iCurrentMod = iCurrentArea; + iCurrentMod = iCurrentMod | 0x00000080; //Add Area Override bitflag + ToggleRestVariable(iCurrentMod, 0x00000010, FALSE, "LOCAL: Limited Rest - Armor is ", oUser, sAreaTag); + break; + case 26: //Limit Hit Points healed from resting: default is OFF + if (iCurrentArea & 0x00000080) + iCurrentMod = iCurrentArea; + iCurrentMod = iCurrentMod | 0x00000080; //Add Area Override bitflag + ToggleRestVariable(iCurrentMod, 0x00000020, FALSE, "LOCAL: Limit Hit Points is ", oUser, sAreaTag); + break; + case 27: //Allow spell memorization: default is ON + if (iCurrentArea & 0x00000080) + iCurrentMod = iCurrentArea; + iCurrentMod = iCurrentMod | 0x00000080; //Add Area Override bitflag + ToggleRestVariable(iCurrentMod, 0x00000040, FALSE, "LOCAL: Spell Restriction is ", oUser, sAreaTag); + break; + case 28: //Reset area to module defaults + FloatingTextStringOnCreature("Area set to module defaults", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, 0x00000000); + break; + case 31: //Set Time Limit to 1 game hour per day + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Time Limit set to 1 game hour per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00000100); + } + else + { + iCurrentMod = iCurrentMod & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Time Limit set to 1 game hour per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00000100); + } break; + case 32: //Set Time Limit to 2 game hours per day + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Time Limit set to 2 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00000200); + } + else + { + iCurrentMod = iCurrentMod & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Time Limit set to 2 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00000200); + } break; + case 33: //Set Time Limit to 4 game hours per day + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Time Limit set to 4 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00000300); + } + else + { + iCurrentMod = iCurrentMod & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Time Limit set to 4 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00000300); + } break; + case 34: //Set Time Limit to 6 game hours per day + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Time Limit set to 6 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00000400); + } + else + { + iCurrentMod = iCurrentMod & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Time Limit set to 6 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00000400); + } break; + case 35: //Set Time Limit to 8 game hours per day + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Time Limit set to 8 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00000500); + } + else + { + iCurrentMod = iCurrentMod & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Time Limit set to 8 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00000500); + } break; + case 36: //Set Time Limit to 12 game hours per day + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Time Limit set to 12 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00000600); + } + else + { + iCurrentMod = iCurrentMod & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Time Limit set to 12 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00000600); + } break; + case 37: //Set Time Limit to 24 game hours per day + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Time Limit set to 24 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00000700); + } + else + { + iCurrentMod = iCurrentMod & ~0x00000f00; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Time Limit set to 24 game hours per rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00000700); + } + case 41: //Toggle placeable flag: DMFI Placeables (tag = dmfi_rest), by default ON + if (iCurrentArea & 0x00000080) + ToggleRestVariable(iCurrentArea, 0x00001000, TRUE, "LOCAL: DMFI Placeables are ", oUser, sAreaTag); + else + ToggleRestVariable(iCurrentMod, 0x00001000, TRUE, "GLOBAL: DMFI Placeables are ", oUser); + break; + case 42: //Toggle placeable flag: Campfires + if (iCurrentArea & 0x00000080) + ToggleRestVariable(iCurrentArea, 0x00002000, FALSE, "LOCAL: Campfire Placeables are ", oUser, sAreaTag); + else + ToggleRestVariable(iCurrentMod, 0x00002000, FALSE, "GLOBAL: Campfire Placeables are ", oUser); + break; + case 43: //Toggle placeable flag: Bed Rolls + if (iCurrentArea & 0x00000080) + ToggleRestVariable(iCurrentArea, 0x00004000, FALSE, "LOCAL: Bed Roll Placeables are ", oUser, sAreaTag); + else + ToggleRestVariable(iCurrentMod, 0x00004000, FALSE, "GLOBAL: Bed Roll Placeables are ", oUser); + break; + case 44: //Toggle placeable flag: Beds + if (iCurrentArea & 0x00000080) + ToggleRestVariable(iCurrentArea, 0x00008000, FALSE, "LOCAL: Bed Placeables are ", oUser, sAreaTag); + else + ToggleRestVariable(iCurrentMod, 0x00008000, FALSE, "GLOBAL: Bed Placeables are ", oUser); + break; + case 45: //Toggle placeable flag: Tents + if (iCurrentArea & 0x00000080) + ToggleRestVariable(iCurrentArea, 0x00010000, FALSE, "LOCAL: Tent Placeables are ", oUser, sAreaTag); + else + ToggleRestVariable(iCurrentMod, 0x00010000, FALSE, "GLOBAL: Tent Placeables are ", oUser); + break; + case 46: //Toggle placeable flag: Ignore Druids + if (iCurrentArea & 0x00000080) + ToggleRestVariable(iCurrentArea, 0x00020000, FALSE, "LOCAL: Ignore Druids for Placeable Checks is ", oUser, sAreaTag); + else + ToggleRestVariable(iCurrentMod, 0x00020000, FALSE, "GLOBAL: Ignore Druids for Placeable Checks is ", oUser); + break; + case 47: //Toggle placeable flag: Ignore Rangers + if (iCurrentArea & 0x00000080) + ToggleRestVariable(iCurrentArea, 0x00040000, FALSE, "LOCAL: Ignore Rangers for Placeable Checks is ", oUser, sAreaTag); + else + ToggleRestVariable(iCurrentMod, 0x00040000, FALSE, "GLOBAL: Ignore Rangers for Placeable Checks is ", oUser); + break; + case 48: //Toggle placeable flag: Ignore Barbarians + if (iCurrentArea & 0x00000080) + ToggleRestVariable(iCurrentArea, 0x00080000, FALSE, "LOCAL: Ignore Barbarians for Placeable Checks is ", oUser, sAreaTag); + else + ToggleRestVariable(iCurrentMod, 0x00080000, FALSE, "GLOBAL: Ignore Barbarians for Placeable Checks is ", oUser); + break; + case 51: //Set Armor Weight Restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Armor Restriction set to 2 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00100000); + } + else + { + iCurrentMod = iCurrentMod & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Armor Restriction set to 2 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00100000); + } break; + case 52: //Set Armor Weight Restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Armor Restriction set to 6 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00200000); + } + else + { + iCurrentMod = iCurrentMod & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Armor Restriction set to 6 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00200000); + } break; + case 53: //Set Armor Weight Restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Armor Restriction set to 11 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00300000); + } + else + { + iCurrentMod = iCurrentMod & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Armor Restriction set to 11 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00300000); + } break; + case 54: //Set Armor Weight Restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Armor Restriction set to 16 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00400000); + } + else + { + iCurrentMod = iCurrentMod & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Armor Restriction set to 16 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00400000); + } break; + case 55: //Set Armor Weight Restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Armor Restriction set to 31 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00500000); + } + else + { + iCurrentMod = iCurrentMod & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Armor Restriction set to 31 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00500000); + } break; + case 56: //Set Armor Weight Restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Armor Restriction set to 41 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00600000); + } + else + { + iCurrentMod = iCurrentMod & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Armor Restriction set to 41 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00600000); + } break; + case 57: //Set Armor Weight Restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: Armor Restriction set to 46 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x00700000); + } + else + { + iCurrentMod = iCurrentMod & ~0x00f00000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: Armor Restriction set to 46 pounds", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x00700000); + } break; + case 61: //Set Hit Point restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: No hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x01000000); + } + else + { + iCurrentMod = iCurrentMod & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: No hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x01000000); + } break; + case 62: //Set Hit Point restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: 1 hitpoint/level regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x02000000); + } + else + { + iCurrentMod = iCurrentMod & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: 1 hitpoint/level regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x02000000); + } break; + case 63: //Set Hit Point restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: (CON) hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x03000000); + } + else + { + iCurrentMod = iCurrentMod & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: (CON) hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x03000000); + } break; + case 64: //Set Hit Point restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: 10 percent of hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x04000000); + } + else + { + iCurrentMod = iCurrentMod & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: 10 percent of hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x04000000); + } break; + case 65: //Set Hit Point restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: 25 percent of hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x05000000); + } + else + { + iCurrentMod = iCurrentMod & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: 25 percent of hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x05000000); + } break; + case 66: //Set Hit Point restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: 50 percent of hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea | 0x06000000); + } + else + { + iCurrentMod = iCurrentMod & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: 50 percent of hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod | 0x06000000); + } break; + case 67: //Set Hit Point restrictions + if (iCurrentArea & 0x00000080) + { + iCurrentArea = iCurrentArea & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("LOCAL: 100 percent of hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_" + sAreaTag, iCurrentArea); + } + else + { + iCurrentMod = iCurrentMod & ~0x0f000000; //Erase current setting + FloatingTextStringOnCreature("GLOBAL: 100 percent of hitpoints regained on rest", oUser, FALSE); + SetDMFIPersistentInt("dmfi", "dmfi_r_", iCurrentMod); + } break; + case 101: //Use Rest Conversation Toggle + if (GetIsDM(oUser)) + ToggleRestVariable(iCurrentMod, 0x10000000, TRUE, "GLOBAL: Rest Conversation is ", oUser); + else + { + SetLocalInt(oUser, "dmfi_r_alternate", ANIMATION_LOOPING_MEDITATE); SetLocalInt(oUser, "dmfi_r_bypass", TRUE); AssignCommand(oUser, ActionRest()); + } break; + case 102: //Use Rest VFX + if (GetIsDM(oUser)) + ToggleRestVariable(iCurrentMod, 0x20000000, TRUE, "GLOBAL: Rest VFX are ", oUser); + else + { + SetLocalInt(oUser, "dmfi_r_alternate", ANIMATION_LOOPING_DEAD_FRONT); SetLocalInt(oUser, "dmfi_r_bypass", TRUE); AssignCommand(oUser, ActionRest()); + } break; + case 103: //Floating Text Feedback + if (GetIsDM(oUser)) + ToggleRestVariable(iCurrentMod, 0x40000000, TRUE, "GLOBAL: Floating Text Feedback is ", oUser); + else + { + SetLocalInt(oUser, "dmfi_r_alternate", ANIMATION_LOOPING_DEAD_BACK); SetLocalInt(oUser, "dmfi_r_bypass", TRUE); AssignCommand(oUser, ActionRest()); + } break; + case 104: //Immobilized Resting + if (GetIsDM(oUser)) + ToggleRestVariable(iCurrentMod, 0x80000000, TRUE, "GLOBAL: Immobile resting is ", oUser); + else + { + SetLocalInt(oUser, "dmfi_r_alternate", ANIMATION_LOOPING_WORSHIP); SetLocalInt(oUser, "dmfi_r_bypass", TRUE); AssignCommand(oUser, ActionRest()); + } break; + case 108: //All PCs in Area are Rested + break; + case 109: //All PCs are Rested + oLoop = GetFirstPC(); + while (GetIsObjectValid(oLoop)) + { + ForceRest(oLoop); + oLoop = GetNextPC(); + } + break; + } +} + +//////////////////////////////////////////////////////////////////////// +void main() +{ + string sDMFI = GetLocalString(OBJECT_SELF, "dmfi_univ_conv"); + int iDMFI = GetLocalInt(OBJECT_SELF, "dmfi_univ_int"); + location lDMFI = GetLocalLocation(OBJECT_SELF, "dmfi_univ_location"); + if (sDMFI == "emote" || sDMFI == "pc_emote") + DoEmoteFunction(iDMFI, OBJECT_SELF); + else if (sDMFI == "fx") + CreateEffects(iDMFI, lDMFI, OBJECT_SELF); + else if (sDMFI == "encounter") + CreateEncounter(iDMFI, lDMFI, OBJECT_SELF); + else if (sDMFI == "music") + DoMusicFunction(iDMFI, OBJECT_SELF); + else if (sDMFI == "xp") + DoXPFunction(iDMFI, OBJECT_SELF); + else if (sDMFI == "server") + dmwand_DoDialogChoice(iDMFI); + else if (sDMFI == "afflict") + DoAfflictFunction(iDMFI, OBJECT_SELF); + else if (sDMFI == "voice") + DoVoiceFunction(iDMFI, OBJECT_SELF); + else if (sDMFI == "sound") + DoSoundFunction(iDMFI, OBJECT_SELF); + else if (sDMFI == "onering") + DoOneRingFunction(iDMFI, OBJECT_SELF); + else if (sDMFI == "dicebag") + DoDMDiceBagFunction(iDMFI, OBJECT_SELF); + else if (sDMFI == "pc_dicebag") + DoDiceBagFunction(iDMFI, OBJECT_SELF); + else if (sDMFI == "faction") + DoControlFunction(iDMFI, OBJECT_SELF); + else if (sDMFI == "dmw") + DoNewDMThingy(iDMFI, OBJECT_SELF); + else if (sDMFI == "buff") + DoBuff(iDMFI, OBJECT_SELF); + else if (sDMFI == "rest") + DoRestFunction(iDMFI, OBJECT_SELF); + + DeleteLocalInt(OBJECT_SELF,"Tens"); +} + diff --git a/gamma_age_v2/dmfi_exploder.uti b/gamma_age_v2/dmfi_exploder.uti new file mode 100644 index 00000000..77f39d4d Binary files /dev/null and b/gamma_age_v2/dmfi_exploder.uti differ diff --git a/gamma_age_v2/dmfi_faction.uti b/gamma_age_v2/dmfi_faction.uti new file mode 100644 index 00000000..068f1f64 Binary files /dev/null and b/gamma_age_v2/dmfi_faction.uti differ diff --git a/gamma_age_v2/dmfi_fx.uti b/gamma_age_v2/dmfi_fx.uti new file mode 100644 index 00000000..cf173f40 Binary files /dev/null and b/gamma_age_v2/dmfi_fx.uti differ diff --git a/gamma_age_v2/dmfi_getln_cbtpl.ncs b/gamma_age_v2/dmfi_getln_cbtpl.ncs new file mode 100644 index 00000000..758f1fc4 Binary files /dev/null and b/gamma_age_v2/dmfi_getln_cbtpl.ncs differ diff --git a/gamma_age_v2/dmfi_getln_cbtpl.nss b/gamma_age_v2/dmfi_getln_cbtpl.nss new file mode 100644 index 00000000..1f218c4d --- /dev/null +++ b/gamma_age_v2/dmfi_getln_cbtpl.nss @@ -0,0 +1,35 @@ +//:://///////////////////////////////////////////// +//:: DMFI - DMFI_get_line callback template +//:: dmfi_getln_cbtpl +//::////////////////////////////////////////////// +/* + A template (skeleton) function for DMFI_get_line callback processing. + + Use this template to create your script to be invoked when your scripted call + to DMFI_get_line receives input. +*/ +//::////////////////////////////////////////////// +//:: Created By: tsunami282 +//:: Created On: 2008.05.21 +//::////////////////////////////////////////////// + +void main() +{ + int nVolume = GetPCChatVolume(); + object oShouter = GetPCChatSpeaker(); + string sSaid = GetPCChatMessage(); + + // you may wish to define an "abort" input message, such as a line + // containing a single period: + if (sSaid != ".") + { + // put your code here to process the input line (in sSaid) + + } + + // after processing, you will likely want to "eat" the text line, so it is + // not spoken or available for further processing. If you want the line to + // appear, either comment out the following line, or set it to: + // SetPCChatMessage(sSaid); + SetPCChatMessage(""); +} diff --git a/gamma_age_v2/dmfi_getln_inc.nss b/gamma_age_v2/dmfi_getln_inc.nss new file mode 100644 index 00000000..d9793a0b --- /dev/null +++ b/gamma_age_v2/dmfi_getln_inc.nss @@ -0,0 +1,61 @@ + +// DMFI_get_line: generic input line processing +// +// You can use this when you want to retrieve a spoken line of text. +// +// Specify the PC you want to listen to, the channel you want to listen on +// (often the TALK channel), and the name of the script to run when a line +// of text is heard. +// +// See the file dmfi_getln_cbtbl for a sample template script for processing +// the heard line. + +#include "dmfi_plychat_inc" + +const string DMFI_GETLINE_HOOK_HANDLE_VARNAME = "dmfi_getline_hookhandle"; + +/** + * + * @author tsunami282 + * @since 1.09 + * + * @param oSpeaker PC we want to listen to. + * @param iChannel voice channel to listen on (use TALKVOLUME_ constants). + * @param sEventScriptName sEventScriptName = name of script to call upon completion + * of input (cannot be blank). + * @param oRequester object requesting the result: the sEventScriptName script + * will be invoked with this as the caller, and therefore it + * must be valid at time of player chat event. + * @return handle (positive int) of the chat event hook +*/ +int DMFI_get_line(object oSpeaker, int iChannel, string sEventScriptName, + object oRequester = OBJECT_SELF) +{ + int hdlHook = 0; + + if (GetIsObjectValid(oSpeaker) && GetIsObjectValid(oRequester) && sEventScriptName != "") + { +// SendMessageToPC(GetFirstPC(), "getline - apply hook"); + hdlHook = DMFI_ChatHookAdd(sEventScriptName, oRequester, (1 << iChannel), + FALSE, oSpeaker, TRUE); +// SendMessageToPC(GetFirstPC(), "getline - hook handle returned is " + IntToString(hdlHook)); + SetLocalInt(oRequester, DMFI_GETLINE_HOOK_HANDLE_VARNAME, hdlHook); + } + + return hdlHook; +} + +/** + * + * + * + * @param hdlHookIn handle of hook handler that we want to un-hook. + * @param oRequester object requesting the result of DMFI_get_line +*/ +void DMFI_cancel_get_line(int hdlHookIn = 0, object oRequester = OBJECT_SELF) +{ + int hdlHook = hdlHookIn; + if (hdlHook == 0) hdlHook = GetLocalInt(oRequester, DMFI_GETLINE_HOOK_HANDLE_VARNAME); + DMFI_ChatHookRemove(hdlHook); +} + diff --git a/gamma_age_v2/dmfi_init_inc.nss b/gamma_age_v2/dmfi_init_inc.nss new file mode 100644 index 00000000..bef1c87b --- /dev/null +++ b/gamma_age_v2/dmfi_init_inc.nss @@ -0,0 +1,217 @@ + +#include "dmfi_db_inc" + +const int DMFI_DEFAULT_EMOTES_MUTED = FALSE; + +int dmfiInitialize(object oUser) +{ +//*************************************INITIALIZATION CODE*************************************** +//***************************************RUNS ONE TIME *************************************** + +//voice stuff is module wide + + if (GetLocalInt(GetModule(), "dmfi_initialized") != 1) + { + SendMessageToPC(oUser,":: DMFI Wands & Widgets System ::"); + int iLoop = 20610; + string sText; + while (iLoop < 20680) + { + sText = GetDMFIPersistentString("dmfi", "hls" + IntToString(iLoop)); + SetCustomToken(iLoop, sText); + iLoop++; + } + SendMessageToAllDMs("DMFI voice custom tokens initialized."); + + SetLocalInt(GetModule(), "dmfi_initialized", 1); + } + + +//remainder of settings are user based + + if ((GetLocalInt(oUser, "dmfi_initialized")!=1) && (GetIsDM(oUser) || GetIsDMPossessed(oUser))) + { + //if you have campaign variables set - use those settings + if (GetDMFIPersistentInt("dmfi", "Settings", oUser)==1) + { + FloatingTextStringOnCreature("DMFI Settings Restored", oUser, FALSE); + // SendMessageToPC(oUser, "DMFI Settings Restored"); + + int n = GetDMFIPersistentInt("dmfi", "dmfi_alignshift", oUser); + SetCustomToken(20781, IntToString(n)); + SetLocalInt(oUser, "dmfi_alignshift", n); + SendMessageToPC(oUser, "Settings: Alignment shift: "+IntToString(n)); + + n = GetDMFIPersistentInt("dmfi", "dmfi_safe_factions", oUser); + SetLocalInt(oUser, "dmfi_safe_factions", n); + SendMessageToPC(oUser, "Settings: Factions (1 is DMFI Safe Faction): "+IntToString(n)); + + n = GetDMFIPersistentInt("dmfi", "dmfi_damagemodifier", oUser); + SetLocalInt(oUser, "dmfi_damagemodifier",n); + SendMessageToPC(oUser, "Settings: Damage Modifier: "+IntToString(n)); + + n = GetDMFIPersistentInt("dmfi","dmfi_buff_party",oUser); + SetLocalInt(oUser, "dmfi_buff_party", n); + if (n==1) + SetCustomToken(20783, "Party"); + else + SetCustomToken(20783, "Single Target"); + + SendMessageToPC(oUser, "Settings: Buff Party (1 is Party): "+IntToString(n)); + + string sLevel = GetDMFIPersistentString("dmfi", "dmfi_buff_level", oUser); + SetCustomToken(20782, sLevel); + SetLocalString(oUser, "dmfi_buff_level", sLevel); + SendMessageToPC(oUser, "Settings: Buff Level: "+ sLevel); + + n = GetDMFIPersistentInt("dmfi", "dmfi_dicebag", oUser); + SetLocalInt(oUser, "dmfi_dicebag", n); + + string sText; + if (n==0) + { + SetCustomToken(20681, "Private"); + sText = "Private"; + } + else if (n==1) + { + SetCustomToken(20681, "Global"); + sText = "Global"; + } + else if (n==2) + { + SetCustomToken(20681, "Local"); + sText = "Local"; + } + else if (n==3) + { + SetCustomToken(20681, "DM Only"); + sText = "DM Only"; + } + SendMessageToPC(oUser, "Settings: Dicebag Reporting: "+sText); + + n = GetDMFIPersistentInt("dmfi", "dmfi_dice_no_animate", oUser); + SetLocalInt(oUser, "dmfi_dice_no_animate", n); + SendMessageToPC(oUser, "Settings: Roll Animations (1 is OFF): "+IntToString(n)); + + float f = GetDMFIPersistentFloat("dmfi", "dmfi_reputation", oUser); + SetLocalFloat(oUser, "dmfi_reputation", f); + SendMessageToPC(oUser, "Settings: Reputation Adjustment: "+FloatToString(f)); + + f = GetDMFIPersistentFloat("dmfi", "dmfi_effectduration", oUser); + SetLocalFloat(oUser, "dmfi_effectduration", f); + SendMessageToPC(oUser, "Settings: Effect Duration: "+FloatToString(f)); + + f = GetDMFIPersistentFloat("dmfi", "dmfi_sound_delay", oUser); + SetLocalFloat(oUser, "dmfi_sound_delay", f); + SendMessageToPC(oUser, "Settings: Sound Delay: "+FloatToString(f)); + + f = GetDMFIPersistentFloat("dmfi", "dmfi_beamduration", oUser); + SetLocalFloat(oUser, "dmfi_beamduration", f); + SendMessageToPC(oUser, "Settings: Beam Duration: "+FloatToString(f)); + + f = GetDMFIPersistentFloat("dmfi", "dmfi_stunduration", oUser); + SetLocalFloat(oUser, "dmfi_stunduration", f); + SendMessageToPC(oUser, "Settings: Stun Duration: "+FloatToString(f)); + + f = GetDMFIPersistentFloat("dmfi", "dmfi_saveamount", oUser); + SetLocalFloat(oUser, "dmfi_saveamount", f); + SendMessageToPC(oUser, "Settings: Save Adjustment: "+FloatToString(f)); + + f = GetDMFIPersistentFloat("dmfi", "dmfi_effectdelay", oUser); + SetLocalFloat(oUser, "dmfi_effectdelay", f); + SendMessageToPC(oUser, "Settings: Effect Delay: "+FloatToString(f)); + + + } + else + { + FloatingTextStringOnCreature("DMFI Default Settings Initialized", oUser, FALSE); + // SendMessageToPC(oUser, "DMFI Default Settings Initialized"); + + //Setting FOUR campaign variables so 1st use will be slow. + //Recommend initializing your preferences with no players or + //while there is NO fighting. + // SetLocalInt(oUser, "dmfi_initialized", 1); + SetDMFIPersistentInt("dmfi", "Settings", 1, oUser); + + SetCustomToken(20781, "5"); + SetLocalInt(oUser, "dmfi_alignshift", 5); + SetDMFIPersistentInt("dmfi", "dmfi_alignshift", 5, oUser); + SendMessageToPC(oUser, "Settings: Alignment shift: 5"); + + SetCustomToken(20783, "Single Target"); + SetLocalInt(oUser, "dmfi_buff_party", 0); + SetDMFIPersistentInt("dmfi", "dmfi_buff_party", 0, oUser); + SendMessageToPC(oUser, "Settings: Buff set to Single Target: "); + + SetCustomToken(20782, "Low"); + SetLocalString(oUser, "dmfi_buff_level", "LOW"); + SetDMFIPersistentString("dmfi", "dmfi_buff_level", "LOW", oUser); + SendMessageToPC(oUser, "Settings: Buff Level set to LOW: "); + + SetLocalInt(oUser, "dmfi_dicebag", 0); + SetCustomToken(20681, "Private"); + SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 0, oUser); + SendMessageToPC(oUser, "Settings: Dicebag Rolls set to PRIVATE"); + + SetLocalInt(oUser, "", 0); + SetDMFIPersistentInt("dmfi", "dmfi_safe_factions", 0, oUser); + SendMessageToPC(oUser, "Settings: Factions set to BW base behavior"); + + SetLocalFloat(oUser, "dmfi_reputation", 5.0); + SetCustomToken(20784, "5"); + SetDMFIPersistentFloat("dmfi", "dmfi_reputation", 5.0, oUser); + SendMessageToPC(oUser, "Settings: Reputation adjustment: 5"); + + SetDMFIPersistentFloat("dmfi", "dmfi_effectduration", 60.0, oUser); + SetLocalFloat(oUser, "dmfi_effectduration", 60.0); + SetDMFIPersistentFloat("dmfi", "dmfi_sound_delay", 0.2, oUser); + SetLocalFloat(oUser, "dmfi_sound_delay", 0.2); + SetDMFIPersistentFloat("dmfi", "dmfi_beamduration", 5.0, oUser); + SetLocalFloat(oUser, "dmfi_beamduration", 5.0); + SetDMFIPersistentFloat("dmfi", "dmfi_stunduration", 1000.0, oUser); + SetLocalFloat(oUser, "dmfi_stunduration", 1000.0); + SetDMFIPersistentFloat("dmfi", "dmfi_saveamount", 5.0, oUser); + SetLocalFloat(oUser, "dmfi_saveamount", 5.0); + SetDMFIPersistentFloat("dmfi", "dmfi_effectdelay", 1.0, oUser); + SetLocalFloat(oUser, "dmfi_effectdelay", 1.0); + + SendMessageToPC(oUser, "Settings: Effect Duration: 60.0"); + SendMessageToPC(oUser, "Settings: Effect Delay: 1.0"); + SendMessageToPC(oUser, "Settings: Beam Duration: 5.0"); + SendMessageToPC(oUser, "Settings: Stun Duration: 1000.0"); + SendMessageToPC(oUser, "Settings: Sound Delay: 0.2"); + SendMessageToPC(oUser, "Settings: Save Adjustment: 5.0"); + } + } +//********************************END INITIALIZATION*************************** + + // inits for all users (DM & player) + if (GetLocalInt(oUser, "dmfi_initialized")!=1) + { + int bEmotesMuted; + if (GetDMFIPersistentInt("dmfi", "Settings", oUser)==1) + { + bEmotesMuted = GetDMFIPersistentInt("dmfi", "dmfi_emotemute", oUser); + } + else + { + bEmotesMuted = DMFI_DEFAULT_EMOTES_MUTED; + SetDMFIPersistentInt("dmfi", "dmfi_emotemute", bEmotesMuted, oUser); + } + SetLocalInt(oUser, "hls_emotemute", bEmotesMuted); + SendMessageToPC(oUser, "Settings: Emotes "+(bEmotesMuted ? "muted" : "unmuted")); + + SetLocalObject(oUser, "dmfi_VoiceTarget", OBJECT_INVALID); + SendMessageToPC(oUser, "Settings: Voice throw target cleared"); + + SetLocalObject(oUser, "dmfi_univ_target", oUser); + SendMessageToPC(oUser, "Settings: Command target set to self"); + + SetLocalInt(oUser, "dmfi_initialized", 1); + } + + return TRUE; // no errors detected +} + diff --git a/gamma_age_v2/dmfi_jail_widget.uti b/gamma_age_v2/dmfi_jail_widget.uti new file mode 100644 index 00000000..364d39f8 Binary files /dev/null and b/gamma_age_v2/dmfi_jail_widget.uti differ diff --git a/gamma_age_v2/dmfi_music.uti b/gamma_age_v2/dmfi_music.uti new file mode 100644 index 00000000..8b0fee63 Binary files /dev/null and b/gamma_age_v2/dmfi_music.uti differ diff --git a/gamma_age_v2/dmfi_mute.uti b/gamma_age_v2/dmfi_mute.uti new file mode 100644 index 00000000..c85ac83d Binary files /dev/null and b/gamma_age_v2/dmfi_mute.uti differ diff --git a/gamma_age_v2/dmfi_naming.uti b/gamma_age_v2/dmfi_naming.uti new file mode 100644 index 00000000..0ac9ac57 Binary files /dev/null and b/gamma_age_v2/dmfi_naming.uti differ diff --git a/gamma_age_v2/dmfi_onclienter.ncs b/gamma_age_v2/dmfi_onclienter.ncs new file mode 100644 index 00000000..1b9df640 Binary files /dev/null and b/gamma_age_v2/dmfi_onclienter.ncs differ diff --git a/gamma_age_v2/dmfi_onclienter.nss b/gamma_age_v2/dmfi_onclienter.nss new file mode 100644 index 00000000..c1c0de45 --- /dev/null +++ b/gamma_age_v2/dmfi_onclienter.nss @@ -0,0 +1,23 @@ +//:://///////////////////////////////////////////// +//:: DMFI - OnClientEnter event handler +//:: dmfi_onclienter +//::////////////////////////////////////////////// +/* + Event handler for the module-level OnClientEnter event. Initializes DMFI system. +*/ +//::////////////////////////////////////////////// +//:: 2008.08.02 tsunami282 - created. + +#include "dmfi_init_inc" + +//////////////////////////////////////////////////////////////////////// +void main() +{ + object oUser = GetEnteringObject(); + + // do any other module OnClientEnter work here + ExecuteScript("x3_mod_def_enter", OBJECT_SELF); + + // initialize DMFI + dmfiInitialize(oUser); +} diff --git a/gamma_age_v2/dmfi_onering.uti b/gamma_age_v2/dmfi_onering.uti new file mode 100644 index 00000000..2db20b1b Binary files /dev/null and b/gamma_age_v2/dmfi_onering.uti differ diff --git a/gamma_age_v2/dmfi_onmodhb.ncs b/gamma_age_v2/dmfi_onmodhb.ncs new file mode 100644 index 00000000..f36cedd5 Binary files /dev/null and b/gamma_age_v2/dmfi_onmodhb.ncs differ diff --git a/gamma_age_v2/dmfi_onmodhb.nss b/gamma_age_v2/dmfi_onmodhb.nss new file mode 100644 index 00000000..af17502a --- /dev/null +++ b/gamma_age_v2/dmfi_onmodhb.nss @@ -0,0 +1,29 @@ + +#include "dmfi_db_inc" + +const int FLUSH_INTERVAL = 30; // seconds between database flushes to disk + +void main() +{ + // see if database is "dirty" (changed since last flush) + if (IsDMFIPersistentDataDirty("dmfi")) + { + // it is, so check if time to flush database + object oMod = GetModule(); + int iTick = GetLocalInt(oMod, "DMFI_MODULE_HEARTBEAT_TICK"); + int iSecsSinceFlush = iTick * 6; + if (iSecsSinceFlush >= FLUSH_INTERVAL) + { + FlushDMFIPersistentData("dmfi"); + iTick = 0; + } + else + { + iTick++; + } + SetLocalInt(oMod, "DMFI_MODULE_HEARTBEAT_TICK", iTick); + } + + // do any other module OnHeartbeat work here + ExecuteScript("x3_mod_def_hb", OBJECT_SELF); +} diff --git a/gamma_age_v2/dmfi_onplychat.ncs b/gamma_age_v2/dmfi_onplychat.ncs new file mode 100644 index 00000000..da2c4c69 Binary files /dev/null and b/gamma_age_v2/dmfi_onplychat.ncs differ diff --git a/gamma_age_v2/dmfi_onplychat.nss b/gamma_age_v2/dmfi_onplychat.nss new file mode 100644 index 00000000..e91d7e93 --- /dev/null +++ b/gamma_age_v2/dmfi_onplychat.nss @@ -0,0 +1,79 @@ +//:://///////////////////////////////////////////// +//:: DMFI - OnPlayerChat event handler +//:: dmfi_onplychat +//::////////////////////////////////////////////// +/* + Event handler for the module-level OnPlayerChat event. Manages scripter-added + event scripts. +*/ +//::////////////////////////////////////////////// +//:: Created By: Merle, with help from mykael22000 and tsunami282 +//:: Created On: 2007.12.12 +//::////////////////////////////////////////////// +//:: 2007.12.27 tsunami282 - implemented hooking tree + +#include "dmfi_plychat_inc" + +const string DMFI_PLAYERCHAT_SCRIPTNAME = "dmfi_plychat_exe"; + +//////////////////////////////////////////////////////////////////////// +void main() +{ + int nVolume = GetPCChatVolume(); + object oShouter = GetPCChatSpeaker(); + + int bInvoke; + string sChatHandlerScript; + int maskChannels; + // int bListenAll; + object oRunner; + int bAutoRemove; + int bDirtyList = FALSE; + int iHook; + object oMod = GetModule(); +// SendMessageToPC(GetFirstPC(), "OnPlayerChat - process hooks"); + int nHooks = GetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME); + for (iHook = nHooks; iHook > 0; iHook--) // reverse-order execution, last hook gets first dibs + { +// SendMessageToPC(GetFirstPC(), "OnPlayerChat -- process hook #" + IntToString(iHook)); + maskChannels = GetLocalArrayInt(oMod, DMFI_CHATHOOK_CHANNELS_ARRAYNAME, iHook); +// SendMessageToPC(GetFirstPC(), "OnPlayerChat -- channel heard=" + IntToString(nVolume) + ", soughtmask=" + IntToString(maskChannels)); + if (((1 << nVolume) & maskChannels) != 0) // right channel + { +// SendMessageToPC(GetFirstPC(), "OnPlayerChat --- channel matched"); + + bInvoke = FALSE; + if (GetLocalArrayInt(oMod, DMFI_CHATHOOK_LISTENALL_ARRAYNAME, iHook) != FALSE) + { + bInvoke = TRUE; + } + else + { + object oDesiredSpeaker = GetLocalArrayObject(oMod, DMFI_CHATHOOK_SPEAKER_ARRAYNAME, iHook); + if (oShouter == oDesiredSpeaker) bInvoke = TRUE; + } + if (bInvoke) // right speaker + { +// SendMessageToPC(GetFirstPC(), "OnPlayerChat --- speaker matched"); + sChatHandlerScript = GetLocalArrayString(oMod, DMFI_CHATHOOK_SCRIPT_ARRAYNAME, iHook); + oRunner = GetLocalArrayObject(oMod, DMFI_CHATHOOK_RUNNER_ARRAYNAME, iHook); +// SendMessageToPC(GetFirstPC(), "OnPlayerChat --- executing script '" + sChatHandlerScript + "' on object '" + GetName(oRunner) +"'"); + ExecuteScript(sChatHandlerScript, oRunner); + bAutoRemove = GetLocalArrayInt(oMod, DMFI_CHATHOOK_AUTOREMOVE_ARRAYNAME, iHook); + if (bAutoRemove) + { +// SendMessageToPC(GetFirstPC(), "OnPlayerChat --- scheduling autoremove"); + bDirtyList = TRUE; + SetLocalArrayInt(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME, iHook, 0); + } + } + } + } + + if (bDirtyList) DMFI_ChatHookRemove(0); + + // always execute the DMFI parser + ExecuteScript(DMFI_PLAYERCHAT_SCRIPTNAME, OBJECT_SELF); + +} + diff --git a/gamma_age_v2/dmfi_onrest.ncs b/gamma_age_v2/dmfi_onrest.ncs new file mode 100644 index 00000000..a8a86254 Binary files /dev/null and b/gamma_age_v2/dmfi_onrest.ncs differ diff --git a/gamma_age_v2/dmfi_onrest.nss b/gamma_age_v2/dmfi_onrest.nss new file mode 100644 index 00000000..5ea59ee6 --- /dev/null +++ b/gamma_age_v2/dmfi_onrest.nss @@ -0,0 +1,463 @@ +/*DMFI Rest System Alpha by hahnsoo + +CONTENTS +-------- +Placeables>>Special>>Custom 5 - DMFI Bed Roll, DMFI Campfire, DMFI Invisible +Rest Object, DMFI Tent + +Items>>Special>>Custom5 - DMFI Bed Roll (100 gp), DMFI Firewood (1 gp), DMFI +Portable Tent (500 gp) (different gp values for different situations) + +Scripts - dmfi_onrest +(Yup, that's it) + +Description +----------- +This is a robust and versatile rest system that incorporates a LOT of options. +Perhaps too many, I don't know. I tried to find everything that folks would +possibly want in a resting system. The most important "feature" is the rest +conversation menu, which governs for both DM and Player the kind of resting that +is allowed. + +The ways you can control rest in this system are: +1) Global vs. Local - Restrict or release restrictions on resting based on world + settings or on a per-area basis +2) Unlimited vs. Limited vs. No Rest - Have the Players rest at any time they'd + like. Or Limit them according to certain parameters and toggles. Or don't + allow them to rest at all. You can set these both globally and locally + (Unlimited and No Rest areas). +3) Time restriction - The staple of most simple rest restrictions. You can limit + resting per 1, 2, 4, 8, 12, or 24 in-game hours, and the amount of real-time + minutes are calculated for the DM. Again, you can set these both globally + and locally. +4) Placeables - Popularized by Demetrious's Supply-Based Rest, this allows you + to restrict resting according to proximity to objects. It allows you to use + DMFI rest objects (tag = dmfi_restobject), campfires, bedrolls, beds, tents + (a "Name-based" rest placeable), and toggles to include/exclude certain + classes that typically don't care about such niceties. +5) Armor Restrictions - I'm not quite fond of this particular one, but it is a + standard feature of many rest systems and thus included in the package. + Allows you to set what weight of armor allows a PC to rest. +6) Set Hit Point Restrictions - Unlike the other restrictions, this does NOT + prevent resting. What it does is determine how many hitpoints are regained + upon resting, from a gradient of no hitpoints to all hitpoint, and some + interesting options in between (1 HP per level, per 3rd edition, which + skews against fighter classes and CON based HP gain, which skews in favor of + lower level characters). +7) Toggle Spell Memorization - This converts the "rest" into a "pseudorest" + which only heals HP. Useful for a "no spell memorization" zone locally, not + much use globally. +8) Various other "fluff" settings (Snoring, the rest conversation menu, + immobilized resting, floating text feedback). + +There is also a "big red button" option that simply full rests all PCs in the +area. Useful to quickly work around rest restrictions that you have previously +set up. + +Installation +------------ +Change your OnRest event script to the dmfi_onrest script. Or you can do an +external execute script call by using ExecuteScript("dmfi_onrest", OBJECT_SELF); +in your current script. + +The areas in your module should NOT have the "No Rest" box checked, in the areas +which you wish to use this system. + +Configuration +------------- +All configuration of the system is done in-game as a DM. To bring up the Rest +Configuration Menu, press R or the rest button. +The conversation will detail the settings you have in the area (whether you are +using the default Global settings or using the Local area settings to override) +and the particular restrictions that you have set. + +Settings are stored Persistently using the Bioware Database, per the DMFI W&W +default persistence options. If you want to use another database system, simply +edit the the dmfi_db_inc wrapper functions to your liking. + +Unlimited Rest means just that: No restrictions. You may have global +restrictions set up, but as long as Unlimited rest is set globally or locally, +they are ignored. +No Rest means just that: No resting allowed, regardless of restrictions. +Limited Rest means that the restrictions you have set globally or locally are in +effect. You can restrict resting as stated above in the Description. + +When you set any [LOCAL] Area variables, you automatically set the area to +"override" the global rest restrictions. This means that this area follows its +own rules, and isn't governed by the global rules. Setting the [LOCAL] Area +restrictions will copy the current global restriction variables, but after that, +the only way to go back to "global" is to select "Use default [GLOBAL] Module +settings" +Tip: The most useful way to use this is to simply set areas as Unlimited Rest or +No Rest, say an Inn Room or a combat zone, respectively. + +Player Notes +------------ +If you are using the DMFI Rest Menu (on by default), the rest restrictions (if +any) are displayed on your Rest Conversation Menu, telling you why you can't +rest (if you are restricted). You also have the option to access both the DMFI +Dicebag and the DMFI Emote wand directly from the Rest Menu. This allows you to +use emotes or dice checks WITHOUT having that silly "Use Unique Power" +animation. + +Included in this package is a way to do "Alternate Resting Animations". These +animations simply change the way you appear when you rest. Since they use the +ForceRest() function, it isn't a "true" rest... rather it sets you for a certain +amount of time (equal to a normal rest) as un-moveable, and applies the rest at +the end of that time. This just means you don't get the little egg timer. + +This is an ALPHA release, and I'm pretty sure I don't know everything about +Resting systems in the universe. I've tried to incorporate nearly all of the +elements I've seen in other available resting systems and encorporate them into +a small (single script), DMFI-integrated package. + +I would greatly appreciate feedback, suggestions, additions, omissions, bug +reports, whatever. Send them to me at hahns_shin@hotmail.com.*/ + +#include "dmfi_db_inc" +//This function calculates the resting duration based on PC Hit Dice +//Based off of restduration.2da +void FloatyText(string sText, object oPC, int iSettings) +{ + if (!(iSettings & 0x40000000)) + FloatingTextStringOnCreature(sText, oPC, FALSE); +} + +float GetRestDuration(object oPC) +{ + return 10.0f + 0.5f * IntToFloat(GetHitDice(oPC)); +} + +// This function is used as a wrapper for the Rest VFX Object +void DoRestVFX(object oPC, float fDuration, int nEffect) { + effect eEffect; + if (nEffect == -1) { + eEffect = EffectCutsceneImmobilize(); + } else { + eEffect = EffectVisualEffect(nEffect); + } + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, ExtraordinaryEffect(eEffect), oPC, fDuration); +} + + +//This function adds the Blindness/Snore effects +//Also adds cutscene immobilize to prevent movement +//Snoring should only occur at start, then follows on the module's hb +void ApplyRestVFX(object oPC, int iSettings) +{ + object oRestVFX = GetObjectByTag("dmfi_restvfxobject"); + effect eSnore = EffectVisualEffect(VFX_IMP_SLEEP); //Sleepy "ZZZ"s + float fDuration = GetRestDuration(oPC); + float fSeconds = 6.0f; + if (!(iSettings & 0x80000000)) //Immobile Resting flag + { + // Pass a -1 for EffectCutsceneImmobilize. + // For a visual effect, simply pass the VFX constant. + AssignCommand(oRestVFX, DoRestVFX(oPC, fDuration, -1)); + } + if (!(iSettings & 0x20000000)) //VFX flag + { + // AssignCommand(oRestVFX, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, ExtraordinaryEffect(eBlind), oPC, fDuration)); + AssignCommand(oRestVFX, DoRestVFX(oPC, fDuration, VFX_DUR_BLACKOUT)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eSnore, oPC); + } +} + + +// Removes blindness & immobilize -- Merle +void RemoveRestVFX(object oPC) { + object oRestVFX = GetObjectByTag("dmfi_restvfxobject"); + effect eEffect = GetFirstEffect(oPC); + while (GetIsEffectValid(eEffect)) { + if (GetEffectCreator(eEffect) == oRestVFX) { + RemoveEffect(oPC, eEffect); + } + eEffect = GetNextEffect(oPC); + } +} + + +//This function gets the "Final HP" available to the PC after resting +int CalculateFinalHitPoints(object oPC, int iSettings) +{ + int iHP = (iSettings & 0x0f000000); + switch(iHP) + { + case 0x01000000: return 0; break; + case 0x02000000: return GetHitDice(oPC); break; + case 0x03000000: return GetAbilityScore(oPC, ABILITY_CONSTITUTION); break; + case 0x04000000: return GetMaxHitPoints(oPC)/10; break; + case 0x05000000: return GetMaxHitPoints(oPC)/4; break; + case 0x06000000: return GetMaxHitPoints(oPC)/2; break; + case 0x07000000: return GetMaxHitPoints(oPC); break; + default: return GetMaxHitPoints(oPC); break; + } + return GetMaxHitPoints(oPC); +} + +void RemoveMagicalEffects(object oPC) +{ + effect eEffect = GetFirstEffect(oPC); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectSubType(eEffect) == SUBTYPE_MAGICAL) + RemoveEffect(oPC, eEffect); + eEffect = GetNextEffect(oPC); + } +} + +//This function simulates a rest without restoring spells +void DoPseudoRest(object oPC, int iSettings, int iSpells = FALSE) +{ + effect eSnore = EffectVisualEffect(VFX_IMP_SLEEP); + effect eBlind = EffectVisualEffect(VFX_DUR_BLACKOUT); + effect eStop = EffectCutsceneImmobilize(); + float fDuration = GetRestDuration(oPC); + float fSeconds = 6.0f; + int iAnimation = GetLocalInt(oPC, "dmfi_r_alternate"); + if (!iAnimation) + iAnimation = ANIMATION_LOOPING_SIT_CROSS; + AssignCommand(oPC, PlayAnimation(iAnimation, 1.0f, fDuration)); + DelayCommand(0.1, SetCommandable(FALSE, oPC)); + DelayCommand(fDuration, SetCommandable(TRUE, oPC)); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, ExtraordinaryEffect(eStop), oPC, fDuration); + if (!(iSettings & 0x20000000) && iAnimation != ANIMATION_LOOPING_MEDITATE && iAnimation != ANIMATION_LOOPING_WORSHIP) //If the No VFX flag is not set, do VFX + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, ExtraordinaryEffect(eBlind), oPC, fDuration); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eSnore, oPC); + while (fSeconds < fDuration) + { + DelayCommand(fSeconds, ApplyEffectToObject(DURATION_TYPE_INSTANT, eSnore, oPC)); + fSeconds += 6.0f; + } + } + if (!iSpells) + { + effect eHeal = EffectHeal(CalculateFinalHitPoints(oPC, iSettings)); //Heal the PC + DelayCommand(fDuration + 0.1f, ApplyEffectToObject(DURATION_TYPE_INSTANT, eHeal, oPC)); + DelayCommand(fDuration + 0.1f, RemoveMagicalEffects(oPC)); //Remove all magical effects from PC + } + else + { + DelayCommand(fDuration + 0.1f, ForceRest(oPC)); + } + DeleteLocalInt(oPC, "dmfi_r_alternate"); +} + +//This function determines if the PC is wearing heavy armor +int GetIsWearingHeavyArmor(object oPC, int iSettings) +{ + int iArmor = (iSettings & 0x00f00000); + object oArmor = GetItemInSlot(INVENTORY_SLOT_CHEST, oPC); + int iWeight = GetWeight(oArmor); + switch(iArmor) + { + default: + case 0x00100000: if (iWeight > 20) return TRUE; break; + case 0x00200000: if (iWeight > 60) return TRUE; break; + case 0x00300000: if (iWeight > 110) return TRUE; break; + case 0x00400000: if (iWeight > 160) return TRUE; break; + case 0x00500000: if (iWeight > 310) return TRUE; break; + case 0x00600000: if (iWeight > 410) return TRUE; break; + case 0x00700000: if (iWeight > 460) return TRUE; break; + } + return FALSE; +} + +//This function determines if the PC is near a resting placeable +int GetIsNearRestingObject(object oPC, int iSettings) +{ + if (iSettings & 0x00020000) //Ignore Druid + { + if (GetLevelByClass(CLASS_TYPE_DRUID, oPC)) + return TRUE; + } + if (iSettings & 0x00040000) //Ignore Ranger + { + if (GetLevelByClass(CLASS_TYPE_RANGER, oPC)) + return TRUE; + } + if (iSettings & 0x00080000) //Ignore Barb + { + if (GetLevelByClass(CLASS_TYPE_BARBARIAN, oPC)) + return TRUE; + } + object oPlaceable = GetFirstObjectInShape(SHAPE_SPHERE, 6.0f, GetLocation(oPC), TRUE, OBJECT_TYPE_PLACEABLE); + while (GetIsObjectValid(oPlaceable)) + { + if (!(iSettings & 0x00001000) && GetTag(oPlaceable) == "dmfi_rest") //DMFI Placeables: by default, ON + return TRUE; + if ((iSettings & 0x00002000) && GetStringLowerCase(GetName(oPlaceable)) == "campfire") //Campfires + return TRUE; + if ((iSettings & 0x00004000) && (GetStringLowerCase(GetName(oPlaceable)) == "bed roll" || GetStringLowerCase(GetName(oPlaceable)) == "bedroll")) //Bed rolls + return TRUE; + if ((iSettings & 0x00008000) && GetStringLowerCase(GetName(oPlaceable)) == "bed") //beds + return TRUE; + if ((iSettings & 0x00010000) && GetStringLowerCase(GetName(oPlaceable)) == "tent") //tents + return TRUE; + oPlaceable = GetNextObjectInShape(SHAPE_SPHERE, 6.0f, GetLocation(oPC), TRUE, OBJECT_TYPE_PLACEABLE); + } + return FALSE; +} + +// Updated to allow 6 hour breaks and to pass in a percentage if rest is interrupted +void SetNextRestTime(object oPC, int iSettings, float fPercentage = 1.0) +{ + if (fPercentage > 1.0 || fPercentage <= 0.0) { + fPercentage = 1.0; + } + int iHours = (iSettings & 0x00000f00); + int iTime = GetTimeHour() + GetCalendarDay() * 24 + GetCalendarMonth() * 24 * 28 + GetCalendarYear() * 24 * 28 * 12; + + switch(iHours) + { + default: + case 0x00000100: SetLocalInt(oPC, "dmfi_r_nextrest", iTime + FloatToInt(IntToFloat(1) * fPercentage)); break; + case 0x00000200: SetLocalInt(oPC, "dmfi_r_nextrest", iTime + FloatToInt(IntToFloat(2) * fPercentage)); break; + case 0x00000300: SetLocalInt(oPC, "dmfi_r_nextrest", iTime + FloatToInt(IntToFloat(4) * fPercentage)); break; + case 0x00000400: SetLocalInt(oPC, "dmfi_r_nextrest", iTime + FloatToInt(IntToFloat(6) * fPercentage)); break; + case 0x00000500: SetLocalInt(oPC, "dmfi_r_nextrest", iTime + FloatToInt(IntToFloat(8) * fPercentage)); break; + case 0x00000600: SetLocalInt(oPC, "dmfi_r_nextrest", iTime + FloatToInt(IntToFloat(12) * fPercentage)); break; + case 0x00000700: SetLocalInt(oPC, "dmfi_r_nextrest", iTime + FloatToInt(IntToFloat(24) * fPercentage)); break; + } +} + + +//This function determines whether or not you can rest. +int DMFI_CanIRest(object oPC, int iSettings) +{ + if (GetIsDM(oPC)) return TRUE; + if (iSettings & 0x00000002) //No Rest Override + { + if (iSettings & 0x00000080) + FloatyText("This is a No Rest area", oPC, iSettings); + return FALSE; + } + if (!(iSettings & 0x00000001)) //Unlimited Rest Override + { + if (iSettings & 0x00000080) + FloatyText("This is an Unlimited Rest area", oPC, iSettings); + return TRUE; + } + if ((iSettings & 0x00000004) && (iSettings & 0x00000001)) //Time restriction + { + int iTime = GetTimeHour() + GetCalendarDay() * 24 + GetCalendarMonth() * 24 * 28 + GetCalendarYear() * 24 * 28 * 12; + if (iTime < GetLocalInt(oPC, "dmfi_r_nextrest")) + { + FloatyText("You cannot rest at this time. You may rest again in " + IntToString(GetLocalInt(oPC, "dmfi_r_nextrest") - iTime) + " hours.", oPC, iSettings); + return FALSE; + } + } + if ((iSettings & 0x00000008) && (iSettings & 0x00000001)) //Placeable restriction + { + if (!GetIsNearRestingObject(oPC, iSettings)) + { + FloatyText("You are not near a rest placeable", oPC, iSettings); + return FALSE; + } + } + if ((iSettings & 0x00000010) && (iSettings & 0x00000001)) //Armor restriction + { + if (GetIsWearingHeavyArmor(oPC, iSettings)) + { + FloatyText("Your current armor is too heavy to rest", oPC, iSettings); + return FALSE; + } + } + return TRUE; +} + +void main() +{ + object oPC = GetLastPCRested(); + object oArea = GetArea(oPC); + int iSettings; + int iModSettings = GetDMFIPersistentInt("dmfi", "dmfi_r_"); + int iAreaSettings = GetDMFIPersistentInt("dmfi", "dmfi_r_" + GetTag(oArea)); + if (iAreaSettings & 0x00000080) + { + iSettings = iAreaSettings; + } + else + { + iSettings = iModSettings; + } + SetLocalInt(oPC, "dmfi_r_settings", iSettings); + + if (GetLastRestEventType()==REST_EVENTTYPE_REST_STARTED) + { + SetLocalInt(oPC, "dmfi_norest", !(DMFI_CanIRest(oPC, iSettings))); + SetLocalInt(oPC, "dmfi_r_hitpoints", GetCurrentHitPoints(oPC)); + if (GetIsDM(oPC) || (!(iSettings & 0x10000000) && !GetLocalInt(oPC, "dmfi_r_bypass"))) + { //If the Rest Conversation variable is set, then activate the rest conversation here. + AssignCommand(oPC, ClearAllActions()); + SetLocalString(oPC, "dmfi_univ_conv", "rest"); + AssignCommand(oPC, ActionStartConversation(oPC, "dmfi_universal", TRUE)); + return; + } + if (GetLocalInt(oPC, "dmfi_norest")) //PC cannot rest + { + AssignCommand(oPC, ClearAllActions()); + DeleteLocalInt(oPC, "dmfi_r_bypass"); + return; + } + if ((iSettings & 0x00000004) && (iSettings & 0x00000001)) //Time restriction + SetNextRestTime(oPC, iSettings); + + if (GetLocalInt(oPC, "dmfi_r_alternate") || ((iSettings & 0x00000040) && (iSettings & 0x00000001))) + { + AssignCommand(oPC, ClearAllActions()); + if ((iSettings & 0x00000040) && (iSettings & 0x00000001)) + FloatyText("You cannot regain your spells in this area",oPC, iSettings); + DoPseudoRest(oPC, iSettings, ((iSettings & 0x00000040) && (iSettings & 0x00000001))); + DeleteLocalInt(oPC, "dmfi_r_bypass"); + return; + } + else if (!(iSettings & 0x20000000)) + { //Rest VFX + ApplyRestVFX(oPC, iSettings); + } + if ((iSettings & 0x00000020) && (iSettings & 0x00000001)) + { //Auto Party Drop + FloatyText("You have been removed from the party to prevent rest canceling",oPC, iSettings); + RemoveFromParty(oPC); + } + } + else if (GetLastRestEventType()==REST_EVENTTYPE_REST_CANCELLED) + { + // Make sure that resting has been initialized and the start time has been set. Otherwise, the Cancelled Rest Event was fired by + // the Resting conversation. + if (GetLocalInt(oPC, "dmfi_r_init")) + { + int iTime = GetTimeSecond() + GetTimeMinute() * 60 + GetTimeHour() * 3600 + GetCalendarDay() * 24 * 3600 + GetCalendarMonth() *3600 * 24 * 28 + GetCalendarYear() * 24 * 28 * 12 * 3600; + int nTimeRested = iTime - GetLocalInt(oPC, "dmfi_r_startseconds"); + int nFullTime = FloatToInt(GetRestDuration(oPC)); + float fPercentage = IntToFloat(nTimeRested) / IntToFloat(nFullTime); + SetNextRestTime(oPC, iSettings, fPercentage); + // SendMessageToPC(oPC, "Rest interrupted; resting for " + IntToString(nTimeRested) + " out of " + IntToString(nFullTime) + " seconds (" + FloatToString(fPercentage) + "%)."); + SetLocalInt(oPC, "dmfi_r_init", FALSE); + if ((iSettings & 0x00000020) && GetCurrentHitPoints(oPC) > GetLocalInt(oPC, "dmfi_r_hitpoints") && iSettings & 0x00000001) //HP restriction + { + effect eDam = EffectDamage(GetMaxHitPoints(oPC) - GetLocalInt(oPC, "dmfi_r_hitpoints")); + FloatyText("Your hitpoints have been reset",oPC, iSettings); + AssignCommand(oPC, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oPC)); + + } + } + RemoveRestVFX(oPC); + } + else if (GetLastRestEventType()==REST_EVENTTYPE_REST_FINISHED) + { + if ((iSettings & 0x00000020) && (iSettings & 0x00000001)) //HP restriction + { + int iDam = GetMaxHitPoints(oPC) - GetLocalInt(oPC, "dmfi_r_hitpoints") - CalculateFinalHitPoints(oPC, iSettings); + if (iDam > 0) + { + effect eDam = EffectDamage(iDam); + FloatyText("You gain back limited HP from this rest",oPC, iSettings); + AssignCommand(oPC, ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oPC)); + } + } + } + DeleteLocalInt(oPC, "dmfi_r_bypass"); +} diff --git a/gamma_age_v2/dmfi_pc_dicebag.uti b/gamma_age_v2/dmfi_pc_dicebag.uti new file mode 100644 index 00000000..9ed977e5 Binary files /dev/null and b/gamma_age_v2/dmfi_pc_dicebag.uti differ diff --git a/gamma_age_v2/dmfi_pc_emote.uti b/gamma_age_v2/dmfi_pc_emote.uti new file mode 100644 index 00000000..5806b74e Binary files /dev/null and b/gamma_age_v2/dmfi_pc_emote.uti differ diff --git a/gamma_age_v2/dmfi_pc_follow.uti b/gamma_age_v2/dmfi_pc_follow.uti new file mode 100644 index 00000000..ba7cb522 Binary files /dev/null and b/gamma_age_v2/dmfi_pc_follow.uti differ diff --git a/gamma_age_v2/dmfi_pc_rest001.uti b/gamma_age_v2/dmfi_pc_rest001.uti new file mode 100644 index 00000000..0add37af Binary files /dev/null and b/gamma_age_v2/dmfi_pc_rest001.uti differ diff --git a/gamma_age_v2/dmfi_pc_rest002.uti b/gamma_age_v2/dmfi_pc_rest002.uti new file mode 100644 index 00000000..5931a71e Binary files /dev/null and b/gamma_age_v2/dmfi_pc_rest002.uti differ diff --git a/gamma_age_v2/dmfi_pc_rest003.uti b/gamma_age_v2/dmfi_pc_rest003.uti new file mode 100644 index 00000000..707b4f0d Binary files /dev/null and b/gamma_age_v2/dmfi_pc_rest003.uti differ diff --git a/gamma_age_v2/dmfi_peace.uti b/gamma_age_v2/dmfi_peace.uti new file mode 100644 index 00000000..c2df35a5 Binary files /dev/null and b/gamma_age_v2/dmfi_peace.uti differ diff --git a/gamma_age_v2/dmfi_playerbook.uti b/gamma_age_v2/dmfi_playerbook.uti new file mode 100644 index 00000000..bd76770d Binary files /dev/null and b/gamma_age_v2/dmfi_playerbook.uti differ diff --git a/gamma_age_v2/dmfi_plchlishk_i.nss b/gamma_age_v2/dmfi_plchlishk_i.nss new file mode 100644 index 00000000..ac76a36a --- /dev/null +++ b/gamma_age_v2/dmfi_plchlishk_i.nss @@ -0,0 +1,117 @@ +//:://///////////////////////////////////////////// +//:: DMFI - internal player chat listener hooking include +//:: dmfi_plchlishk_i +//::////////////////////////////////////////////// +/* + Include file containing routines for managing the internal DMFI chain of + "listeners", which are now implemented as OnPlayerChat event handlers rather + than creatures. +*/ +//::////////////////////////////////////////////// +//:: Created By: tsunami282 +//:: Created On: 2008.03.24 +//::////////////////////////////////////////////// + +const int DMFI_LISTEN_ON_CHANNEL_TALK = 1; +const int DMFI_LISTEN_ON_CHANNEL_WHISPER = 1; +const int DMFI_LISTEN_ON_CHANNEL_SHOUT = 1; +const int DMFI_LISTEN_ON_CHANNEL_DM = 1; +const int DMFI_LISTEN_ON_CHANNEL_PARTY = 1; + +const string DMFI_EAVESDROP_HOOK_VARNAME = "dmfi_Eavesdrop"; + +const float WHISPER_DISTANCE = 1.0; +const float TALK_DISTANCE = 30.0; + +string sHookTypeVarname = DMFI_EAVESDROP_HOOK_VARNAME + "_Type"; // 1=PC (says), 2=NPC/location (hears) +string sHookCreatureVarname = DMFI_EAVESDROP_HOOK_VARNAME + "_Creature"; // must be valid for type 1, for type 2 object_invalid means location only +string sHookRangeModeVarname = DMFI_EAVESDROP_HOOK_VARNAME + "_RangeMode"; // listening range: for type 1, 0=pc only, 1=pc's party; for type 2, 0=earshot, 1=area, 2=module +string sHookLocationVarname = DMFI_EAVESDROP_HOOK_VARNAME + "_Location"; // for type 2, location of "listening post" +string sHookChannelsVarname = DMFI_EAVESDROP_HOOK_VARNAME + "_Channels"; // bitmask of TALKVOLUME channels to listen to +string sHookOwnerVarname = DMFI_EAVESDROP_HOOK_VARNAME + "_Owner"; // unique ID of owner of this hook (he who will get the captured text) +string sHookBcastDMsVarname = DMFI_EAVESDROP_HOOK_VARNAME + "_BcastDMs"; // 0=relay message to owner only, 1=broadcast to all DMs + +//////////////////////////////////////////////////////////////////////// +void RemoveListenerHook(int hooknum) +{ + int hooktype; + object hookcreature; + location hooklocation; + int hookchannels; + object hookowner; + int hookparty, hookbcast; + + int iHook = hooknum; + string siHook = "", siHookN = ""; + object oMod = GetModule(); + + while (1) + { + siHook = IntToString(iHook); + siHookN = IntToString(iHook+1); + + hooktype = GetLocalInt(oMod, sHookTypeVarname+siHookN); + if (hooktype != 0) + { + hookcreature = GetLocalObject(oMod, sHookCreatureVarname+siHookN); + hooklocation = GetLocalLocation(oMod, sHookLocationVarname+siHookN); + hookchannels = GetLocalInt(oMod, sHookChannelsVarname+siHookN); + hookowner = GetLocalObject(oMod, sHookOwnerVarname+siHookN); + hookparty = GetLocalInt(oMod, sHookRangeModeVarname+siHookN); + hookbcast = GetLocalInt(oMod, sHookBcastDMsVarname+siHookN); + + SetLocalInt(oMod, sHookTypeVarname+siHook, hooktype); + SetLocalObject(oMod, sHookCreatureVarname+siHook, hookcreature); + SetLocalLocation(oMod, sHookLocationVarname+siHook, hooklocation); + SetLocalInt(oMod, sHookChannelsVarname+siHook, hookchannels); + SetLocalObject(oMod, sHookOwnerVarname+siHook, hookowner); + SetLocalInt(oMod, sHookRangeModeVarname+siHook, hookparty); + SetLocalInt(oMod, sHookBcastDMsVarname+siHook, hookbcast); + } + else + { + DeleteLocalInt(oMod, sHookTypeVarname+siHook); + DeleteLocalObject(oMod, sHookCreatureVarname+siHook); + DeleteLocalLocation(oMod, sHookLocationVarname+siHook); + DeleteLocalInt(oMod, sHookChannelsVarname+siHook); + DeleteLocalObject(oMod, sHookOwnerVarname+siHook); + DeleteLocalInt(oMod, sHookRangeModeVarname+siHook); + DeleteLocalInt(oMod, sHookBcastDMsVarname+siHook); + + break; + } + iHook++; + } +} + +//////////////////////////////////////////////////////////////////////// +int AppendListenerHook(int hooktype, object hookcreature, location hooklocation, + int hookchannels, int hookparty, int hookbcast, object hookowner) +{ + int iHook = 0; + + if (hooktype != 0) + { + int iHookType; + string siHook = ""; + object oMod = GetModule(); + iHook = 1; + while (1) + { + siHook = IntToString(iHook); + iHookType = GetLocalInt(oMod, sHookTypeVarname+siHook); + if (iHookType == 0) break; // end of list + iHook++; + } + SetLocalInt(oMod, sHookTypeVarname+siHook, hooktype); + SetLocalObject(oMod, sHookCreatureVarname+siHook, hookcreature); + SetLocalLocation(oMod, sHookLocationVarname+siHook, hooklocation); + SetLocalInt(oMod, sHookChannelsVarname+siHook, hookchannels); + SetLocalObject(oMod, sHookOwnerVarname+siHook, hookowner); + SetLocalInt(oMod, sHookRangeModeVarname+siHook, hookparty); + SetLocalInt(oMod, sHookBcastDMsVarname+siHook, hookbcast); + } + + return iHook; +} + diff --git a/gamma_age_v2/dmfi_plychat_exe.ncs b/gamma_age_v2/dmfi_plychat_exe.ncs new file mode 100644 index 00000000..a67bd100 Binary files /dev/null and b/gamma_age_v2/dmfi_plychat_exe.ncs differ diff --git a/gamma_age_v2/dmfi_plychat_exe.nss b/gamma_age_v2/dmfi_plychat_exe.nss new file mode 100644 index 00000000..3b82ba91 --- /dev/null +++ b/gamma_age_v2/dmfi_plychat_exe.nss @@ -0,0 +1,3910 @@ +//:://///////////////////////////////////////////// +//:: DMFI - OnPlayerChat functions processor +//:: dmfi_plychat_exe +//::////////////////////////////////////////////// +/* + Processor for the OnPlayerChat-triggered DMFI functions. +*/ +//::////////////////////////////////////////////// +//:: Created By: The DMFI Team +//:: Created On: +//::////////////////////////////////////////////// +//:: 2007.12.12 Merle +//:: - revisions for NWN patch 1.69 +//:: 2008.03.24 tsunami282 +//:: - renamed from dmfi_voice_exe, updated to work with event hooking system +//:: 2008.06.23 Prince Demetri & Night Journey +//:: - added languages: Sylvan, Mulhorandi, Rashemi +//:: 2008.07.30 morderon +//:: - better emote processing, allow certain dot commands for PC's + +#include "x2_inc_switches" +#include "x0_i0_stringlib" +#include "dmfi_string_inc" +#include "dmfi_plchlishk_i" +#include "dmfi_db_inc" + +const int DMFI_LOG_CONVERSATION = TRUE; // turn on or off logging of conversation text + +//////////////////////////////////////////////////////////////////////// +int AppearType (string sCom) +{ +// 2008.03.24 tsunami282 - pull descriptions from 2da first; allow numerics + + // is it numeric? If so just convert and return + if (TestStringAgainstPattern("*n", sCom)) return StringToInt(sCom); + if (sCom == "ARANEA") + return APPEARANCE_TYPE_ARANEA; + if (sCom == "ALLIP") + return APPEARANCE_TYPE_ALLIP; + if (sCom == "ARCH_TARGET") + return APPEARANCE_TYPE_ARCH_TARGET; + if (sCom == "ARIBETH") + return APPEARANCE_TYPE_ARIBETH; + if (sCom == "ASABI_CHIEFTAIN") + return APPEARANCE_TYPE_ASABI_CHIEFTAIN; + if (sCom == "ASABI_SHAMAN") + return APPEARANCE_TYPE_ASABI_SHAMAN; + if (sCom == "ASABI_WARRIOR") + return APPEARANCE_TYPE_ASABI_WARRIOR; + if (sCom == "BADGER") + return APPEARANCE_TYPE_BADGER; + if (sCom == "BADGER_DIRE") + return APPEARANCE_TYPE_BADGER_DIRE; + if (sCom == "BALOR") + return APPEARANCE_TYPE_BALOR; + if (sCom == "BARTENDER") + return APPEARANCE_TYPE_BARTENDER; + if (sCom == "BASILISK") + return APPEARANCE_TYPE_BASILISK; + if (sCom == "BAT") + return APPEARANCE_TYPE_BAT; + if (sCom == "BAT_HORROR") + return APPEARANCE_TYPE_BAT_HORROR; + if (sCom == "BEAR_BLACK") + return APPEARANCE_TYPE_BEAR_BLACK; + if (sCom == "BEAR_BROWN") + return APPEARANCE_TYPE_BEAR_BROWN; + if (sCom == "BEAR_DIRE") + return APPEARANCE_TYPE_BEAR_DIRE; + if (sCom == "BEAR_KODIAK") + return APPEARANCE_TYPE_BEAR_KODIAK; + if (sCom == "BEAR_POLAR") + return APPEARANCE_TYPE_BEAR_POLAR; + if (sCom == "BEETLE_FIRE") + return APPEARANCE_TYPE_BEETLE_FIRE; + if (sCom == "BEETLE_SLICER") + return APPEARANCE_TYPE_BEETLE_SLICER; + if (sCom == "BEETLE_STAG") + return APPEARANCE_TYPE_BEETLE_STAG; + if (sCom == "BEETLE_STINK") + return APPEARANCE_TYPE_BEETLE_STINK; + if (sCom == "BEGGER") + return APPEARANCE_TYPE_BEGGER; + if (sCom == "BLOOD_SAILER") + return APPEARANCE_TYPE_BLOOD_SAILER; + if (sCom == "BOAR") + return APPEARANCE_TYPE_BOAR; + if (sCom == "BOAR_DIRE") + return APPEARANCE_TYPE_BOAR_DIRE; + if (sCom == "BODAK") + return APPEARANCE_TYPE_BODAK; + if (sCom == "BUGBEAR_A") + return APPEARANCE_TYPE_BUGBEAR_A; + if (sCom == "BUGBEAR_B") + return APPEARANCE_TYPE_BUGBEAR_B; + if (sCom == "BUGBEAR_CHIEFTAIN_A") + return APPEARANCE_TYPE_BUGBEAR_CHIEFTAIN_A; + if (sCom == "BUGBEAR_CHIEFTAIN_B") + return APPEARANCE_TYPE_BUGBEAR_CHIEFTAIN_B; + if (sCom == "BUGBEAR_SHAMAN_A") + return APPEARANCE_TYPE_BUGBEAR_SHAMAN_A; + if (sCom == "BUGBEAR_SHAMAN_B") + return APPEARANCE_TYPE_BUGBEAR_SHAMAN_B; + if (sCom == "CAT_CAT_DIRE") + return APPEARANCE_TYPE_CAT_CAT_DIRE; + if (sCom == "CAT_COUGAR") + return APPEARANCE_TYPE_CAT_COUGAR; + if (sCom == "CAT_CRAG_CAT") + return APPEARANCE_TYPE_CAT_CRAG_CAT; + if (sCom == "CAT_JAGUAR") + return APPEARANCE_TYPE_CAT_JAGUAR; + if (sCom == "CAT_KRENSHAR") + return APPEARANCE_TYPE_CAT_KRENSHAR; + if (sCom == "CAT_LEOPARD") + return APPEARANCE_TYPE_CAT_LEOPARD; + if (sCom == "CAT_LION") + return APPEARANCE_TYPE_CAT_LION; + if (sCom == "CAT_MPANTHER") + return APPEARANCE_TYPE_CAT_MPANTHER; + if (sCom == "CAT_PANTHER") + return APPEARANCE_TYPE_CAT_PANTHER; + if (sCom == "CHICKEN") + return APPEARANCE_TYPE_CHICKEN; + if (sCom == "COCKATRICE") + return APPEARANCE_TYPE_COCKATRICE; + if (sCom == "COMBAT_DUMMY") + return APPEARANCE_TYPE_COMBAT_DUMMY; + if (sCom == "CONVICT") + return APPEARANCE_TYPE_CONVICT; + if (sCom == "COW") + return APPEARANCE_TYPE_COW; + if (sCom == "CULT_MEMBER") + return APPEARANCE_TYPE_CULT_MEMBER; + if (sCom == "DEER") + return APPEARANCE_TYPE_DEER; + if (sCom == "DEER_STAG") + return APPEARANCE_TYPE_DEER_STAG; + if (sCom == "DEVIL") + return APPEARANCE_TYPE_DEVIL; + if (sCom == "DOG") + return APPEARANCE_TYPE_DOG; + if (sCom == "DOG_BLINKDOG") + return APPEARANCE_TYPE_DOG_BLINKDOG; + if (sCom == "DOG_DIRE_WOLF") + return APPEARANCE_TYPE_DOG_DIRE_WOLF; + if (sCom == "DOG_FENHOUND") + return APPEARANCE_TYPE_DOG_FENHOUND; + if (sCom == "DOG_HELL_HOUND") + return APPEARANCE_TYPE_DOG_HELL_HOUND; + if (sCom == "DOG_SHADOW_MASTIF") + return APPEARANCE_TYPE_DOG_SHADOW_MASTIF; + if (sCom == "DOG_WINTER_WOLF") + return APPEARANCE_TYPE_DOG_WINTER_WOLF; + if (sCom == "DOG_WORG") + return APPEARANCE_TYPE_DOG_WORG; + if (sCom == "DOG_WOLF") + return APPEARANCE_TYPE_DOG_WOLF; + if (sCom == "DOOM_KNIGHT") + return APPEARANCE_TYPE_DOOM_KNIGHT; + if (sCom == "DRAGON_BLACK") + return APPEARANCE_TYPE_DRAGON_BLACK; + if (sCom == "DRAGON_BLUE") + return APPEARANCE_TYPE_DRAGON_BLUE; + if (sCom == "DRAGON_BRASS") + return APPEARANCE_TYPE_DRAGON_BRASS; + if (sCom == "DRAGON_BRONZE") + return APPEARANCE_TYPE_DRAGON_BRONZE; + if (sCom == "DRAGON_COPPER") + return APPEARANCE_TYPE_DRAGON_COPPER; + if (sCom == "DRAGON_GOLD") + return APPEARANCE_TYPE_DRAGON_GOLD; + if (sCom == "DRAGON_GREEN") + return APPEARANCE_TYPE_DRAGON_GREEN; + if (sCom == "DRAGON_RED") + return APPEARANCE_TYPE_DRAGON_RED; + if (sCom == "DRAGON_SILVER") + return APPEARANCE_TYPE_DRAGON_SILVER; + if (sCom == "DRAGON_WHITE") + return APPEARANCE_TYPE_DRAGON_WHITE; + if (sCom == "DROW_CLERIC") + return APPEARANCE_TYPE_DROW_CLERIC; + if (sCom == "DROW_FIGHTER") + return APPEARANCE_TYPE_DROW_FIGHTER; + if (sCom == "DRUEGAR_CLERIC") + return APPEARANCE_TYPE_DRUEGAR_CLERIC; + if (sCom == "DRUEGAR_FIGHTER") + return APPEARANCE_TYPE_DRUEGAR_FIGHTER; + if (sCom == "DRYAD") + return APPEARANCE_TYPE_DRYAD; + if (sCom == "DWARF") + return APPEARANCE_TYPE_DWARF; + if (sCom == "DWARF_NPC_FEMALE") + return APPEARANCE_TYPE_DWARF_NPC_FEMALE; + if (sCom == "DWARF_NPC_MALE") + return APPEARANCE_TYPE_DWARF_NPC_MALE; + if (sCom == "ELEMENTAL_AIR") + return APPEARANCE_TYPE_ELEMENTAL_AIR; + if (sCom == "ELEMENTAL_AIR_ELDER") + return APPEARANCE_TYPE_ELEMENTAL_AIR_ELDER; + if (sCom == "ELEMENTAL_EARTH") + return APPEARANCE_TYPE_ELEMENTAL_EARTH; + if (sCom == "ELEMENTAL_EARTH_ELDER") + return APPEARANCE_TYPE_ELEMENTAL_EARTH_ELDER; + if (sCom == "ELEMENTAL_FIRE") + return APPEARANCE_TYPE_ELEMENTAL_FIRE; + if (sCom == "ELEMENTAL_FIRE_ELDER") + return APPEARANCE_TYPE_ELEMENTAL_FIRE_ELDER; + if (sCom == "ELEMENTAL_WATER") + return APPEARANCE_TYPE_ELEMENTAL_WATER; + if (sCom == "ELEMENTAL_WATER_ELDER") + return APPEARANCE_TYPE_ELEMENTAL_WATER_ELDER; + if (sCom == "ELF") + return APPEARANCE_TYPE_ELF; + if (sCom == "ELF_NPC_FEMALE") + return APPEARANCE_TYPE_ELF_NPC_FEMALE; + if (sCom == "ELF_NPC_MALE_01") + return APPEARANCE_TYPE_ELF_NPC_MALE_01; + if (sCom == "ELF_NPC_MALE_02") + return APPEARANCE_TYPE_ELF_NPC_MALE_02; + if (sCom == "ETTERCAP") + return APPEARANCE_TYPE_ETTERCAP; + if (sCom == "ETTIN") + return APPEARANCE_TYPE_ETTIN; + if (sCom == "FAERIE_DRAGON") + return APPEARANCE_TYPE_FAERIE_DRAGON; + if (sCom == "FAIRY") + return APPEARANCE_TYPE_FAIRY; + if (sCom == "FALCON") + return APPEARANCE_TYPE_FALCON; + if (sCom == "FEMALE_01") + return APPEARANCE_TYPE_FEMALE_01; + if (sCom == "FEMALE_02") + return APPEARANCE_TYPE_FEMALE_02; + if (sCom == "FEMALE_03") + return APPEARANCE_TYPE_FEMALE_03; + if (sCom == "FEMALE_04") + return APPEARANCE_TYPE_FEMALE_04; + if (sCom == "FORMIAN_MYRMARCH") + return APPEARANCE_TYPE_FORMIAN_MYRMARCH; + if (sCom == "FORMIAN_QUEEN") + return APPEARANCE_TYPE_FORMIAN_QUEEN; + if (sCom == "FORMIAN_WARRIOR") + return APPEARANCE_TYPE_FORMIAN_WARRIOR; + if (sCom == "FORMIAN_WORKER") + return APPEARANCE_TYPE_FORMIAN_WORKER; + if (sCom == "GARGOYLE") + return APPEARANCE_TYPE_GARGOYLE; + if (sCom == "GHAST") + return APPEARANCE_TYPE_GHAST; + if (sCom == "GHOUL") + return APPEARANCE_TYPE_GHOUL; + if (sCom == "GHOUL_LORD") + return APPEARANCE_TYPE_GHOUL_LORD; + if (sCom == "GIANT_FIRE") + return APPEARANCE_TYPE_GIANT_FIRE; + if (sCom == "GIANT_FIRE_FEMALE") + return APPEARANCE_TYPE_GIANT_FIRE_FEMALE; + if (sCom == "GIANT_FROST") + return APPEARANCE_TYPE_GIANT_FROST; + if (sCom == "GIANT_FROST_FEMALE") + return APPEARANCE_TYPE_GIANT_FROST_FEMALE; + if (sCom == "GIANT_HILL") + return APPEARANCE_TYPE_GIANT_HILL; + if (sCom == "GIANT_MOUNTAIN") + return APPEARANCE_TYPE_GIANT_MOUNTAIN; + if (sCom == "GNOLL_WARRIOR") + return APPEARANCE_TYPE_GNOLL_WARRIOR; + if (sCom == "GNOLL_WIZ") + return APPEARANCE_TYPE_GNOLL_WIZ; + if (sCom == "GNOME") + return APPEARANCE_TYPE_GNOME; + if (sCom == "GNOME_NPC_FEMALE") + return APPEARANCE_TYPE_GNOME_NPC_FEMALE; + if (sCom == "GNOME_NPC_MALE") + return APPEARANCE_TYPE_GNOME_NPC_MALE; + if (sCom == "GOBLIN_A") + return APPEARANCE_TYPE_GOBLIN_A; + if (sCom == "GOBLIN_B") + return APPEARANCE_TYPE_GOBLIN_B; + if (sCom == "GOBLIN_CHIEF_A") + return APPEARANCE_TYPE_GOBLIN_CHIEF_A; + if (sCom == "GOBLIN_CHIEF_B") + return APPEARANCE_TYPE_GOBLIN_CHIEF_B; + if (sCom == "GOBLIN_SHAMAN_A") + return APPEARANCE_TYPE_GOBLIN_SHAMAN_A; + if (sCom == "GOBLIN_SHAMAN_B") + return APPEARANCE_TYPE_GOBLIN_SHAMAN_B; + if (sCom == "GOLEM_BONE") + return APPEARANCE_TYPE_GOLEM_BONE; + if (sCom == "GOLEM_CLAY") + return APPEARANCE_TYPE_GOLEM_CLAY; + if (sCom == "GOLEM_FLESH") + return APPEARANCE_TYPE_GOLEM_FLESH; + if (sCom == "GOLEM_IRON") + return APPEARANCE_TYPE_GOLEM_IRON; + if (sCom == "GOLEM_STONE") + return APPEARANCE_TYPE_GOLEM_STONE; + if (sCom == "GORGON") + return APPEARANCE_TYPE_GORGON; + if (sCom == "GREY_RENDER") + return APPEARANCE_TYPE_GREY_RENDER; + if (sCom == "GYNOSPHINX") + return APPEARANCE_TYPE_GYNOSPHINX; + if (sCom == "HALF_ELF") + return APPEARANCE_TYPE_HALF_ELF; + if (sCom == "HALF_ORC") + return APPEARANCE_TYPE_HALF_ORC; + if (sCom == "HALF_ORC_NPC_FEMALE") + return APPEARANCE_TYPE_HALF_ORC_NPC_FEMALE; + if (sCom == "HALF_ORC_NPC_MALE_01") + return APPEARANCE_TYPE_HALF_ORC_NPC_MALE_01; + if (sCom == "HALF_ORC_NPC_MALE_02") + return APPEARANCE_TYPE_HALF_ORC_NPC_MALE_02; + if (sCom == "HALFLING") + return APPEARANCE_TYPE_HALFLING; + if (sCom == "HALFLING_NPC_FEMALE") + return APPEARANCE_TYPE_HALFLING_NPC_FEMALE; + if (sCom == "HALFLING_NPC_MALE") + return APPEARANCE_TYPE_HALFLING_NPC_MALE; + if (sCom == "HELMED_HORROR") + return APPEARANCE_TYPE_HELMED_HORROR; + if (sCom == "HEURODIS_LICH") + return APPEARANCE_TYPE_HEURODIS_LICH; + if (sCom == "HOBGOBLIN_WARRIOR") + return APPEARANCE_TYPE_HOBGOBLIN_WARRIOR; + if (sCom == "HOOK_HORROR") + return APPEARANCE_TYPE_HOOK_HORROR; + if (sCom == "HOBGOBLIN_WIZARD") + return APPEARANCE_TYPE_HOBGOBLIN_WIZARD; + if (sCom == "HOUSE_GUARD") + return APPEARANCE_TYPE_HOUSE_GUARD; + if (sCom == "HUMAN") + return APPEARANCE_TYPE_HUMAN; + if (sCom == "HUMAN_NPC_FEMALE_01") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_01; + if (sCom == "HUMAN_NPC_FEMALE_02") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_02; + if (sCom == "HUMAN_NPC_FEMALE_03") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_03; + if (sCom == "HUMAN_NPC_FEMALE_04") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_04; + if (sCom == "HUMAN_NPC_FEMALE_05") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_05; + if (sCom == "HUMAN_NPC_FEMALE_06") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_06; + if (sCom == "HUMAN_NPC_FEMALE_07") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_07; + if (sCom == "HUMAN_NPC_FEMALE_08") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_08; + if (sCom == "HUMAN_NPC_FEMALE_09") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_09; + if (sCom == "HUMAN_NPC_FEMALE_10") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_10; + if (sCom == "HUMAN_NPC_FEMALE_11") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_11; + if (sCom == "HUMAN_NPC_FEMALE_12") + return APPEARANCE_TYPE_HUMAN_NPC_FEMALE_12; + if (sCom == "HUMAN_NPC_MALE_01") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_01; + if (sCom == "HUMAN_NPC_MALE_02") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_02; + if (sCom == "HUMAN_NPC_MALE_03") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_03; + if (sCom == "HUMAN_NPC_MALE_04") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_04; + if (sCom == "HUMAN_NPC_MALE_05") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_05; + if (sCom == "HUMAN_NPC_MALE_06") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_06; + if (sCom == "HUMAN_NPC_MALE_07") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_07; + if (sCom == "HUMAN_NPC_MALE_08") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_08; + if (sCom == "HUMAN_NPC_MALE_09") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_09; + if (sCom == "HUMAN_NPC_MALE_10") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_10; + if (sCom == "HUMAN_NPC_MALE_11") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_11; + if (sCom == "HUMAN_NPC_MALE_12") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_12; + if (sCom == "HUMAN_NPC_MALE_13") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_13; + if (sCom == "HUMAN_NPC_MALE_14") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_14; + if (sCom == "HUMAN_NPC_MALE_15") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_15; + if (sCom == "HUMAN_NPC_MALE_16") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_16; + if (sCom == "HUMAN_NPC_MALE_17") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_17; + if (sCom == "HUMAN_NPC_MALE_18") + return APPEARANCE_TYPE_HUMAN_NPC_MALE_18; + if (sCom == "IMP") + return APPEARANCE_TYPE_IMP; + if (sCom == "INN_KEEPER") + return APPEARANCE_TYPE_INN_KEEPER; + if (sCom == "INTELLECT_DEVOURER") + return APPEARANCE_TYPE_INTELLECT_DEVOURER; + if (sCom == "INVISIBLE_HUMAN_MALE") + return APPEARANCE_TYPE_INVISIBLE_HUMAN_MALE; + if (sCom == "INVISIBLE_STALKER") + return APPEARANCE_TYPE_INVISIBLE_STALKER; + if (sCom == "KID_FEMALE") + return APPEARANCE_TYPE_KID_FEMALE; + if (sCom == "KID_MALE") + return APPEARANCE_TYPE_KID_MALE; + if (sCom == "KOBOLD_A") + return APPEARANCE_TYPE_KOBOLD_A; + if (sCom == "KOBOLD_B") + return APPEARANCE_TYPE_KOBOLD_B; + if (sCom == "KOBOLD_CHIEF_A") + return APPEARANCE_TYPE_KOBOLD_CHIEF_A; + if (sCom == "KOBOLD_CHIEF_B") + return APPEARANCE_TYPE_KOBOLD_CHIEF_B; + if (sCom == "KOBOLD_SHAMAN_A") + return APPEARANCE_TYPE_KOBOLD_SHAMAN_A; + if (sCom == "KOBOLD_SHAMAN_B") + return APPEARANCE_TYPE_KOBOLD_SHAMAN_B; + if (sCom == "LANTERN_ARCHON") + return APPEARANCE_TYPE_LANTERN_ARCHON; + if (sCom == "LICH") + return APPEARANCE_TYPE_LICH; + if (sCom == "LIZARDFOLK_A") + return APPEARANCE_TYPE_LIZARDFOLK_A; + if (sCom == "LIZARDFOLK_B") + return APPEARANCE_TYPE_LIZARDFOLK_B; + if (sCom == "LIZARDFOLK_SHAMAN_A") + return APPEARANCE_TYPE_LIZARDFOLK_SHAMAN_A; + if (sCom == "LIZARDFOLK_SHAMAN_B") + return APPEARANCE_TYPE_LIZARDFOLK_SHAMAN_B; + if (sCom == "LIZARDFOLK_WARRIOR_A") + return APPEARANCE_TYPE_LIZARDFOLK_WARRIOR_A; + if (sCom == "LIZARDFOLK_WARRIOR_B") + return APPEARANCE_TYPE_LIZARDFOLK_WARRIOR_B; + if (sCom == "LUSKAN_GUARD") + return APPEARANCE_TYPE_LUSKAN_GUARD; + if (sCom == "MALE_01") + return APPEARANCE_TYPE_MALE_01; + if (sCom == "MALE_02") + return APPEARANCE_TYPE_MALE_02; + if (sCom == "MALE_03") + return APPEARANCE_TYPE_MALE_03; + if (sCom == "MALE_04") + return APPEARANCE_TYPE_MALE_04; + if (sCom == "MALE_05") + return APPEARANCE_TYPE_MALE_05; + if (sCom == "MANTICORE") + return APPEARANCE_TYPE_MANTICORE; + if (sCom == "MEDUSA") + return APPEARANCE_TYPE_MEDUSA; + if (sCom == "MEPHIT_AIR") + return APPEARANCE_TYPE_MEPHIT_AIR; + if (sCom == "MEPHIT_DUST") + return APPEARANCE_TYPE_MEPHIT_DUST; + if (sCom == "MEPHIT_EARTH") + return APPEARANCE_TYPE_MEPHIT_EARTH; + if (sCom == "MEPHIT_FIRE") + return APPEARANCE_TYPE_MEPHIT_FIRE; + if (sCom == "MEPHIT_ICE") + return APPEARANCE_TYPE_MEPHIT_ICE; + if (sCom == "MEPHIT_MAGMA") + return APPEARANCE_TYPE_MEPHIT_MAGMA; + if (sCom == "MEPHIT_OOZE") + return APPEARANCE_TYPE_MEPHIT_OOZE; + if (sCom == "MEPHIT_SALT") + return APPEARANCE_TYPE_MEPHIT_SALT; + if (sCom == "MEPHIT_STEAM") + return APPEARANCE_TYPE_MEPHIT_STEAM; + if (sCom == "MEPHIT_WATER") + return APPEARANCE_TYPE_MEPHIT_WATER; + if (sCom == "MINOGON") + return APPEARANCE_TYPE_MINOGON; + if (sCom == "MINOTAUR") + return APPEARANCE_TYPE_MINOTAUR; + if (sCom == "MINOTAUR_CHIEFTAIN") + return APPEARANCE_TYPE_MINOTAUR_CHIEFTAIN; + if (sCom == "MINOTAUR_SHAMAN") + return APPEARANCE_TYPE_MINOTAUR_SHAMAN; + if (sCom == "MOHRG") + return APPEARANCE_TYPE_MOHRG; + if (sCom == "MUMMY_COMMON") + return APPEARANCE_TYPE_MUMMY_COMMON; + if (sCom == "MUMMY_FIGHTER_2") + return APPEARANCE_TYPE_MUMMY_FIGHTER_2; + if (sCom == "MUMMY_GREATER") + return APPEARANCE_TYPE_MUMMY_GREATER; + if (sCom == "MUMMY_WARRIOR") + return APPEARANCE_TYPE_MUMMY_WARRIOR; + if (sCom == "NW_MILITIA_MEMBER") + return APPEARANCE_TYPE_NW_MILITIA_MEMBER; + if (sCom == "NWN_AARIN") + return APPEARANCE_TYPE_NWN_AARIN; + if (sCom == "NWN_ARIBETH_EVIL") + return APPEARANCE_TYPE_NWN_ARIBETH_EVIL; + if (sCom == "NWN_HAEDRALINE") + return APPEARANCE_TYPE_NWN_HAEDRALINE; + if (sCom == "NWN_MAUGRIM") + return APPEARANCE_TYPE_NWN_MAUGRIM; + if (sCom == "NWN_MORAG") + return APPEARANCE_TYPE_NWN_MORAG; + if (sCom == "NWN_NASHER") + return APPEARANCE_TYPE_NWN_NASHER; + if (sCom == "NWN_SEDOS") + return APPEARANCE_TYPE_NWN_SEDOS; + if (sCom == "NYMPH") + return APPEARANCE_TYPE_NYMPH; + if (sCom == "OGRE") + return APPEARANCE_TYPE_OGRE; + if (sCom == "OGRE_CHIEFTAIN") + return APPEARANCE_TYPE_OGRE_CHIEFTAIN; + if (sCom == "OGRE_CHIEFTAINB") + return APPEARANCE_TYPE_OGRE_CHIEFTAINB; + if (sCom == "OGRE_MAGE") + return APPEARANCE_TYPE_OGRE_MAGE; + if (sCom == "OGRE_MAGEB") + return APPEARANCE_TYPE_OGRE_MAGEB; + if (sCom == "OGREB") + return APPEARANCE_TYPE_OGREB; + if (sCom == "OLD_MAN") + return APPEARANCE_TYPE_OLD_MAN; + if (sCom == "OLD_WOMAN") + return APPEARANCE_TYPE_OLD_WOMAN; + if (sCom == "ORC_A") + return APPEARANCE_TYPE_ORC_A; + if (sCom == "ORC_B") + return APPEARANCE_TYPE_ORC_B; + if (sCom == "ORC_CHIEFTAIN_A") + return APPEARANCE_TYPE_ORC_CHIEFTAIN_A; + if (sCom == "ORC_CHIEFTAIN_B") + return APPEARANCE_TYPE_ORC_CHIEFTAIN_B; + if (sCom == "ORC_SHAMAN_A") + return APPEARANCE_TYPE_ORC_SHAMAN_A; + if (sCom == "ORC_SHAMAN_B") + return APPEARANCE_TYPE_ORC_SHAMAN_B; + if (sCom == "OX") + return APPEARANCE_TYPE_OX; + if (sCom == "PENGUIN") + return APPEARANCE_TYPE_PENGUIN; + if (sCom == "PLAGUE_VICTIM") + return APPEARANCE_TYPE_PLAGUE_VICTIM; + if (sCom == "PROSTITUTE_01") + return APPEARANCE_TYPE_PROSTITUTE_01; + if (sCom == "PROSTITUTE_02") + return APPEARANCE_TYPE_PROSTITUTE_02; + if (sCom == "PSEUDODRAGON") + return APPEARANCE_TYPE_PSEUDODRAGON; + if (sCom == "QUASIT") + return APPEARANCE_TYPE_QUASIT; + if (sCom == "RAKSHASA_BEAR_MALE") + return APPEARANCE_TYPE_RAKSHASA_BEAR_MALE; + if (sCom == "RAKSHASA_TIGER_FEMALE") + return APPEARANCE_TYPE_RAKSHASA_TIGER_FEMALE; + if (sCom == "RAKSHASA_TIGER_MALE") + return APPEARANCE_TYPE_RAKSHASA_TIGER_MALE; + if (sCom == "RAKSHASA_WOLF_MALE") + return APPEARANCE_TYPE_RAKSHASA_WOLF_MALE; + if (sCom == "RAT") + return APPEARANCE_TYPE_RAT; + if (sCom == "RAT_DIRE") + return APPEARANCE_TYPE_RAT_DIRE; + if (sCom == "RAVEN") + return APPEARANCE_TYPE_RAVEN; + if (sCom == "SHADOW") + return APPEARANCE_TYPE_SHADOW; + if (sCom == "SHADOW_FIEND") + return APPEARANCE_TYPE_SHADOW_FIEND; + if (sCom == "SHIELD_GUARDIAN") + return APPEARANCE_TYPE_SHIELD_GUARDIAN; + if (sCom == "SHOP_KEEPER") + return APPEARANCE_TYPE_SHOP_KEEPER; + if (sCom == "SKELETAL_DEVOURER") + return APPEARANCE_TYPE_SKELETAL_DEVOURER; + if (sCom == "SKELETON_CHIEFTAIN") + return APPEARANCE_TYPE_SKELETON_CHIEFTAIN; + if (sCom == "SKELETON_COMMON") + return APPEARANCE_TYPE_SKELETON_COMMON; + if (sCom == "SKELETON_MAGE") + return APPEARANCE_TYPE_SKELETON_MAGE; + if (sCom == "SKELETON_WARRIOR") + return APPEARANCE_TYPE_SKELETON_WARRIOR; + if (sCom == "SKELETON_PRIEST") + return APPEARANCE_TYPE_SKELETON_PRIEST; + if (sCom == "SKELETON_WARRIOR_1") + return APPEARANCE_TYPE_SKELETON_WARRIOR_1; + if (sCom == "SKELETON_WARRIOR_2") + return APPEARANCE_TYPE_SKELETON_WARRIOR_2; + if (sCom == "SPHINX") + return APPEARANCE_TYPE_SPHINX; + if (sCom == "SPIDER_WRAITH") + return APPEARANCE_TYPE_SPIDER_WRAITH; + if (sCom == "STINGER") + return APPEARANCE_TYPE_STINGER; + if (sCom == "STINGER_CHIEFTAIN") + return APPEARANCE_TYPE_STINGER_CHIEFTAIN; + if (sCom == "STINGER_MAGE") + return APPEARANCE_TYPE_STINGER_MAGE; + if (sCom == "STINGER_WARRIOR") + return APPEARANCE_TYPE_STINGER_WARRIOR; + if (sCom == "SUCCUBUS") + return APPEARANCE_TYPE_SUCCUBUS; + if (sCom == "TROLL") + return APPEARANCE_TYPE_TROLL; + if (sCom == "TROLL_CHIEFTAIN") + return APPEARANCE_TYPE_TROLL_CHIEFTAIN; + if (sCom == "TROLL_SHAMAN") + return APPEARANCE_TYPE_TROLL_SHAMAN; + if (sCom == "UMBERHULK") + return APPEARANCE_TYPE_UMBERHULK; + if (sCom == "UTHGARD_ELK_TRIBE") + return APPEARANCE_TYPE_UTHGARD_ELK_TRIBE; + if (sCom == "UTHGARD_TIGER_TRIBE") + return APPEARANCE_TYPE_UTHGARD_TIGER_TRIBE; + if (sCom == "VAMPIRE_FEMALE") + return APPEARANCE_TYPE_VAMPIRE_FEMALE; + if (sCom == "VAMPIRE_MALE") + return APPEARANCE_TYPE_VAMPIRE_MALE; + if (sCom == "VROCK") + return APPEARANCE_TYPE_VROCK; + if (sCom == "WAITRESS") + return APPEARANCE_TYPE_WAITRESS; + if (sCom == "WAR_DEVOURER") + return APPEARANCE_TYPE_WAR_DEVOURER; + if (sCom == "WERECAT") + return APPEARANCE_TYPE_WERECAT; + if (sCom == "WERERAT") + return APPEARANCE_TYPE_WERERAT; + if (sCom == "WEREWOLF") + return APPEARANCE_TYPE_WEREWOLF; + if (sCom == "WIGHT") + return APPEARANCE_TYPE_WIGHT; + if (sCom == "WILL_O_WISP") + return APPEARANCE_TYPE_WILL_O_WISP; + if (sCom == "WRAITH") + return APPEARANCE_TYPE_WRAITH; + if (sCom == "WYRMLING_BLACK") + return APPEARANCE_TYPE_WYRMLING_BLACK; + if (sCom == "WYRMLING_BLUE") + return APPEARANCE_TYPE_WYRMLING_BLUE; + if (sCom == "WYRMLING_BRASS") + return APPEARANCE_TYPE_WYRMLING_BRASS; + if (sCom == "WYRMLING_BRONZE") + return APPEARANCE_TYPE_WYRMLING_BRONZE; + if (sCom == "WYRMLING_COPPER") + return APPEARANCE_TYPE_WYRMLING_COPPER; + if (sCom == "WYRMLING_GOLD") + return APPEARANCE_TYPE_WYRMLING_GOLD; + if (sCom == "WYRMLING_GREEN") + return APPEARANCE_TYPE_WYRMLING_GREEN; + if (sCom == "WYRMLING_RED") + return APPEARANCE_TYPE_WYRMLING_RED; + if (sCom == "WYRMLING_SILVER") + return APPEARANCE_TYPE_WYRMLING_SILVER; + if (sCom == "WYRMLING_WHITE") + return APPEARANCE_TYPE_WYRMLING_WHITE; + if (sCom == "YUAN_TI") + return APPEARANCE_TYPE_YUAN_TI; + if (sCom == "YUAN_TI_CHIEFTEN") + return APPEARANCE_TYPE_YUAN_TI_CHIEFTEN; + if (sCom == "YUAN_TI_WIZARD") + return APPEARANCE_TYPE_YUAN_TI_WIZARD; + if (sCom == "ZOMBIE") + return APPEARANCE_TYPE_ZOMBIE; + if (sCom == "ZOMBIE_ROTTING") + return APPEARANCE_TYPE_ZOMBIE_ROTTING; + if (sCom == "ZOMBIE_TYRANT_FOG") + return APPEARANCE_TYPE_ZOMBIE_TYRANT_FOG; + if (sCom == "ZOMBIE_WARRIOR_1") + return APPEARANCE_TYPE_ZOMBIE_WARRIOR_1; + if (sCom == "ZOMBIE_WARRIOR_2") + return APPEARANCE_TYPE_ZOMBIE_WARRIOR_2; + + // new 1.09 behavior - also check against the 2da + string s2daval; + int i = 0; + while (1) + { + s2daval = Get2DAString("appearance", "NAME", i); + if (s2daval == "") break; // end of file + s2daval = Get2DAString("appearance", "LABEL", i); + if (s2daval != "") + { + if (GetStringUpperCase(sCom) == GetStringUpperCase(s2daval)) return i; + } + i++; + } + return -1; +} + +//////////////////////////////////////////////////////////////////////// +void dmw_CleanUp(object oMySpeaker) +{ + int nCount; + int nCache; + //DeleteLocalObject(oMySpeaker, "dmfi_univ_target"); + DeleteLocalLocation(oMySpeaker, "dmfi_univ_location"); + DeleteLocalObject(oMySpeaker, "dmw_item"); + DeleteLocalString(oMySpeaker, "dmw_repamt"); + DeleteLocalString(oMySpeaker, "dmw_repargs"); + nCache = GetLocalInt(oMySpeaker, "dmw_playercache"); + for (nCount = 1; nCount <= nCache; nCount++) + { + DeleteLocalObject(oMySpeaker, "dmw_playercache" + IntToString(nCount)); + } + DeleteLocalInt(oMySpeaker, "dmw_playercache"); + nCache = GetLocalInt(oMySpeaker, "dmw_itemcache"); + for (nCount = 1; nCount <= nCache; nCount++) + { + DeleteLocalObject(oMySpeaker, "dmw_itemcache" + IntToString(nCount)); + } + DeleteLocalInt(oMySpeaker, "dmw_itemcache"); + for (nCount = 1; nCount <= 10; nCount++) + { + DeleteLocalString(oMySpeaker, "dmw_dialog" + IntToString(nCount)); + DeleteLocalString(oMySpeaker, "dmw_function" + IntToString(nCount)); + DeleteLocalString(oMySpeaker, "dmw_params" + IntToString(nCount)); + } + DeleteLocalString(oMySpeaker, "dmw_playerfunc"); + DeleteLocalInt(oMySpeaker, "dmw_started"); +} + +//////////////////////////////////////////////////////////////////////// +//Smoking Function by Jason Robinson +location GetLocationAboveAndInFrontOf(object oPC, float fDist, float fHeight) +{ + float fDistance = -fDist; + object oTarget = (oPC); + object oArea = GetArea(oTarget); + vector vPosition = GetPosition(oTarget); + vPosition.z += fHeight; + float fOrientation = GetFacing(oTarget); + vector vNewPos = AngleToVector(fOrientation); + float vZ = vPosition.z; + float vX = vPosition.x - fDistance * vNewPos.x; + float vY = vPosition.y - fDistance * vNewPos.y; + fOrientation = GetFacing(oTarget); + vX = vPosition.x - fDistance * vNewPos.x; + vY = vPosition.y - fDistance * vNewPos.y; + vNewPos = AngleToVector(fOrientation); + vZ = vPosition.z; + vNewPos = Vector(vX, vY, vZ); + return Location(oArea, vNewPos, fOrientation); +} + +//////////////////////////////////////////////////////////////////////// +//Smoking Function by Jason Robinson +void SmokePipe(object oActivator) +{ + string sEmote1 = "*puffs on a pipe*"; + string sEmote2 = "*inhales from a pipe*"; + string sEmote3 = "*pulls a mouthful of smoke from a pipe*"; + float fHeight = 1.7; + float fDistance = 0.1; + // Set height based on race and gender + if (GetGender(oActivator) == GENDER_MALE) + { + switch (GetRacialType(oActivator)) + { + case RACIAL_TYPE_HUMAN: + case RACIAL_TYPE_HALFELF: fHeight = 1.7; fDistance = 0.12; break; + case RACIAL_TYPE_ELF: fHeight = 1.55; fDistance = 0.08; break; + case RACIAL_TYPE_GNOME: + case RACIAL_TYPE_HALFLING: fHeight = 1.15; fDistance = 0.12; break; + case RACIAL_TYPE_DWARF: fHeight = 1.2; fDistance = 0.12; break; + case RACIAL_TYPE_HALFORC: fHeight = 1.9; fDistance = 0.2; break; + } + } + else + { + // FEMALES + switch (GetRacialType(oActivator)) + { + case RACIAL_TYPE_HUMAN: + case RACIAL_TYPE_HALFELF: fHeight = 1.6; fDistance = 0.12; break; + case RACIAL_TYPE_ELF: fHeight = 1.45; fDistance = 0.12; break; + case RACIAL_TYPE_GNOME: + case RACIAL_TYPE_HALFLING: fHeight = 1.1; fDistance = 0.075; break; + case RACIAL_TYPE_DWARF: fHeight = 1.2; fDistance = 0.1; break; + case RACIAL_TYPE_HALFORC: fHeight = 1.8; fDistance = 0.13; break; + } + } + location lAboveHead = GetLocationAboveAndInFrontOf(oActivator, fDistance, fHeight); + // emotes + switch (d3()) + { + case 1: AssignCommand(oActivator, ActionSpeakString(sEmote1)); break; + case 2: AssignCommand(oActivator, ActionSpeakString(sEmote2)); break; + case 3: AssignCommand(oActivator, ActionSpeakString(sEmote3));break; + } + // glow red + AssignCommand(oActivator, ActionDoCommand(ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_RED_5), oActivator, 0.15))); + // wait a moment + AssignCommand(oActivator, ActionWait(3.0)); + // puff of smoke above and in front of head + AssignCommand(oActivator, ActionDoCommand(ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SMOKE_PUFF), lAboveHead))); + // if female, turn head to left + if ((GetGender(oActivator) == GENDER_FEMALE) && (GetRacialType(oActivator) != RACIAL_TYPE_DWARF)) + AssignCommand(oActivator, ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 1.0, 5.0)); +} + +//////////////////////////////////////////////////////////////////////// +void ParseEmote(string sEmote, object oPC) +{ + // allow builder to suppress + if (GetLocalInt(GetModule(), "DMFI_SUPPRESS_EMOTES") != 0) return; + + // see if PC has muted their own emotes + if (GetLocalInt(oPC, "hls_emotemute") != 0) return; + + DeleteLocalInt(oPC, "dmfi_univ_int"); + object oRightHand = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND,oPC); + object oLeftHand = GetItemInSlot(INVENTORY_SLOT_LEFTHAND,oPC); + + if (GetStringLeft(sEmote, 1) == "*") + { + int iToggle; + string sBuffer; + sBuffer = GetStringRight(sEmote, GetStringLength(sEmote)-1); + while (!iToggle && GetStringLength(sBuffer) > 1) + { + if (GetStringLeft(sBuffer,1) == "*") + iToggle = abs(iToggle - 1); + sBuffer = GetStringRight(sBuffer, GetStringLength(sBuffer)-1); + } + sEmote = GetStringLeft(sEmote, GetStringLength(sEmote)-GetStringLength(sBuffer)); + } + + int iSit; + object oArea; + object oChair; + // morderon - rewrote from here to end for better text case handling + string sLCEmote = GetStringLowerCase(sEmote); + //*emote* rolls + if ((FindSubString(sLCEmote, "strength") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 61); + else if ((FindSubString(sLCEmote, "dexterity") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 62); + else if ((FindSubString(sLCEmote, "constitution") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 63); + else if ((FindSubString(sLCEmote, "intelligence") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 64); + else if ((FindSubString(sLCEmote, "wisdom") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 65); + else if ((FindSubString(sLCEmote, "charisma") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 66); + else if ((FindSubString(sLCEmote, "fortitude") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 67); + else if ((FindSubString(sLCEmote, "reflex") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 68); + else if ((FindSubString(sLCEmote, "will") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 69); + else if ((FindSubString(sLCEmote, "animal empathy") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 71); + else if ((FindSubString(sLCEmote, "appraise") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 72); + else if ((FindSubString(sLCEmote, "bluff") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 73); + else if ((FindSubString(sLCEmote, "concentration") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 74); + else if ((FindSubString(sLCEmote, "craft armor") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 75); + else if ((FindSubString(sLCEmote, "craft trap") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 76); + else if ((FindSubString(sLCEmote, "craft weapon") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 77); + else if ((FindSubString(sLCEmote, "disable trap") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 78); + else if ((FindSubString(sLCEmote, "discipline") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 79); + else if ((FindSubString(sLCEmote, "heal") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 81); + else if ((FindSubString(sLCEmote, "hide") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 82); + else if ((FindSubString(sLCEmote, "intimidate") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 83); + else if ((FindSubString(sLCEmote, "listen") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 84); + else if ((FindSubString(sLCEmote, "lore") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 85); + else if ((FindSubString(sLCEmote, "move silently") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 86); + else if ((FindSubString(sLCEmote, "open lock") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 87); + else if ((FindSubString(sLCEmote, "parry") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 88); + else if ((FindSubString(sLCEmote, "perform") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 89); + else if ((FindSubString(sLCEmote, "persuade") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 91); + else if ((FindSubString(sLCEmote, "pick pocket") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 92); + else if ((FindSubString(sLCEmote, "search") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 93); + else if ((FindSubString(sLCEmote, "set trap") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 94); + else if ((FindSubString(sLCEmote, "spellcraft") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 95); + else if ((FindSubString(sLCEmote, "spot") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 96); + else if ((FindSubString(sLCEmote, "taunt") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 97); + else if ((FindSubString(sLCEmote, "tumble") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 98); + else if ((FindSubString(sLCEmote, "use magic device") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 99); + else if ((FindSubString(sLCEmote, "ride") != -1)) + SetLocalInt(oPC, "dmfi_univ_int", 90); + if (GetLocalInt(oPC, "dmfi_univ_int")) + { + SetLocalString(oPC, "dmfi_univ_conv", "pc_dicebag"); + ExecuteScript("dmfi_execute", oPC); + return; + } + + //*emote* + if (FindSubString(GetStringLowerCase(sEmote), "*bows") != -1 || + FindSubString(GetStringLowerCase(sEmote), " bows") != -1 || + FindSubString(GetStringLowerCase(sEmote), "curtsey") != -1) + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_BOW, 1.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "drink") != -1 || + FindSubString(GetStringLowerCase(sEmote), "sips") != -1) + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_DRINK, 1.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "drinks") != -1 && + FindSubString(GetStringLowerCase(sEmote), "sits") != -1) + { + AssignCommand(oPC, ActionPlayAnimation( ANIMATION_LOOPING_SIT_CROSS, 1.0, 99999.0f)); + DelayCommand(1.0f, AssignCommand(oPC, PlayAnimation( ANIMATION_FIREFORGET_DRINK, 1.0))); + DelayCommand(3.0f, AssignCommand(oPC, PlayAnimation( ANIMATION_LOOPING_SIT_CROSS, 1.0, 99999.0))); + } + else if (FindSubString(GetStringLowerCase(sEmote), "reads") != -1 && + FindSubString(GetStringLowerCase(sEmote), "sits") != -1) + { + AssignCommand(oPC, ActionPlayAnimation( ANIMATION_LOOPING_SIT_CROSS, 1.0, 99999.0f)); + DelayCommand(1.0f, AssignCommand(oPC, PlayAnimation( ANIMATION_FIREFORGET_READ, 1.0))); + DelayCommand(3.0f, AssignCommand(oPC, PlayAnimation( ANIMATION_LOOPING_SIT_CROSS, 1.0, 99999.0))); + } + else if (FindSubString(GetStringLowerCase(sEmote), "sit")!= -1) + { + AssignCommand(oPC, ActionPlayAnimation( ANIMATION_LOOPING_SIT_CROSS, 1.0, 99999.0f)); + } + else if (FindSubString(GetStringLowerCase(sEmote), "greet")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "wave") != -1) + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_GREETING, 1.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "yawn")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "stretch") != -1 || + FindSubString(GetStringLowerCase(sEmote), "bored") != -1) + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_PAUSE_BORED, 1.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "scratch")!= -1) + { + AssignCommand(oPC,ActionUnequipItem(oRightHand)); + AssignCommand(oPC,ActionUnequipItem(oLeftHand)); + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_PAUSE_SCRATCH_HEAD, 1.0)); + } + else if (FindSubString(GetStringLowerCase(sEmote), "*reads")!= -1 || + FindSubString(GetStringLowerCase(sEmote), " reads")!= -1|| + FindSubString(GetStringLowerCase(sEmote), "read")!= -1) + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_READ, 1.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "salute")!= -1) + { + AssignCommand(oPC,ActionUnequipItem(oRightHand)); + AssignCommand(oPC,ActionUnequipItem(oLeftHand)); + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_SALUTE, 1.0)); + } + else if (FindSubString(GetStringLowerCase(sEmote), "steal")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "swipe") != -1) + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_STEAL, 1.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "taunt")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "mock") != -1) + { + PlayVoiceChat(VOICE_CHAT_TAUNT, oPC); + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_TAUNT, 1.0)); + } + else if ((FindSubString(GetStringLowerCase(sEmote), "smokes") != -1)|| + (FindSubString(GetStringLowerCase(sEmote), "smoke") != -1)) + { + SmokePipe(oPC); + } + else if (FindSubString(GetStringLowerCase(sEmote), "cheer ")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "cheer*")!= -1) + { + PlayVoiceChat(VOICE_CHAT_CHEER, oPC); + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_VICTORY1, 1.0)); + } + else if (FindSubString(GetStringLowerCase(sEmote), "hooray")!= -1) + { + PlayVoiceChat(VOICE_CHAT_CHEER, oPC); + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_VICTORY2, 1.0)); + } + else if (FindSubString(GetStringLowerCase(sEmote), "celebrate")!= -1) + { + PlayVoiceChat(VOICE_CHAT_CHEER, oPC); + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_VICTORY3, 1.0)); + } + else if (FindSubString(GetStringLowerCase(sEmote), "giggle")!= -1 && GetGender(oPC) == GENDER_FEMALE) + AssignCommand(oPC, PlaySound("vs_fshaldrf_haha")); + else if (FindSubString(GetStringLowerCase(sEmote), "flop")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "prone")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_DEAD_FRONT, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "bends")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "stoop")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_GET_LOW, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "fiddle")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_GET_MID, 1.0, 5.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "nod")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "agree")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_LISTEN, 1.0, 4.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "peers")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "scans")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "search")!= -1) + AssignCommand(oPC,ActionPlayAnimation(ANIMATION_LOOPING_LOOK_FAR, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "*pray")!= -1 || + FindSubString(GetStringLowerCase(sEmote), " pray")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "meditate")!= -1) + { + AssignCommand(oPC,ActionUnequipItem(oRightHand)); + AssignCommand(oPC,ActionUnequipItem(oLeftHand)); + AssignCommand(oPC,ActionPlayAnimation(ANIMATION_LOOPING_MEDITATE, 1.0, 99999.0)); + } + else if (FindSubString(GetStringLowerCase(sEmote), "drunk")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "woozy")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_PAUSE_DRUNK, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "tired")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "fatigue")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "exhausted")!= -1) + { + PlayVoiceChat(VOICE_CHAT_REST, oPC); + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_PAUSE_TIRED, 1.0, 3.0)); + } + else if (FindSubString(GetStringLowerCase(sEmote), "fidget")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "shifts")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_PAUSE2, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "sits")!= -1 && + (FindSubString(GetStringLowerCase(sEmote), "floor")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "ground")!= -1)) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_SIT_CROSS, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "demand")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "threaten")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_TALK_FORCEFUL, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "laugh")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "chuckle")!= -1) + { + PlayVoiceChat(VOICE_CHAT_LAUGH, oPC); + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_TALK_LAUGHING, 1.0, 2.0)); + } + else if (FindSubString(GetStringLowerCase(sEmote), "begs")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "plead")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_TALK_PLEADING, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "worship")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_WORSHIP, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "snore")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "*naps")!= -1 || + FindSubString(GetStringLowerCase(sEmote), " naps")!= -1|| + FindSubString(GetStringLowerCase(sEmote), "nap")!= -1) + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_SLEEP), oPC); + else if (FindSubString(GetStringLowerCase(sEmote), "*sings")!= -1 || + FindSubString(GetStringLowerCase(sEmote), " sings")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "hums")!= -1) + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BARD_SONG), oPC, 6.0f); + else if (FindSubString(GetStringLowerCase(sEmote), "whistles")!= -1) + AssignCommand(oPC, PlaySound("as_pl_whistle2")); + else if (FindSubString(GetStringLowerCase(sEmote), "talks")!= -1 || + FindSubString(GetStringLowerCase(sEmote), "chats")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_TALK_NORMAL, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "shakes head")!= -1) + { + AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 1.0, 0.25f)); + DelayCommand(0.15f, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 1.0, 0.25f))); + DelayCommand(0.40f, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 1.0, 0.25f))); + DelayCommand(0.65f, AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_RIGHT, 1.0, 0.25f))); + } + else if (FindSubString(GetStringLowerCase(sEmote), "ducks")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_FIREFORGET_DODGE_DUCK, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "dodge")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_FIREFORGET_DODGE_SIDE, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "cantrip")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_CONJURE1, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "spellcast")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_CONJURE2, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "fall")!= -1 && + FindSubString(GetStringLowerCase(sEmote), "back")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_DEAD_BACK, 1.0, 99999.0)); + else if (FindSubString(GetStringLowerCase(sEmote), "spasm")!= -1) + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_SPASM, 1.0, 99999.0)); +} + +//////////////////////////////////////////////////////////////////////// +string ConvertCustom(string sLetter, int iRotate) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + + //Functional groups for custom languages + //Vowel Sounds: a, e, i, o, u + //Hard Sounds: b, d, k, p, t + //Sibilant Sounds: c, f, s, q, w + //Soft Sounds: g, h, l, r, y + //Hummed Sounds: j, m, n, v, z + //Oddball out: x, the rarest letter in the alphabet + + string sTranslate = "aeiouAEIOUbdkptBDKPTcfsqwCFSQWghlryGHLRYjmnvzJMNVZxX"; + int iTrans = FindSubString(sTranslate, sLetter); + if (iTrans == -1) return sLetter; //return any character that isn't on the cipher + + //Now here's the tricky part... recalculating the offsets according functional + //letter group, to produce an huge variety of "new" languages. + + int iOffset = iRotate % 5; + int iGroup = iTrans / 5; + int iBonus = iTrans / 10; + int iMultiplier = iRotate / 5; + iOffset = iTrans + iOffset + (iMultiplier * iBonus); + + return GetSubString(sTranslate, iGroup * 5 + iOffset % 5, 1); +}//end ConvertCustom + +//////////////////////////////////////////////////////////////////////// +string ProcessCustom(string sPhrase, int iLanguage) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertCustom(GetStringLeft(sPhrase, 1), iLanguage); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertDrow(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "il"; + case 26: return "Il"; + case 1: return "f"; + case 27: return "F"; + case 2: return "st"; + case 28: return "St"; + case 3: return "w"; + case 4: return "a"; + case 5: return "o"; + case 6: return "v"; + case 7: return "ir"; + case 33: return "Ir"; + case 8: return "e"; + case 9: return "vi"; + case 35: return "Vi"; + case 10: return "go"; + case 11: return "c"; + case 12: return "li"; + case 13: return "l"; + case 14: return "e"; + case 15: return "ty"; + case 41: return "Ty"; + case 16: return "r"; + case 17: return "m"; + case 18: return "la"; + case 44: return "La"; + case 19: return "an"; + case 45: return "An"; + case 20: return "y"; + case 21: return "el"; + case 47: return "El"; + case 22: return "ky"; + case 48: return "Ky"; + case 23: return "'"; + case 24: return "a"; + case 25: return "p'"; + case 29: return "W"; + case 30: return "A"; + case 31: return "O"; + case 32: return "V"; + case 34: return "E"; + case 36: return "Go"; + case 37: return "C"; + case 38: return "Li"; + case 39: return "L"; + case 40: return "E"; + case 42: return "R"; + case 43: return "M"; + case 46: return "Y"; + case 49: return "'"; + case 50: return "A"; + case 51: return "P'"; + + default: return sLetter; + } return ""; +} + +//////////////////////////////////////////////////////////////////////// +string ProcessDrow(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertDrow(GetStringLeft(sPhrase, 1)); + + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + + +//////////////////////////////////////////////////////////////////////// +string ConvertLeetspeak(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "4"; + case 26: return "4"; + case 1: return "8"; + case 27: return "8"; + case 2: return "("; + case 28: return "("; + case 3: return "|)"; + case 29: return "|)"; + case 4: return "3"; + case 30: return "3"; + case 5: return "f"; + case 31: return "F"; + case 6: return "9"; + case 32: return "9"; + case 7: return "h"; + case 33: return "H"; + case 8: return "!"; + case 34: return "!"; + case 9: return "j"; + case 35: return "J"; + case 10: return "|<"; + case 36: return "|<"; + case 11: return "1"; + case 37: return "1"; + //case 12: return "/\/\"; + //case 38: return "/\/\"; + case 13: return "|\|"; + case 39: return "|\|"; + case 14: return "0"; + case 40: return "0"; + case 15: return "p"; + case 41: return "P"; + case 16: return "Q"; + case 42: return "Q"; + case 17: return "R"; + case 43: return "R"; + case 18: return "5"; + case 44: return "5"; + case 19: return "7"; + case 45: return "7"; + case 20: return "u"; + case 46: return "U"; + case 21: return "\/"; + case 47: return "\/"; + case 22: return "\/\/"; + case 48: return "\/\/"; + case 23: return "x"; + case 49: return "X"; + case 24: return "y"; + case 50: return "Y"; + case 25: return "2"; + case 51: return "2"; + default: return sLetter; + } + return ""; +}//end ConvertLeetspeak + +//////////////////////////////////////////////////////////////////////// +string ProcessLeetspeak(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertLeetspeak(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertInfernal(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "o"; + case 1: return "c"; + case 2: return "r"; + case 3: return "j"; + case 4: return "a"; + case 5: return "v"; + case 6: return "k"; + case 7: return "r"; + case 8: return "y"; + case 9: return "z"; + case 10: return "g"; + case 11: return "m"; + case 12: return "z"; + case 13: return "r"; + case 14: return "y"; + case 15: return "k"; + case 16: return "r"; + case 17: return "n"; + case 18: return "k"; + case 19: return "d"; + case 20: return "'"; + case 21: return "r"; + case 22: return "'"; + case 23: return "k"; + case 24: return "i"; + case 25: return "g"; + case 26: return "O"; + case 27: return "C"; + case 28: return "R"; + case 29: return "J"; + case 30: return "A"; + case 31: return "V"; + case 32: return "K"; + case 33: return "R"; + case 34: return "Y"; + case 35: return "Z"; + case 36: return "G"; + case 37: return "M"; + case 38: return "Z"; + case 39: return "R"; + case 40: return "Y"; + case 41: return "K"; + case 42: return "R"; + case 43: return "N"; + case 44: return "K"; + case 45: return "D"; + case 46: return "'"; + case 47: return "R"; + case 48: return "'"; + case 49: return "K"; + case 50: return "I"; + case 51: return "G"; + default: return sLetter; + } + return ""; +}//end ConvertInfernal + +//////////////////////////////////////////////////////////////////////// +string ProcessInfernal(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertInfernal(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertAbyssal(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 27: return "N"; + case 28: return "M"; + case 29: return "G"; + case 30: return "A"; + case 31: return "K"; + case 32: return "S"; + case 33: return "D"; + case 35: return "H"; + case 36: return "B"; + case 37: return "L"; + case 38: return "P"; + case 39: return "T"; + case 40: return "E"; + case 41: return "B"; + case 43: return "N"; + case 44: return "M"; + case 45: return "G"; + case 48: return "B"; + case 51: return "T"; + case 0: return "oo"; + case 26: return "OO"; + case 1: return "n"; + case 2: return "m"; + case 3: return "g"; + case 4: return "a"; + case 5: return "k"; + case 6: return "s"; + case 7: return "d"; + case 8: return "oo"; + case 34: return "OO"; + case 9: return "h"; + case 10: return "b"; + case 11: return "l"; + case 12: return "p"; + case 13: return "t"; + case 14: return "e"; + case 15: return "b"; + case 16: return "ch"; + case 42: return "Ch"; + case 17: return "n"; + case 18: return "m"; + case 19: return "g"; + case 20: return "ae"; + case 46: return "Ae"; + case 21: return "ts"; + case 47: return "Ts"; + case 22: return "b"; + case 23: return "bb"; + case 49: return "Bb"; + case 24: return "ee"; + case 50: return "Ee"; + case 25: return "t"; + default: return sLetter; + } + return ""; +}//end ConvertAbyssal + +//////////////////////////////////////////////////////////////////////// +string ProcessAbyssal(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertAbyssal(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertCelestial(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "a"; + case 1: return "p"; + case 2: return "v"; + case 3: return "t"; + case 4: return "el"; + case 5: return "b"; + case 6: return "w"; + case 7: return "r"; + case 8: return "i"; + case 9: return "m"; + case 10: return "x"; + case 11: return "h"; + case 12: return "s"; + case 13: return "c"; + case 14: return "u"; + case 15: return "q"; + case 16: return "d"; + case 17: return "n"; + case 18: return "l"; + case 19: return "y"; + case 20: return "o"; + case 21: return "j"; + case 22: return "f"; + case 23: return "g"; + case 24: return "z"; + case 25: return "k"; + case 26: return "A"; + case 27: return "P"; + case 28: return "V"; + case 29: return "T"; + case 30: return "El"; + case 31: return "B"; + case 32: return "W"; + case 33: return "R"; + case 34: return "I"; + case 35: return "M"; + case 36: return "X"; + case 37: return "H"; + case 38: return "S"; + case 39: return "C"; + case 40: return "U"; + case 41: return "Q"; + case 42: return "D"; + case 43: return "N"; + case 44: return "L"; + case 45: return "Y"; + case 46: return "O"; + case 47: return "J"; + case 48: return "F"; + case 49: return "G"; + case 50: return "Z"; + case 51: return "K"; + default: return sLetter; + } + return ""; +}//end ConvertCelestial + +//////////////////////////////////////////////////////////////////////// +string ProcessCelestial(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertCelestial(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertGoblin(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "u"; + case 1: return "p"; + case 2: return ""; + case 3: return "t"; + case 4: return "'"; + case 5: return "v"; + case 6: return "k"; + case 7: return "r"; + case 8: return "o"; + case 9: return "z"; + case 10: return "g"; + case 11: return "m"; + case 12: return "s"; + case 13: return ""; + case 14: return "u"; + case 15: return "b"; + case 16: return ""; + case 17: return "n"; + case 18: return "k"; + case 19: return "d"; + case 20: return "u"; + case 21: return ""; + case 22: return "'"; + case 23: return ""; + case 24: return "o"; + case 25: return "w"; + case 26: return "U"; + case 27: return "P"; + case 28: return ""; + case 29: return "T"; + case 30: return "'"; + case 31: return "V"; + case 32: return "K"; + case 33: return "R"; + case 34: return "O"; + case 35: return "Z"; + case 36: return "G"; + case 37: return "M"; + case 38: return "S"; + case 39: return ""; + case 40: return "U"; + case 41: return "B"; + case 42: return ""; + case 43: return "N"; + case 44: return "K"; + case 45: return "D"; + case 46: return "U"; + case 47: return ""; + case 48: return "'"; + case 49: return ""; + case 50: return "O"; + case 51: return "W"; + default: return sLetter; + } + return ""; +}//end ConvertGoblin + +//////////////////////////////////////////////////////////////////////// +string ProcessGoblin(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertGoblin(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertDraconic(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "e"; + case 26: return "E"; + case 1: return "po"; + case 27: return "Po"; + case 2: return "st"; + case 28: return "St"; + case 3: return "ty"; + case 29: return "Ty"; + case 4: return "i"; + case 5: return "w"; + case 6: return "k"; + case 7: return "ni"; + case 33: return "Ni"; + case 8: return "un"; + case 34: return "Un"; + case 9: return "vi"; + case 35: return "Vi"; + case 10: return "go"; + case 36: return "Go"; + case 11: return "ch"; + case 37: return "Ch"; + case 12: return "li"; + case 38: return "Li"; + case 13: return "ra"; + case 39: return "Ra"; + case 14: return "y"; + case 15: return "ba"; + case 41: return "Ba"; + case 16: return "x"; + case 17: return "hu"; + case 43: return "Hu"; + case 18: return "my"; + case 44: return "My"; + case 19: return "dr"; + case 45: return "Dr"; + case 20: return "on"; + case 46: return "On"; + case 21: return "fi"; + case 47: return "Fi"; + case 22: return "zi"; + case 48: return "Zi"; + case 23: return "qu"; + case 49: return "Qu"; + case 24: return "an"; + case 50: return "An"; + case 25: return "ji"; + case 51: return "Ji"; + case 30: return "I"; + case 31: return "W"; + case 32: return "K"; + case 40: return "Y"; + case 42: return "X"; + default: return sLetter; + } + return ""; +}//end ConvertDraconic + +//////////////////////////////////////////////////////////////////////// +string ProcessDraconic(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertDraconic(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertDwarf(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "az"; + case 26: return "Az"; + case 1: return "po"; + case 27: return "Po"; + case 2: return "zi"; + case 28: return "Zi"; + case 3: return "t"; + case 4: return "a"; + case 5: return "wa"; + case 31: return "Wa"; + case 6: return "k"; + case 7: return "'"; + case 8: return "a"; + case 9: return "dr"; + case 35: return "Dr"; + case 10: return "g"; + case 11: return "n"; + case 12: return "l"; + case 13: return "r"; + case 14: return "ur"; + case 40: return "Ur"; + case 15: return "rh"; + case 41: return "Rh"; + case 16: return "k"; + case 17: return "h"; + case 18: return "th"; + case 44: return "Th"; + case 19: return "k"; + case 20: return "'"; + case 21: return "g"; + case 22: return "zh"; + case 48: return "Zh"; + case 23: return "q"; + case 24: return "o"; + case 25: return "j"; + case 29: return "T"; + case 30: return "A"; + case 32: return "K"; + case 33: return "'"; + case 34: return "A"; + case 36: return "G"; + case 37: return "N"; + case 38: return "L"; + case 39: return "R"; + case 42: return "K"; + case 43: return "H"; + case 45: return "K"; + case 46: return "'"; + case 47: return "G"; + case 49: return "Q"; + case 50: return "O"; + case 51: return "J"; + default: return sLetter; + } return ""; +}//end ConvertDwarf + +//////////////////////////////////////////////////////////////////////// +string ProcessDwarf(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertDwarf(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertElven(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "il"; + case 26: return "Il"; + case 1: return "f"; + case 2: return "ny"; + case 28: return "Ny"; + case 3: return "w"; + case 4: return "a"; + case 5: return "o"; + case 6: return "v"; + case 7: return "ir"; + case 33: return "Ir"; + case 8: return "e"; + case 9: return "qu"; + case 35: return "Qu"; + case 10: return "n"; + case 11: return "c"; + case 12: return "s"; + case 13: return "l"; + case 14: return "e"; + case 15: return "ty"; + case 41: return "Ty"; + case 16: return "h"; + case 17: return "m"; + case 18: return "la"; + case 44: return "La"; + case 19: return "an"; + case 45: return "An"; + case 20: return "y"; + case 21: return "el"; + case 47: return "El"; + case 22: return "am"; + case 48: return "Am"; + case 23: return "'"; + case 24: return "a"; + case 25: return "j"; + + case 27: return "F"; + case 29: return "W"; + case 30: return "A"; + case 31: return "O"; + case 32: return "V"; + case 34: return "E"; + case 36: return "N"; + case 37: return "C"; + case 38: return "S"; + case 39: return "L"; + case 40: return "E"; + case 42: return "H"; + case 43: return "M"; + case 46: return "Y"; + case 49: return "'"; + case 50: return "A"; + case 51: return "J"; + + default: return sLetter; + } return ""; +} + +//////////////////////////////////////////////////////////////////////// +string ProcessElven(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertElven(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertGnome(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { +//cipher based on English -> Al Baed + case 0: return "y"; + case 1: return "p"; + case 2: return "l"; + case 3: return "t"; + case 4: return "a"; + case 5: return "v"; + case 6: return "k"; + case 7: return "r"; + case 8: return "e"; + case 9: return "z"; + case 10: return "g"; + case 11: return "m"; + case 12: return "s"; + case 13: return "h"; + case 14: return "u"; + case 15: return "b"; + case 16: return "x"; + case 17: return "n"; + case 18: return "c"; + case 19: return "d"; + case 20: return "i"; + case 21: return "j"; + case 22: return "f"; + case 23: return "q"; + case 24: return "o"; + case 25: return "w"; + case 26: return "Y"; + case 27: return "P"; + case 28: return "L"; + case 29: return "T"; + case 30: return "A"; + case 31: return "V"; + case 32: return "K"; + case 33: return "R"; + case 34: return "E"; + case 35: return "Z"; + case 36: return "G"; + case 37: return "M"; + case 38: return "S"; + case 39: return "H"; + case 40: return "U"; + case 41: return "B"; + case 42: return "X"; + case 43: return "N"; + case 44: return "C"; + case 45: return "D"; + case 46: return "I"; + case 47: return "J"; + case 48: return "F"; + case 49: return "Q"; + case 50: return "O"; + case 51: return "W"; + default: return sLetter; + } return ""; +} + +//////////////////////////////////////////////////////////////////////// +string ProcessGnome(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertGnome(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertHalfling(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { +//cipher based on Al Baed -> English + case 0: return "e"; + case 1: return "p"; + case 2: return "s"; + case 3: return "t"; + case 4: return "i"; + case 5: return "w"; + case 6: return "k"; + case 7: return "n"; + case 8: return "u"; + case 9: return "v"; + case 10: return "g"; + case 11: return "c"; + case 12: return "l"; + case 13: return "r"; + case 14: return "y"; + case 15: return "b"; + case 16: return "x"; + case 17: return "h"; + case 18: return "m"; + case 19: return "d"; + case 20: return "o"; + case 21: return "f"; + case 22: return "z"; + case 23: return "q"; + case 24: return "a"; + case 25: return "j"; + case 26: return "E"; + case 27: return "P"; + case 28: return "S"; + case 29: return "T"; + case 30: return "I"; + case 31: return "W"; + case 32: return "K"; + case 33: return "N"; + case 34: return "U"; + case 35: return "V"; + case 36: return "G"; + case 37: return "C"; + case 38: return "L"; + case 39: return "R"; + case 40: return "Y"; + case 41: return "B"; + case 42: return "X"; + case 43: return "H"; + case 44: return "M"; + case 45: return "D"; + case 46: return "O"; + case 47: return "F"; + case 48: return "Z"; + case 49: return "Q"; + case 50: return "A"; + case 51: return "J"; + default: return sLetter; + } return ""; +} + +//////////////////////////////////////////////////////////////////////// +string ProcessHalfling(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertHalfling(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertOrc(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "ha"; + case 26: return "Ha"; + case 1: return "p"; + case 2: return "z"; + case 3: return "t"; + case 4: return "o"; + case 5: return ""; + case 6: return "k"; + case 7: return "r"; + case 8: return "a"; + case 9: return "m"; + case 10: return "g"; + case 11: return "h"; + case 12: return "r"; + case 13: return "k"; + case 14: return "u"; + case 15: return "b"; + case 16: return "k"; + case 17: return "h"; + case 18: return "g"; + case 19: return "n"; + case 20: return ""; + case 21: return "g"; + case 22: return "r"; + case 23: return "r"; + case 24: return "'"; + case 25: return "m"; + case 27: return "P"; + case 28: return "Z"; + case 29: return "T"; + case 30: return "O"; + case 31: return ""; + case 32: return "K"; + case 33: return "R"; + case 34: return "A"; + case 35: return "M"; + case 36: return "G"; + case 37: return "H"; + case 38: return "R"; + case 39: return "K"; + case 40: return "U"; + case 41: return "B"; + case 42: return "K"; + case 43: return "H"; + case 44: return "G"; + case 45: return "N"; + case 46: return ""; + case 47: return "G"; + case 48: return "R"; + case 49: return "R"; + case 50: return "'"; + case 51: return "M"; + default: return sLetter; + } return ""; +} + +//////////////////////////////////////////////////////////////////////// +string ProcessOrc(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertOrc(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertAnimal(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "'"; + case 1: return "'"; + case 2: return "'"; + case 3: return "'"; + case 4: return "'"; + case 5: return "'"; + case 6: return "'"; + case 7: return "'"; + case 8: return "'"; + case 9: return "'"; + case 10: return "'"; + case 11: return "'"; + case 12: return "'"; + case 13: return "'"; + case 14: return "'"; + case 15: return "'"; + case 16: return "'"; + case 17: return "'"; + case 18: return "'"; + case 19: return "'"; + case 20: return "'"; + case 21: return "'"; + case 22: return "'"; + case 23: return "'"; + case 24: return "'"; + case 25: return "'"; + case 26: return "'"; + case 27: return "'"; + case 28: return "'"; + case 29: return "'"; + case 30: return "'"; + case 31: return "'"; + case 32: return "'"; + case 33: return "'"; + case 34: return "'"; + case 35: return "'"; + case 36: return "'"; + case 37: return "'"; + case 38: return "'"; + case 39: return "'"; + case 40: return "'"; + case 41: return "'"; + case 42: return "'"; + case 43: return "'"; + case 44: return "'"; + case 45: return "'"; + case 46: return "'"; + case 47: return "'"; + case 48: return "'"; + case 49: return "'"; + case 50: return "'"; + case 51: return "'"; + default: return sLetter; + } return ""; +} + +//////////////////////////////////////////////////////////////////////// +string ProcessAnimal(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertAnimal(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ProcessCant(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + + if (sLetter == "a" || sLetter == "A") return "*shields eyes*"; + if (sLetter == "b" || sLetter == "B") return "*blusters*"; + if (sLetter == "c" || sLetter == "C") return "*coughs*"; + if (sLetter == "d" || sLetter == "D") return "*furrows brow*"; + if (sLetter == "e" || sLetter == "E") return "*examines ground*"; + if (sLetter == "f" || sLetter == "F") return "*frowns*"; + if (sLetter == "g" || sLetter == "G") return "*glances up*"; + if (sLetter == "h" || sLetter == "H") return "*looks thoughtful*"; + if (sLetter == "i" || sLetter == "I") return "*looks bored*"; + if (sLetter == "j" || sLetter == "J") return "*rubs chin*"; + if (sLetter == "k" || sLetter == "K") return "*scratches ear*"; + if (sLetter == "l" || sLetter == "L") return "*looks around*"; + if (sLetter == "m" || sLetter == "M") return "*mmm hmm*"; + if (sLetter == "n" || sLetter == "N") return "*nods*"; + if (sLetter == "o" || sLetter == "O") return "*grins*"; + if (sLetter == "p" || sLetter == "P") return "*smiles*"; + if (sLetter == "q" || sLetter == "Q") return "*shivers*"; + if (sLetter == "r" || sLetter == "R") return "*rolls eyes*"; + if (sLetter == "s" || sLetter == "S") return "*scratches nose*"; + if (sLetter == "t" || sLetter == "T") return "*turns a bit*"; + if (sLetter == "u" || sLetter == "U") return "*glances idly*"; + if (sLetter == "v" || sLetter == "V") return "*runs hand through hair*"; + if (sLetter == "w" || sLetter == "W") return "*waves*"; + if (sLetter == "x" || sLetter == "X") return "*stretches*"; + if (sLetter == "y" || sLetter == "Y") return "*yawns*"; + if (sLetter == "z" || sLetter == "Z") return "*shrugs*"; + + return "*nods*"; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertSylvan(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "i"; + case 1: return "ri"; + case 2: return "ba"; + case 3: return "ma"; + case 4: return "i"; + case 5: return "mo"; + case 6: return "yo"; + case 7: return "f"; + case 8: return "ya"; + case 9: return "ta"; + case 10: return "m"; + case 11: return "t"; + case 12: return "r"; + case 13: return "j"; + case 14: return "nu"; + case 15: return "wi"; + case 16: return "bo"; + case 17: return "w"; + case 18: return "ne"; + case 19: return "na"; + case 20: return "li"; + case 21: return "v"; + case 22: return "ni"; + case 23: return "ya"; + case 24: return "mi"; + case 25: return "og"; + case 26: return "I"; + case 27: return "Ri"; + case 28: return "Ba"; + case 29: return "Ma"; + case 30: return "I"; + case 31: return "Mo"; + case 32: return "Yo"; + case 33: return "F"; + case 34: return "Ya"; + case 35: return "Ta"; + case 36: return "M"; + case 37: return "T"; + case 38: return "R"; + case 39: return "J"; + case 40: return "Nu"; + case 41: return "Wi"; + case 42: return "Bo"; + case 43: return "W"; + case 44: return "Ne"; + case 45: return "Na"; + case 46: return "Li"; + case 47: return "V"; + case 48: return "Ni"; + case 49: return "Ya"; + case 50: return "Mi"; + case 51: return "Og"; + default: return sLetter; + } return ""; +} + +//////////////////////////////////////////////////////////////////////// +string ProcessSylvan(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertSylvan(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertRashemi(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "a"; + case 1: return "s"; + case 2: return "n"; + case 3: return "y"; + case 4: return "ov"; + case 5: return "d"; + case 6: return "sk"; + case 7: return "fr"; + case 8: return "u"; + case 9: return "o"; + case 10: return "f"; + case 11: return "r"; + case 12: return "z"; + case 13: return "s"; + case 14: return "o"; + case 15: return "j"; + case 16: return "sk"; + case 17: return " "; + case 18: return "or"; + case 19: return "ka"; + case 20: return "o"; + case 21: return "ka"; + case 22: return "ma"; + case 23: return "o"; + case 24: return "oj"; + case 25: return "y"; + case 26: return "A"; + case 27: return "S"; + case 28: return "N"; + case 29: return "Y"; + case 30: return "Ov"; + case 31: return "D"; + case 32: return "Sk"; + case 33: return "Fr"; + case 34: return "U"; + case 35: return "O"; + case 36: return "F"; + case 37: return "R"; + case 38: return "Z"; + case 39: return "S"; + case 40: return "O"; + case 41: return "J"; + case 42: return "Sk"; + case 43: return "M"; + case 44: return "Or"; + case 45: return "Ka"; + case 46: return "O"; + case 47: return "Ka"; + case 48: return "Ma"; + case 49: return "O"; + case 50: return "Oj"; + case 51: return "Y"; + default: return sLetter; + } return ""; +} + +//////////////////////////////////////////////////////////////////////// +string ProcessRashemi(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertRashemi(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string ConvertMulhorandi(string sLetter) +{ + if (GetStringLength(sLetter) > 1) + sLetter = GetStringLeft(sLetter, 1); + string sTranslate = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + int iTrans = FindSubString(sTranslate, sLetter); + + switch (iTrans) + { + case 0: return "ri"; + case 1: return "dj"; + case 2: return "p"; + case 3: return "al"; + case 4: return "a"; + case 5: return "j"; + case 6: return "y"; + case 7: return "u"; + case 8: return "o"; + case 9: return "f"; + case 10: return "ch"; + case 11: return "d"; + case 12: return "t"; + case 13: return "m"; + case 14: return "eh"; + case 15: return "k"; + case 16: return "ng"; + case 17: return "sh"; + case 18: return "th"; + case 19: return "s"; + case 20: return "e"; + case 21: return "z"; + case 22: return "p"; + case 23: return "qu"; + case 24: return "o"; + case 25: return "z"; + case 26: return "Ri"; + case 27: return "Dj"; + case 28: return "P"; + case 29: return "Al"; + case 30: return "A"; + case 31: return "J"; + case 32: return "Y"; + case 33: return "U"; + case 34: return "O"; + case 35: return "F"; + case 36: return "Ch"; + case 37: return "D"; + case 38: return "T"; + case 39: return "M"; + case 40: return "Eh"; + case 41: return "K"; + case 42: return "Ng"; + case 43: return "Sh"; + case 44: return "Th"; + case 45: return "S"; + case 46: return "E"; + case 47: return "Z"; + case 48: return "P"; + case 49: return "Qu"; + case 50: return "O"; + case 51: return "Z"; + default: return sLetter; + } return ""; +} + +//////////////////////////////////////////////////////////////////////// +string ProcessMulhorandi(string sPhrase) +{ + string sOutput; + int iToggle; + while (GetStringLength(sPhrase) > 1) + { + if (GetStringLeft(sPhrase,1) == "*") + iToggle = abs(iToggle - 1); + if (iToggle) + sOutput = sOutput + GetStringLeft(sPhrase,1); + else + sOutput = sOutput + ConvertMulhorandi(GetStringLeft(sPhrase, 1)); + sPhrase = GetStringRight(sPhrase, GetStringLength(sPhrase)-1); + } + return sOutput; +} + +//////////////////////////////////////////////////////////////////////// +string TranslateCommonToLanguage(int iLang, string sText) +{ + switch (iLang) + { + case 1: //Elven + return ProcessElven(sText); break; + case 2: //Gnome + return ProcessGnome(sText); break; + case 3: //Halfling + return ProcessHalfling(sText); break; + case 4: //Dwarf Note: Race 4 is normally Half Elf and Race 0 is normally Dwarf. This is changed. + return ProcessDwarf(sText); break; + case 5: //Orc + return ProcessOrc(sText); break; + case 6: //Goblin + return ProcessGoblin(sText); break; + case 7: //Draconic + return ProcessDraconic(sText); break; + case 8: //Animal + return ProcessAnimal(sText); break; + case 9: //Thieves Cant + return ProcessCant(sText); break; + case 10: //Celestial + return ProcessCelestial(sText); break; + case 11: //Abyssal + return ProcessAbyssal(sText); break; + case 12: //Infernal + return ProcessInfernal(sText); break; + case 13: + return ProcessDrow(sText); break; + case 14: // Sylvan + return ProcessSylvan(sText); break; + case 15: // Rashemi + return ProcessRashemi(sText); break; + case 16: // Mulhorandi + return ProcessMulhorandi(sText); break; + case 99: //1337 + return ProcessLeetspeak(sText); break; + default: if (iLang > 100) return ProcessCustom(sText, iLang - 100);break; + } + return ""; +} + +//////////////////////////////////////////////////////////////////////// +int GetDefaultRacialLanguage(object oPC, int iRename) +{ + switch (GetRacialType(oPC)) + { + case RACIAL_TYPE_DWARF: if (iRename) SetLocalString(oPC, "hls_MyLanguageName", "Dwarven");return 4; break; + case RACIAL_TYPE_ELF: + case RACIAL_TYPE_HALFELF: if (iRename) SetLocalString(oPC, "hls_MyLanguageName", "Elven");return 1; break; + case RACIAL_TYPE_GNOME: if (iRename) SetLocalString(oPC, "hls_MyLanguageName", "Gnome");return 2; break; + case RACIAL_TYPE_HALFLING: if (iRename) SetLocalString(oPC, "hls_MyLanguageName", "Halfling");return 3; break; + case RACIAL_TYPE_HUMANOID_ORC: + case RACIAL_TYPE_HALFORC: if (iRename) SetLocalString(oPC, "hls_MyLanguageName", "Orc");return 5; break; + case RACIAL_TYPE_HUMANOID_GOBLINOID: if (iRename) SetLocalString(oPC, "hls_MyLanguageName", "Goblin");return 6; break; + case RACIAL_TYPE_HUMANOID_REPTILIAN: + case RACIAL_TYPE_DRAGON: if (iRename) SetLocalString(oPC, "hls_MyLanguageName", "Draconic");return 7; break; + case RACIAL_TYPE_ANIMAL: if (iRename) SetLocalString(oPC, "hls_MyLanguageName", "Animal");return 8; break; + default: + if (GetLevelByClass(CLASS_TYPE_RANGER, oPC) || GetLevelByClass(CLASS_TYPE_DRUID, oPC)) + { + if (iRename) SetLocalString(oPC, "hls_MyLanguageName", "Animal"); + return 8; + } + if (GetLevelByClass(CLASS_TYPE_ROGUE, oPC)) + { + if (iRename) SetLocalString(oPC, "hls_MyLanguageName", "Thieves' Cant"); + return 9; + } + break; + } + return 0; +} + +//////////////////////////////////////////////////////////////////////// +int GetDefaultClassLanguage(object oPC) +{ + if (GetLevelByClass(CLASS_TYPE_RANGER, oPC) || GetLevelByClass(CLASS_TYPE_DRUID, oPC)) + return 8; + if (GetLevelByClass(CLASS_TYPE_ROGUE, oPC)) + return 9; + if ((GetSubRace(oPC)=="drow") ||(GetSubRace(oPC)=="DROW")||(GetSubRace(oPC)=="Drow")) + return 13; + if ((GetSubRace(oPC)=="fey") ||(GetSubRace(oPC)=="FEY")||(GetSubRace(oPC)=="Fey")) + return 14; + + return 0; +} + +//////////////////////////////////////////////////////////////////////// +int GetIsAlphanumeric(string sCharacter) +{ + if (sCharacter == "a" || + sCharacter == "b" || + sCharacter == "c" || + sCharacter == "d" || + sCharacter == "e" || + sCharacter == "f" || + sCharacter == "g" || + sCharacter == "h" || + sCharacter == "i" || + sCharacter == "j" || + sCharacter == "k" || + sCharacter == "l" || + sCharacter == "m" || + sCharacter == "n" || + sCharacter == "o" || + sCharacter == "p" || + sCharacter == "q" || + sCharacter == "r" || + sCharacter == "s" || + sCharacter == "t" || + sCharacter == "u" || + sCharacter == "v" || + sCharacter == "w" || + sCharacter == "x" || + sCharacter == "y" || + sCharacter == "z" || + sCharacter == "A" || + sCharacter == "B" || + sCharacter == "C" || + sCharacter == "D" || + sCharacter == "E" || + sCharacter == "F" || + sCharacter == "G" || + sCharacter == "H" || + sCharacter == "I" || + sCharacter == "J" || + sCharacter == "K" || + sCharacter == "L" || + sCharacter == "M" || + sCharacter == "N" || + sCharacter == "O" || + sCharacter == "P" || + sCharacter == "Q" || + sCharacter == "R" || + sCharacter == "S" || + sCharacter == "T" || + sCharacter == "U" || + sCharacter == "V" || + sCharacter == "W" || + sCharacter == "X" || + sCharacter == "Y" || + sCharacter == "Z" || + sCharacter == "1" || + sCharacter == "2" || + sCharacter == "3" || + sCharacter == "4" || + sCharacter == "5" || + sCharacter == "6" || + sCharacter == "7" || + sCharacter == "8" || + sCharacter == "9" || + sCharacter == "0") + return TRUE; + + return FALSE; +} + +//////////////////////////////////////////////////////////////////////// +void ParseCommand(object oTarget, object oCommander, string sComIn) +{ +// :: 2008.07.31 morderon / tsunami282 - allow certain . commands for +// :: PCs as well as DM's; allow shortcut targeting of henchies/pets +// :: 2009.07.25 civious / tsunami282 - correct language name parsing for .lang command + + int iOffset=0; + if (GetIsDM(oTarget) && (oTarget != oCommander)) return; //DMs can only be affected by their own .commands + + int bValidTarget = GetIsObjectValid(oTarget); + if (!bValidTarget) + { + DMFISendMessageToPC(oCommander, "No current command target - no commands will function.", FALSE, DMFI_MESSAGE_COLOR_ALERT); + return; + } + + // break into command and args + struct sStringTokenizer st = GetStringTokenizer(sComIn, " "); + st = AdvanceToNextToken(st); + string sCom = GetStringLowerCase(GetNextToken(st)); + string sArgs = LTrim(st.sRemaining); + + // ** commands usable by all pc's/dm's + if (GetStringLeft(sCom, 4) == ".loc") + { + SetLocalInt(oCommander, "dmfi_dicebag", 2); + SetCustomToken(20681, "Local"); + SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 2, oCommander); + FloatingTextStringOnCreature("Broadcast Mode set to Local", oCommander, FALSE); return; + } + else if (GetStringLeft(sCom, 4) == ".glo") + { + SetLocalInt(oCommander, "dmfi_dicebag", 1); + SetCustomToken(20681, "Global"); + SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 1, oCommander); + FloatingTextStringOnCreature("Broadcast Mode set to Global", oCommander, FALSE); return; + } + else if (GetStringLeft(sCom, 4) == ".pri") + { + SetLocalInt(oCommander, "dmfi_dicebag", 0); + SetCustomToken(20681, "Private"); + SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 0, oCommander); + FloatingTextStringOnCreature("Broadcast Mode set to Private", oCommander, FALSE); return; + } + else if (GetStringLeft(sCom, 3) == ".dm") + { + SetLocalInt(oCommander, "dmfi_dicebag", 3); + SetCustomToken(20681, "DM Only"); + SetDMFIPersistentInt("dmfi", "dmfi_dicebag", 3, oCommander); + FloatingTextStringOnCreature("Broadcast Mode set to DM Only", oCommander, FALSE); return; + } + else if (GetStringLeft(sCom, 5) == ".aniy") + { + SetLocalInt(oCommander, "dmfi_dice_no_animate", 0); + FloatingTextStringOnCreature("Rolls will show animation", oCommander, FALSE); return; + } + else if (GetStringLeft(sCom, 5) == ".anin") + { + SetLocalInt(oCommander, "dmfi_dice_no_animate", 1); + FloatingTextStringOnCreature("Rolls will NOT show animation", oCommander, FALSE); return; + } + else if (GetStringLeft(sCom, 5) == ".emoy") // control emotes (based on Morderon code) + { + SetLocalInt(oCommander, "hls_emotemute", 0); + FloatingTextStringOnCreature("*emote* commands are on", oCommander, FALSE); + return; + } + else if (GetStringLeft(sCom, 5) == ".emon") // control emotes (based on Morderon code) + { + SetLocalInt(oCommander, "hls_emotemute", 1); + FloatingTextStringOnCreature("*emote* commands are off", oCommander, FALSE); + return; + } + else if (GetStringLeft(sCom, 4) == ".lan") //sets the language of the target + { + // check target allowed + if (!(GetIsDM(oCommander) || GetIsDMPossessed(oCommander) || + oTarget == oCommander || GetMaster(oTarget) == oCommander)) + { + FloatingTextStringOnCreature("You cannot perform this command on a creature you do not control.", oCommander, FALSE); + return; + } + + string sArgsLC = GetStringLowerCase(sArgs); + int iLang = 0; + string sLang = ""; + if (FindSubString(sArgsLC, "elven") != -1 || + FindSubString(sArgsLC, "elf") != -1) + { + iLang = 1; + sLang = "Elven"; + } + else if (FindSubString(sArgsLC, "gnom") != -1) + { + iLang = 2; + sLang = "Gnome"; + } + else if (FindSubString(sArgsLC, "halfling") != -1) + { + iLang = 3; + sLang = "Halfling"; + } + else if (FindSubString(sArgsLC, "dwar") != -1) + { + iLang = 4; + sLang = "Dwarven"; + } + else if (FindSubString(sArgsLC, "orc") != -1) + { + iLang = 5; + sLang = "Orc"; + } + else if (FindSubString(sArgsLC, "goblin") != -1) + { + iLang = 6; + sLang = "Goblin"; + } + else if (FindSubString(sArgsLC, "draconic") != -1) + { + iLang = 7; + sLang = "Draconic"; + } + else if (FindSubString(sArgsLC, "animal") != -1) + { + iLang = 8; + sLang = "Animal"; + } + else if (FindSubString(sArgsLC, "cant") != -1) + { + iLang = 9; + sLang = "Thieves' Cant"; + } + else if (FindSubString(sArgsLC, "celestial") != -1) + { + iLang = 10; + sLang = "Celestial"; + } + else if (FindSubString(sArgsLC, "abyssal") != -1) + { + iLang = 11; + sLang = "Abyssal"; + } + else if (FindSubString(sArgsLC, "infernal") != -1) + { + iLang = 12; + sLang = "Infernal"; + } + else if (FindSubString(sArgsLC, "drow") != -1) + { + iLang = 13; + sLang = "Drow"; + } + else if (FindSubString(sArgsLC, "sylvan") != -1) + { + iLang = 14; + sLang = "Sylvan"; + } + else if (FindSubString(sArgsLC, "rashemi") != -1) + { + iLang = 15; + sLang = "Rashemi"; + } + else if (FindSubString(sArgsLC, "mulhorandi") != -1) + { + iLang = 16; + sLang = "Mulhorandi"; + } + // see if target is allowed to speak that language + if (!GetIsDM(oCommander) && !GetIsDMPossessed(oCommander)) // DM's can set any language on anyone + { + // commander is not DM, so see if target can speak desired language: + // language must be default racial or class language, or target + // must have a language widget for it + if (!(GetIsObjectValid(GetItemPossessedBy(oTarget, "hlslang_"+IntToString(iLang))) || + GetDefaultRacialLanguage(oTarget, FALSE) == iLang || + GetDefaultClassLanguage(oTarget) == iLang)) + { + iLang = 0; + } + } + if (iLang > 0) + { + SetLocalInt(oTarget, "hls_MyLanguage", iLang); + SetLocalString(oTarget, "hls_MyLanguageName", sLang); + FloatingTextStringOnCreature("Language for "+GetName(oTarget)+" set to "+sLang, oCommander, FALSE); + } + else + { + FloatingTextStringOnCreature("Unable to set language - invalid target or language", oCommander, FALSE); + } + return; + } + + // that's all the PC commands, bail out if not DM + if (!GetIsDM(oCommander) && !GetIsDMPossessed(oCommander)) + { + DMFISendMessageToPC(oCommander, "DMFI dot command nonexistent or restricted to DM's - aborting.", FALSE, DMFI_MESSAGE_COLOR_ALERT); + return; + } + + if (GetStringLeft(sCom, 7) ==".appear") + { + string sNew = sArgs; + DMFISendMessageToPC(oCommander, "Setting target appearance to: " + sNew, FALSE, DMFI_MESSAGE_COLOR_STATUS); + int Appear = AppearType(sNew); + + if (Appear!=-1) + { + // SetCreatureAppearanceType(GetLocalObject(oCommander, "dmfi_univ_target"), Appear); + SetCreatureAppearanceType(oTarget, Appear); + } + else + { + FloatingTextStringOnCreature("Invalid Appearance Type", oCommander); + } + + + dmw_CleanUp(oCommander); + return; + } + + + if (GetStringLeft(sCom, 5) == ".stre") + iOffset= 11; + else if (GetStringLeft(sCom, 5) == ".dext") + iOffset = 12; + else if (GetStringLeft(sCom, 5) == ".cons") + iOffset = 13; + else if (GetStringLeft(sCom, 5) == ".inte") + iOffset = 14; + else if (GetStringLeft(sCom, 5) == ".wisd") + iOffset = 15; + else if (GetStringLeft(sCom, 5) == ".char") + iOffset = 16; + else if (GetStringLeft(sCom, 5) == ".fort") + iOffset = 17; + else if (GetStringLeft(sCom, 5) == ".refl") + iOffset = 18; + else if (GetStringLeft(sCom, 5) == ".anim") + iOffset = 21; + else if (GetStringLeft(sCom, 5) == ".appr") + iOffset = 22; + else if (GetStringLeft(sCom, 5) == ".bluf") + iOffset = 23; + else if (GetStringLeft(sCom, 5) == ".conc") + iOffset = 24; + else if (GetStringLeft(sCom, 9) == ".craft ar") + iOffset = 25; + else if (GetStringLeft(sCom, 9) == ".craft tr") + iOffset = 26; + else if (GetStringLeft(sCom, 9) == ".craft we") + iOffset = 27; + else if (GetStringLeft(sCom, 5) == ".disa") + iOffset = 28; + else if (GetStringLeft(sCom, 5) == ".disc") + iOffset = 29; + else if (GetStringLeft(sCom, 5) == ".heal") + iOffset = 31; + else if (GetStringLeft(sCom, 5) == ".hide") + iOffset = 32; + else if (GetStringLeft(sCom, 5) == ".inti") + iOffset = 33; + else if (GetStringLeft(sCom, 5) == ".list") + iOffset = 34; + else if (GetStringLeft(sCom, 5) == ".lore") + iOffset = 35; + else if (GetStringLeft(sCom, 5) == ".move") + iOffset = 36; + else if (GetStringLeft(sCom, 5) == ".open") + iOffset = 37; + else if (GetStringLeft(sCom, 5) == ".parr") + iOffset = 38; + else if (GetStringLeft(sCom, 5) == ".perf") + iOffset = 39; + else if (GetStringLeft(sCom, 5) == ".pers") + iOffset = 41; + else if (GetStringLeft(sCom, 5) == ".pick") + iOffset = 42; + else if (GetStringLeft(sCom, 5) == ".sear") + iOffset = 43; + else if (GetStringLeft(sCom, 6) == ".set t") + iOffset = 44; + else if (GetStringLeft(sCom, 5) == ".spel") + iOffset = 45; + else if (GetStringLeft(sCom, 5) == ".spot") + iOffset = 46; + else if (GetStringLeft(sCom, 5) == ".taun") + iOffset = 47; + else if (GetStringLeft(sCom, 5) == ".tumb") + iOffset = 48; + else if (GetStringLeft(sCom, 4) == ".use") + iOffset = 49; + + if (iOffset!=0) + { + if (FindSubString(sCom, "all") != -1 || FindSubString(sArgs, "all") != -1) + SetLocalInt(oCommander, "dmfi_univ_int", iOffset+40); + else + SetLocalInt(oCommander, "dmfi_univ_int", iOffset); + + SetLocalString(oCommander, "dmfi_univ_conv", "dicebag"); + if (GetIsObjectValid(oTarget)) + { + if (oTarget != GetLocalObject(oCommander, "dmfi_univ_target")) + { + SetLocalObject(oCommander, "dmfi_univ_target", oTarget); + FloatingTextStringOnCreature("DMFI Target set to "+GetName(oTarget), oCommander); + } + ExecuteScript("dmfi_execute", oCommander); + } + else + { + DMFISendMessageToPC(oCommander, "No valid DMFI target!", FALSE, DMFI_MESSAGE_COLOR_ALERT); + } + + dmw_CleanUp(oCommander); + return; + } + + + if (GetStringLeft(sCom, 4) == ".set") + { + // sCom = GetStringRight(sCom, GetStringLength(sCom) - 4); + while (sArgs != "") + { + if (GetStringLeft(sArgs, 1) == " " || + GetStringLeft(sArgs, 1) == "[" || + GetStringLeft(sArgs, 1) == "." || + GetStringLeft(sArgs, 1) == ":" || + GetStringLeft(sArgs, 1) == ";" || + GetStringLeft(sArgs, 1) == "*" || + GetIsAlphanumeric(GetStringLeft(sArgs, 1))) + sArgs = GetStringRight(sArgs, GetStringLength(sArgs) - 1); + else + { + SetLocalObject(GetModule(), "hls_NPCControl" + GetStringLeft(sArgs, 1), oTarget); + FloatingTextStringOnCreature("The Control character for " + GetName(oTarget) + " is " + GetStringLeft(sArgs, 1), oCommander, FALSE); + return; + } + } + FloatingTextStringOnCreature("Your Control Character is not valid. Perhaps you are using a reserved character.", oCommander, FALSE); + return; + } + else if (GetStringLeft(sCom, 4) == ".ani") + { + int iArg = StringToInt(sArgs); + AssignCommand(oTarget, ClearAllActions(TRUE)); + AssignCommand(oTarget, ActionPlayAnimation(iArg, 1.0, 99999.0f)); + return; + } + else if (GetStringLowerCase(GetStringLeft(sCom, 4)) == ".buf") + { + string sArgsLC = GetStringLowerCase(sArgs); + if (FindSubString(sArgsLC, "low") !=-1) + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectACIncrease(3, AC_NATURAL_BONUS), oTarget, 3600.0f); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PROT_BARKSKIN), oTarget, 3600.0f); + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_RESISTANCE, oTarget, METAMAGIC_ANY, TRUE, 5, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_GHOSTLY_VISAGE, oTarget, METAMAGIC_ANY, TRUE, 5, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_CLARITY, oTarget,METAMAGIC_ANY, TRUE, 5, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + FloatingTextStringOnCreature("Low Buff applied: " + GetName(oTarget), oCommander); return; + } + else if (FindSubString(sArgsLC, "mid") !=-1) + { + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_LESSER_SPELL_MANTLE, oTarget, METAMAGIC_ANY, TRUE, 10, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_STONESKIN, oTarget, METAMAGIC_ANY, TRUE, 10, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_ELEMENTAL_SHIELD, oTarget,METAMAGIC_ANY, TRUE, 10, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + FloatingTextStringOnCreature("Mid Buff applied: " + GetName(oTarget), oCommander); return; + } + else if (FindSubString(sArgsLC, "high") !=-1) + { + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_SPELL_MANTLE, oTarget, METAMAGIC_ANY, TRUE, 15, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_STONESKIN, oTarget, METAMAGIC_ANY, TRUE,15, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_SHADOW_SHIELD, oTarget,METAMAGIC_ANY, TRUE, 15, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + FloatingTextStringOnCreature("High Buff applied: " + GetName(oTarget), oCommander); return; + } + else if (FindSubString(sArgsLC, "epic") !=-1) + { + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_GREATER_SPELL_MANTLE, oTarget, METAMAGIC_ANY, TRUE, 20, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_SPELL_RESISTANCE, oTarget, METAMAGIC_ANY, TRUE, 20, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_SHADOW_SHIELD, oTarget,METAMAGIC_ANY, TRUE, 20, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + AssignCommand(oTarget, ActionCastSpellAtObject(SPELL_CLARITY, oTarget,METAMAGIC_ANY, TRUE, 20, PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + FloatingTextStringOnCreature("Epic Buff applied: " + GetName(oTarget), oCommander); return; + } + else if (FindSubString(sArgsLC, "barkskin") != -1) + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectACIncrease(3, AC_NATURAL_BONUS), oTarget, 3600.0f); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PROT_BARKSKIN), oTarget, 3600.0f); return; + } + else if (FindSubString(sArgsLC, "elements") != -1) + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectDamageResistance(DAMAGE_TYPE_COLD, 20, 40), oTarget, 3600.0f); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectDamageResistance(DAMAGE_TYPE_FIRE, 20, 40), oTarget, 3600.0f); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectDamageResistance(DAMAGE_TYPE_ACID, 20, 40), oTarget, 3600.0f); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectDamageResistance(DAMAGE_TYPE_SONIC, 20, 40), oTarget, 3600.0f); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectDamageResistance(DAMAGE_TYPE_ELECTRICAL, 20, 40), oTarget, 3600.0f); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PROTECTION_ELEMENTS), oTarget, 3600.0f); return; + } + else if (FindSubString(sArgsLC, "haste") != -1) + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectHaste(), oTarget, 3600.0f); return; + } + else if (FindSubString(sArgsLC, "immortal") != -1) // tsunami282 added + { + SetImmortal(oTarget, TRUE); + FloatingTextStringOnCreature("The target is set to Immortal (cannot die).", oCommander, FALSE); return; + } + else if (FindSubString(sArgsLC, "mortal") != -1) // tsunami282 added + { + SetImmortal(oTarget, TRUE); + FloatingTextStringOnCreature("The target is set to Mortal (can die).", oCommander, FALSE); return; + } + else if (FindSubString(sArgsLC, "invis") != -1) + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectInvisibility(INVISIBILITY_TYPE_NORMAL), oTarget, 3600.0f); return; + } + else if (FindSubString(sArgsLC, "unplot") != -1) + { + SetPlotFlag(oTarget, FALSE); + FloatingTextStringOnCreature("The target is set to non-Plot.", oCommander, FALSE); return; + } + else if (FindSubString(sArgsLC, "plot") != -1) + { + SetPlotFlag(oTarget, TRUE); + FloatingTextStringOnCreature("The target is set to Plot.", oCommander, FALSE); return; + } + else if (FindSubString(sArgsLC, "stoneskin") != -1) + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectDamageReduction(10, DAMAGE_POWER_PLUS_THREE, 100), oTarget, 3600.0f); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PROT_GREATER_STONESKIN), oTarget, 3600.0f); return; + } + else if (FindSubString(sArgsLC, "trues") != -1) + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectTrueSeeing(), oTarget, 3600.0f); return; + } + } + else if (GetStringLeft(sCom, 4) == ".dam") + { + int iArg = StringToInt(sArgs); + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDamage(iArg, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_NORMAL), oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_COM_BLOOD_LRG_RED), oTarget); + FloatingTextStringOnCreature(GetName(oTarget) + " has taken " + IntToString(iArg) + " damage.", oCommander, FALSE); + return; + } + // 2008.05.29 tsunami282 - set description + else if (GetStringLeft(sCom, 5) == ".desc") + { + // object oTgt = GetLocalObject(oCommander, "dmfi_univ_target"); + if (GetIsObjectValid(oTarget)) + { + if (sArgs == ".") // single dot means reset to base description + { + SetDescription(oTarget); + } + else // assign new description + { + SetDescription(oTarget, sArgs); + } + FloatingTextStringOnCreature("Target's description set to " + GetDescription(oTarget), oCommander, FALSE); + } + else + { + FloatingTextStringOnCreature("Invalid target - command not processed.", oCommander, FALSE); + } + } + else if (GetStringLeft(sCom, 5) == ".dism") + { + DestroyObject(oTarget); + FloatingTextStringOnCreature(GetName(oTarget) + " dismissed", oCommander, FALSE); return; + } + else if (GetStringLeft(sCom, 4) == ".inv") + { + OpenInventory(oTarget, oCommander); + return; + } + else if (GetStringLeft(sCom, 4) == ".dmt") + { + SetLocalInt(GetModule(), "dmfi_DMToolLock", abs(GetLocalInt(GetModule(), "dmfi_DMToolLock") -1)); return; + } + // else if (GetStringLowerCase(GetStringLeft(sCom, 4)) == ".dms") + // { + // SetDMFIPersistentInt("dmfi", "dmfi_DMSpy", abs(GetDMFIPersistentInt("dmfi", "dmfi_DMSpy", oCommander) -1), oCommander); return; + // } + else if (GetStringLeft(sCom, 4) == ".fac") + { + string sArgsLC = GetStringLowerCase(sArgs); + if (FindSubString(sArgsLC, "hostile") != -1) + { + ChangeToStandardFaction(oTarget, STANDARD_FACTION_HOSTILE); + FloatingTextStringOnCreature("Faction set to hostile", oCommander, FALSE); + } + else if (FindSubString(sArgsLC, "commoner") != -1) + { + ChangeToStandardFaction(oTarget, STANDARD_FACTION_COMMONER); + FloatingTextStringOnCreature("Faction set to commoner", oCommander, FALSE); + } + else if (FindSubString(sArgsLC, "defender") != -1) + { + ChangeToStandardFaction(oTarget, STANDARD_FACTION_DEFENDER); + FloatingTextStringOnCreature("Faction set to defender", oCommander, FALSE); + } + else if (FindSubString(sArgsLC, "merchant") != -1) + { + ChangeToStandardFaction(oTarget, STANDARD_FACTION_MERCHANT); + FloatingTextStringOnCreature("Faction set to merchant", oCommander, FALSE); + } + else + { + DMFISendMessageToPC(oCommander, "Invalid faction name - command aborted.", FALSE, DMFI_MESSAGE_COLOR_ALERT); + return; + } + + // toggle blindness on the target, to cause a re-perception + if (GetIsImmune(oTarget, IMMUNITY_TYPE_BLINDNESS)) + { + DMFISendMessageToPC(oCommander, "Targeted creature is blind immune - no attack will occur until new perception event is fired", FALSE, DMFI_MESSAGE_COLOR_ALERT); + } + else + { + effect eInvis =EffectBlindness(); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eInvis, oTarget, 6.1); + DMFISendMessageToPC(oCommander, "Faction Adjusted - will take effect in 6 seconds", FALSE, DMFI_MESSAGE_COLOR_STATUS); + } + return; + } + else if (GetStringLeft(sCom, 4) == ".fle") + { + AssignCommand(oTarget, ClearAllActions(TRUE)); + AssignCommand(oTarget, ActionMoveAwayFromObject(oCommander, TRUE)); + return; + } + else if (GetStringLeft(sCom, 4) == ".fly") + { + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDisappear(), oTarget); + return; + } + else if (GetStringLeft(sCom, 4) == ".fol") + { + int iArg = StringToInt(sArgs); + FloatingTextStringOnCreature(GetName(oTarget) + " will follow you for "+IntToString(iArg)+" seconds.", oCommander, FALSE); + AssignCommand(oTarget, ClearAllActions(TRUE)); + AssignCommand(oTarget, ActionForceMoveToObject(oCommander, TRUE, 2.0f, IntToFloat(iArg))); + DelayCommand(IntToFloat(iArg), FloatingTextStringOnCreature(GetName(oTarget) + " has stopped following you.", oCommander, FALSE)); + return; + } + else if (GetStringLeft(sCom, 4) == ".fre") + { + FloatingTextStringOnCreature(GetName(oTarget) + " frozen", oCommander, FALSE); + SetCommandable(TRUE, oTarget); + AssignCommand(oTarget, ClearAllActions(TRUE)); + DelayCommand(0.5f, SetCommandable(FALSE, oTarget)); + return; + } + else if (GetStringLeft(sCom, 4) == ".get") + { + while (sArgs != "") + { + if (GetStringLeft(sArgs, 1) == " " || + GetStringLeft(sArgs, 1) == "[" || + GetStringLeft(sArgs, 1) == "." || + GetStringLeft(sArgs, 1) == ":" || + GetStringLeft(sArgs, 1) == ";" || + GetStringLeft(sArgs, 1) == "*" || + GetIsAlphanumeric(GetStringLeft(sArgs, 1))) + sArgs = GetStringRight(sArgs, GetStringLength(sArgs) - 1); + else + { + object oJump = GetLocalObject(GetModule(), "hls_NPCControl" + GetStringLeft(sArgs, 1)); + if (GetIsObjectValid(oJump)) + { + AssignCommand(oJump, ClearAllActions()); + AssignCommand(oJump, ActionJumpToLocation(GetLocation(oCommander))); + } + else + { + FloatingTextStringOnCreature("Your Control Character is not valid. Perhaps you are using a reserved character.", oCommander, FALSE); + } + return; + } + } + FloatingTextStringOnCreature("Your Control Character is not valid. Perhaps you are using a reserved character.", oCommander, FALSE); + return; + + } + else if (GetStringLeft(sCom, 4) == ".got") + { + while (sArgs != "") + { + if (GetStringLeft(sArgs, 1) == " " || + GetStringLeft(sArgs, 1) == "[" || + GetStringLeft(sArgs, 1) == "." || + GetStringLeft(sArgs, 1) == ":" || + GetStringLeft(sArgs, 1) == ";" || + GetStringLeft(sArgs, 1) == "*" || + GetIsAlphanumeric(GetStringLeft(sArgs, 1))) + sArgs = GetStringRight(sArgs, GetStringLength(sArgs) - 1); + else + { + object oJump = GetLocalObject(GetModule(), "hls_NPCControl" + GetStringLeft(sArgs, 1)); + if (GetIsObjectValid(oJump)) + { + AssignCommand(oCommander, ClearAllActions()); + AssignCommand(oCommander, ActionJumpToLocation(GetLocation(oJump))); + } + else + { + FloatingTextStringOnCreature("Your Control Character is not valid. Perhaps you are using a reserved character.", oCommander, FALSE); + } + return; + } + } + FloatingTextStringOnCreature("Your Control Character is not valid. Perhaps you are using a reserved character.", oCommander, FALSE); + return; + } + else if (GetStringLeft(sCom, 4) == ".hea") + { + int iArg = StringToInt(sArgs); + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectHeal(iArg), oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_HEALING_M), oTarget); + FloatingTextStringOnCreature(GetName(oTarget) + " has healed " + IntToString(iArg) + " HP.", oCommander, FALSE); + return; + } + else if (GetStringLeft(sCom, 4) == ".ite") + { + object oCreate = CreateItemOnObject(sArgs, oTarget, 1); + if (GetIsObjectValid(oCreate)) FloatingTextStringOnCreature("Item " + GetName(oCreate) + " created.", oCommander, FALSE); + return; + } + // 2008.05.29 tsunami282 - set name + else if (GetStringLeft(sCom, 5) == ".name") + { + // object oTgt = GetLocalObject(oCommander, "dmfi_univ_target"); + if (GetIsObjectValid(oTarget)) + { + if (sArgs == ".") // single dot means reset to base name + { + SetName(oTarget); + } + else // assign new name + { + SetName(oTarget, sArgs); + } + FloatingTextStringOnCreature("Target's name set to " + GetName(oTarget), oCommander, FALSE); + } + else + { + FloatingTextStringOnCreature("Invalid target - command not processed.", oCommander, FALSE); + } + } + else if (GetStringLeft(sCom, 4) == ".mut") + { + FloatingTextStringOnCreature(GetName(oTarget) + " muted", oCommander, FALSE); + SetLocalInt(oTarget, "dmfi_Mute", 1); + return; + } + else if (GetStringLeft(sCom, 4) == ".npc") + { + object oCreate = CreateObject(OBJECT_TYPE_CREATURE, sArgs, GetLocation(oTarget)); + if (GetIsObjectValid(oCreate)) + FloatingTextStringOnCreature("NPC " + GetName(oCreate) + " created.", oCommander, FALSE); + return; + } + else if (GetStringLeft(sCom, 4) == ".pla") + { + object oCreate = CreateObject(OBJECT_TYPE_PLACEABLE, sArgs, GetLocation(oTarget)); + if (GetIsObjectValid(oCreate)) + FloatingTextStringOnCreature("Placeable " + GetName(oCreate) + " created.", oCommander, FALSE); + return; + } + else if (GetStringLeft(sCom, 4) == ".rem") + { + effect eRemove = GetFirstEffect(oTarget); + while (GetIsEffectValid(eRemove)) + { + RemoveEffect(oTarget, eRemove); + eRemove = GetNextEffect(oTarget); + } + return; + } + else if (GetStringLeft(sCom, 4) == ".say") + { + int iArg = StringToInt(sArgs); + if (GetDMFIPersistentString("dmfi", "hls206" + IntToString(iArg)) != "") + { + AssignCommand(oTarget, SpeakString(GetDMFIPersistentString("dmfi", "hls206" + IntToString(iArg)))); + } + return; + } + else if (GetStringLeft(sCom, 4) == ".tar") + { + object oGet = GetFirstObjectInArea(GetArea(oCommander)); + while (GetIsObjectValid(oGet)) + { + if (FindSubString(GetName(oGet), sArgs) != -1) + { + // SetLocalObject(oCommander, "dmfi_VoiceTarget", oGet); + SetLocalObject(oCommander, "dmfi_univ_target", oGet); + FloatingTextStringOnCreature("You have targeted " + GetName(oGet) + " with the DMFI Targeting Widget", oCommander, FALSE); + return; + } + oGet = GetNextObjectInArea(GetArea(oCommander)); + } + FloatingTextStringOnCreature("Target not found.", oCommander, FALSE); + return; + } + else if (GetStringLeft(sCom, 4) == ".unf") + { + FloatingTextStringOnCreature(GetName(oTarget) + " unfrozen", oCommander, FALSE); + SetCommandable(TRUE, oTarget); return; + } + else if (GetStringLeft(sCom, 4) == ".unm") + { + FloatingTextStringOnCreature(GetName(oTarget) + " un-muted", oCommander, FALSE); + DeleteLocalInt(oTarget, "dmfi_Mute"); return; + } + else if (GetStringLeft(sCom, 4) == ".vfx") + { + int iArg = StringToInt(sArgs); + if (GetTag(oTarget) == "dmfi_voice") + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(iArg), GetLocation(oTarget), 10.0f); + else + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(iArg), oTarget, 10.0f); + return; + } + else if (GetStringLeft(sCom, 5) == ".vtar") + { + object oGet = GetFirstObjectInArea(GetArea(oCommander)); + while (GetIsObjectValid(oGet)) + { + if (FindSubString(GetName(oGet), sArgs) != -1) + { + SetLocalObject(oCommander, "dmfi_VoiceTarget", oGet); + FloatingTextStringOnCreature("You have targeted " + GetName(oGet) + " with the Voice Widget", oCommander, FALSE); + return; + } + oGet = GetNextObjectInArea(GetArea(oCommander)); + } + FloatingTextStringOnCreature("Target not found.", oCommander, FALSE); + return; + } +} + +//////////////////////////////////////////////////////////////////////// +void subTranslateToLanguage(string sSaid, object oShouter, int nVolume, + object oMaster, int iTranslate, string sLanguageName, + object oEavesdrop) +{ + string sVolume = "said"; + if (nVolume == TALKVOLUME_WHISPER) sVolume = "whispered"; + else if (nVolume == TALKVOLUME_SHOUT) sVolume = "shouted"; + else if (nVolume == TALKVOLUME_PARTY) sVolume = "said to the party"; + else if (nVolume == TALKVOLUME_SILENT_SHOUT) sVolume = "said to the DM's"; + + //Translate and Send or do Lore check + if (oEavesdrop == oMaster || + GetIsObjectValid(GetItemPossessedBy(oEavesdrop, "hlslang_" + IntToString(iTranslate))) || + GetIsObjectValid(GetItemPossessedBy(oEavesdrop, "babelfish")) || + iTranslate == GetDefaultRacialLanguage(oEavesdrop, 0) || + iTranslate == GetDefaultClassLanguage(oEavesdrop) || + GetIsDM(oEavesdrop) || + GetIsDMPossessed(oEavesdrop)) + { + DelayCommand(0.1, DMFISendMessageToPC(oEavesdrop, GetName(oShouter) + " " + sVolume + " in " + sLanguageName + ": " + sSaid, FALSE, DMFI_MESSAGE_COLOR_TRANSLATION)); + } + else + { + if (iTranslate != 9) + { + string sKnownLanguage; + if (d20() + GetSkillRank(SKILL_LORE, oEavesdrop) > 20) sKnownLanguage = sLanguageName; + else sKnownLanguage = "a language you do not recognize"; + DelayCommand(0.1, DMFISendMessageToPC(oEavesdrop, GetName(oShouter)+" "+sVolume+" something in "+sKnownLanguage+".", FALSE, DMFI_MESSAGE_COLOR_TRANSLATION)); + } + } +} + +//////////////////////////////////////////////////////////////////////// +string TranslateToLanguage(string sSaid, object oShouter, int nVolume, object oMaster) +{ +// arguments +// (return) = translated text +// sSaid = string to translate +// oShouter = object that spoke sSaid +// iVolume = TALKVOLUME setting of speaker +// oMaster = master of oShouter (if oShouter has no master, oMaster should equal oShouter) + + //Gets the current language that the character is speaking + int iTranslate = GetLocalInt(oShouter, "hls_MyLanguage"); + if (!iTranslate) iTranslate = GetDefaultRacialLanguage(oShouter, 1); + if (!iTranslate) + { + DMFISendMessageToPC(oMaster, "Translator Error: your message was dropped.", FALSE, DMFI_MESSAGE_COLOR_ALERT); + return ""; + } + + //Defines language name + string sLanguageName = GetLocalString(oShouter, "hls_MyLanguageName"); + + sSaid = GetStringRight(sSaid, GetStringLength(sSaid)-1); // toss the leading translate flag '[' + //Thieves' Cant character limit of 25 + if (iTranslate == 9 && GetStringLength(sSaid) > 25) + sSaid = GetStringLeft(sSaid, 25); + string sSpeak = TranslateCommonToLanguage(iTranslate, sSaid); + // lop off trailing ']' + if (GetStringRight(sSaid, 1) == "]") + sSaid = GetStringLeft(sSaid, GetStringLength(sSaid)-1); + // AssignCommand(oShouter, SpeakString(sSpeak)); // no need reissue translated speech, handled in player chat hook + + // send speech to everyone who should be able to hear + float fDistance = 20.0f; + if (nVolume == TALKVOLUME_WHISPER) + { + fDistance = 1.0f; + } + string sVolume = "said"; + if (nVolume == TALKVOLUME_WHISPER) sVolume = "whispered"; + else if (nVolume == TALKVOLUME_SHOUT) sVolume = "shouted"; + else if (nVolume == TALKVOLUME_PARTY) sVolume = "said to the party"; + else if (nVolume == TALKVOLUME_SILENT_SHOUT) sVolume = "said to the DM's"; + string sKnownLanguage; + + // send translated message to PC's in range who understand it + object oEavesdrop = GetFirstObjectInShape(SHAPE_SPHERE, fDistance, GetLocation(oShouter), FALSE, OBJECT_TYPE_CREATURE); + while (GetIsObjectValid(oEavesdrop)) + { + if (GetIsPC(oEavesdrop) || GetIsDM(oEavesdrop) || GetIsDMPossessed(oEavesdrop) || GetIsPossessedFamiliar(oEavesdrop)) + { + subTranslateToLanguage(sSaid, oShouter, nVolume, oMaster, iTranslate, sLanguageName, oEavesdrop); + } + oEavesdrop = GetNextObjectInShape(SHAPE_SPHERE, fDistance, GetLocation(oShouter), FALSE, OBJECT_TYPE_CREATURE); + } + + // send translated message to DM's in range + oEavesdrop = GetFirstPC(); + while (GetIsObjectValid(oEavesdrop)) + { + if (GetIsDM(oEavesdrop)) + { + if (GetArea(oShouter) == GetArea(oEavesdrop) && + GetDistanceBetweenLocations(GetLocation(oShouter), GetLocation(oEavesdrop)) <= fDistance) + { + subTranslateToLanguage(sSaid, oShouter, nVolume, oMaster, iTranslate, sLanguageName, oEavesdrop); + } + } + oEavesdrop = GetNextPC(); + } + return sSpeak; +} + +//////////////////////////////////////////////////////////////////////// +int RelayTextToEavesdropper(object oShouter, int nVolume, string sSaid) +{ +// arguments +// (return) - flag to continue processing text: X2_EXECUTE_SCRIPT_CONTINUE or +// X2_EXECUTE_SCRIPT_END +// oShouter - object that spoke +// nVolume - channel (TALKVOLUME) text was spoken on +// sSaid - text that was spoken + + int bScriptEnd = X2_EXECUTE_SCRIPT_CONTINUE; + + // sanity checks + if (GetIsObjectValid(oShouter)) + { + int iHookToDelete = 0; + int iHookType = 0; + int channels = 0; + int rangemode = 0; + string siHook = ""; + object oMod = GetModule(); + int iHook = 1; + while (1) + { + siHook = IntToString(iHook); + iHookType = GetLocalInt(oMod, sHookTypeVarname+siHook); + if (iHookType == 0) break; // end of list + + // check channel + channels = GetLocalInt(oMod, sHookChannelsVarname+siHook); + if (((1 << nVolume) & channels) != 0) + { + string sVol = (nVolume == TALKVOLUME_WHISPER ? "whispers" : "says"); + object oOwner = GetLocalObject(oMod, sHookOwnerVarname+siHook); + if (GetIsObjectValid(oOwner)) + { + // it's a channel for us to listen on, process + int bcast = GetLocalInt(oMod, sHookBcastDMsVarname+siHook); + // for type 1, see if speaker is the one we want (pc or party) + // for type 2, see if speaker says his stuff within ("earshot" / area / module) of listener's location + if (iHookType == 1) // listen to what a PC hears + { + object oListener; + location locShouter, locListener; + object oTargeted = GetLocalObject(oMod, sHookCreatureVarname+siHook); + if (GetIsObjectValid(oTargeted)) + { + rangemode = GetLocalInt(oMod, sHookRangeModeVarname+siHook); + if (rangemode) oListener = GetFirstFactionMember(oTargeted, FALSE); // everyone in party are our listeners + else oListener = oTargeted; // only selected PC is our listener + while (GetIsObjectValid(oListener)) + { + // check speaker: + // check within earshot + int bInRange = FALSE; + locShouter = GetLocation(oShouter); + locListener = GetLocation(oListener); + if (oShouter == oListener) + { + bInRange = TRUE; // the target can always hear himself + } + else if (GetAreaFromLocation(locShouter) == GetAreaFromLocation(locListener)) + { + float dist = GetDistanceBetweenLocations(locListener, locShouter); + if ((nVolume == TALKVOLUME_WHISPER && dist <= WHISPER_DISTANCE) || + (nVolume != TALKVOLUME_WHISPER && dist <= TALK_DISTANCE)) + { + bInRange = TRUE; + } + } + if (bInRange) + { + // relay what's said to the hook owner + string sMesg = "("+GetName(GetArea(oShouter))+") "+GetName(oShouter)+" "+sVol+": "+sSaid; + // if (bcast) SendMessageToAllDMs(sMesg); + // else SendMessageToPC(oOwner, sMesg); + DMFISendMessageToPC(oOwner, sMesg, bcast, DMFI_MESSAGE_COLOR_EAVESDROP); + } + if (rangemode == 0) break; // only check the target creature for rangemode 0 + if (bInRange) break; // once any party member hears shouter, we're done + oListener = GetNextFactionMember(oTargeted, FALSE); + } + } + else + { + // bad desired speaker, remove hook + iHookToDelete = iHook; + } + } + else if (iHookType == 2) // listen at location + { + location locShouter, locListener; + object oListener = GetLocalObject(oMod, sHookCreatureVarname+siHook); + if (oListener != OBJECT_INVALID) + { + locListener = GetLocation(oListener); + } + else + { + locListener = GetLocalLocation(oMod, sHookLocationVarname+siHook); + } + locShouter = GetLocation(oShouter); + rangemode = GetLocalInt(oMod, sHookRangeModeVarname+siHook); + int bInRange = FALSE; + if (rangemode == 0) + { + // check within earshot + if (GetAreaFromLocation(locShouter) == GetAreaFromLocation(locListener)) + { + float dist = GetDistanceBetweenLocations(locListener, locShouter); + if ((nVolume == TALKVOLUME_WHISPER && dist <= WHISPER_DISTANCE) || + (nVolume != TALKVOLUME_WHISPER && dist <= TALK_DISTANCE)) + { + bInRange = TRUE; + } + } + } + else if (rangemode == 1) + { + // check within area + if (GetAreaFromLocation(locShouter) == GetAreaFromLocation(locListener)) bInRange = TRUE; + } + else + { + // module-wide + bInRange = TRUE; + } + if (bInRange) + { + // relay what's said to the hook owner + string sMesg = "("+GetName(GetArea(oShouter))+") "+GetName(oShouter)+" "+sVol+": "+sSaid; + // if (bcast) SendMessageToAllDMs(sMesg); + // else SendMessageToPC(oOwner, sMesg); + DMFISendMessageToPC(oOwner, sMesg, bcast, DMFI_MESSAGE_COLOR_EAVESDROP); + } + } + else + { + WriteTimestampedLogEntry("ERROR: DMFI OnPlayerChat handler: invalid iHookType; removing hook."); + iHookToDelete = iHook; + } + } + else + { + // bad owner, delete hook + iHookToDelete = iHook; + } + } + + iHook++; + } + + // remove a bad hook: note we can only remove one bad hook this way, have to rely on subsequent calls to remove any others + if (iHookToDelete > 0) + { + RemoveListenerHook(iHookToDelete); + } + } + + return bScriptEnd; +} + +//////////////////////////////////////////////////////////////////////// +void main() +{ + int bScriptEnd = X2_EXECUTE_SCRIPT_CONTINUE; + int nVolume = GetPCChatVolume(); + object oShouter = GetPCChatSpeaker(); + string sSaid = GetPCChatMessage(); + +// SpawnScriptDebugger(); +// DMFISendMessageToPC(oShouter, IntToString(nVolume)+">> "+sSaid, FALSE, "737"); + + // pass on any heard text to registered listeners + // since listeners are set by DM's, pass the raw unprocessed command text to them + bScriptEnd = RelayTextToEavesdropper(oShouter, nVolume, sSaid); + + if (bScriptEnd == X2_EXECUTE_SCRIPT_CONTINUE) + { + // see if we're supposed to listen on this channel + if ((nVolume == TALKVOLUME_TALK && DMFI_LISTEN_ON_CHANNEL_TALK) || + (nVolume == TALKVOLUME_SILENT_SHOUT && DMFI_LISTEN_ON_CHANNEL_DM) || + (nVolume == TALKVOLUME_WHISPER && DMFI_LISTEN_ON_CHANNEL_WHISPER) || + (nVolume == TALKVOLUME_PARTY && DMFI_LISTEN_ON_CHANNEL_PARTY) || + (nVolume == TALKVOLUME_SHOUT && DMFI_LISTEN_ON_CHANNEL_SHOUT)) + { + // yes we are + // now see if we have a command to parse + // special chars: + // [ = speak in alternate language + // * = perform emote + // : = throw voice to last designated target + // ; = throw voice to master / animal companion / familiar / henchman / summon + // , = throw voice summon / henchman / familiar / animal companion / master + // . = command to execute + + int bChangedText = 0; + object oTarget = OBJECT_INVALID; + int iTargetType = 0; + + // eat leading whitespace + while (GetStringLeft(sSaid, 1) == " ") + { + sSaid = GetStringRight(sSaid, GetStringLength(sSaid)-1); + } + + string sLeadChar = GetStringLeft(sSaid, 1); + string s2ndChar = GetStringRight(GetStringLeft(sSaid, 2), 1); + + // check for target selection + if (s2ndChar != sLeadChar) // doubled leadins should be ignored + { + if (sLeadChar == ":") + { + if (GetIsDM(oShouter) || GetIsDMPossessed(oShouter)) + { + // last creature targeted with DMFI Voice Widget + iTargetType = 1; + oTarget = GetLocalObject(oShouter, "dmfi_VoiceTarget"); + } + else + { + // non-DM's can't target others + iTargetType = -1; + oTarget = OBJECT_INVALID; + } + } + else if (sLeadChar == ";") + { + // master / animal companion / familiar / henchman / summon + iTargetType = 2; + oTarget = GetMaster(oShouter); + if (!GetIsObjectValid(oTarget)) + { + oTarget = GetAssociate(ASSOCIATE_TYPE_ANIMALCOMPANION, oShouter); + if (!GetIsObjectValid(oTarget)) + { + oTarget = GetAssociate(ASSOCIATE_TYPE_FAMILIAR, oShouter); + if (!GetIsObjectValid(oTarget)) + { + oTarget = GetAssociate(ASSOCIATE_TYPE_HENCHMAN, oShouter); + if (!GetIsObjectValid(oTarget)) + { + oTarget = GetAssociate(ASSOCIATE_TYPE_SUMMONED, oShouter); + } + } + } + } + } + else if (sLeadChar == ",") + { + // summon / henchman / familiar / animal companion / master + iTargetType = 3; + oTarget = GetAssociate(ASSOCIATE_TYPE_SUMMONED, oShouter); + if (!GetIsObjectValid(oTarget)) + { + oTarget = GetAssociate(ASSOCIATE_TYPE_HENCHMAN, oShouter); + if (!GetIsObjectValid(oTarget)) + { + oTarget = GetAssociate(ASSOCIATE_TYPE_FAMILIAR, oShouter); + if (!GetIsObjectValid(oTarget)) + { + oTarget = GetAssociate(ASSOCIATE_TYPE_ANIMALCOMPANION, oShouter); + if (!GetIsObjectValid(oTarget)) + { + oTarget = GetMaster(oShouter); + } + } + } + } + } + + if (iTargetType != 0) + { + // eat the targeting character and any whitespace following it + sSaid = GetStringRight(sSaid, GetStringLength(sSaid)-1); + while (GetStringLeft(sSaid, 1) == " ") + { + sSaid = GetStringRight(sSaid, GetStringLength(sSaid)-1); + } + sLeadChar = GetStringLeft(sSaid, 1); + } + + // now parse special command char (.command, *emote, [lang) + if (sLeadChar == ".") + { + bChangedText = 1; + if (oTarget == OBJECT_INVALID) + { + // 2008.05.29 tsunami282 - no target set, so dot command uses DMFI targeting wand + oTarget = GetLocalObject(oShouter, "dmfi_univ_target"); + } + + if (GetIsObjectValid(oTarget)) + { + ParseCommand(oTarget, oShouter, sSaid); + sSaid = ""; + } + else + { + // target invalid + bChangedText = 1; + DMFISendMessageToPC(oShouter, "Invalid command target - not processed.", FALSE, DMFI_MESSAGE_COLOR_ALERT); + sSaid = ""; + } + } + else if (sLeadChar == "*") + { + bChangedText = 1; + if (oTarget == OBJECT_INVALID) oTarget = oShouter; // untargeted emotes apply to self + if (GetIsObjectValid(oTarget)) + { + ParseEmote(sSaid, oTarget); + } + else + { + // target invalid + bChangedText = 1; + DMFISendMessageToPC(oShouter, "Invalid emote target - not processed.", FALSE, DMFI_MESSAGE_COLOR_ALERT); + sSaid = ""; + } + } + else if (sLeadChar == "[") + { + bChangedText = 1; + if (oTarget == OBJECT_INVALID) oTarget = oShouter; // untargeted languages spoken by self + if (GetIsObjectValid(oTarget)) + { + sSaid = TranslateToLanguage(sSaid, oTarget, nVolume, oShouter); + } + else + { + // target invalid + bChangedText = 1; + DMFISendMessageToPC(oShouter, "Invalid language target - not processed.", FALSE, DMFI_MESSAGE_COLOR_ALERT); + sSaid = ""; + } + } + } + + if (iTargetType != 0) + { + // throw the message + if (sSaid != "") + { + bChangedText = 1; + AssignCommand(oTarget, SpeakString(sSaid, nVolume)); + if (DMFI_LOG_CONVERSATION) + { + PrintString(""+GetName(GetArea(oTarget))+ " " + GetName(oTarget) + ": " + sSaid + " "); + } + sSaid = ""; + } + } + else + { + // log what was said + if (DMFI_LOG_CONVERSATION && (sSaid != "")) + { + PrintString(""+GetName(GetArea(oShouter))+ " " + GetName(oShouter) + ": " + sSaid + " "); + } + } + + if (bChangedText) + { + SetPCChatMessage(sSaid); + bScriptEnd = X2_EXECUTE_SCRIPT_END; + } + } + } + + SetExecutedScriptReturnValue(bScriptEnd); +} diff --git a/gamma_age_v2/dmfi_plychat_inc.ncs b/gamma_age_v2/dmfi_plychat_inc.ncs new file mode 100644 index 00000000..8593a337 Binary files /dev/null and b/gamma_age_v2/dmfi_plychat_inc.ncs differ diff --git a/gamma_age_v2/dmfi_plychat_inc.nss b/gamma_age_v2/dmfi_plychat_inc.nss new file mode 100644 index 00000000..3e26252c --- /dev/null +++ b/gamma_age_v2/dmfi_plychat_inc.nss @@ -0,0 +1,144 @@ + +// DMFI OnPlayerChat routines :: event hooking functions +// +// history +// 2008.03.23 tsunami282 - created. +// + +#include "dmfi_arrays_inc" + +const string DMFI_CHATHOOK_HANDLE_ARRAYNAME = "DMFI_CHATHOOK_HANDLE"; +const string DMFI_CHATHOOK_SCRIPT_ARRAYNAME = "DMFI_CHATHOOK_SCRIPT"; +const string DMFI_CHATHOOK_RUNNER_ARRAYNAME = "DMFI_CHATHOOK_RUNNER"; +const string DMFI_CHATHOOK_CHANNELS_ARRAYNAME = "DMFI_CHATHOOK_CHANNELS"; +const string DMFI_CHATHOOK_LISTENALL_ARRAYNAME = "DMFI_CHATHOOK_LISTENALL"; +const string DMFI_CHATHOOK_SPEAKER_ARRAYNAME = "DMFI_CHATHOOK_SPEAKER"; +const string DMFI_CHATHOOK_AUTOREMOVE_ARRAYNAME = "DMFI_CHATHOOK_AUTOREMOVE"; +const string DMFI_CHATHOOK_PREVHANDLE_VARNAME = "DMFI_CHATHOOK_PREVHANDLE"; + +int DMFI_CHANNELMASK_TALK = (1 << TALKVOLUME_TALK); +int DMFI_CHANNELMASK_WHISPER = (1 << TALKVOLUME_WHISPER); +int DMFI_CHANNELMASK_SHOUT = (1 << TALKVOLUME_SHOUT); +// * this channel not hookable ** int DMFI_CHANNELMASK_SILENT_TALK = (1 << TALKVOLUME_SILENT_TALK); +int DMFI_CHANNELMASK_DM = (1 << TALKVOLUME_SILENT_SHOUT); +int DMFI_CHANNELMASK_PARTY = (1 << TALKVOLUME_PARTY); +// * this channel not hookable ** int DMFI_CHANNELMASK_TELL = (1 << TALKVOLUME_TELL); + +//////////////////////////////////////////////////////////////////////// +void dmfi__init_chathook_data() +{ + object oMod = GetModule(); + + if (!GetLocalArrayInitialized(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME)) + { + InitializeLocalArray(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME); + SetLocalArrayLowerBound(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME, 1); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME, 0); + InitializeLocalArray(oMod, DMFI_CHATHOOK_SCRIPT_ARRAYNAME); + SetLocalArrayLowerBound(oMod, DMFI_CHATHOOK_SCRIPT_ARRAYNAME, 1); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_SCRIPT_ARRAYNAME, 0); + InitializeLocalArray(oMod, DMFI_CHATHOOK_RUNNER_ARRAYNAME); + SetLocalArrayLowerBound(oMod, DMFI_CHATHOOK_RUNNER_ARRAYNAME, 1); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_RUNNER_ARRAYNAME, 0); + InitializeLocalArray(oMod, DMFI_CHATHOOK_CHANNELS_ARRAYNAME); + SetLocalArrayLowerBound(oMod, DMFI_CHATHOOK_CHANNELS_ARRAYNAME, 1); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_CHANNELS_ARRAYNAME, 0); + InitializeLocalArray(oMod, DMFI_CHATHOOK_LISTENALL_ARRAYNAME); + SetLocalArrayLowerBound(oMod, DMFI_CHATHOOK_LISTENALL_ARRAYNAME, 1); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_LISTENALL_ARRAYNAME, 0); + InitializeLocalArray(oMod, DMFI_CHATHOOK_SPEAKER_ARRAYNAME); + SetLocalArrayLowerBound(oMod, DMFI_CHATHOOK_SPEAKER_ARRAYNAME, 1); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_SPEAKER_ARRAYNAME, 0); + InitializeLocalArray(oMod, DMFI_CHATHOOK_AUTOREMOVE_ARRAYNAME); + SetLocalArrayLowerBound(oMod, DMFI_CHATHOOK_AUTOREMOVE_ARRAYNAME, 1); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_AUTOREMOVE_ARRAYNAME, 0); + } +} + +//////////////////////////////////////////////////////////////////////// +//! Adds a callback function to the OnPlayerChat list. +//! +//! \param sChatHandlerScript name of script to invoke on receiving input +//! \param oScriptRunner object to execute the sChatHandlerScript on +//! \param maskChannels mask of channels to listen on (defaults to all channels) +//! \param bListenAll TRUE to listen to all PC speakers everywhere +//! \param oSpeaker if bListenAll is FALSE, creature to listen to (others will be ignored) +//! \param bAutoRemove - automatically unhook this chathook after first use +//! \return hook handle (needed to remove the hook later); 0 means failed to add the hook +int DMFI_ChatHookAdd(string sChatHandlerScript, object oScriptRunner = OBJECT_SELF, + int maskChannels = -1, int bListenAll = TRUE, object oSpeaker = OBJECT_INVALID, + int bAutoRemove = FALSE) +{ + dmfi__init_chathook_data(); + + object oMod = GetModule(); + + int iHook = GetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME); + iHook++; + int hdlHook = GetLocalInt(oMod, DMFI_CHATHOOK_PREVHANDLE_VARNAME); + hdlHook++; + if (hdlHook < 1) hdlHook = 1; // reserving 0 and negatives + // SendMessageToPC(GetFirstPC(), "chathookadd - adding hook #" + IntToString(iHook)); + SetLocalInt(oMod, DMFI_CHATHOOK_PREVHANDLE_VARNAME, hdlHook); + SetLocalArrayInt(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME, iHook, hdlHook); + SetLocalArrayString(oMod, DMFI_CHATHOOK_SCRIPT_ARRAYNAME, iHook, sChatHandlerScript); + SetLocalArrayObject(oMod, DMFI_CHATHOOK_RUNNER_ARRAYNAME, iHook, oScriptRunner); + SetLocalArrayInt(oMod, DMFI_CHATHOOK_CHANNELS_ARRAYNAME, iHook, maskChannels); + SetLocalArrayInt(oMod, DMFI_CHATHOOK_LISTENALL_ARRAYNAME, iHook, bListenAll); + SetLocalArrayObject(oMod, DMFI_CHATHOOK_SPEAKER_ARRAYNAME, iHook, oSpeaker); + SetLocalArrayInt(oMod, DMFI_CHATHOOK_AUTOREMOVE_ARRAYNAME, iHook, bAutoRemove); + + return hdlHook; +} + +//////////////////////////////////////////////////////////////////////// +//! removes a callback function from the OnPlayerChat list. +//! \param hdlHookIn handle of hook to remove (0 for clean up orphans) +//! \return TRUE if requested hook found and removed +int DMFI_ChatHookRemove(int hdlHookIn) +{ + int bRemoved = FALSE; + int hdlHook; + int iHook, iHook2; + object oMod = GetModule(); + int nHooks = GetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME); + for (iHook = 1; iHook <= nHooks; iHook++) + { + while (1) + { + hdlHook = GetLocalArrayInt(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME, iHook); + if (hdlHook != 0 && hdlHook != hdlHookIn) break; + + // kill this one + for (iHook2 = iHook; iHook2 < nHooks; iHook2++) + { + SetLocalArrayInt(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME, iHook2, GetLocalArrayInt(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME, iHook2+1)); + SetLocalArrayString(oMod, DMFI_CHATHOOK_SCRIPT_ARRAYNAME, iHook2, GetLocalArrayString(oMod, DMFI_CHATHOOK_SCRIPT_ARRAYNAME, iHook2+1)); + SetLocalArrayObject(oMod, DMFI_CHATHOOK_RUNNER_ARRAYNAME, iHook2, GetLocalArrayObject(oMod, DMFI_CHATHOOK_RUNNER_ARRAYNAME, iHook2+1)); + SetLocalArrayInt(oMod, DMFI_CHATHOOK_CHANNELS_ARRAYNAME, iHook2, GetLocalArrayInt(oMod, DMFI_CHATHOOK_CHANNELS_ARRAYNAME, iHook2+1)); + SetLocalArrayInt(oMod, DMFI_CHATHOOK_LISTENALL_ARRAYNAME, iHook2, GetLocalArrayInt(oMod, DMFI_CHATHOOK_LISTENALL_ARRAYNAME, iHook2+1)); + SetLocalArrayObject(oMod, DMFI_CHATHOOK_SPEAKER_ARRAYNAME, iHook2, GetLocalArrayObject(oMod, DMFI_CHATHOOK_SPEAKER_ARRAYNAME, iHook2+1)); + SetLocalArrayInt(oMod, DMFI_CHATHOOK_AUTOREMOVE_ARRAYNAME, iHook2, GetLocalArrayInt(oMod, DMFI_CHATHOOK_AUTOREMOVE_ARRAYNAME, iHook2+1)); + } + bRemoved = TRUE; + nHooks--; + if (nHooks < iHook) break; + } + } + + if (bRemoved) + { + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_HANDLE_ARRAYNAME, nHooks); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_SCRIPT_ARRAYNAME, nHooks); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_RUNNER_ARRAYNAME, nHooks); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_CHANNELS_ARRAYNAME, nHooks); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_LISTENALL_ARRAYNAME, nHooks); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_SPEAKER_ARRAYNAME, nHooks); + SetLocalArrayUpperBound(oMod, DMFI_CHATHOOK_AUTOREMOVE_ARRAYNAME, nHooks); + } + + return bRemoved; +} + +//void main (){} + diff --git a/gamma_age_v2/dmfi_remove.uti b/gamma_age_v2/dmfi_remove.uti new file mode 100644 index 00000000..91480a8f Binary files /dev/null and b/gamma_age_v2/dmfi_remove.uti differ diff --git a/gamma_age_v2/dmfi_rest.utp b/gamma_age_v2/dmfi_rest.utp new file mode 100644 index 00000000..ed037926 Binary files /dev/null and b/gamma_age_v2/dmfi_rest.utp differ diff --git a/gamma_age_v2/dmfi_rest001.utp b/gamma_age_v2/dmfi_rest001.utp new file mode 100644 index 00000000..dd994c19 Binary files /dev/null and b/gamma_age_v2/dmfi_rest001.utp differ diff --git a/gamma_age_v2/dmfi_rest002.utp b/gamma_age_v2/dmfi_rest002.utp new file mode 100644 index 00000000..ab5f6338 Binary files /dev/null and b/gamma_age_v2/dmfi_rest002.utp differ diff --git a/gamma_age_v2/dmfi_rest003.utp b/gamma_age_v2/dmfi_rest003.utp new file mode 100644 index 00000000..f203b081 Binary files /dev/null and b/gamma_age_v2/dmfi_rest003.utp differ diff --git a/gamma_age_v2/dmfi_restvfxobje.utp b/gamma_age_v2/dmfi_restvfxobje.utp new file mode 100644 index 00000000..f00182de Binary files /dev/null and b/gamma_age_v2/dmfi_restvfxobje.utp differ diff --git a/gamma_age_v2/dmfi_server.uti b/gamma_age_v2/dmfi_server.uti new file mode 100644 index 00000000..9cba6e72 Binary files /dev/null and b/gamma_age_v2/dmfi_server.uti differ diff --git a/gamma_age_v2/dmfi_setting.utc b/gamma_age_v2/dmfi_setting.utc new file mode 100644 index 00000000..b741801b Binary files /dev/null and b/gamma_age_v2/dmfi_setting.utc differ diff --git a/gamma_age_v2/dmfi_sound.uti b/gamma_age_v2/dmfi_sound.uti new file mode 100644 index 00000000..1f2872dd Binary files /dev/null and b/gamma_age_v2/dmfi_sound.uti differ diff --git a/gamma_age_v2/dmfi_string_inc.nss b/gamma_age_v2/dmfi_string_inc.nss new file mode 100644 index 00000000..a81ddd9b --- /dev/null +++ b/gamma_age_v2/dmfi_string_inc.nss @@ -0,0 +1,71 @@ +//:://///////////////////////////////////////////// +//:: DMFI - string functions and constants +//:: dmfi_string_inc +//::////////////////////////////////////////////// +/* + Library of functions relating to strings for DMFI. +*/ +//::////////////////////////////////////////////// +//:: Created By: tsunami282 +//:: Created On: 2008.08.11 +//::////////////////////////////////////////////// + +#include "x3_inc_string" + +const string DMFI_MESSAGE_COLOR_ALERT = "733"; // default 733 - brite red +const string DMFI_MESSAGE_COLOR_STATUS = "773"; // default 773 - yellow +const string DMFI_MESSAGE_COLOR_EAVESDROP = "777"; // default 777 - white +const string DMFI_MESSAGE_COLOR_TRANSLATION = "555"; // default 733 - lite gray +const string DMFI_MESSAGE_COLOR_OTHER = ""; // default blank + +//////////////////////////////////////////////////////////////////////// +string LTrim(string sTrimMe, string sDelim = " ") +{ + int l; + + if (sDelim != "") + { + l = GetStringLength(sTrimMe); + while (GetStringLeft(sTrimMe, 1) == sDelim) + { + l--; + if (l < 1) + { + sTrimMe = ""; + break; + } + sTrimMe = GetStringRight(sTrimMe, l); + } + } + + return sTrimMe; +} + +//////////////////////////////////////////////////////////////////////// +void DMFISendMessageToPC(object oPC, string sMsg, int bAllDMs=FALSE, + string sRGB="") +{ + string sColMsg; + object oTarget = oPC; + if (bAllDMs) oTarget = GetFirstPC(); + while (GetIsObjectValid(oTarget)) + { + if ((!bAllDMs) || (GetIsDM(oTarget) || GetIsDMPossessed(oTarget))) + { + if (sRGB != "") + { + sColMsg = StringToRGBString(sMsg, sRGB); + } + else + { + sColMsg = sMsg; + } + SendMessageToPC(oTarget, sColMsg); + } + + if (!bAllDMs) break; + oTarget = GetNextPC(); + } + +} + diff --git a/gamma_age_v2/dmfi_target.uti b/gamma_age_v2/dmfi_target.uti new file mode 100644 index 00000000..1e1c8986 Binary files /dev/null and b/gamma_age_v2/dmfi_target.uti differ diff --git a/gamma_age_v2/dmfi_unact_nam02.ncs b/gamma_age_v2/dmfi_unact_nam02.ncs new file mode 100644 index 00000000..76a917a2 Binary files /dev/null and b/gamma_age_v2/dmfi_unact_nam02.ncs differ diff --git a/gamma_age_v2/dmfi_unact_nam02.nss b/gamma_age_v2/dmfi_unact_nam02.nss new file mode 100644 index 00000000..eddecfe1 --- /dev/null +++ b/gamma_age_v2/dmfi_unact_nam02.nss @@ -0,0 +1,12 @@ + +#include "dmfi_getln_inc" + +void main() +{ + object oListener = OBJECT_SELF; + object oPC = GetPCSpeaker(); + + // attach our listener event + SetLocalString(oListener, "dmfi_getln_mode", "name"); + DMFI_get_line(oPC, TALKVOLUME_TALK, "dmfi_univ_listen", oListener); +} diff --git a/gamma_age_v2/dmfi_unact_nam03.ncs b/gamma_age_v2/dmfi_unact_nam03.ncs new file mode 100644 index 00000000..5aca9247 Binary files /dev/null and b/gamma_age_v2/dmfi_unact_nam03.ncs differ diff --git a/gamma_age_v2/dmfi_unact_nam03.nss b/gamma_age_v2/dmfi_unact_nam03.nss new file mode 100644 index 00000000..97b67f6f --- /dev/null +++ b/gamma_age_v2/dmfi_unact_nam03.nss @@ -0,0 +1,6 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + SetName(oTarget, ""); +} diff --git a/gamma_age_v2/dmfi_unact_nam04.ncs b/gamma_age_v2/dmfi_unact_nam04.ncs new file mode 100644 index 00000000..8d0be317 Binary files /dev/null and b/gamma_age_v2/dmfi_unact_nam04.ncs differ diff --git a/gamma_age_v2/dmfi_unact_nam04.nss b/gamma_age_v2/dmfi_unact_nam04.nss new file mode 100644 index 00000000..55b51474 --- /dev/null +++ b/gamma_age_v2/dmfi_unact_nam04.nss @@ -0,0 +1,8 @@ + +#include "dmfi_getln_inc" + +void main() +{ + object oListener = OBJECT_SELF; + DMFI_cancel_get_line(0, oListener); +} diff --git a/gamma_age_v2/dmfi_unact_nam06.ncs b/gamma_age_v2/dmfi_unact_nam06.ncs new file mode 100644 index 00000000..7753ab88 Binary files /dev/null and b/gamma_age_v2/dmfi_unact_nam06.ncs differ diff --git a/gamma_age_v2/dmfi_unact_nam06.nss b/gamma_age_v2/dmfi_unact_nam06.nss new file mode 100644 index 00000000..931d0bd8 --- /dev/null +++ b/gamma_age_v2/dmfi_unact_nam06.nss @@ -0,0 +1,12 @@ + +#include "dmfi_getln_inc" + +void main() +{ + object oListener = OBJECT_SELF; + object oPC = GetPCSpeaker(); + + // attach our listener event + SetLocalString(oListener, "dmfi_getln_mode", "desc"); + DMFI_get_line(oPC, TALKVOLUME_TALK, "dmfi_univ_listen", oListener); +} diff --git a/gamma_age_v2/dmfi_unact_nam07.ncs b/gamma_age_v2/dmfi_unact_nam07.ncs new file mode 100644 index 00000000..5aca9247 Binary files /dev/null and b/gamma_age_v2/dmfi_unact_nam07.ncs differ diff --git a/gamma_age_v2/dmfi_unact_nam07.nss b/gamma_age_v2/dmfi_unact_nam07.nss new file mode 100644 index 00000000..97b67f6f --- /dev/null +++ b/gamma_age_v2/dmfi_unact_nam07.nss @@ -0,0 +1,6 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + SetName(oTarget, ""); +} diff --git a/gamma_age_v2/dmfi_unact_nam08.ncs b/gamma_age_v2/dmfi_unact_nam08.ncs new file mode 100644 index 00000000..8d0be317 Binary files /dev/null and b/gamma_age_v2/dmfi_unact_nam08.ncs differ diff --git a/gamma_age_v2/dmfi_unact_nam08.nss b/gamma_age_v2/dmfi_unact_nam08.nss new file mode 100644 index 00000000..55b51474 --- /dev/null +++ b/gamma_age_v2/dmfi_unact_nam08.nss @@ -0,0 +1,8 @@ + +#include "dmfi_getln_inc" + +void main() +{ + object oListener = OBJECT_SELF; + DMFI_cancel_get_line(0, oListener); +} diff --git a/gamma_age_v2/dmfi_uncnd_nam01.ncs b/gamma_age_v2/dmfi_uncnd_nam01.ncs new file mode 100644 index 00000000..d55a63cd Binary files /dev/null and b/gamma_age_v2/dmfi_uncnd_nam01.ncs differ diff --git a/gamma_age_v2/dmfi_uncnd_nam01.nss b/gamma_age_v2/dmfi_uncnd_nam01.nss new file mode 100644 index 00000000..603d42ca --- /dev/null +++ b/gamma_age_v2/dmfi_uncnd_nam01.nss @@ -0,0 +1,13 @@ +int StartingConditional() +{ + // set the custom tokens + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + + string sName = GetName(oTarget); + SetCustomToken(20680, sName); + string sOrigName = GetName(oTarget, TRUE); + SetCustomToken(20681, sOrigName); + + return TRUE; +} diff --git a/gamma_age_v2/dmfi_uncnd_nam05.ncs b/gamma_age_v2/dmfi_uncnd_nam05.ncs new file mode 100644 index 00000000..0f8ab6d9 Binary files /dev/null and b/gamma_age_v2/dmfi_uncnd_nam05.ncs differ diff --git a/gamma_age_v2/dmfi_uncnd_nam05.nss b/gamma_age_v2/dmfi_uncnd_nam05.nss new file mode 100644 index 00000000..8c2aac6d --- /dev/null +++ b/gamma_age_v2/dmfi_uncnd_nam05.nss @@ -0,0 +1,13 @@ +int StartingConditional() +{ + // set the custom tokens + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + + string sName = GetDescription(oTarget); + SetCustomToken(20682, sName); + string sOrigName = GetDescription(oTarget, TRUE); + SetCustomToken(20683, sOrigName); + + return TRUE; +} diff --git a/gamma_age_v2/dmfi_univ_1.ncs b/gamma_age_v2/dmfi_univ_1.ncs new file mode 100644 index 00000000..56f47a01 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_1.ncs differ diff --git a/gamma_age_v2/dmfi_univ_1.nss b/gamma_age_v2/dmfi_univ_1.nss new file mode 100644 index 00000000..4a303cdb --- /dev/null +++ b/gamma_age_v2/dmfi_univ_1.nss @@ -0,0 +1,26 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oPC, "dmfi_univ_location"); + string sConv = GetLocalString(oPC, "dmfi_univ_conv"); + + if (GetLocalInt(oPC, "Tens")) + { + SetLocalInt(oPC, "dmfi_univ_int", 10*GetLocalInt(oPC, "Tens") + 1); + ExecuteScript("dmfi_execute", oPC); + DeleteLocalInt(oPC, "Tens"); + return; + } + else + { + if(sConv == "pc_emote" || sConv == "emote" || sConv == "server" || sConv == "onering") + { + SetLocalInt(oPC, "dmfi_univ_int", 1); + ExecuteScript("dmfi_execute", oPC); + } + else + SetLocalInt(oPC, "Tens", 1); + return; + } +} diff --git a/gamma_age_v2/dmfi_univ_10.ncs b/gamma_age_v2/dmfi_univ_10.ncs new file mode 100644 index 00000000..6241d358 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_10.ncs differ diff --git a/gamma_age_v2/dmfi_univ_10.nss b/gamma_age_v2/dmfi_univ_10.nss new file mode 100644 index 00000000..c309cedd --- /dev/null +++ b/gamma_age_v2/dmfi_univ_10.nss @@ -0,0 +1,27 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oPC, "dmfi_univ_location"); + string sConv = GetLocalString(oPC, "dmfi_univ_conv"); + + if (GetLocalInt(oPC, "Tens")) + { + SetLocalInt(oPC, "dmfi_univ_int", 10*GetLocalInt(oPC, "Tens")); + ExecuteScript("dmfi_execute", oPC); + DeleteLocalInt(oPC, "Tens"); + return; + } + else + { + if(sConv == "voice" || sConv == "pc_emote" || sConv == "faction") + { + SetLocalInt(oPC, "dmfi_univ_int", 10); + ExecuteScript("dmfi_execute", oPC); + return; + } + else + SetLocalInt(oPC, "Tens", 10); + return; + } +} diff --git a/gamma_age_v2/dmfi_univ_2.ncs b/gamma_age_v2/dmfi_univ_2.ncs new file mode 100644 index 00000000..3c21f9b3 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_2.ncs differ diff --git a/gamma_age_v2/dmfi_univ_2.nss b/gamma_age_v2/dmfi_univ_2.nss new file mode 100644 index 00000000..22a124c6 --- /dev/null +++ b/gamma_age_v2/dmfi_univ_2.nss @@ -0,0 +1,26 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oPC, "dmfi_univ_location"); + string sConv = GetLocalString(oPC, "dmfi_univ_conv"); + + if (GetLocalInt(oPC, "Tens")) + { + SetLocalInt(oPC, "dmfi_univ_int", 10*GetLocalInt(oPC, "Tens") + 2); + ExecuteScript("dmfi_execute", oPC); + DeleteLocalInt(oPC, "Tens"); + return; + } + else + { + if(sConv == "pc_emote" || sConv == "emote" || sConv == "server" || sConv == "onering") + { + SetLocalInt(oPC, "dmfi_univ_int", 2); + ExecuteScript("dmfi_execute", oPC); + } + else + SetLocalInt(oPC, "Tens", 2); + return; + } +} diff --git a/gamma_age_v2/dmfi_univ_3.ncs b/gamma_age_v2/dmfi_univ_3.ncs new file mode 100644 index 00000000..4e23bd86 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_3.ncs differ diff --git a/gamma_age_v2/dmfi_univ_3.nss b/gamma_age_v2/dmfi_univ_3.nss new file mode 100644 index 00000000..20aff9cf --- /dev/null +++ b/gamma_age_v2/dmfi_univ_3.nss @@ -0,0 +1,27 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oPC, "dmfi_univ_location"); + string sConv = GetLocalString(oPC, "dmfi_univ_conv"); + + if (GetLocalInt(oPC, "Tens")) + { + SetLocalInt(oPC, "dmfi_univ_int", 10*GetLocalInt(oPC, "Tens") + 3); + ExecuteScript("dmfi_execute", oPC); + DeleteLocalInt(oPC, "Tens"); + return; + } + else + { + if(sConv == "pc_emote" || sConv == "emote" || sConv == "server" || sConv == "onering") + { + SetLocalInt(oPC, "dmfi_univ_int", 3); + ExecuteScript("dmfi_execute", oPC); + return; + } + else + SetLocalInt(oPC, "Tens", 3); + return; + } +} diff --git a/gamma_age_v2/dmfi_univ_4.ncs b/gamma_age_v2/dmfi_univ_4.ncs new file mode 100644 index 00000000..66fd8cd7 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_4.ncs differ diff --git a/gamma_age_v2/dmfi_univ_4.nss b/gamma_age_v2/dmfi_univ_4.nss new file mode 100644 index 00000000..a27b9653 --- /dev/null +++ b/gamma_age_v2/dmfi_univ_4.nss @@ -0,0 +1,27 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oPC, "dmfi_univ_location"); + string sConv = GetLocalString(oPC, "dmfi_univ_conv"); + + if (GetLocalInt(oPC, "Tens")) + { + SetLocalInt(oPC, "dmfi_univ_int", 10*GetLocalInt(oPC, "Tens") + 4); + ExecuteScript("dmfi_execute", oPC); + DeleteLocalInt(oPC, "Tens"); + return; + } + else + { + if(sConv == "pc_emote" || sConv == "emote" || sConv == "server" || sConv == "onering") + { + SetLocalInt(oPC, "dmfi_univ_int", 4); + ExecuteScript("dmfi_execute", oPC); + return; + } + else + SetLocalInt(oPC, "Tens", 4); + return; + } +} diff --git a/gamma_age_v2/dmfi_univ_5.ncs b/gamma_age_v2/dmfi_univ_5.ncs new file mode 100644 index 00000000..8efb3201 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_5.ncs differ diff --git a/gamma_age_v2/dmfi_univ_5.nss b/gamma_age_v2/dmfi_univ_5.nss new file mode 100644 index 00000000..1d9da1c6 --- /dev/null +++ b/gamma_age_v2/dmfi_univ_5.nss @@ -0,0 +1,27 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oPC, "dmfi_univ_location"); + string sConv = GetLocalString(oPC, "dmfi_univ_conv"); + + if (GetLocalInt(oPC, "Tens")) + { + SetLocalInt(oPC, "dmfi_univ_int", 10*GetLocalInt(oPC, "Tens") + 5); + ExecuteScript("dmfi_execute", oPC); + DeleteLocalInt(oPC, "Tens"); + return; + } + else + { + if(sConv == "pc_emote" || sConv == "emote" || sConv == "server" || sConv == "onering") + { + SetLocalInt(oPC, "dmfi_univ_int", 5); + ExecuteScript("dmfi_execute", oPC); + return; + } + else + SetLocalInt(oPC, "Tens", 5); + return; + } +} diff --git a/gamma_age_v2/dmfi_univ_6.ncs b/gamma_age_v2/dmfi_univ_6.ncs new file mode 100644 index 00000000..afec9c41 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_6.ncs differ diff --git a/gamma_age_v2/dmfi_univ_6.nss b/gamma_age_v2/dmfi_univ_6.nss new file mode 100644 index 00000000..09ec7a95 --- /dev/null +++ b/gamma_age_v2/dmfi_univ_6.nss @@ -0,0 +1,28 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oPC, "dmfi_univ_location"); + string sConv = GetLocalString(oPC, "dmfi_univ_conv"); + + if (GetLocalInt(oPC, "Tens")) + { + SetLocalInt(oPC, "dmfi_univ_int", 10*GetLocalInt(oPC, "Tens") + 6); + ExecuteScript("dmfi_execute", oPC); + DeleteLocalInt(oPC, "Tens"); + return; + } + else + { + if(sConv == "pc_emote" || sConv == "emote" || + sConv == "server" || sConv == "onering") + { + SetLocalInt(oPC, "dmfi_univ_int", 6); + ExecuteScript("dmfi_execute", oPC); + return; + } + else + SetLocalInt(oPC, "Tens", 6); + return; + } +} diff --git a/gamma_age_v2/dmfi_univ_7.ncs b/gamma_age_v2/dmfi_univ_7.ncs new file mode 100644 index 00000000..677d5741 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_7.ncs differ diff --git a/gamma_age_v2/dmfi_univ_7.nss b/gamma_age_v2/dmfi_univ_7.nss new file mode 100644 index 00000000..e08d0ebf --- /dev/null +++ b/gamma_age_v2/dmfi_univ_7.nss @@ -0,0 +1,27 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oPC, "dmfi_univ_location"); + string sConv = GetLocalString(oPC, "dmfi_univ_conv"); + + if (GetLocalInt(oPC, "Tens")) + { + SetLocalInt(oPC, "dmfi_univ_int", 10*GetLocalInt(oPC, "Tens") + 7); + ExecuteScript("dmfi_execute", oPC); + DeleteLocalInt(oPC, "Tens"); + return; + } + else + { + if(sConv == "pc_emote" || sConv == "emote" || sConv == "server" || sConv == "onering" || sConv == "rest") + { + SetLocalInt(oPC, "dmfi_univ_int", 7); + ExecuteScript("dmfi_execute", oPC); + return; + } + else + SetLocalInt(oPC, "Tens", 7); + return; + } +} diff --git a/gamma_age_v2/dmfi_univ_8.ncs b/gamma_age_v2/dmfi_univ_8.ncs new file mode 100644 index 00000000..511808ca Binary files /dev/null and b/gamma_age_v2/dmfi_univ_8.ncs differ diff --git a/gamma_age_v2/dmfi_univ_8.nss b/gamma_age_v2/dmfi_univ_8.nss new file mode 100644 index 00000000..6ca0800a --- /dev/null +++ b/gamma_age_v2/dmfi_univ_8.nss @@ -0,0 +1,28 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oPC, "dmfi_univ_location"); + string sConv = GetLocalString(oPC, "dmfi_univ_conv"); + + if (GetLocalInt(oPC, "Tens")) + { + SetLocalInt(oPC, "dmfi_univ_int", 10*GetLocalInt(oPC, "Tens") + 8); + ExecuteScript("dmfi_execute", oPC); + DeleteLocalInt(oPC, "Tens"); + return; + } + else + { + if(( sConv == "server") || (sConv == "xp") || + (sConv == "voice") || (sConv == "onering") || (sConv == "rest")) + { + SetLocalInt(oPC, "dmfi_univ_int", 8); + ExecuteScript("dmfi_execute", oPC); + return; + } + else + SetLocalInt(oPC, "Tens", 8); + return; + } +} diff --git a/gamma_age_v2/dmfi_univ_9.ncs b/gamma_age_v2/dmfi_univ_9.ncs new file mode 100644 index 00000000..20b16925 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_9.ncs differ diff --git a/gamma_age_v2/dmfi_univ_9.nss b/gamma_age_v2/dmfi_univ_9.nss new file mode 100644 index 00000000..a56a9fcf --- /dev/null +++ b/gamma_age_v2/dmfi_univ_9.nss @@ -0,0 +1,27 @@ +void main() +{ + object oPC = GetPCSpeaker(); + object oTarget = GetLocalObject(oPC, "dmfi_univ_target"); + location lLocation = GetLocalLocation(oPC, "dmfi_univ_location"); + string sConv = GetLocalString(oPC, "dmfi_univ_conv"); + + if (GetLocalInt(oPC, "Tens")) + { + SetLocalInt(oPC, "dmfi_univ_int", 10*GetLocalInt(oPC, "Tens") + 9); + ExecuteScript("dmfi_execute", oPC); + DeleteLocalInt(oPC, "Tens"); + return; + } + else + { + if(sConv == "server" || sConv == "voice" || sConv == "faction" || sConv == "rest") + { + SetLocalInt(oPC, "dmfi_univ_int", 9); + ExecuteScript("dmfi_execute", oPC); + return; + } + else + SetLocalInt(oPC, "Tens", 9); + return; + } +} diff --git a/gamma_age_v2/dmfi_univ_cond.ncs b/gamma_age_v2/dmfi_univ_cond.ncs new file mode 100644 index 00000000..6d011990 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_cond.ncs differ diff --git a/gamma_age_v2/dmfi_univ_cond.nss b/gamma_age_v2/dmfi_univ_cond.nss new file mode 100644 index 00000000..3a95f950 --- /dev/null +++ b/gamma_age_v2/dmfi_univ_cond.nss @@ -0,0 +1,363 @@ +//DMFI Universal Wand scripts by hahnsoo + +//////////////////////////////////////////////////////////////////////// +//This initializes the rest dialog. +//If limited by Time, report how long it will take before the PC can rest again +//If DM, tell the DM the interval of time between rests. +//If limited by placeable, report that the PC needs a restable object nearby +//If DM, tell the DM that the rest is limited by placeables. +//If limited by Armor, report that the PC is wearing armor that prevents resting +//If DM, tell the DM that the rest is limited by armor weight. +//If in an area that doesn't allow spell memorization, report this to the PC +//If DM, tell the DM that spell memorization is restricted in this area. +//If hit point restrictions are "up", tell the PC how many hitpoints they would gain by resting +//If DM, tell the DM what level of Hitpoint restrictions are in effect. +void SetRestTokens(object oPC) +{ + object oArea = GetArea(oPC); + int iSettings = GetLocalInt(oPC, "dmfi_r_settings"); + int iMinutesPerHour = FloatToInt(HoursToSeconds(1))/60; + SetCustomToken(20792, IntToString(iMinutesPerHour)); + SetCustomToken(20793, IntToString(iMinutesPerHour * 2)); + SetCustomToken(20794, IntToString(iMinutesPerHour * 4)); + SetCustomToken(20795, IntToString(iMinutesPerHour * 6)); + SetCustomToken(20796, IntToString(iMinutesPerHour * 8)); + SetCustomToken(20797, IntToString(iMinutesPerHour * 12)); + SetCustomToken(20798, IntToString(iMinutesPerHour * 24)); + + if (GetIsDM(oPC)) + { + string sRest = ""; + if (iSettings & 0x00000080) + { + SetCustomToken(20789, "[LOCAL]"); + sRest = sRest + "[LOCAL] settings in effect"; + if (iSettings & 0x00000002) + sRest = sRest + "\nThis is a No Rest area"; + else if (!(iSettings & 0x00000001)) + sRest = sRest + "\nThis is an Unlimited Rest area"; + } + else + { + SetCustomToken(20789, "[GLOBAL]"); + sRest = sRest + "[GLOBAL] settings in effect"; + if (iSettings & 0x00000002) + sRest = sRest + "\nNo Rest is set globally"; + else if (!(iSettings & 0x00000001)) + sRest = sRest + "\nUnlimited Rest is set globally"; + } + if (iSettings & 0x00000004) + { + sRest = sRest + "\nRest is limited by Time: "; + switch (iSettings & 0x00000f00) + { + default: + case 0x00000100: sRest = sRest + "1 hour"; break; + case 0x00000200: sRest = sRest + "2 hours"; break; + case 0x00000300: sRest = sRest + "4 hours"; break; + case 0x00000400: sRest = sRest + "6 hours"; break; + case 0x00000500: sRest = sRest + "8 hours"; break; + case 0x00000600: sRest = sRest + "12 hours"; break; + case 0x00000700: sRest = sRest + "24 hours"; break; + } + } + if (iSettings & 0x00000008) //Placeables + { + sRest = sRest + "\nRest is limited by Placeables: "; + if (!(iSettings & 0x00001000)) sRest = sRest + "DMFI_placeables "; + if (iSettings & 0x00002000) sRest = sRest + "Campfires "; + if (iSettings & 0x00004000) sRest = sRest + "Bed_Rolls "; + if (iSettings & 0x00008000) sRest = sRest + "Beds "; + if (iSettings & 0x00010000) sRest = sRest + "Tents "; + if ((iSettings & 0x00020000) || (iSettings & 0x00040000) || (iSettings & 0x00080000)) + { + sRest = sRest + "\nClasses that ignore restrictions: "; + if (iSettings & 0x00020000) sRest = sRest + "Druids "; + if (iSettings & 0x00040000) sRest = sRest + "Rangers "; + if (iSettings & 0x00080000) sRest = sRest + "Barbarians "; + } + } + if (iSettings & 0x00000010) //Armor + { + sRest = sRest + "\nRest is limited by Armor: "; + switch (iSettings & 0x00f00000) + { + default: + case 0x00100000: sRest = sRest + "2 pounds"; break; + case 0x00200000: sRest = sRest + "6 pounds"; break; + case 0x00300000: sRest = sRest + "11 pounds"; break; + case 0x00400000: sRest = sRest + "16 pounds"; break; + case 0x00500000: sRest = sRest + "31 pounds"; break; + case 0x00600000: sRest = sRest + "41 pounds"; break; + case 0x00700000: sRest = sRest + "46 pounds"; break; + } + } + if (iSettings & 0x00000020) //Hit point limits + { + sRest = sRest + "\nHit points are limited to: "; + switch (iSettings & 0x0f000000) + { + case 0x01000000: sRest = sRest + "0 HP"; break; + case 0x02000000: sRest = sRest + "1 HP/level"; break; + case 0x03000000: sRest = sRest + "(CON) HP"; break; + case 0x04000000: sRest = sRest + "10 percent of max"; break; + case 0x05000000: sRest = sRest + "25 percent of max"; break; + case 0x06000000: sRest = sRest + "50 percent of max"; break; + default: + case 0x07000000: sRest = sRest + "100 percent"; break; + } + } + if (iSettings & 0x00000040) //Spell memorization + { + sRest = sRest + "\nSpell memorization is OFF"; + } + SetCustomToken(20791, sRest); + } + else //For PCs + { //Setting rest tokens + string sRest = ""; + if (iSettings & 0x00000080) + { + if (iSettings & 0x00000002) + sRest = sRest + "\nThis is a No Rest area"; + else if (!(iSettings & 0x00000001)) + sRest = sRest + "\nThis is an Unlimited Rest area"; + } + else + { + if (iSettings & 0x00000002) + sRest = sRest + "\nNo Rest is set globally"; + else if (!(iSettings & 0x00000001)) + sRest = sRest + "\nUnlimited Rest is set globally"; + } + if (iSettings & 0x00000004 && iSettings & 0x00000001) + { + int iTime = GetTimeHour() + GetCalendarDay() * 24 + GetCalendarMonth() * 24 * 28 + GetCalendarYear() * 24 * 28 * 12; + int iNext = GetLocalInt(oPC, "dmfi_r_nextrest"); + if (iNext > iTime) + sRest = sRest + "\nYou may rest again in " + IntToString(iNext - iTime) + " hours"; + } + if (iSettings & 0x00000008 && iSettings & 0x00000001) //Placeables + { + if (!(GetLevelByClass(CLASS_TYPE_DRUID, oPC) && (iSettings & 0x00020000)) || + !(GetLevelByClass(CLASS_TYPE_RANGER, oPC) && (iSettings & 0x00040000)) || + !(GetLevelByClass(CLASS_TYPE_BARBARIAN, oPC) && (iSettings & 0x00080000))) + { + object oPlaceable = GetFirstObjectInShape(SHAPE_SPHERE, 6.0f, GetLocation(oPC), TRUE, OBJECT_TYPE_PLACEABLE); + int iBreak = 0; + while (GetIsObjectValid(oPlaceable) && !iBreak) + { + if (!(iSettings & 0x00001000) && GetTag(oPlaceable) == "dmfi_rest") //DMFI Placeables: by default, ON + iBreak = 1; + if ((iSettings & 0x00002000) && GetStringLowerCase(GetName(oPlaceable)) == "campfire") //Campfires + iBreak = 1; + if ((iSettings & 0x00004000) && (GetStringLowerCase(GetName(oPlaceable)) == "bed roll" || GetStringLowerCase(GetName(oPlaceable)) == "bedroll")) //Bed rolls + iBreak = 1; + if ((iSettings & 0x00008000) && GetStringLowerCase(GetName(oPlaceable)) == "bed") //beds + iBreak = 1; + if ((iSettings & 0x00010000) && GetStringLowerCase(GetName(oPlaceable)) == "tent") //tents + iBreak = 1; + oPlaceable = GetNextObjectInShape(SHAPE_SPHERE, 6.0f, GetLocation(oPC), TRUE, OBJECT_TYPE_PLACEABLE); + } + if (!iBreak) + { + sRest = sRest + "\nYou are not near a rest placeable"; + } + } + } + if ((iSettings & 0x00000010) && iSettings & 0x00000001)//Armor + { + int iArmor = (iSettings & 0x00f00000); + object oArmor = GetItemInSlot(INVENTORY_SLOT_CHEST, oPC); + int iWeight = GetWeight(oArmor); + switch(iArmor) + { + default: + case 0x00100000: if (iWeight > 20) sRest = sRest + "\nYou cannot rest in armor heavier than Clothing"; break; + case 0x00200000: if (iWeight > 60) sRest = sRest + "\nYou cannot rest in armor heavier than Padded"; break; + case 0x00300000: if (iWeight > 110) sRest = sRest + "\nYou cannot rest in armor heavier than Leather"; break; + case 0x00400000: if (iWeight > 160) sRest = sRest + "\nYou cannot rest in armor heavier than Studded Leather"; break; + case 0x00500000: if (iWeight > 310) sRest = sRest + "\nYou cannot rest in armor heavier than Chain Shirt"; break; + case 0x00600000: if (iWeight > 410) sRest = sRest + "\nYou cannot rest in armor heavier than Chain Mail"; break; + case 0x00700000: if (iWeight > 460) sRest = sRest + "\nYou cannot rest in armor heavier than Banded Mail"; break; + } + } + if (iSettings & 0x00000020 && iSettings & 0x00000001) //Hit point limits + { + sRest = sRest + "\nOn Rest, you will regain "; + switch (iSettings & 0x0f000000) + { + case 0x01000000: sRest = sRest + "0 HP"; break; + case 0x02000000: sRest = sRest + IntToString(GetHitDice(oPC)) + " HP"; break; + case 0x03000000: sRest = sRest + IntToString(GetAbilityScore(oPC, ABILITY_CONSTITUTION)) + " HP"; break; + case 0x04000000: sRest = sRest + IntToString(GetMaxHitPoints(oPC)/10) + " HP"; break; + case 0x05000000: sRest = sRest + IntToString(GetMaxHitPoints(oPC)/4) + " HP"; break; + case 0x06000000: sRest = sRest + IntToString(GetMaxHitPoints(oPC)/2) + " HP"; break; + default: + case 0x07000000: sRest = sRest + "full HP"; break; + } + sRest = sRest + "\nResting will drop you from the party"; + } + if (iSettings & 0x00000040 && iSettings & 0x00000001) //Spell memorization + { + sRest = sRest + "\nYou cannot memorize spells here"; + } + SetCustomToken(20790, sRest); + } +} + +//////////////////////////////////////////////////////////////////////// +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + DeleteLocalInt(oPC, "Tens"); + int iOffset = GetLocalInt(oPC, "dmfi_univ_offset")+1; + string sOffset = GetLocalString(oPC, "dmfi_univ_conv"); + SetLocalInt(oPC, "dmfi_univ_offset", iOffset); + + if (sOffset == "afflict" && iOffset==1) + return TRUE; + else if (sOffset == "pc_emote" && iOffset==2) + return TRUE; + else if (sOffset == "emote" && iOffset==2) + return TRUE; + else if (sOffset == "encounter" && iOffset==3) + return TRUE; + else if (sOffset == "fx" && iOffset==4) + return TRUE; + else if (sOffset == "music" && iOffset==5) + return TRUE; + else if (sOffset == "sound" && iOffset==6) + return TRUE; + else if (sOffset == "xp" && iOffset==7) + return TRUE; + else if (sOffset == "onering" && iOffset==8) + return TRUE; + else if (sOffset == "pc_dicebag" && iOffset==9) + { + SetLocalInt(oPC, "dmfi_univ_offset", 8); + + if (GetLocalInt(oPC, "dmfi_dicebag")==0) + SetCustomToken(20681, "Private"); + else if (GetLocalInt(oPC, "dmfi_dicebag")==1) + SetCustomToken(20681, "Global"); + else if (GetLocalInt(oPC, "dmfi_dicebag")==2) + SetCustomToken(20681, "Local"); + else if (GetLocalInt(oPC, "dmfi_dicebag")==3) + SetCustomToken(20681, "DM Only"); + + return TRUE; + } + else if (sOffset == "dicebag" && iOffset==10) + { + SetLocalInt(oPC, "dmfi_univ_offset", 9); + + if (GetLocalInt(oPC, "dmfi_dicebag")==0) + SetCustomToken(20681, "Private"); + else if (GetLocalInt(oPC, "dmfi_dicebag")==1) + SetCustomToken(20681, "Global"); + else if (GetLocalInt(oPC, "dmfi_dicebag")==2) + SetCustomToken(20681, "Local"); + else if (GetLocalInt(oPC, "dmfi_dicebag")==3) + SetCustomToken(20681, "DM Only"); + + string sName = GetName(GetLocalObject(oPC, "dmfi_univ_target")); + SetCustomToken(20680, sName); + + return TRUE; + } + else if (sOffset == "voice" && + GetIsObjectValid(GetLocalObject(oPC, "dmfi_univ_target")) && + oPC != GetLocalObject(oPC, "dmfi_univ_target") && + iOffset==11) + { + string sName = GetName(GetLocalObject(oPC, "dmfi_univ_target")); + SetCustomToken(20680, sName); + // pc range single/party + int hookparty = GetLocalInt(oPC, "dmfi_MyListenerPartyMode"); + if (hookparty == 0) SetCustomToken(20681, "*Single* / Party"); + else SetCustomToken(20681, "Single / *Party*"); + return TRUE; + } + else if (sOffset == "voice" && + !GetIsObjectValid(GetLocalObject(oPC, "dmfi_univ_target")) && + iOffset==12) + { + string sName = GetName(GetLocalObject(oPC, "dmfi_univ_target")); + SetCustomToken(20680, sName); + // loc range earshot/area/module + int hookparty = GetLocalInt(oPC, "dmfi_MyListenerPartyMode"); + if (hookparty == 0) SetCustomToken(20681, "*Earshot* / Area / Module"); + else if (hookparty == 1) SetCustomToken(20681, "Earshot / *Area* / Module"); + else SetCustomToken(20681, "Earshot / Area / *Module*"); + return TRUE; + } + else if (sOffset == "voice" && + GetIsObjectValid(GetLocalObject(oPC, "dmfi_univ_target")) && + oPC == GetLocalObject(oPC, "dmfi_univ_target") && + iOffset==13) + { + string sName = GetName(GetLocalObject(oPC, "dmfi_univ_target")); + SetCustomToken(20680, sName); + // self bcast one dm/all dm + int hookbcast = GetLocalInt(oPC, "dmfi_MyListenerBcastMode"); + if (hookbcast == 0) SetCustomToken(20681, "*Self* / All DMs"); + else SetCustomToken(20681, "Self / *All DMs*"); + return TRUE; + } + else if (sOffset == "faction" && iOffset==14) + { + int iLoop = 1; + string sName; + object sFaction; + while (iLoop < 10) + { + sFaction = GetLocalObject(oPC, "dmfi_customfaction" + IntToString(iLoop)); + sName = GetName(sFaction); + SetCustomToken(20690 + iLoop, sName + "'s Faction "); + iLoop++; + } + + SetCustomToken(20690, GetName(GetLocalObject(oPC, "dmfi_henchman"))); + SetCustomToken(20784, FloatToString(GetLocalFloat(oPC, "dmfi_reputation"))); + sName = GetName(GetLocalObject(oPC, "dmfi_univ_target")); + SetCustomToken(20680, sName); + return TRUE; + } + else if (sOffset == "dmw" && iOffset ==15) + { + SetCustomToken(20781, IntToString(GetLocalInt(oPC, "dmfi_alignshift"))); + return TRUE; + } + else if (sOffset == "buff" && iOffset ==16) + { + if (GetLocalInt(oPC, "dmfi_buff_party")==0) + SetCustomToken(20783, "Single Target"); + else + SetCustomToken(20783, "Party"); + SetCustomToken(20782, GetLocalString(oPC, "dmfi_buff_level")); + return TRUE; + } + else if (sOffset == "rest" && iOffset == 17 && !GetIsDM(oPC) && GetLocalInt(oPC, "dmfi_norest")) //This is the case of a No-Rest situation + { + SetRestTokens(oPC); + return TRUE; + } + else if (sOffset == "rest" && iOffset == 18 && !GetIsDM(oPC) && !GetLocalInt(oPC, "dmfi_norest")) //This is the case of a Rest situation + { + SetRestTokens(oPC); + return TRUE; + } + else if (sOffset == "rest" && iOffset == 19 && GetIsDM(oPC)) //This is the case of a DM activating the rest menu + { + SetRestTokens(oPC); + return TRUE; + } + else if (sOffset == "naming" && iOffset==20) + { + string sName = GetName(GetLocalObject(oPC, "dmfi_univ_target")); + SetCustomToken(20680, sName); + return TRUE; + } + return FALSE; +} diff --git a/gamma_age_v2/dmfi_univ_dmw.ncs b/gamma_age_v2/dmfi_univ_dmw.ncs new file mode 100644 index 00000000..85fdfb12 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_dmw.ncs differ diff --git a/gamma_age_v2/dmfi_univ_dmw.nss b/gamma_age_v2/dmfi_univ_dmw.nss new file mode 100644 index 00000000..054708f1 --- /dev/null +++ b/gamma_age_v2/dmfi_univ_dmw.nss @@ -0,0 +1,334 @@ +//DMFI Universal Wand scripts by hahnsoo +int DMW_START_CUSTOM_TOKEN = 8000; + +//Retrieve targetting information +object oMySpeaker = GetLastSpeaker(); +object oMyTarget = GetLocalObject(oMySpeaker, "dmfi_univ_target"); +location lMyLoc = GetLocalLocation(oMySpeaker, "dmfi_univ_location"); + +int dmwand_isnearbydestroyable() +{ + object oMyTest = GetFirstObjectInShape(SHAPE_CUBE, 0.6, lMyLoc, FALSE, OBJECT_TYPE_ALL); + int nTargetType = GetObjectType(oMyTest); + return (GetIsObjectValid(oMyTest) && (! GetIsPC(oMyTest)) && ((nTargetType == OBJECT_TYPE_ITEM) || (nTargetType == OBJECT_TYPE_PLACEABLE) || (nTargetType == OBJECT_TYPE_CREATURE))); +} + +int dmwand_istargetcreateable() +{ + if(! GetIsObjectValid(oMyTarget)) { return FALSE; } + + int nTargetType = GetObjectType(oMyTarget); + return ((nTargetType == OBJECT_TYPE_ITEM) || (nTargetType == OBJECT_TYPE_PLACEABLE) || (nTargetType == OBJECT_TYPE_CREATURE)); +} + +int dmwand_istargetdestroyable() +{ + if(! GetIsObjectValid(oMyTarget)) { return FALSE; } + + int nTargetType = GetObjectType(oMyTarget); + if(! GetIsPC(oMyTarget)) + { + return ((nTargetType == OBJECT_TYPE_ITEM) || (nTargetType == OBJECT_TYPE_PLACEABLE) || (nTargetType == OBJECT_TYPE_CREATURE)); + } + return FALSE; +} + +int dmwand_istargetinvalid() +{ + return !GetIsObjectValid(oMyTarget); +} + +int dmwand_istargetinventory() +{ + return (GetIsObjectValid(oMyTarget) && GetHasInventory(oMyTarget)); +} + +int dmwand_istargetnotme() +{ + return (GetIsObjectValid(oMyTarget) && (oMySpeaker != oMyTarget)); +} + +int dmwand_istargetpcornpc() +{ + return (GetIsObjectValid(oMyTarget) && GetAbilityScore(oMyTarget, ABILITY_CONSTITUTION)); +} + +int dmwand_istargetnpc() +{ + return (dmwand_istargetpcornpc() && (! GetIsPC(oMyTarget))); +} + +int dmwand_istargetpc() +{ + return (GetIsObjectValid(oMyTarget) && GetIsPC(oMyTarget)); +} + +int dmwand_istargetpcnme() +{ + return (GetIsObjectValid(oMyTarget) && GetIsPC(oMyTarget) && (oMySpeaker != oMyTarget)); +} + +int dmwand_istargetpcornpcnme() +{ + return (dmwand_istargetpcornpc() && (oMySpeaker != oMyTarget)); +} + +int dmwand_istargetplaceable() +{ + if(! GetIsObjectValid(oMyTarget)) { return FALSE; } + + int nTargetType = GetObjectType(oMyTarget); + return (nTargetType == OBJECT_TYPE_PLACEABLE); +} + +int dmw_conv_Start(int nCurrent, int nChoice, string sParams = "") +{ + string sText = ""; + string sCall = ""; + string sCallParams = ""; + + switch(nCurrent) + { + case 0: + nCurrent = 0; + sText = "Welcome to the Server tool: This will allow you to find any player to perform simple functions."; + sCall = ""; + sCallParams = ""; + break; + + case 1: + nCurrent = 1; + if(dmwand_istargetpcnme()) + { + sText = "Penguin this player."; + sCall = "func_Toad"; + sCallParams = ""; + break; + } + case 2: + nCurrent = 2; + if(dmwand_istargetpcnme()) + { + sText = "Unpenguin this player."; + sCall = "func_Untoad"; + sCallParams = ""; + break; + } + case 3: + nCurrent = 3; + if(dmwand_istargetpcnme()) + { + sText = "Boot this player."; + sCall = "func_KickPC"; + sCallParams = ""; + break; + } + + case 4: + nCurrent = 4; + if(dmwand_istargetinvalid()) + { + sText = "List all players..."; + sCall = "conv_ListPlayers"; + sCallParams = "func_PlayerListConv"; + break; + } + + case 5: + nCurrent = 5; + if(dmwand_istargetpcnme()) + { + sText = "Jump this player to my location."; + sCall = "func_JumpPlayerHere"; + sCallParams = ""; + break; + } + case 6: + nCurrent = 6; + if(dmwand_istargetpcnme()) + { + sText = "Jump me to this player's location."; + sCall = "func_JumpToPlayer"; + sCallParams = ""; + break; + } + case 7: + nCurrent = 7; + if(dmwand_istargetpcnme()) + { + sText = "Jump this player's party to my location."; + sCall = "func_JumpPartyHere"; + sCallParams = ""; + break; + } + default: + nCurrent = 0; + sText = ""; + sCall = ""; + sCallParams = ""; + break; + } + + SetLocalString(oMySpeaker, "dmw_dialog" + IntToString(nChoice), sText); + SetLocalString(oMySpeaker, "dmw_function" + IntToString(nChoice), sCall); + SetLocalString(oMySpeaker, "dmw_params" + IntToString(nChoice), sCallParams); + + return nCurrent; +} + +int dmwand_BuildConversationDialog(int nCurrent, int nChoice, string sConversation, string sParams) +{ + if(TestStringAgainstPattern(sConversation, "Start")) + { + return dmw_conv_Start(nCurrent, nChoice, sParams); + } + return FALSE; +} + +void dmwand_BuildConversation(string sConversation, string sParams) +{ + int nLast; + int nTemp; + int nChoice = 1; + int nCurrent = 1; + int nMatch; + + if(TestStringAgainstPattern(sParams, "prev")) + { + //Get the number choice to start with + nCurrent = GetLocalInt(oMySpeaker, "dmw_dialogprev"); + + //Since we're going to the previous page, there will be a next + SetLocalString(oMySpeaker, "dmw_dialog9", "Next ->"); + SetLocalString(oMySpeaker, "dmw_function9", "conv_" + sConversation); + SetLocalString(oMySpeaker, "dmw_params9", "next"); + SetLocalInt(oMySpeaker, "dmw_dialognext", nCurrent); + + nChoice = 8; + for(;nChoice >= 0; nChoice--) + { + int nTemp1 = nCurrent; + int nTemp2 = nCurrent; + nMatch = nTemp2; + while((nCurrent == nMatch) && (nTemp2 > 0)) + { + nTemp2--; + nMatch = dmwand_BuildConversationDialog(nTemp2, nChoice, sConversation, sParams); + } + + if(nTemp2 <= 0) + { + //we went back too far for some reason, so make this choice blank + SetLocalString(oMySpeaker, "dmw_dialog" + IntToString(nChoice), ""); + SetLocalString(oMySpeaker, "dmw_function" + IntToString(nChoice), ""); + SetLocalString(oMySpeaker, "dmw_params" + IntToString(nChoice), ""); + } + nLast = nTemp; + nTemp = nTemp1; + nTemp1 = nMatch; + nCurrent = nMatch; + } + + if(nMatch > 0) + { + SetLocalString(oMySpeaker, "dmw_dialog1", "<- previous"); + SetLocalString(oMySpeaker, "dmw_function1", "conv_" + sConversation); + SetLocalString(oMySpeaker, "dmw_params1", "prev"); + SetLocalInt(oMySpeaker, "dmw_dialogprev", nLast); + } + + //fill the NPC's dialog spot + //(saved for last because the build process tromps on it) + dmwand_BuildConversationDialog(0, 0, sConversation, sParams); + } + else + { + //fill the NPC's dialog spot + dmwand_BuildConversationDialog(0, 0, sConversation, sParams); + + //No parameters specified, start at the top of the conversation + if(sParams == "") + { + nChoice = 1; + nCurrent = 1; + } + + //A "next->" choice was selected + if(TestStringAgainstPattern(sParams, "next")) + { + //get the number choice to start with + nCurrent = GetLocalInt(oMySpeaker, "dmw_dialognext"); + + //set this as the number for the "previous" choice to use + SetLocalInt(oMySpeaker, "dmw_dialogprev", nCurrent); + + //Set the first dialog choice to be "previous" + nChoice = 2; + SetLocalString(oMySpeaker, "dmw_dialog1", "<- Previous"); + SetLocalString(oMySpeaker, "dmw_function1", "conv_" + sConversation); + SetLocalString(oMySpeaker, "dmw_params1", "prev"); + } + + //Loop through to build the dialog list + for(;nChoice <= 10; nChoice++) + { + nMatch = dmwand_BuildConversationDialog(nCurrent, nChoice, sConversation, sParams); + //nLast will be the value of the choice before the last one + nLast = nTemp; + nTemp = nMatch; + if(nMatch > 0) { nCurrent = nMatch; } + if(nMatch == 0) { nLast = 0; } + nCurrent++; + } + + //If there were enough choices to fill 10 spots, make spot 9 a "next" + if(nLast > 0) + { + SetLocalString(oMySpeaker, "dmw_dialog9", "Next ->"); + SetLocalString(oMySpeaker, "dmw_function9", "conv_" + sConversation); + SetLocalString(oMySpeaker, "dmw_params9", "next"); + SetLocalInt(oMySpeaker, "dmw_dialognext", nLast); + } + } +} + +void dmwand_StartConversation() +{ + if(! GetIsObjectValid(oMySpeaker)) + { + return; + } + + dmwand_BuildConversation("Start", ""); +} + +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + int nMyNum = 0; + + DeleteLocalInt(oPC, "Tens"); + DeleteLocalInt(oPC, "dmfi_univ_offset"); + SetLocalInt(OBJECT_SELF, "dmfi_dmwOffset", 1); + //Check whether this conversation has been started already, start it if not. + int nStarted = GetLocalInt(oMySpeaker, "dmw_started"); + if(! nStarted) + { + SetLocalInt(oMySpeaker, "dmw_started", 1); + dmwand_StartConversation(); + } + + string sMyString = GetLocalString(oMySpeaker, "dmw_dialog" + IntToString(nMyNum)); + + if(sMyString == "") + { + return FALSE; + } + else if (GetLocalString(oPC, "dmfi_univ_conv") == "server") + { + SetCustomToken(DMW_START_CUSTOM_TOKEN + nMyNum, sMyString); + return TRUE; + } + else + return FALSE; +} diff --git a/gamma_age_v2/dmfi_univ_listen.ncs b/gamma_age_v2/dmfi_univ_listen.ncs new file mode 100644 index 00000000..597be450 Binary files /dev/null and b/gamma_age_v2/dmfi_univ_listen.ncs differ diff --git a/gamma_age_v2/dmfi_univ_listen.nss b/gamma_age_v2/dmfi_univ_listen.nss new file mode 100644 index 00000000..c1f928a4 --- /dev/null +++ b/gamma_age_v2/dmfi_univ_listen.nss @@ -0,0 +1,115 @@ + +// dmfi_univ_listen + +// template: dmfi_getln_cbtpl +// triggered from OnPlayerChat callback + +#include "dmfi_db_inc" + +void main() +{ + int nVolume = GetPCChatVolume(); + object oShouter = GetPCChatSpeaker(); + string sSaid = GetPCChatMessage(); + +// SendMessageToPC(GetFirstPC(), "ENTER dmfi_univ_listen: speaker=" + GetName(oShouter) + ", channel=" + IntToString(nVolume) + ", said=" + sSaid); + // first, lets deal with a getln event + string getln_mode = GetLocalString(OBJECT_SELF, "dmfi_getln_mode"); + if (getln_mode == "name") + { + if (sSaid != ".") + { + object oTarget = GetLocalObject(oShouter, "dmfi_univ_target"); + SetName(oTarget, sSaid); + } + DeleteLocalString(OBJECT_SELF, "dmfi_getln_mode"); + } + else if (getln_mode == "desc") + { + if (sSaid != ".") + { + object oTarget = GetLocalObject(oShouter, "dmfi_univ_target"); + SetDescription(oTarget, sSaid); + } + DeleteLocalString(OBJECT_SELF, "dmfi_getln_mode"); + } + else + { + // you may wish to define an "abort" input message, such as a line + // containing a single period: + if (sSaid != ".") + { + // put your code here to process the input line (in sSaid) + + if (GetIsDM(oShouter)) SetLocalInt(GetModule(), "dmfi_Admin" + GetPCPublicCDKey(oShouter), 1); + if (GetIsDMPossessed(oShouter)) SetLocalObject(GetMaster(oShouter), "dmfi_familiar", oShouter); + + object oTarget = GetLocalObject(oShouter, "dmfi_VoiceTarget"); + object oMaster = OBJECT_INVALID; + if (GetIsObjectValid(oTarget)) oMaster = oShouter; + + int iPhrase = GetLocalInt(oShouter, "hls_EditPhrase"); + + object oSummon; + + if (GetIsObjectValid(oShouter) && GetIsDM(oShouter)) + { + if (GetTag(OBJECT_SELF) == "dmfi_setting" && GetLocalString(oShouter, "EffectSetting") != "") + { + string sPhrase = GetLocalString(oShouter, "EffectSetting"); + SetLocalFloat(oShouter, sPhrase, StringToFloat(sSaid)); + SetDMFIPersistentFloat("dmfi", sPhrase, StringToFloat(sSaid), oShouter); + DeleteLocalString(oShouter, "EffectSetting"); + DelayCommand(0.5, ActionSpeakString("The setting " + sPhrase + " has been changed to " + FloatToString(GetLocalFloat(oShouter, sPhrase)))); + DelayCommand(1.5, DestroyObject(OBJECT_SELF)); + } + } + + if (GetIsObjectValid(oShouter) && GetIsPC(oShouter)) + { + if (sSaid != GetLocalString(GetModule(), "hls_voicebuffer")) + { + SetLocalString(GetModule(), "hls_voicebuffer", sSaid); + + // PrintString(""+GetName(GetArea(oShouter))+ " " + GetName(oShouter) + ": " + sSaid + " "); + + // if the phrase begins with .MyName, reparse the string as a voice throw + if (GetStringLeft(sSaid, GetStringLength("." + GetName(OBJECT_SELF))) == "." + GetName(OBJECT_SELF) && + (GetLocalInt(GetModule(), "dmfi_Admin" + GetPCPublicCDKey(oShouter)) || + GetIsDM(oShouter) || GetIsDMPossessed(oShouter))) + { + oTarget = OBJECT_SELF; + sSaid = GetStringRight(sSaid, GetStringLength(sSaid) - GetStringLength("." + GetName(OBJECT_SELF))); + if (GetStringLeft(sSaid, 1) == " ") sSaid = GetStringRight(sSaid, GetStringLength(sSaid) - 1); + sSaid = ":" + sSaid; + SetPCChatMessage(sSaid); +// SendMessageToPC(GetFirstPC(), "LEAVE(1) dmfi_univ_listen: speaker=" + GetName(oShouter) + ", channel=" + IntToString(nVolume) + ", said=" + sSaid); + return; // must bail out here to prevent clearing of message at end + } + + if (iPhrase) + { + if (iPhrase > 0) + { + SetCustomToken(iPhrase, sSaid); + SetDMFIPersistentString("dmfi", "hls" + IntToString(iPhrase), sSaid); + FloatingTextStringOnCreature("Phrase " + IntToString(iPhrase) + " has been recorded", oShouter, FALSE); + } + else if (iPhrase < 0) + { + + } + DeleteLocalInt(oShouter, "hls_EditPhrase"); + } + } + } + } + } + + // after processing, you will likely want to "eat" the text line, so it is + // not spoken or available for further processing + SetPCChatMessage(""); + +// SendMessageToPC(GetFirstPC(), "LEAVE(2) dmfi_univ_listen: speaker=" + GetName(oShouter) + ", channel=" + IntToString(nVolume) + ", said=" + sSaid); + +} diff --git a/gamma_age_v2/dmfi_universal.dlg b/gamma_age_v2/dmfi_universal.dlg new file mode 100644 index 00000000..1c11dedd Binary files /dev/null and b/gamma_age_v2/dmfi_universal.dlg differ diff --git a/gamma_age_v2/dmfi_voice.utc b/gamma_age_v2/dmfi_voice.utc new file mode 100644 index 00000000..974a7872 Binary files /dev/null and b/gamma_age_v2/dmfi_voice.utc differ diff --git a/gamma_age_v2/dmfi_voice.uti b/gamma_age_v2/dmfi_voice.uti new file mode 100644 index 00000000..f8831953 Binary files /dev/null and b/gamma_age_v2/dmfi_voice.uti differ diff --git a/gamma_age_v2/dmfi_voice1.ncs b/gamma_age_v2/dmfi_voice1.ncs new file mode 100644 index 00000000..94381661 Binary files /dev/null and b/gamma_age_v2/dmfi_voice1.ncs differ diff --git a/gamma_age_v2/dmfi_voice1.nss b/gamma_age_v2/dmfi_voice1.nss new file mode 100644 index 00000000..6aa2b0f6 --- /dev/null +++ b/gamma_age_v2/dmfi_voice1.nss @@ -0,0 +1,65 @@ +//:://///////////////////////////////////////////// +//:: Default On Heartbeat +//:: NW_C2_DEFAULT1 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This script will have people perform default + animations. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 23, 2001 +//::////////////////////////////////////////////// +#include "dmfi_db_inc" + +void main() +{ + object oFollow = GetLocalObject(OBJECT_SELF, "dmfi_follow"); + int iLoiter = GetLocalInt(OBJECT_SELF, "dmfi_Loiter"); + + // Will fire ONE time only - makes the thing hard to see + if (!GetLocalInt(OBJECT_SELF, "hls_invis")) + { + SetListenPattern(OBJECT_SELF, "**", LISTEN_PATTERN); //listen to all text + SetLocalInt(OBJECT_SELF, "hls_Listening", 1); //listen to all text + SetListening(OBJECT_SELF, TRUE); //be sure NPC is listening + + //leave it here rather than add the one time loop to EVERY creature through a OS script change + ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY), OBJECT_SELF); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectCutsceneGhost(), OBJECT_SELF); + SetLocalInt(OBJECT_SELF, "hls_invis",1); + } + + if (GetIsObjectValid(oFollow)) + { + if (GetArea(oFollow)==GetArea(OBJECT_SELF)) + { + AssignCommand(OBJECT_SELF, ClearAllActions(TRUE)); + AssignCommand(OBJECT_SELF, ActionForceFollowObject(oFollow)); + } + else + { + AssignCommand(OBJECT_SELF, ClearAllActions(TRUE)); + AssignCommand(OBJECT_SELF, ActionJumpToObject(oFollow)); + AssignCommand(OBJECT_SELF, ActionForceFollowObject(oFollow)); + } + } + // If just following and listening, then return. + if (!iLoiter) + return; + + // If in loiter mode, look for a PC and make the announcement when appropraite + object oPC = GetFirstObjectInShape(SHAPE_SPHERE, 10.0f, GetLocation(OBJECT_SELF), TRUE); + while(GetIsObjectValid(oPC)) + { + if (GetIsPC(oPC) && + !GetIsDM(oPC) && + iLoiter) + { + SpeakString(GetLocalString(OBJECT_SELF, "dmfi_LoiterSay")); + DestroyObject(OBJECT_SELF); + } + oPC = GetNextObjectInShape(SHAPE_SPHERE, 10.0f, GetLocation(OBJECT_SELF), TRUE); + } +} diff --git a/gamma_age_v2/dmfi_voice_exe.ncs b/gamma_age_v2/dmfi_voice_exe.ncs new file mode 100644 index 00000000..d26a2066 Binary files /dev/null and b/gamma_age_v2/dmfi_voice_exe.ncs differ diff --git a/gamma_age_v2/dmfi_voice_exe.nss b/gamma_age_v2/dmfi_voice_exe.nss new file mode 100644 index 00000000..d4b63778 --- /dev/null +++ b/gamma_age_v2/dmfi_voice_exe.nss @@ -0,0 +1,53 @@ +//:://///////////////////////////////////////////// +//:: DMFI - settings voice command handler +//:: dmfi_voice_exe +//::////////////////////////////////////////////// +/* + Processor for the text heard by the settings adjuster creature. +*/ +//::////////////////////////////////////////////// +//:: Created By: The DMFI Team +//:: Created On: +//::////////////////////////////////////////////// +//:: 2008.08.02 tsunami282 - most code transferred to dmfi_plychat_exe, this +//:: script now used for processing what the Settings Adjuster creature hears. + +#include "dmfi_db_inc" + +void main() +{ + int nMatch = GetListenPatternNumber(); + object oShouter = GetLastSpeaker(); + + if (GetIsDM(oShouter)) + SetLocalInt(GetModule(), "dmfi_Admin" + GetPCPublicCDKey(oShouter), 1); + + if (GetIsDMPossessed(oShouter)) + SetLocalObject(GetMaster(oShouter), "dmfi_familiar", oShouter); + + object oTarget = GetLocalObject(oShouter, "dmfi_VoiceTarget"); + object oMaster = OBJECT_INVALID; + if (GetIsObjectValid(oTarget)) + oMaster = oShouter; + + int iPhrase = GetLocalInt(oShouter, "hls_EditPhrase"); + + object oSummon; + + if (nMatch == LISTEN_PATTERN && GetIsObjectValid(oShouter) && GetIsDM(oShouter)) + { + string sSaid = GetMatchedSubstring(0); + + if (GetTag(OBJECT_SELF) == "dmfi_setting" && GetLocalString(oShouter, "EffectSetting") != "") + { + string sPhrase = GetLocalString(oShouter, "EffectSetting"); + SetLocalFloat(oShouter, sPhrase, StringToFloat(sSaid)); + SetDMFIPersistentFloat("dmfi", sPhrase, StringToFloat(sSaid), oShouter); + DeleteLocalString(oShouter, "EffectSetting"); + DelayCommand(0.5, ActionSpeakString("The setting " + sPhrase + " has been changed to " + FloatToString(GetLocalFloat(oShouter, sPhrase)))); + DelayCommand(1.5, DestroyObject(OBJECT_SELF)); + //maybe add a return here + } + } +} + diff --git a/gamma_age_v2/dmfi_voicewidget.uti b/gamma_age_v2/dmfi_voicewidget.uti new file mode 100644 index 00000000..b160a7b9 Binary files /dev/null and b/gamma_age_v2/dmfi_voicewidget.uti differ diff --git a/gamma_age_v2/dmfi_x_afflict.ncs b/gamma_age_v2/dmfi_x_afflict.ncs new file mode 100644 index 00000000..c15e92d7 Binary files /dev/null and b/gamma_age_v2/dmfi_x_afflict.ncs differ diff --git a/gamma_age_v2/dmfi_x_afflict.nss b/gamma_age_v2/dmfi_x_afflict.nss new file mode 100644 index 00000000..85ce123a --- /dev/null +++ b/gamma_age_v2/dmfi_x_afflict.nss @@ -0,0 +1,377 @@ +#include "dmfi_db_inc" + + +object DMFI_NextTarget(object oTarget, object oUser) +{ + object oNew; + + if (GetIsPC(oTarget)) + { + if (GetIsObjectValid(GetNextFactionMember(oTarget))) + oNew = GetNextFactionMember(oTarget); + else + oNew = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, oTarget, 1); + } + else + oNew = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_NOT_PC, oTarget, 1); + + + if (!GetIsObjectValid(oNew)) + { + SendMessageToPC(oUser, "No valid target to transfer to."); + oNew = oTarget; + } + + SetLocalObject(oUser, "dmfi_univ_target", oNew); + SetCustomToken(20680, GetName(oNew)); + FloatingTextStringOnCreature("Target changed to: "+ GetName(oNew), oUser); + return oNew; +} + +//DMFI Creates the "settings" creature +void CreateSetting(object oUser) +{ + object oSetting = CreateObject(OBJECT_TYPE_CREATURE, "dmfi_setting", GetLocation(oUser)); + DelayCommand(0.5f, AssignCommand(oSetting, ActionSpeakString(GetLocalString(oUser, "EffectSetting") + " is currently set at " + FloatToString(GetLocalFloat(oUser, GetLocalString(oUser, "EffectSetting")))))); + SetLocalObject(oSetting, "MyMaster", oUser); + SetListenPattern(oSetting, "**", LISTEN_PATTERN); //listen to all text + SetLocalInt(oSetting, "hls_Listening", 1); //listen to all text + SetListening(oSetting, TRUE); //be sure NPC is listening +} + +//This function is for the DMFI Affliction Wand +void ReportImmunity(object oT, object oUser) +{ + SendMessageToPC(oUser, "Immunities Reported: (blank if none)"); + if (GetIsImmune(oT, IMMUNITY_TYPE_ABILITY_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Ability Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_AC_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE AC Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_ATTACK_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Attack Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_BLINDNESS)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Blindness"); + if (GetIsImmune(oT, IMMUNITY_TYPE_CHARM)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Charm"); + if (GetIsImmune(oT, IMMUNITY_TYPE_CONFUSED)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Confusion"); + if (GetIsImmune(oT, IMMUNITY_TYPE_CRITICAL_HIT)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Critical Hit"); + if (GetIsImmune(oT, IMMUNITY_TYPE_CURSED)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Cursed"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DAMAGE_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Damage Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DAMAGE_IMMUNITY_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Damage Immunity Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DAZED)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Dazed"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DEAFNESS)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Deafness"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DEATH)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Death"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DISEASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Disease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_DOMINATE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Dominate"); + if (GetIsImmune(oT, IMMUNITY_TYPE_ENTANGLE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Entangle"); + if (GetIsImmune(oT, IMMUNITY_TYPE_FEAR)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Fear"); + if (GetIsImmune(oT, IMMUNITY_TYPE_KNOCKDOWN)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Knockdown"); + if (GetIsImmune(oT, IMMUNITY_TYPE_MIND_SPELLS)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Mind Spells"); + if (GetIsImmune(oT, IMMUNITY_TYPE_MOVEMENT_SPEED_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Movement Speed Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_NEGATIVE_LEVEL)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Negative Level"); + if (GetIsImmune(oT, IMMUNITY_TYPE_PARALYSIS)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Paralysis"); + if (GetIsImmune(oT, IMMUNITY_TYPE_POISON)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Poison"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SAVING_THROW_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Saving Throw Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SILENCE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Silence"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SKILL_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Skill Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SLEEP)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Sleep"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SLOW)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Slow"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SNEAK_ATTACK)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Sneak Attack"); + if (GetIsImmune(oT, IMMUNITY_TYPE_SPELL_RESISTANCE_DECREASE)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Spell Resistance Decrease"); + if (GetIsImmune(oT, IMMUNITY_TYPE_STUN)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Stun"); + if (GetIsImmune(oT, IMMUNITY_TYPE_TRAP)) + SendMessageToPC(oUser, GetName(oT) + " IMMUNE Trap"); +} + +void CheckForEffect(effect eA, object oT, object oUser) +{ + int Result = FALSE; + effect Check = GetFirstEffect(oT); + + while (GetIsEffectValid(Check)) + { + if (Check == eA) + Result = TRUE; + + Check = GetNextEffect(oT); + } + if (Result) + FloatingTextStringOnCreature("Affliction Wand Saving Throw Failure: " + GetName(oT), oUser); + else + FloatingTextStringOnCreature("Affliction Wand Saving Throw Success: No Effect: " + GetName(oT), oUser); +} + +void main() +{ + int iAfflict = GetLocalInt(OBJECT_SELF, "dmfi_univ_int"); + object oUser = OBJECT_SELF; + effect eEffect; + object oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + float fDuration; + int nDNum; + effect eD; + effect eA; + effect eT; + effect eVis; + int nBug = 0; + int nSaveAmount; float fSaveAmount; + + nDNum = GetLocalInt(oUser, "dmfi_damagemodifier"); + fDuration = GetLocalFloat(oUser, "dmfi_stunduration"); + fSaveAmount = GetLocalFloat(oUser, "dmfi_saveamount"); + + nSaveAmount = FloatToInt(fSaveAmount); + + if (!(GetObjectType(oTarget) == OBJECT_TYPE_CREATURE) || + GetIsDM(oTarget)) + { + FloatingTextStringOnCreature("You must target a valid creature!", oUser, FALSE); + return; + } + switch(iAfflict) + { + case 11: eD= EffectDamage(d4(nDNum), DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_SPARK_SMALL); break; + case 12: eD = EffectDamage(d6(nDNum), DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_LRG_RED); break; + case 13: eD = EffectDamage(d8(nDNum), DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_LRG_RED); break; + case 14: eD = EffectDamage(d10(nDNum), DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_SPARK_SMALL); break; + case 15: eD = EffectDamage(d12(nDNum), DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_SPARK_SMALL); break; + case 16: eD = EffectDamage(GetCurrentHitPoints(oTarget)/4, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_LRG_RED); break; + case 17: eD = EffectDamage(GetCurrentHitPoints(oTarget)/2, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis = EffectVisualEffect(VFX_COM_BLOOD_LRG_RED); break; + case 18: eD = EffectDamage(GetCurrentHitPoints(oTarget) * 3 / 4, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis =EffectVisualEffect(VFX_COM_CHUNK_RED_SMALL); break; + case 19: eD = EffectDamage(GetCurrentHitPoints(oTarget)-1, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_TWENTY); + eVis =EffectVisualEffect(VFX_COM_CHUNK_RED_SMALL); break; + case 21: eA =EffectDisease(DISEASE_FILTH_FEVER); break; + case 22: eA =EffectDisease(DISEASE_MINDFIRE); break; + case 23: eA =EffectDisease(DISEASE_DREAD_BLISTERS); break; + case 24: eA =EffectDisease(DISEASE_SHAKES); break; + case 25: eA =EffectDisease(DISEASE_VERMIN_MADNESS); break; + case 26: eA =EffectDisease(DISEASE_DEVIL_CHILLS); break; + case 27: eA =EffectDisease(DISEASE_SLIMY_DOOM); break; + case 28: eA =EffectDisease(DISEASE_RED_ACHE); break; + case 29: eA =EffectDisease(DISEASE_ZOMBIE_CREEP); break; + case 31: eA =EffectDisease(DISEASE_BLINDING_SICKNESS); break; + case 32: eA =EffectDisease(DISEASE_CACKLE_FEVER); break; + case 33: eA =EffectDisease(DISEASE_BURROW_MAGGOTS); break; + case 34: eA =EffectDisease(DISEASE_RED_SLAAD_EGGS); break; + case 35: eA =EffectDisease(DISEASE_DEMON_FEVER); break; + case 36: eA =EffectDisease(DISEASE_GHOUL_ROT); break; + case 37: eA =EffectDisease(DISEASE_MUMMY_ROT); break; + case 38: eA =EffectDisease(DISEASE_SOLDIER_SHAKES); break; + case 39: eA =EffectDisease(DISEASE_SOLDIER_SHAKES); break; + case 41: eA =EffectPoison(POISON_TINY_SPIDER_VENOM); break; + case 42: eA =EffectPoison(POISON_ARANEA_VENOM); break; + case 43: eA =EffectPoison(POISON_MEDIUM_SPIDER_VENOM); break; + case 44: eA = EffectPoison(POISON_CARRION_CRAWLER_BRAIN_JUICE); break; + case 45: eA = EffectPoison(POISON_OIL_OF_TAGGIT); break; + case 46: eA = EffectPoison(POISON_ARSENIC); break; + case 47: eA = EffectPoison(POISON_GREENBLOOD_OIL); break; + case 48: eA = EffectPoison(POISON_NITHARIT); break; + case 49: eA = EffectPoison(POISON_PHASE_SPIDER_VENOM); break; + case 51: eA = EffectPoison(POISON_LICH_DUST); break; + case 52: eA = EffectPoison(POISON_SHADOW_ESSENCE); break; + case 53: eA = EffectPoison(POISON_LARGE_SPIDER_VENOM); break; + case 54: eA = EffectPoison(POISON_PURPLE_WORM_POISON); break; + case 55: eA = EffectPoison(POISON_IRON_GOLEM); break; + case 56: eA = EffectPoison(POISON_PIT_FIEND_ICHOR); break; + case 57: eA = EffectPoison(POISON_WYVERN_POISON); break; + case 58: eA = EffectPoison(POISON_BLACK_LOTUS_EXTRACT); break; + case 59: eA = EffectPoison(POISON_GARGANTUAN_SPIDER_VENOM); break; + case 60: eT = EffectPetrify(); break; + case 61: eT = EffectBlindness(); break; + case 62: eT = EffectCurse(4,4,4,4,4,4); break; + case 63: eT = EffectFrightened(); break; + case 64: eT = EffectStunned(); break; + case 65: eT = EffectSilence(); break; + case 66: eT = EffectSleep(); break; + case 67: eT = EffectSlow(); break; + case 68: eT = EffectKnockdown(); nBug = 1; break; + case 69: eD = EffectDamage( GetCurrentHitPoints(oTarget)-1, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_NORMAL); + AssignCommand( oTarget, ClearAllActions()); + AssignCommand( oTarget, ActionPlayAnimation( ANIMATION_LOOPING_DEAD_FRONT, 1.0, 99999.0)); + DelayCommand(0.5, SetCommandable( FALSE, oTarget)); break; + case 71: eA = EffectCutsceneDominated();break; + case 72: eA = EffectCutsceneGhost(); break; + case 73: eA = EffectCutsceneImmobilize(); break; + case 74: eA = EffectCutsceneParalyze(); break; + case 75: nBug = -1; break; //special case for combo death effect + case 81: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_POISON) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 82: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_DISEASE) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 83: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_BLINDNESS) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 84: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_CURSE) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 85: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_FRIGHTENED) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 86: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_STUNNED) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 87: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_SILENCE) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 88: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break; + case 89: SetCommandable(TRUE, oTarget); + AssignCommand(oTarget, ClearAllActions()); break; + case 80: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if (GetEffectType(eEffect) == EFFECT_TYPE_PETRIFY) RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break;//Added July 5, 2003 + +// 99 is a duplicate instance - simple copy. - Demetrious + case 91: SetLocalString(oUser, "EffectSetting", "dmfi_stunduration"); + CreateSetting(oUser); + case 92: SetDMFIPersistentInt("dmfi", "DamageModifier", nDNum+1); SetCustomToken(20780, IntToString(nDNum+1));; break; + case 93: + if (nDNum==1) + { + FloatingTextStringOnCreature("Illegal operation: Minimum modifier is 1.", oUser); + break; + } + else + { + SetDMFIPersistentInt("dmfi", "DamageModifier", nDNum-1); SetCustomToken(20780, IntToString(nDNum-1)); ;break; + break; + } + case 94: ReportImmunity(oTarget, oUser); break; + case 95: DMFI_NextTarget(oTarget, oUser); break; + case 99: SetLocalString(oUser, "EffectSetting", "SaveEffectAmount"); + CreateSetting(oUser); break; + case 101: eT = EffectSavingThrowDecrease(SAVING_THROW_FORT, nSaveAmount); break; + case 102: eT = EffectSavingThrowDecrease(SAVING_THROW_REFLEX, nSaveAmount); break; + case 103: eT = EffectSavingThrowDecrease(SAVING_THROW_WILL, nSaveAmount); break; + case 104: eT = EffectSavingThrowIncrease(SAVING_THROW_FORT, nSaveAmount); break; + case 105: eT = EffectSavingThrowIncrease(SAVING_THROW_REFLEX, nSaveAmount); break; + case 106: eT = EffectSavingThrowIncrease(SAVING_THROW_WILL, nSaveAmount); break; + case 107: eT = EffectSavingThrowDecrease(SAVING_THROW_ALL, nSaveAmount); break; + case 108: eT = EffectSavingThrowIncrease(SAVING_THROW_ALL, nSaveAmount); break; + case 109: SetLocalString(oUser, "EffectSetting", "SaveEffectAmount"); + CreateSetting(oUser); + case 100: eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) + { + if ((GetEffectType(eEffect) == EFFECT_TYPE_SAVING_THROW_INCREASE) + ||(GetEffectType(eEffect) == EFFECT_TYPE_SAVING_THROW_DECREASE)) + RemoveEffect(oTarget, eEffect); + eEffect = GetNextEffect(oTarget); + } break;//Added July 5, 2003 + + + + default: break; + } +//code down here to apply the effects an then go back and see if the +//player successfully saved or did not for the diseases and poisons. + + if ((GetEffectType(eD)!= EFFECT_TYPE_INVALIDEFFECT) || + (GetEffectType(eVis) != EFFECT_TYPE_INVALIDEFFECT)) + { + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eD, oTarget); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eVis, oTarget); + return; + } + if (GetEffectType(eA)!= EFFECT_TYPE_INVALIDEFFECT) + { + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eA, oTarget); + DelayCommand(5.0, CheckForEffect(eA, oTarget, oUser)); + return; + } + if ((GetEffectType(eT)!= EFFECT_TYPE_INVALIDEFFECT) || (nBug ==1)) + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eT, oTarget, fDuration); + + if ((GetEffectType(eT)==EFFECT_TYPE_SAVING_THROW_INCREASE) || + (GetEffectType(eT)==EFFECT_TYPE_SAVING_THROW_DECREASE)) + { + DelayCommand(1.0, FloatingTextStringOnCreature("Target Saves: Fortitude " + IntToString(GetFortitudeSavingThrow(oTarget)) + + " Reflex " + IntToString(GetReflexSavingThrow(oTarget)) + " Will " + IntToString(GetWillSavingThrow(oTarget)), oUser)); + } + return; + } + if (nBug == -1) + { + object oFollowMe = GetFirstFactionMember(oTarget, TRUE); + + if (!GetIsObjectValid(oFollowMe)) + oFollowMe = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, oTarget, 1,CREATURE_TYPE_IS_ALIVE, TRUE); + + if (GetIsDM(oFollowMe) || GetIsDMPossessed(oFollowMe)) + oFollowMe = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, oTarget, 2,CREATURE_TYPE_IS_ALIVE, TRUE); + + if (!GetIsObjectValid(oFollowMe)) + oFollowMe = oUser; + + AssignCommand(oFollowMe, ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectCutsceneDominated(), oTarget)); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectCutsceneGhost(), oTarget); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY), oTarget); + } + + return; +} diff --git a/gamma_age_v2/dmfi_x_emote.ncs b/gamma_age_v2/dmfi_x_emote.ncs new file mode 100644 index 00000000..cc2e1134 Binary files /dev/null and b/gamma_age_v2/dmfi_x_emote.ncs differ diff --git a/gamma_age_v2/dmfi_x_emote.nss b/gamma_age_v2/dmfi_x_emote.nss new file mode 100644 index 00000000..3b0c69f6 --- /dev/null +++ b/gamma_age_v2/dmfi_x_emote.nss @@ -0,0 +1,218 @@ +//Smoking Function by Jason Robinson +location GetLocationAboveAndInFrontOf(object oPC, float fDist, float fHeight) +{ + float fDistance = -fDist; + object oTarget = (oPC); + object oArea = GetArea(oTarget); + vector vPosition = GetPosition(oTarget); + vPosition.z += fHeight; + float fOrientation = GetFacing(oTarget); + vector vNewPos = AngleToVector(fOrientation); + float vZ = vPosition.z; + float vX = vPosition.x - fDistance * vNewPos.x; + float vY = vPosition.y - fDistance * vNewPos.y; + fOrientation = GetFacing(oTarget); + vX = vPosition.x - fDistance * vNewPos.x; + vY = vPosition.y - fDistance * vNewPos.y; + vNewPos = AngleToVector(fOrientation); + vZ = vPosition.z; + vNewPos = Vector(vX, vY, vZ); + return Location(oArea, vNewPos, fOrientation); +} + +//Smoking Function by Jason Robinson +void SmokePipe(object oActivator) +{ + string sEmote1 = "*puffs on a pipe*"; + string sEmote2 = "*inhales from a pipe*"; + string sEmote3 = "*pulls a mouthful of smoke from a pipe*"; + float fHeight = 1.7; + float fDistance = 0.1; + // Set height based on race and gender + if (GetGender(oActivator) == GENDER_MALE) + { + switch (GetRacialType(oActivator)) + { + case RACIAL_TYPE_HUMAN: + case RACIAL_TYPE_HALFELF: fHeight = 1.7; fDistance = 0.12; break; + case RACIAL_TYPE_ELF: fHeight = 1.55; fDistance = 0.08; break; + case RACIAL_TYPE_GNOME: + case RACIAL_TYPE_HALFLING: fHeight = 1.15; fDistance = 0.12; break; + case RACIAL_TYPE_DWARF: fHeight = 1.2; fDistance = 0.12; break; + case RACIAL_TYPE_HALFORC: fHeight = 1.9; fDistance = 0.2; break; + } + } + else + { + // FEMALES + switch (GetRacialType(oActivator)) + { + case RACIAL_TYPE_HUMAN: + case RACIAL_TYPE_HALFELF: fHeight = 1.6; fDistance = 0.12; break; + case RACIAL_TYPE_ELF: fHeight = 1.45; fDistance = 0.12; break; + case RACIAL_TYPE_GNOME: + case RACIAL_TYPE_HALFLING: fHeight = 1.1; fDistance = 0.075; break; + case RACIAL_TYPE_DWARF: fHeight = 1.2; fDistance = 0.1; break; + case RACIAL_TYPE_HALFORC: fHeight = 1.8; fDistance = 0.13; break; + } + } + location lAboveHead = GetLocationAboveAndInFrontOf(oActivator, fDistance, fHeight); + // emotes + switch (d3()) + { + case 1: AssignCommand(oActivator, ActionSpeakString(sEmote1)); break; + case 2: AssignCommand(oActivator, ActionSpeakString(sEmote2)); break; + case 3: AssignCommand(oActivator, ActionSpeakString(sEmote3));break; + } + // glow red + AssignCommand(oActivator, ActionDoCommand(ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_RED_5), oActivator, 0.15))); + // wait a moment + AssignCommand(oActivator, ActionWait(3.0)); + // puff of smoke above and in front of head + AssignCommand(oActivator, ActionDoCommand(ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SMOKE_PUFF), lAboveHead))); + // if female, turn head to left + if ((GetGender(oActivator) == GENDER_FEMALE) && (GetRacialType(oActivator) != RACIAL_TYPE_DWARF)) + AssignCommand(oActivator, ActionPlayAnimation(ANIMATION_FIREFORGET_HEAD_TURN_LEFT, 1.0, 5.0)); +} + +void EmoteDance(object oPC) +{ + object oRightHand = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND,oPC); + object oLeftHand = GetItemInSlot(INVENTORY_SLOT_LEFTHAND,oPC); + + AssignCommand(oPC,ActionUnequipItem(oRightHand)); + AssignCommand(oPC,ActionUnequipItem(oLeftHand)); + + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY2,1.0)); + AssignCommand(oPC,ActionDoCommand(PlayVoiceChat(VOICE_CHAT_LAUGH,oPC))); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_LOOPING_TALK_LAUGHING, 2.0, 2.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY1,1.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY3,2.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_LOOPING_GET_MID, 3.0, 1.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_LOOPING_TALK_FORCEFUL,1.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY2,1.0)); + AssignCommand(oPC,ActionDoCommand(PlayVoiceChat(VOICE_CHAT_LAUGH,oPC))); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_LOOPING_TALK_LAUGHING, 2.0, 2.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY1,1.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY3,2.0)); + AssignCommand(oPC,ActionDoCommand(PlayVoiceChat(VOICE_CHAT_LAUGH,oPC))); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_LOOPING_GET_MID, 3.0, 1.0)); + AssignCommand(oPC,ActionPlayAnimation( ANIMATION_FIREFORGET_VICTORY2,1.0)); + + AssignCommand(oPC,ActionDoCommand(ActionEquipItem(oLeftHand,INVENTORY_SLOT_LEFTHAND))); + AssignCommand(oPC,ActionDoCommand(ActionEquipItem(oRightHand,INVENTORY_SLOT_RIGHTHAND))); +} + +void SitInNearestChair(object oPC) +{ + object oSit,oRightHand,oLeftHand,oChair,oCouch,oBenchPew,oStool; + float fDistSit;int nth; + // get the closest chair, couch bench or stool + nth = 1;oChair = GetNearestObjectByTag("Chair", oPC,nth); + while(oChair != OBJECT_INVALID && GetSittingCreature(oChair) != OBJECT_INVALID) + {nth++;oChair = GetNearestObjectByTag("Chair", oPC,nth);} + + nth = 1;oCouch = GetNearestObjectByTag("Couch", oPC,nth); + while(oCouch != OBJECT_INVALID && GetSittingCreature(oCouch) != OBJECT_INVALID) + {nth++;oChair = GetNearestObjectByTag("Couch", oPC,nth);} + + nth = 1;oBenchPew = GetNearestObjectByTag("BenchPew", oPC,nth); + while(oBenchPew != OBJECT_INVALID && GetSittingCreature(oBenchPew) != OBJECT_INVALID) + {nth++;oChair = GetNearestObjectByTag("BenchPew", oPC,nth);} + /* 1.27 bug + nth = 1;oStool = GetNearestObjectByTag("Stool", oPC,nth); + while(oStool != OBJECT_INVALID && GetSittingCreature(oStool) != OBJECT_INVALID) + {nth++;oStool = GetNearestObjectByTag("Stool", oPC,nth);} + */ + // get the distance between the user and each object (-1.0 is the result if no + // object is found + float fDistanceChair = GetDistanceToObject(oChair); + float fDistanceBench = GetDistanceToObject(oBenchPew); + float fDistanceCouch = GetDistanceToObject(oCouch); + float fDistanceStool = GetDistanceToObject(oStool); + + // if any of the objects are invalid (not there), change the return value + // to a high number so the distance math can work + if (fDistanceChair == -1.0) + {fDistanceChair =1000.0;} + + if (fDistanceBench == -1.0) + {fDistanceBench = 1000.0;} + + if (fDistanceCouch == -1.0) + {fDistanceCouch = 1000.0;} + + if (fDistanceStool == -1.0) + {fDistanceStool = 1000.0;} + + // find out which object is closest to the PC + if (fDistanceChair2.0) FloatingTextStringOnCreature("Delay effect created", oUser, FALSE); + DelayCommand( fDelay, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(iVFX),lEffect)); +} + +void main() +{ + int iDayMusic, iNightMusic, iBattleMusic; + int iEffect = GetLocalInt(OBJECT_SELF, "dmfi_univ_int"); + location lEffect = GetLocalLocation(OBJECT_SELF, "dmfi_univ_location"); + object oUser = OBJECT_SELF; + float fDelay; + float fDuration; + float fBeamDuration; + object oTarget; + + fDelay = GetLocalFloat(oUser, "dmfi_effectdelay"); + fDuration = GetLocalFloat(oUser, "dmfi_effectduration"); + fBeamDuration = GetLocalFloat(oUser, "dmfi_beamduration"); + + if (!GetIsObjectValid(GetLocalObject(oUser, "dmfi_univ_target"))) + oTarget = oUser; + else + oTarget = GetLocalObject(oUser, "dmfi_univ_target"); + switch(iEffect) + { + //SoU/HotU Duration Effects(must have a target) + case 101: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BIGBYS_CLENCHED_FIST), oTarget, fDuration); break; + case 102: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BIGBYS_CRUSHING_HAND), oTarget, fDuration); break; + case 103: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BIGBYS_GRASPING_HAND), oTarget, fDuration); break; + case 104: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BIGBYS_INTERPOSING_HAND), oTarget, fDuration); break; + case 105: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_ICESKIN), oTarget, fDuration); break; + case 106: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_INFERNO), oTarget, fDuration); break; + case 107: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PIXIEDUST), oTarget, fDuration); break; + case 108: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY), oTarget, fDuration); break; + case 109: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_FREEZE_ANIMATION), oTarget, fDuration); break; + case 100: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_GHOSTLY_PULSE), oTarget, fDuration); break; + //Magical Duration Effects + case 10: ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_CALTROPS),lEffect, fDuration); break; + case 11: ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_TENTACLE),lEffect, fDuration); break; + case 12: ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_WEB_MASS),lEffect, fDuration); break; + case 13: FnFEffect(oUser, VFX_FNF_GAS_EXPLOSION_MIND,lEffect, fDelay); break; + case 14: FnFEffect(oUser, VFX_FNF_LOS_HOLY_30,lEffect, fDelay); break; + case 15: FnFEffect(oUser, VFX_FNF_LOS_EVIL_30,lEffect, fDelay); break; + case 16: FnFEffect(oUser, VFX_FNF_SMOKE_PUFF,lEffect, fDelay); break; + case 17: FnFEffect(oUser, VFX_FNF_GAS_EXPLOSION_NATURE,lEffect, fDelay); break; + case 18: FnFEffect(oUser, VFX_FNF_DISPEL_DISJUNCTION,lEffect, fDelay); break; + case 19: FnFEffect(oUser, VFX_FNF_GAS_EXPLOSION_EVIL,lEffect, fDelay); break; + //Magical Status Effects (must have a target) + case 21: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PROT_BARKSKIN), oTarget, fDuration); break; + case 22: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PROT_GREATER_STONESKIN), oTarget, fDuration); break; + case 23: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_ENTANGLE), oTarget, fDuration); break; + case 24: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_ETHEREAL_VISAGE), oTarget, fDuration); break; + case 25: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_GHOSTLY_VISAGE), oTarget, fDuration); break; + case 26: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_INVISIBILITY), oTarget, fDuration); break; + case 27: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BARD_SONG), oTarget, fDuration); break; + case 28: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_GLOBE_INVULNERABILITY), oTarget, fDuration); break; + case 29: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PARALYZED), oTarget, fDuration); break; + case 20: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_PROT_SHADOW_ARMOR), oTarget, fDuration); break; + //Magical Burst Effects + case 31: FnFEffect(oUser, VFX_FNF_FIREBALL,lEffect, fDelay); break; + case 32: FnFEffect(oUser, VFX_FNF_FIRESTORM,lEffect, fDelay); break; + case 33: FnFEffect(oUser, VFX_FNF_HORRID_WILTING,lEffect, fDelay); break; + case 34: FnFEffect(oUser, VFX_FNF_HOWL_WAR_CRY,lEffect, fDelay); break; + case 35: FnFEffect(oUser, VFX_FNF_IMPLOSION,lEffect, fDelay); break; + case 36: FnFEffect(oUser, VFX_FNF_PWKILL,lEffect, fDelay); break; + case 37: FnFEffect(oUser, VFX_FNF_PWSTUN,lEffect, fDelay); break; + case 38: FnFEffect(oUser, VFX_FNF_SOUND_BURST,lEffect, fDelay); break; + case 39: FnFEffect(oUser, VFX_FNF_STRIKE_HOLY,lEffect, fDelay); break; + case 30: FnFEffect(oUser, VFX_FNF_WORD,lEffect, fDelay); break; + //Lighting Effects + case 41: ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_BLACKOUT),lEffect, fDuration); break; + case 42: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_ANTI_LIGHT_10),oTarget, fDuration); break; + case 43: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_BLUE_20),oTarget, fDuration); break; + case 44: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_GREY_20),oTarget, fDuration); break; + case 45: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_ORANGE_20),oTarget, fDuration); break; + case 46: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_PURPLE_20),oTarget, fDuration); break; + case 47: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_RED_20),oTarget, fDuration); break; + case 48: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_WHITE_20),oTarget, fDuration); break; + case 49: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_LIGHT_YELLOW_20),oTarget, fDuration); break; + //Beam Effects + case 50: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_CHAIN, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 51: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_COLD, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 52: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_EVIL, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 53: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_FIRE, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 54: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_FIRE_LASH, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 55: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_HOLY, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 56: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_LIGHTNING, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 57: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_MIND, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 58: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_ODD, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + case 59: ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_COLD, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_EVIL, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_FIRE, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_FIRE_LASH, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_HOLY, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_LIGHTNING, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_MIND, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBeam(VFX_BEAM_ODD, oUser, BODY_NODE_CHEST, FALSE), oTarget, fBeamDuration); break; + + //Environmental Effects + case 60: FnFEffect(oUser, VFX_FNF_NATURES_BALANCE,lEffect, fDelay);break; + case 61: FXWand_Lightning(oTarget, lEffect); break; + case 62: FXWand_Firestorm(oTarget); break; + case 63: FXWand_Earthquake(oTarget); break; + case 64: FnFEffect(oUser, VFX_FNF_ICESTORM,lEffect, fDelay); break; + case 65: FnFEffect(oUser, VFX_FNF_SUNBEAM,lEffect, fDelay); break; + case 66: SetWeather(GetArea(oUser), WEATHER_CLEAR); break; + case 67: SetWeather(GetArea(oUser), WEATHER_RAIN); break; + case 68: SetWeather(GetArea(oUser), WEATHER_SNOW); break; + case 69: SetWeather(GetArea(oUser), WEATHER_USE_AREA_SETTINGS); break; + //Summon Effects + case 71: FnFEffect(oUser, VFX_FNF_SUMMON_MONSTER_1,lEffect, fDelay); break; + case 72: FnFEffect(oUser, VFX_FNF_SUMMON_MONSTER_2,lEffect, fDelay); break; + case 73: FnFEffect(oUser, VFX_FNF_SUMMON_MONSTER_3,lEffect, fDelay); break; + case 74: FnFEffect(oUser, VFX_FNF_SUMMON_CELESTIAL,lEffect, fDelay); break; + case 75: FnFEffect(oUser, VFX_FNF_SUMMONDRAGON,lEffect, fDelay); break; + case 76: FnFEffect(oUser, VFX_FNF_SUMMON_EPIC_UNDEAD,lEffect, fDelay); break; + case 77: FnFEffect(oUser, VFX_FNF_SUMMON_GATE,lEffect, fDelay); break; + case 78: FnFEffect(oUser, VFX_FNF_SUMMON_UNDEAD,lEffect, fDelay); break; + case 79: FnFEffect(oUser, VFX_FNF_UNDEAD_DRAGON,lEffect, fDelay); break; + case 70: FnFEffect(oUser, VFX_FNF_WAIL_O_BANSHEES,lEffect, fDelay); break; + //SoU/HotU Effects + case 80: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(322), oTarget, fDuration); break; + case 81: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(132), oTarget, fDuration); break; + case 82: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(133), oTarget, fDuration); break; + case 83: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(136), oTarget, fDuration); break; + case 84: ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(137), oTarget, fDuration); break; + case 85: FnFEffect(oUser, VFX_FNF_DEMON_HAND,lEffect, fDelay); break; + case 86: FnFEffect(oUser, VFX_FNF_ELECTRIC_EXPLOSION,lEffect, fDelay); break; + case 87: FnFEffect(oUser, VFX_FNF_GREATER_RUIN,lEffect, fDelay); break; + case 88: FnFEffect(oUser, VFX_FNF_MYSTICAL_EXPLOSION,lEffect, fDelay); break; + case 89: FnFEffect(oUser, VFX_FNF_SWINGING_BLADE,lEffect, fDelay); break; + //Settings + case 91: + SetLocalString(oUser, "EffectSetting", "dmfi_effectduration"); + CreateSetting(oUser); + break; + case 92: + SetLocalString(oUser, "EffectSetting", "dmfi_effectdelay"); + CreateSetting(oUser); + break; + case 93: + SetLocalString(oUser, "EffectSetting", "dmfi_beamduration"); + CreateSetting(oUser); + break; + case 94: //Change Day Music + iDayMusic = MusicBackgroundGetDayTrack(GetArea(oUser)) + 1; + if (iDayMusic > 33) iDayMusic = 49; + if (iDayMusic > 55) iDayMusic = 1; + MusicBackgroundStop(GetArea(oUser)); + MusicBackgroundChangeDay(GetArea(oUser), iDayMusic); + MusicBackgroundPlay(GetArea(oUser)); + break; + case 95: //Change Night Music + iNightMusic = MusicBackgroundGetDayTrack(GetArea(oUser)) + 1; + if (iNightMusic > 33) iNightMusic = 49; + if (iNightMusic > 55) iNightMusic = 1; + MusicBackgroundStop(GetArea(oUser)); + MusicBackgroundChangeNight(GetArea(oUser), iNightMusic); + MusicBackgroundPlay(GetArea(oUser)); + break; + case 96: //Play Background Music + MusicBackgroundPlay(GetArea(oUser)); + break; + case 97: //Stop Background Music + MusicBackgroundStop(GetArea(oUser)); + break; + case 98: //Change and Play Battle Music + iBattleMusic = MusicBackgroundGetBattleTrack(GetArea(oUser)) + 1; + if (iBattleMusic < 34 || iBattleMusic > 48) iBattleMusic = 34; + MusicBattleStop(GetArea(oUser)); + MusicBattleChange(GetArea(oUser), iBattleMusic); + MusicBattlePlay(GetArea(oUser)); + break; + case 99: //Stop Battle Music + MusicBattleStop(GetArea(oUser)); + break; + + default: break; + } + DeleteLocalObject(oUser, "EffectTarget"); + return; +} diff --git a/gamma_age_v2/dmfi_xp.uti b/gamma_age_v2/dmfi_xp.uti new file mode 100644 index 00000000..384f1c86 Binary files /dev/null and b/gamma_age_v2/dmfi_xp.uti differ diff --git a/gamma_age_v2/doorpalcus.itp b/gamma_age_v2/doorpalcus.itp new file mode 100644 index 00000000..f887015d Binary files /dev/null and b/gamma_age_v2/doorpalcus.itp differ diff --git a/gamma_age_v2/encounterpalcus.itp b/gamma_age_v2/encounterpalcus.itp new file mode 100644 index 00000000..ac6085ad Binary files /dev/null and b/gamma_age_v2/encounterpalcus.itp differ diff --git a/gamma_age_v2/encroach.utc b/gamma_age_v2/encroach.utc new file mode 100644 index 00000000..e2b625a2 Binary files /dev/null and b/gamma_age_v2/encroach.utc differ diff --git a/gamma_age_v2/erdgon.utc b/gamma_age_v2/erdgon.utc new file mode 100644 index 00000000..b692eccf Binary files /dev/null and b/gamma_age_v2/erdgon.utc differ diff --git a/gamma_age_v2/erdgonpropertie.uti b/gamma_age_v2/erdgonpropertie.uti new file mode 100644 index 00000000..a55191ea Binary files /dev/null and b/gamma_age_v2/erdgonpropertie.uti differ diff --git a/gamma_age_v2/exterminategarb.uti b/gamma_age_v2/exterminategarb.uti new file mode 100644 index 00000000..780b9653 Binary files /dev/null and b/gamma_age_v2/exterminategarb.uti differ diff --git a/gamma_age_v2/exterminator.utc b/gamma_age_v2/exterminator.utc new file mode 100644 index 00000000..3a55f8d9 Binary files /dev/null and b/gamma_age_v2/exterminator.utc differ diff --git a/gamma_age_v2/exterminator2.utc b/gamma_age_v2/exterminator2.utc new file mode 100644 index 00000000..6c4648cc Binary files /dev/null and b/gamma_age_v2/exterminator2.utc differ diff --git a/gamma_age_v2/ey_dpcon_erewood.are b/gamma_age_v2/ey_dpcon_erewood.are new file mode 100644 index 00000000..f1773615 Binary files /dev/null and b/gamma_age_v2/ey_dpcon_erewood.are differ diff --git a/gamma_age_v2/ey_dpcon_erewood.gic b/gamma_age_v2/ey_dpcon_erewood.gic new file mode 100644 index 00000000..1a36a63a Binary files /dev/null and b/gamma_age_v2/ey_dpcon_erewood.gic differ diff --git a/gamma_age_v2/ey_dpcon_erewood.git b/gamma_age_v2/ey_dpcon_erewood.git new file mode 100644 index 00000000..92e3da7e Binary files /dev/null and b/gamma_age_v2/ey_dpcon_erewood.git differ diff --git a/gamma_age_v2/fdwarf.utc b/gamma_age_v2/fdwarf.utc new file mode 100644 index 00000000..ad75e29e Binary files /dev/null and b/gamma_age_v2/fdwarf.utc differ diff --git a/gamma_age_v2/felf.utc b/gamma_age_v2/felf.utc new file mode 100644 index 00000000..1887d29b Binary files /dev/null and b/gamma_age_v2/felf.utc differ diff --git a/gamma_age_v2/felgon.utc b/gamma_age_v2/felgon.utc new file mode 100644 index 00000000..7c62738b Binary files /dev/null and b/gamma_age_v2/felgon.utc differ diff --git a/gamma_age_v2/felgonproperti.uti b/gamma_age_v2/felgonproperti.uti new file mode 100644 index 00000000..52e49bff Binary files /dev/null and b/gamma_age_v2/felgonproperti.uti differ diff --git a/gamma_age_v2/fen.utc b/gamma_age_v2/fen.utc new file mode 100644 index 00000000..bff5ac5a Binary files /dev/null and b/gamma_age_v2/fen.utc differ diff --git a/gamma_age_v2/fengreatsword.uti b/gamma_age_v2/fengreatsword.uti new file mode 100644 index 00000000..84b2bebc Binary files /dev/null and b/gamma_age_v2/fengreatsword.uti differ diff --git a/gamma_age_v2/fgnome.utc b/gamma_age_v2/fgnome.utc new file mode 100644 index 00000000..ee4b7b53 Binary files /dev/null and b/gamma_age_v2/fgnome.utc differ diff --git a/gamma_age_v2/fhalfelf.utc b/gamma_age_v2/fhalfelf.utc new file mode 100644 index 00000000..5f165a5a Binary files /dev/null and b/gamma_age_v2/fhalfelf.utc differ diff --git a/gamma_age_v2/fhalfling.utc b/gamma_age_v2/fhalfling.utc new file mode 100644 index 00000000..fee87aeb Binary files /dev/null and b/gamma_age_v2/fhalfling.utc differ diff --git a/gamma_age_v2/fhalforc.utc b/gamma_age_v2/fhalforc.utc new file mode 100644 index 00000000..e962ae46 Binary files /dev/null and b/gamma_age_v2/fhalforc.utc differ diff --git a/gamma_age_v2/fhuman.utc b/gamma_age_v2/fhuman.utc new file mode 100644 index 00000000..2f213ca4 Binary files /dev/null and b/gamma_age_v2/fhuman.utc differ diff --git a/gamma_age_v2/fhuman_1.utc b/gamma_age_v2/fhuman_1.utc new file mode 100644 index 00000000..c7ddb244 Binary files /dev/null and b/gamma_age_v2/fhuman_1.utc differ diff --git a/gamma_age_v2/fhuman_10.utc b/gamma_age_v2/fhuman_10.utc new file mode 100644 index 00000000..c72dac1f Binary files /dev/null and b/gamma_age_v2/fhuman_10.utc differ diff --git a/gamma_age_v2/fhuman_2.utc b/gamma_age_v2/fhuman_2.utc new file mode 100644 index 00000000..ffb4a5da Binary files /dev/null and b/gamma_age_v2/fhuman_2.utc differ diff --git a/gamma_age_v2/fhuman_3.utc b/gamma_age_v2/fhuman_3.utc new file mode 100644 index 00000000..422b59bf Binary files /dev/null and b/gamma_age_v2/fhuman_3.utc differ diff --git a/gamma_age_v2/fhuman_4.utc b/gamma_age_v2/fhuman_4.utc new file mode 100644 index 00000000..d35ae99d Binary files /dev/null and b/gamma_age_v2/fhuman_4.utc differ diff --git a/gamma_age_v2/fhuman_5.utc b/gamma_age_v2/fhuman_5.utc new file mode 100644 index 00000000..86973e7c Binary files /dev/null and b/gamma_age_v2/fhuman_5.utc differ diff --git a/gamma_age_v2/fhuman_6.utc b/gamma_age_v2/fhuman_6.utc new file mode 100644 index 00000000..778f6236 Binary files /dev/null and b/gamma_age_v2/fhuman_6.utc differ diff --git a/gamma_age_v2/fhuman_7.utc b/gamma_age_v2/fhuman_7.utc new file mode 100644 index 00000000..cf1c693c Binary files /dev/null and b/gamma_age_v2/fhuman_7.utc differ diff --git a/gamma_age_v2/fhuman_8.utc b/gamma_age_v2/fhuman_8.utc new file mode 100644 index 00000000..fc62a222 Binary files /dev/null and b/gamma_age_v2/fhuman_8.utc differ diff --git a/gamma_age_v2/fhuman_9.utc b/gamma_age_v2/fhuman_9.utc new file mode 100644 index 00000000..a5e17573 Binary files /dev/null and b/gamma_age_v2/fhuman_9.utc differ diff --git a/gamma_age_v2/firebug.utc b/gamma_age_v2/firebug.utc new file mode 100644 index 00000000..91182ece Binary files /dev/null and b/gamma_age_v2/firebug.utc differ diff --git a/gamma_age_v2/firefloatytexton.utt b/gamma_age_v2/firefloatytexton.utt new file mode 100644 index 00000000..2804f3ed Binary files /dev/null and b/gamma_age_v2/firefloatytexton.utt differ diff --git a/gamma_age_v2/flynn.utc b/gamma_age_v2/flynn.utc new file mode 100644 index 00000000..aed08776 Binary files /dev/null and b/gamma_age_v2/flynn.utc differ diff --git a/gamma_age_v2/flynnfemale.utc b/gamma_age_v2/flynnfemale.utc new file mode 100644 index 00000000..11e39650 Binary files /dev/null and b/gamma_age_v2/flynnfemale.utc differ diff --git a/gamma_age_v2/form_queen001.utc b/gamma_age_v2/form_queen001.utc new file mode 100644 index 00000000..2e67dff7 Binary files /dev/null and b/gamma_age_v2/form_queen001.utc differ diff --git a/gamma_age_v2/form_taskmast001.utc b/gamma_age_v2/form_taskmast001.utc new file mode 100644 index 00000000..e2b38cf8 Binary files /dev/null and b/gamma_age_v2/form_taskmast001.utc differ diff --git a/gamma_age_v2/form_warrior001.utc b/gamma_age_v2/form_warrior001.utc new file mode 100644 index 00000000..f22e11f1 Binary files /dev/null and b/gamma_age_v2/form_warrior001.utc differ diff --git a/gamma_age_v2/form_worker001.utc b/gamma_age_v2/form_worker001.utc new file mode 100644 index 00000000..33969d1b Binary files /dev/null and b/gamma_age_v2/form_worker001.utc differ diff --git a/gamma_age_v2/frostedpits.are b/gamma_age_v2/frostedpits.are new file mode 100644 index 00000000..581b362d Binary files /dev/null and b/gamma_age_v2/frostedpits.are differ diff --git a/gamma_age_v2/frostedpits.gic b/gamma_age_v2/frostedpits.gic new file mode 100644 index 00000000..d1926d30 Binary files /dev/null and b/gamma_age_v2/frostedpits.gic differ diff --git a/gamma_age_v2/frostedpits.git b/gamma_age_v2/frostedpits.git new file mode 100644 index 00000000..7dd11521 Binary files /dev/null and b/gamma_age_v2/frostedpits.git differ diff --git a/gamma_age_v2/frozentimes.are b/gamma_age_v2/frozentimes.are new file mode 100644 index 00000000..2e9fd932 Binary files /dev/null and b/gamma_age_v2/frozentimes.are differ diff --git a/gamma_age_v2/frozentimes.gic b/gamma_age_v2/frozentimes.gic new file mode 100644 index 00000000..da0c7ba1 Binary files /dev/null and b/gamma_age_v2/frozentimes.gic differ diff --git a/gamma_age_v2/frozentimes.git b/gamma_age_v2/frozentimes.git new file mode 100644 index 00000000..42fcdbcb Binary files /dev/null and b/gamma_age_v2/frozentimes.git differ diff --git a/gamma_age_v2/gallusgallus.utc b/gamma_age_v2/gallusgallus.utc new file mode 100644 index 00000000..75774971 Binary files /dev/null and b/gamma_age_v2/gallusgallus.utc differ diff --git a/gamma_age_v2/gallusgallus001.utc b/gamma_age_v2/gallusgallus001.utc new file mode 100644 index 00000000..0226d833 Binary files /dev/null and b/gamma_age_v2/gallusgallus001.utc differ diff --git a/gamma_age_v2/gator.utc b/gamma_age_v2/gator.utc new file mode 100644 index 00000000..ab7e4227 Binary files /dev/null and b/gamma_age_v2/gator.utc differ diff --git a/gamma_age_v2/gatorbite.uti b/gamma_age_v2/gatorbite.uti new file mode 100644 index 00000000..b0c34fb3 Binary files /dev/null and b/gamma_age_v2/gatorbite.uti differ diff --git a/gamma_age_v2/gelgon.utc b/gamma_age_v2/gelgon.utc new file mode 100644 index 00000000..9587fe44 Binary files /dev/null and b/gamma_age_v2/gelgon.utc differ diff --git a/gamma_age_v2/gelgon001.utc b/gamma_age_v2/gelgon001.utc new file mode 100644 index 00000000..24fd35c3 Binary files /dev/null and b/gamma_age_v2/gelgon001.utc differ diff --git a/gamma_age_v2/gelgon002.utc b/gamma_age_v2/gelgon002.utc new file mode 100644 index 00000000..91edc1bf Binary files /dev/null and b/gamma_age_v2/gelgon002.utc differ diff --git a/gamma_age_v2/gelgon003.utc b/gamma_age_v2/gelgon003.utc new file mode 100644 index 00000000..67911170 Binary files /dev/null and b/gamma_age_v2/gelgon003.utc differ diff --git a/gamma_age_v2/gelgonpropert001.uti b/gamma_age_v2/gelgonpropert001.uti new file mode 100644 index 00000000..0f349e74 Binary files /dev/null and b/gamma_age_v2/gelgonpropert001.uti differ diff --git a/gamma_age_v2/gelgonproperti.uti b/gamma_age_v2/gelgonproperti.uti new file mode 100644 index 00000000..2081e9bd Binary files /dev/null and b/gamma_age_v2/gelgonproperti.uti differ diff --git a/gamma_age_v2/generalstore.utm b/gamma_age_v2/generalstore.utm new file mode 100644 index 00000000..d93e4565 Binary files /dev/null and b/gamma_age_v2/generalstore.utm differ diff --git a/gamma_age_v2/glider.utc b/gamma_age_v2/glider.utc new file mode 100644 index 00000000..bcec422b Binary files /dev/null and b/gamma_age_v2/glider.utc differ diff --git a/gamma_age_v2/glower.utc b/gamma_age_v2/glower.utc new file mode 100644 index 00000000..c7a3b036 Binary files /dev/null and b/gamma_age_v2/glower.utc differ diff --git a/gamma_age_v2/glowring.uti b/gamma_age_v2/glowring.uti new file mode 100644 index 00000000..cd8c2abd Binary files /dev/null and b/gamma_age_v2/glowring.uti differ diff --git a/gamma_age_v2/goth.utc b/gamma_age_v2/goth.utc new file mode 100644 index 00000000..77116c89 Binary files /dev/null and b/gamma_age_v2/goth.utc differ diff --git a/gamma_age_v2/gren.utc b/gamma_age_v2/gren.utc new file mode 100644 index 00000000..bf089b86 Binary files /dev/null and b/gamma_age_v2/gren.utc differ diff --git a/gamma_age_v2/gren001.utc b/gamma_age_v2/gren001.utc new file mode 100644 index 00000000..7344af01 Binary files /dev/null and b/gamma_age_v2/gren001.utc differ diff --git a/gamma_age_v2/grenspear.uti b/gamma_age_v2/grenspear.uti new file mode 100644 index 00000000..38b48a3f Binary files /dev/null and b/gamma_age_v2/grenspear.uti differ diff --git a/gamma_age_v2/gretvarl.utc b/gamma_age_v2/gretvarl.utc new file mode 100644 index 00000000..4a7aac41 Binary files /dev/null and b/gamma_age_v2/gretvarl.utc differ diff --git a/gamma_age_v2/grey.utc b/gamma_age_v2/grey.utc new file mode 100644 index 00000000..0614ba0a Binary files /dev/null and b/gamma_age_v2/grey.utc differ diff --git a/gamma_age_v2/groak.utc b/gamma_age_v2/groak.utc new file mode 100644 index 00000000..bd0cd3c1 Binary files /dev/null and b/gamma_age_v2/groak.utc differ diff --git a/gamma_age_v2/gz_chair_use.ncs b/gamma_age_v2/gz_chair_use.ncs new file mode 100644 index 00000000..a904cdbe Binary files /dev/null and b/gamma_age_v2/gz_chair_use.ncs differ diff --git a/gamma_age_v2/gz_chair_use.nss b/gamma_age_v2/gz_chair_use.nss new file mode 100644 index 00000000..a620d086 --- /dev/null +++ b/gamma_age_v2/gz_chair_use.nss @@ -0,0 +1,31 @@ +//:://///////////////////////////////////////////// +//:: gz_chair_use +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +*/ +//::////////////////////////////////////////////// +//:: Created By: Dom Queron +//::////////////////////////////////////////////// + +// This script was explained by David Gaider/Bioware in this topic. +// You should read this topic if you are interested in Nwn scripting +// http://nwn.bioware.com/forums/viewtopic.html?topic=74275&forum=47 + + +void main() +{ + ClearAllActions(); + float fFacing = GetFacing(OBJECT_SELF); + object oPlayer = GetLastUsedBy(); + object oChair = OBJECT_SELF; + if (GetIsPC(oPlayer)) + { + if (GetIsObjectValid(oChair) && !GetIsObjectValid (GetSittingCreature(oChair))) + { + AssignCommand(oPlayer, ActionSit(oChair)); + AssignCommand(oPlayer, SetFacing(fFacing)); + } + } +} diff --git a/gamma_age_v2/habd_bandages.uti b/gamma_age_v2/habd_bandages.uti new file mode 100644 index 00000000..d75e2edf Binary files /dev/null and b/gamma_age_v2/habd_bandages.uti differ diff --git a/gamma_age_v2/habd_deathbag.utp b/gamma_age_v2/habd_deathbag.utp new file mode 100644 index 00000000..c0993467 Binary files /dev/null and b/gamma_age_v2/habd_deathbag.utp differ diff --git a/gamma_age_v2/habd_deathtoken.uti b/gamma_age_v2/habd_deathtoken.uti new file mode 100644 index 00000000..34628cf2 Binary files /dev/null and b/gamma_age_v2/habd_deathtoken.uti differ diff --git a/gamma_age_v2/habd_dmdeath.uti b/gamma_age_v2/habd_dmdeath.uti new file mode 100644 index 00000000..e4c9a77e Binary files /dev/null and b/gamma_age_v2/habd_dmdeath.uti differ diff --git a/gamma_age_v2/habd_dmtoken.uti b/gamma_age_v2/habd_dmtoken.uti new file mode 100644 index 00000000..e37958d0 Binary files /dev/null and b/gamma_age_v2/habd_dmtoken.uti differ diff --git a/gamma_age_v2/habd_include.ncs b/gamma_age_v2/habd_include.ncs new file mode 100644 index 00000000..4e2a7e2e Binary files /dev/null and b/gamma_age_v2/habd_include.ncs differ diff --git a/gamma_age_v2/habd_include.nss b/gamma_age_v2/habd_include.nss new file mode 100644 index 00000000..26221719 --- /dev/null +++ b/gamma_age_v2/habd_include.nss @@ -0,0 +1,1709 @@ +// Hemophiliacs Always Bleed to Death v0_03 +// By Demtrious and OldManWhistler +// +// This file contains: +// - description +// - installation information +// - configuration settings +// - global constants +// - common functions + +/* +INTRODUCTION + +From the same fools who brought you PHB Familiars and UMD by the book, Supply Based +Resting, Party Loot Notification, Permanent Area Effect Spells, Speed Override, +Take Cover (PHB environment AC) and PHB Movement Skills (Balance, Climb, Jump, +Swim, Escape Artist). + +The main intent of this system is that players never instantly die. Player death +will always be caused by player action -- because help didn't reach them in time +and never because of a bad roll of the dice. They will always go through bleeding +before reaching death. There are stabilization checks (10% chance) and bandages +can bring you back to life on a DC 15 heal skill check as per PHB, except that +when stabilized you instantly go to 1 HP. + +One of the unfortunate side effect of playing a real-time game rather than a +turn-based game is that it can be very difficult to react to a player bleeding +in a timely matter. In turn-based play, your party members would know that you +are bleeding and be able to react within one or two round. This system seeks to +restore the ability for your party members to be aware and react. + +With the default settings of this system it should be very rare for low level +players to die if they have party members with them for support. Once they reach +higher levels and have the means to afford Resurrection and Raise Dead then the +time to bleed to death decreases. The intention is to make death a rare +occurrence. After all, with all those local clerics tossing out rez like candy, +its any wonder there's still undead around left to fight. + +The bleed/death system is intended for multiplayer use but CAN be used in solo +play. The respawn system is intended for multiplayer use only but can be used +for single party if the auto-raise feature is enabled. The auto-raise feature +can be configured to use up scrolls. The respawn system can be disabled or +easily replaced with a different system. + +This system was originally built with single-party DMed play in mind, but it +should be able to scale to ANY kind of play. This is the Swiss Army knife of +death systems. The same bleeding/death/respawn system can be used for henchmen +AS WELL as players, removing additional complexity from your module. + +If you want to want to support solo play with this script, then enable the fast +bleed option and set the solo auto-raise option to a very low value. That way +when a player bleeds/dies in solo play they do not have to wait long for help +that will never come. + +THANKS +- HCR team, at one time or another we must have stolen some of your ideas. +- Lazybones for coming up with a name for the system. +- Typhonius, DickNervous, Feds, Ochobee and Blewz for help with the initial play-testing. + +Apologies to anyone who is suffering, or knows someone who suffers with a +hereditary blood-coagulation disorder and takes offense at the name. We thought +it was a rather witty name for a system where players must always go through +bleeding before dying. No offense was intended. + +OTHER WORKS BY SAME AUTHORS + +Demetrious' Portfolio +http://nwvault.ign.com/portfolios/data/1055729301.shtml + +OldManWhistler's Portfolio +http://nwvault.ign.com/portfolios/data/1054937958.shtml +FEATURES + +IMPLEMENTATION NOTES + +- 4 scripts, 3 player items, 2 DM items, 1 placeable. The only NWN content +modified is Raise Dead and Resurrection spells, and the henchmen death scripts +should be modified if you want to enable henchman bleeding/respawn as ghost. +- It uses DelayCommand events scheduled on the players instead of heartbeats. +It only uses CPU cycles when players are bleeding, dying, dead, respawned or +entering/leaving the module. This removes the overhead of searching through the +player list on the heartbeat. +- Delayed commands are rescheduled at the start of a chain to prevent stalled +states when the CPU is overloaded and events start getting dropped. +- DelayCommand is *NOT* a recursive function, so there is no worry about CPU +performance hits. +- All settings are CONST variables that are evaluated at compile time to speed up execution. +- Henchmen only bleed/respawn if they have a master. Potions can be used on +bleeding henchmen as well as any of the normal means of healing another creature. +Henchmen bleeding is implemented by "faking" to 0 to -9 HP bleed with 10 to 0 HP. +FEATURES NOT IMPLEMENTED +- We considered having an option for limiting raising and resurrecting to same +party only (to prevent death penalty griefers) but you cannot invite dead players +to your party so we decided against that. +- We considered storing player location persistently, but all persistent location +systems I have seen require some kind of workaround to store the player location +over a module reset (most common being an additional script in the exit event of +every area). We figured it was better to leave such complexity out of this system +and let the end user choose the persistent location system that is right for their +needs. +- We do not include any kind of bind stone system. But our respawn system can +easily be removed (changing one line in the configuration) so that you can +replace it with the respawn system of your choice. +- Dropped items are not automatically picked up. Dropping large inventories is +laggy enough without adding additional processing. +- There is no ability to change the settings while the module is running. This +is because all the settings are constants to speed up execution. +- It is not possible to make familiars or animal companions bleed because there +is no scripting command for making them rejoin the party as a familiar/companion. +ITEMS: +- All items are stored under Custom5 in the palette or Chooser. +- Automatically given out to players who do not possess them on log in. +- All items have no weight, are worth no money and cannot be sold. +- Items cannot be transferred to other players or dropped. +- There is a Skull item that displays the player's bleed/death/lost XP/lost GP +statistics. +- There is a Bandages item that can stabilize a bleeding player on a DC 15 heal +check or make a respawned ghost follow the player using the bandages. +- There is a Rulebook item that displays how this system is configured for the +module. It displays the penalties as they would currently apply to the PC reading the book. +- There is a DM statistic item that can display the bleed/death/lost XP/lost GP +statistics for an entire party. +- There is a DM force death item that can instant kill players/henchmen without +putting them through the bleeding state. You can tie this in with the prevent +death feature to make death only happen when the DM decides it should. + +BLEEDING: +- Works for players as well as henchmen. +- 10% chance of self-stabilization to 1 HP. +- If going from living to -6 or lower you will be capped at -5 to give you a +good chance to be saved. +- If going from living to dead you will be set to -6 to -9 HP instead of dying. +- Free DC15 heal check bandages can be used to stabilize other players to 1 HP. +- Any healing will stabilize another player. +- Casting raise/rez on a bleeding player stabilizes them to 1 HP or more. (It is +a waste of a spell, but it works). +- Immune to damage while bleeding. You have to bleed to death. +- Regeneration items always stabilize players and keep them from ever dying. +(Defaults to leaving regeneration items on the player) +- Bleeding players are temporarily made invisible to make monsters change targets. +- Players can be made invisible for a configurable amount of time after bleeding +to give them a chance to heal or run away (default is 12 seconds). +- Possessed familiars die instead of bleeding. +- First bleed message tells the total time until death. +- Nearby party members are notified of the bleeding player every round, even +number of rounds between bleeding is greater than one. +- All DMs are notified of when players are bleeding/dying. (default on) +- Number of rounds between bleeding is based off of player level. (defaults to +giving low levels a long time between bleeding to reduce the chance of dying +since they can't afford Raise/Rez) +- Fast 1sec bleed when playing solo without a party. (default off) +- There is an option for preventing player death until they reach a certain +level. (default is 4). The DM Force Instant Death widget can bypass this setting. + +DEATH: +- Force auto-respawn after being dead for a specified time. (default 3 min) +- Force auto-raise after being dead or respawned for a specific time. (default off) +- Auto-raise can be configured to only work if the player possesses raise dead / +resurrection scrolls that are consumed in the process. If this is enabled then +the dying can never cause raise dead/resurrection scrolls to be dropped or destroyed. (default off) +- Additional force auto-raise timer for solo players only. (default off) +- Henchmen have their own separate auto-respawn and auto-raise timers. +- DMs can bring dead players back to life with no penalty by using a DM heal. + +HENCHMEN BLEEDING AND DEATH: +- The same bleeding/death/respawn system can be used for henchmen by modifying +your henchmen OnDeath scripts. Requires two additional lines to your henchmen +scripts and should be compatible with all henchmen AI provided that they use the +NW_ASC_BUSY condition properly. +- Henchmen support does not require any other modifications. + +PENALTIES: +- Separate % GP/XP penalties for respawn, raise dead and resurrection. +- XP penalty can be configured to prevent level loss (default no level loss). +- GP penalty can be configured to have a maximum amount to take (default 10,000gp max). +- If dropping/destruction of all gold is enable, then no gold will be lost to the +penalty (since the player drops the items before the penalty is applied). +- There is no penalty for henchmen bleed/death. +- User defined functions called at bleed, respawn, raise and rez that can be +used to apply other penalties without having to go deep into the internals of our code. + +ITEM DROPPING ON DEATH: +- Item dropping on player death can be configured as any combination of the +following options. Any options can be configured to do nothing (0), drop item (1) +or destroy item (2). The conditions are evaluated in an order of precedence. + - Drop nothing. (default) + - Drop all gold. (this will avoid any GP penalties since gold is dropped before + penalty applied) + - Drop equipped left-hand/right-hand items. + - Drop a random equipped item. + - Drop the most expensive equipped item. + - Drop all equipped items. + - Drop Raise Dead / Resurrection scrolls. + - Drop a random backpack item. + - Drop the most expensive backpack item. + - Drop all backpack items. +- Dropped items are NOT automatically re-equipped or picked up. +- If players forget to pick up items they dropped, they are automatically +reminded every 30 seconds. +- The placeable created to store dropped items is automatically destroyed when it empties. +- If all of the drop settings are disabled then the placeable is not created. +- There is an option to destroy dropped items rather than store them in a placeable. + +PERSISTENCE: +- Persistence can be disabled with a flag. (default enabled) +- Persistence only works with a multiplayer server. It has no effect in single +player (no OnClientLeave event in single player) +- Statistics to keep track of how many times the player has bled/died in total, +how many times since the server was restarted, and how much gold/XP the player +has lost in total from penalties. +- Persistent DB functions for storing bleed/death/respawn state. +- Auto-respawn and auto-raise timers are stored persistently at various increments. +- Players remain in the same state over module restarts, even with local vault +characters. +- Persistent data is stored with one DB write at OnClientLeave and one DB read +at OnClientEnter. It is very fast with minimal DB size (less than 1kb per player record). +- When bleed/death/respawn is restored at player log in, it does not reapply the +penalties or falsely increment the statistics. + +RESPAWN: +- Can be used with other respawn systems (default uses our system) +- Option to disable death GUI to remove respawn. (Default GUI enabled) +- Option to disable respawn button but leave death GUI (Default respawn button enabled) +- Additional system to respawn as a ghost with no player control. (default enabled) +- Using bandages on respawned ghost makes them follow you if you are in the same +party (simulates carrying a corpse). +- Living players can barter with respawned ghosts (simulates search the players +corpse for scrolls, except corpse has a say in what is taken). +- Respawned ghosts cannot be DM moved by shift-click. +- Respawned ghosts cannot be recovered in single player by using the dm_heal console +command. So the respawn state could be used as permanent death in a single player +game by setting the auto-respawn timer to 0.1. +- Casting raise or rez brings respawn ghost back to life, but applies raise/rez +penalty on top of respawn penalty. +- DMs can bring the "ghosted" PC back to life by toggling invulnerability (no +penalty). Casting raise or rez also works, but DM heal does not. + +*/ + + +// **************************************************************************** +// INSTALLATION +// **************************************************************************** + +/* +// If you are unsure of which scripts are currently associated with your module +event, go to your +// Module Properties and click on the Events tab. + +// #1: Change your Module OnPlayerDying script to "habd_onpcdying". + +// #2: Change your Module OnPlayerDeath script to "habd_onpcdeath". + +// #3: (Optional) Change your Module OnPlayerRespawn script to "habd_onpcrespawn". If you wish +// to use a different respawn system then make sure the HABD_RESPAWN_SCRIPT variable in +// "habd_include" is set to the script you want to use. + +// #4: Add the following line to your module OnActivateItem, OnClientEnter, +// OnClientLeave, OnUnAcquiredItem, nw_s0_raisdead, nw_s0_resserec scripts: +#include "habd_include" + +// #5: Add the following line to your module OnActivateItem script: +if (HABDOnActivateItem(GetItemActivator(), GetItemActivatedTarget(), GetItemActivated())) +return; + +// #6: Add the following lines to your module OnClientEnter script: +HABDGetDBOnClientEnter(GetEnteringObject()); +DelayCommand(6.0, HABDItemsOnClientEnter(GetEnteringObject())); + +// #7: Add the following line to your module OnClientLeave script: +HABDSetDBOnClientLeave(GetName(GetExitingObject())); + +// #8: Add the following line to your module OnUnAcquiredItem script: +if (HABDOnUnAcquiredItem(GetModuleItemLostBy(), GetModuleItemLost())) return; + +// #9&10 automatic: Imported the habd_nw_1_31.erf file to replace your nw_s0_raisdead +// and nw_s0_resserec scripts with SoU 1.31 compliant ones. + +// #9 manual: Open nw_s0_raisdead. It should look like: +if(GetIsDead(oTarget)) +{ +//Apply raise dead effect and VFX impact +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, GetLocation(oTarget)); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eRaise, oTarget); +// HABD CODE START +// Apply the user defined effects. +HABDApplyPenaltyIfDead(oTarget, SPELL_RAISE_DEAD); +// HABD CODE END +} +// HABD CODE START +HABDCureRespawnGhost(oTarget, SPELL_RAISE_DEAD); +// HABD CODE END + +// #10 manual: Open nw_s0_resserec. It should look like: +if (GetIsDead(oTarget)) +{ +//Declare major variables +int nHealed = GetMaxHitPoints(oTarget); +effect eRaise = EffectResurrection(); +effect eHeal = EffectHeal(nHealed + 10); +effect eVis = EffectVisualEffect(VFX_IMP_RAISE_DEAD); +//Apply the heal, raise dead and VFX impact effect +ApplyEffectToObject(DURATION_TYPE_INSTANT, eRaise, oTarget); +ApplyEffectToObject(DURATION_TYPE_INSTANT, eHeal, oTarget); +ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, GetLocation(oTarget)); +// HABD CODE START +HABDApplyPenaltyIfDead(oTarget, SPELL_RESURRECTION); +// HABD CODE END +} +// HABD CODE START +HABDCureRespawnGhost(oTarget, SPELL_RESURRECTION); +// HABD CODE END + +// #11.1: Optional, for bleeding/respawning henchmen open up your henchmen OnDeath event scripts (ie: nw_ch_ac7) and add the following line to the top: +#include "habd_include" +// #11.2: Add the following line as the first line inside of the main function. +void main() +{ + // HABD CODE START + if (HABDMakeHenchmanBleed()) return; + // HABD CODE END + +// #12: Open up "habd_include" and go to the configuration modification section. +// Change the configuration as it suits your needs. Make sure to save the include +// file and recompile your module to ensure that the settings take effect. + +See PDF file for additional information. +*/ + + +// **************************************************************************** +// CONFIGURATION - MODIFY THIS SECTION +// **************************************************************************** + +// BLEEDING SETTINGS +// +// HABD_SOLO_FAST_BLEED +// If set to TRUE, then players without a party go through the bleeding stage +// VERY fast. This is useful for single player modules or when people are +// playing solo in a multiplayer module. They will still have the stabilization +// chances from bleeding to death without having to wait such a long time to die. +// +// HABD_NERF_REGENERATION_ITEMS +// Regeneration items will cause the player to never bleed to death. This is +// how AD&D intended them to work. Unfortunately that also means that characters +// with regeneration items will never die with this bleeding system. This is why +// regeneration items should be very rare, yet few people set up their campaigns +// that way. +// If you set this variable to TRUE, it will enable a workaround that unequips +// regeneration items when the player starts bleeding. +// +// HABD_NO_DEATH_BEFORE_LEVEL +// This will turn death off until the players have reached a certain level. +// Players are NEVER notified that this setting is turned on (to prevent abuses). +// From the player's perspective it will always look like they are stabilizing. +// +// HABD_POST_BLEED_INVIS_DUR +// Setting this value greater than 0.0 will give players invisibility for the +// specified period of time after they recover from bleeding. This is to give +// them a chance to heal or run away. +// +// HABD_ROUNDS_PER_BLEED_* +// These variables are used to set how many rounds it takes to bleed -1 HP +// based on the player level. If you set the value to 0, the player will +// instantly bleed to death. Do not set to a negative value. + +const int HABD_SOLO_FAST_BLEED = TRUE; +const int HABD_NERF_REGENERATION_ITEMS = FALSE; +const int HABD_NO_DEATH_UNTIL_LEVEL = 0; +const float HABD_POST_BLEED_INVIS_DUR = 12.0; +const int HABD_ROUNDS_PER_BLEED_01 = 3; +const int HABD_ROUNDS_PER_BLEED_02 = 3; +const int HABD_ROUNDS_PER_BLEED_03 = 3; +const int HABD_ROUNDS_PER_BLEED_04 = 3; +const int HABD_ROUNDS_PER_BLEED_05 = 3; +const int HABD_ROUNDS_PER_BLEED_06 = 3; +const int HABD_ROUNDS_PER_BLEED_07 = 3; +const int HABD_ROUNDS_PER_BLEED_08 = 3; +const int HABD_ROUNDS_PER_BLEED_09 = 3; +const int HABD_ROUNDS_PER_BLEED_10 = 3; +const int HABD_ROUNDS_PER_BLEED_11 = 2; +const int HABD_ROUNDS_PER_BLEED_12 = 2; +const int HABD_ROUNDS_PER_BLEED_13 = 2; +const int HABD_ROUNDS_PER_BLEED_14 = 2; +const int HABD_ROUNDS_PER_BLEED_15 = 2; +const int HABD_ROUNDS_PER_BLEED_16 = 1; +const int HABD_ROUNDS_PER_BLEED_17 = 1; +const int HABD_ROUNDS_PER_BLEED_18 = 1; +const int HABD_ROUNDS_PER_BLEED_19 = 1; +const int HABD_ROUNDS_PER_BLEED_20 = 1; +// When Epic Levels are added in HoTU +const int HABD_ROUNDS_PER_BLEED_21 = 1; +const int HABD_ROUNDS_PER_BLEED_22 = 1; +const int HABD_ROUNDS_PER_BLEED_23 = 1; +const int HABD_ROUNDS_PER_BLEED_24 = 1; +const int HABD_ROUNDS_PER_BLEED_25 = 1; +const int HABD_ROUNDS_PER_BLEED_26 = 1; +const int HABD_ROUNDS_PER_BLEED_27 = 1; +const int HABD_ROUNDS_PER_BLEED_28 = 1; +const int HABD_ROUNDS_PER_BLEED_29 = 1; +const int HABD_ROUNDS_PER_BLEED_30 = 1; +const int HABD_ROUNDS_PER_BLEED_31 = 1; +const int HABD_ROUNDS_PER_BLEED_32 = 1; +const int HABD_ROUNDS_PER_BLEED_33 = 1; +const int HABD_ROUNDS_PER_BLEED_34 = 1; +const int HABD_ROUNDS_PER_BLEED_35 = 1; +const int HABD_ROUNDS_PER_BLEED_36 = 1; +const int HABD_ROUNDS_PER_BLEED_37 = 1; +const int HABD_ROUNDS_PER_BLEED_38 = 1; +const int HABD_ROUNDS_PER_BLEED_39 = 1; +const int HABD_ROUNDS_PER_BLEED_40 = 1; + + +// DM NOTIFICATION SETTINGS +// +// HABD_DM_NOTIFICATION_ON_BLEED +// If TRUE, it will SendMessageToAllDMs when a player bleeds. +// This can generate a lot of spam on the DM channel. It is only intended for +// use with single party games. +// +// HABD_DM_NOTIFICATION_ON_DEATH +// If TRUE, it will SendMessageToAllDMs when a player dies. +// +// HABD_DM_NOTIFICATION_ON_PENALTY +// If TRUE, it will SendMessageToAllDMs when a gets an XP/GP penalty from respawn/raise/rez. +// +// HABD_DM_DISPLAY_STATS_TO_ALL +// If TRUE, using the DM statistics item will display the statistics to all DMs. +// If FALSE, it will display only to the DM using the item. +// Setting it to TRUE is useful when you want to capture such info into your +// DM Client log file. +const int HABD_DM_NOTIFICATION_ON_BLEED = TRUE; +const int HABD_DM_NOTIFICATION_ON_DEATH = TRUE; +const int HABD_DM_NOTIFICATION_ON_PENALTY = TRUE; +const int HABD_DM_DISPLAY_STATS_TO_ALL = TRUE; + +// TIMER SETTINGS +// +// All timers start counting from the moment the player dies. +// +// HABD_FORCE_RESPAWN_TIMER (AUTO-RESPAWN) +// HABD_NPC_FORCE_RESPAWN_TIMER (AUTO-RESPAWN) +// Set this to a value greater than 0.0 to force respawn after a certain amount +// of time has lapsed. If players remain lying dead for long enough, they will +// be forced to respawn. Auto-respawn timer must be less than the auto-raise timer +// if the auto-raise timer is enabled. +// +// HABD_FORCE_RAISE_TIMER (AUTO-RAISE) +// HABD_NPC_FORCE_RAISE_TIMER (AUTO-RAISE) +// Set this to a value greater than 0.0 to force raise after a certain amount +// of time has lapsed after death. If players remain lying dead or respawned +// for long enough, they will be forced raised. Autorepawn timer must be +// less than the autoraise timer if the autoraise timer is enabled. +// +// HABD_SOLO_FORCE_RAISE_TIMER (AUTO-RAISE FOR SOLO ONLY +// Set this to a value greater than 0.0 to force raise solo players after a +// certain amount of time has lapsed after death. If the player remain lying +// dead or respawned for long enough, they will be forced to respawn. +// +// HABD_FORCE_RAISE_USES_SCROLLS +// Set this value to TRUE to have force raise consume scrolls. If the player or +// henchmen does not possess any standard raise/rez scrolls then they will not +// be force raised. Note: this will keep raise/rez scrolls from being +// dropped on player death. +const float HABD_FORCE_RESPAWN_TIMER = 0.0; +const float HABD_FORCE_RAISE_TIMER = 0.0; +const float HABD_SOLO_FORCE_RAISE_TIMER = 0.0; +const float HABD_NPC_FORCE_RESPAWN_TIMER = 0.0; +const float HABD_NPC_FORCE_RAISE_TIMER = 0.0; +const int HABD_FORCE_RAISE_USES_SCROLLS = FALSE; + +// PERSISTENCE SETTINGS +// +// HADB_DB_PERSISTENT +// If set to FALSE, persistent data won't be stored. If you are making a single +// player module, the persistent data won't be stored anyways because the +// OnClientLeave event shuts down the module before it writes to the database. +// +// HABD_DB_NAME +// The name of the database to store the persistent information. If you leave it +// with the default value then the same DB will be used for all modules you run. +// If you want to use different databases for different modules then change the +// name. +const int HADB_DB_PERSISTENT = TRUE; +const string HABD_DB_NAME = "HABD_MOD_DB"; + + +// PENALTY SETTINGS +// +// Set values for the respawn/raise/rez penalties. +// The value is a percentage of the total XP to get to the next level or +// the total GP coinage the player possesses. Set a value of 0 if you do not +// want a penalty. Set a value of 100 if you want the player to lose a level or +// to lose all of their GPs. +// If HABD_DROP_GOLD is set to TRUE, then the gold penalties won't do anything +// because gold is dropped before the penalties are applied. +// +// HABD_RESPAWN_*_LOSS +// Penalty for respawning. +// +// HABD_RAISE_*_LOSS +// Penalty for being raised from the dead. +// +// HABD_REZ_*_LOSS +// Penalty for being resurrected. +// +// HABD_NO_LEVEL_LOSS_FROM_XP_PENALTY +// Set this to FALSE to allow XP penalty to cause level loss. If set to TRUE +// then the penalties can cause a player to lose a level. +// +// HABD_MAX_GP_LOSS_FROM_GP_PENALTY +// Set this to a value greater than 0 to set a maximum GP loss. Regardless of +// the percentage penalty they will will only lose a maximum of that amount. +const int HABD_RESPAWN_XP_LOSS = 100; +const int HABD_RESPAWN_GP_LOSS = 0; +const int HABD_RAISE_XP_LOSS = 10; +const int HABD_RAISE_GP_LOSS = 0; +const int HABD_REZ_XP_LOSS = 5; +const int HABD_REZ_GP_LOSS = 0; +const int HABD_NO_LEVEL_LOSS_FROM_XP_PENALTY = FALSE; +const int HABD_MAX_GP_LOSS_FROM_GP_PENALTY = 10000; + +// ITEM DROP ON DEATH SETTINGS +// +// Set these constants to 1 if you would like to drop specific things at +// time of death. Set the constant to 2 if you would like to have the dropped item destroyed. +// Plot items are NEVER dropped or destroyed. The is an order of prescendence to the +// operations. +// +// Dropped items are NOT automatically repossessed when the player returns +// to life. This is to reduce lag. The placeable that stores the dropped items +// with automatically notify the player if it still contains items and +// self-destructs when it is empty of items. +// +// HABD_DROP_GOLD +// Drop or destroy all gold the player possesses. This happens before any penalties are +// applied, so the GP penalties will not do anything if this is enabled. +// +// HABD_DROP_WEAPON_SHIELD +// Drop or destroy the items equipped in the left and right hand slots. +// +// HABD_DROP_RANDOM_EQUIPPED +// Drop or destroy a random item from the players inventory on death. +// +// HABD_DROP_MOST_EXPENSIVE_EQUIPPED +// Drop or destroy the most expensive item the player has. +// +// HABD_DROP_EQUIPPED +// Drop or destroy all equipped items (including left and right hand slots). +// This setting overrides HABD_DROP_WEAPON_SHIELD. +// +// HABD_DROP_RAISE_REZ +// Drop or destroy any Raise Dead or Resurrection scrolls in the backpack. +// +// HABD_DROP_RANDOM_BACKPACK +// Drop or destroy a random item from the players inventory on death. +// +// HABD_DROP_MOST_EXPENSIVE_BACKPACK +// Drop or destroy the most expensive item the player has. +// +// HABD_DROP_BACKPACK +// Drop or destroy any items in the backpack (including Raise Dead / Resurrection) +// This setting overrides HABD_DROP_RAISE_REZ. +// +// 0 - off +// 1 - drop +// 2 - destroy +const int HABD_DROP_GOLD = 0; +const int HABD_DROP_WEAPON_SHIELD = 0; +const int HABD_DROP_RANDOM_EQUIPPED = 0; +const int HABD_DROP_MOST_EXPENSIVE_EQUIPPED = 0; +const int HABD_DROP_EQUIPPED = 1; +const int HABD_DROP_RAISE_REZ = 0; +const int HABD_DROP_RANDOM_BACKPACK = 0; +const int HABD_DROP_MOST_EXPENSIVE_BACKPACK = 0; +const int HABD_DROP_BACKPACK = 1; + + +// RESPAWN SETTINGS: +// +// HABD_RESPAWN_SCRIPT +// This is the script called when respawn is forced. It should be the same +// script as in your module OnPlayerRespawn script. Change this value if you +// want to use the auto-respawn feature with a different respawn system. +// +// HABD_RESPAWN_ALLOWED +// Set this to FALSE to turn off the death GUI. Players will lie there dead +// until someone raises them. +// +// HABD_INSTANT_RESPAWN_ALLOWED +// Set this to FALSE to turn off the respawn option in death GUI (if the death +// GUI is enabled). +// +// HABD_HENCHMEN_GHOST_RESPAWN +// Set this to TRUE to allow henchmen to respawn as ghosts the same way players +// do. If set to FALSE, it will perform the default henchmen death code of +// whatever henchmen AI you are using. +const string HABD_RESPAWN_SCRIPT = "habd_onpcrespawn"; +const int HABD_RESPAWN_ALLOWED = FALSE; +const int HABD_INSTANT_RESPAWN_ALLOWED = FALSE; +const int HABD_HENCHMEN_GHOST_RESPAWN = FALSE; + +// USER DEFINED FUNCTIONS: +// Modify these following functions to add additional status penalties, hooks +// into other systems, or whatever you want. They will be called on the Bleed, +// Respawn, Raise and Resurrection events. IMPORTANT: Do not give CON penalties +// on any events which would have the player at 1 HP (bleeding or raise) because +// you will just make them start bleeding again if their CON goes to a negative +// value. +// +// HABD_USERDEFINED_*_DESC +// If these strings have a value, then the information will be sent to the +// player when the event happens. This description will also be displayed in the +// death rulebook. +// +// HABDUserDefinedBleed() - Called after a player starts bleeding. +// HABDUserDefinedRespawn() - Called after a player respawns with the HABD +// respawn system. Not called with other respawn systems. +// HABDUserDefinedRaise() - Called when the Raise Dead spell is cast on a dead +// or respawned player. +// HABDUserDefinedResurrection() - Called when the Resurrection spell is cast on +// a dead or respawned player. +string HABD_USERDEFINED_BLEED_DESC = ""; +void HABDUserDefinedBleed() +{ + if (HABD_USERDEFINED_BLEED_DESC != "") SendMessageToPC(OBJECT_SELF, "HABD_BLEED: "+HABD_USERDEFINED_BLEED_DESC); +// Do not give the player a CON penalty (by stat penalty or curse effect) after +// stabilizing from bleed since they will only have 1 HP and it will most likely +// just start them bleeding again. +} + +string HABD_USERDEFINED_RESPAWN_DESC = ""; +void HABDUserDefinedRespawn() +{ + if (HABD_USERDEFINED_RESPAWN_DESC != "") SendMessageToPC(OBJECT_SELF, "HABD_RESPAWN: "+HABD_USERDEFINED_RESPAWN_DESC); +// You may have to toggle the plot flag in order to apply negative effects +// depending on whether or not the negative effect would be prevented by the +// the plot flag. +// int iPlotFlag = GetPlotFlag(OBJECT_SELF); +// SetPlotFlag(OBJECT_SELF, FALSE); + // Apply status effects here +// SetPlotFlag(OBJECT_SELF, iPlotFlag); +} + +string HABD_USERDEFINED_RAISE_DESC = ""; +void HABDUserDefinedRaise() +{ + if (HABD_USERDEFINED_RAISE_DESC != "") SendMessageToPC(OBJECT_SELF, "HABD_RAISE: "+HABD_USERDEFINED_RAISE_DESC); +// Do not give the player a CON penalty (by stat penalty or curse effect) after +// they are raised since they will only have 1 HP and it will most likely +// just start them bleeding again. +} + +string HABD_USERDEFINED_RESURRECTION_DESC = ""; +void HABDUserDefinedResurrection() +{ + if (HABD_USERDEFINED_RESURRECTION_DESC != "") SendMessageToPC(OBJECT_SELF, "HABD_RESURRECTION: "+HABD_USERDEFINED_RESURRECTION_DESC); +} + +// END OF CONFIGURATION + +// **************************************************************************** +// GLOBALS - DO NOT MODIFY +// **************************************************************************** + +// Item tags. We use constants for the item tags to prevent typos. +const string HABD_ITEM_TOKEN = "habd_deathtoken"; +const string HABD_ITEM_BANDAGES = "habd_bandages"; +const string HABD_ITEM_RULES = "habd_rules"; +const string HABD_ITEM_DM_TOKEN = "habd_dmtoken"; +const string HABD_ITEM_DM_DEATH = "habd_dmdeath"; + +// Placeable to store dropped items in. +const string HABD_PLACEABLE_BAG = "habd_deathbag"; +// How often the bag will check to see if it is empty before destroying itself. +const float HABD_BAG_SELF_DESTRUCT_TIMER = 30.0; +// List of all resurrection/raise dead scrolls +const string HABD_SCROLL_TAGS = ":NW_IT_SPDVSCR501:NW_IT_SPSCROL139:NW_IT_SPSCROL141:NW_IT_SPDVSCR702:"; + +// Player States. These values must all be unique. +const int HABD_STATE_PLAYER_ALIVE = 0; +const int HABD_STATE_PLAYER_BLEEDING = 1; +const int HABD_STATE_RESPAWNED_GHOST = 2; +const int HABD_STATE_PLAYER_DEAD = 3; +const int HABD_STATE_PLAYER_INSTANT_DEATH = 4; + +// Campaign database variable. The persistent information will be stored in the +// database with a 32 character variable name that consists of this variable + +// player's public CD key + character name. We use unique variable names per +// character rather than the built-in unique oPC parameter because oPC is not +// valid in the OnClientLeave event where we store the database. +const string HABD_PERSIST_NAME = ""; + +// Module level local variables. + +// Player HP while bleeding. +const string HABD_LAST_HP = "HABDLastHP"; +// Player state. +const string HABD_PLAYER_STATE = "HABDPCState"; +// Number of times player bled. +const string HABD_BLEED_COUNT = "HABDBleedCnt"; +// Number of times player died. +const string HABD_DEATH_COUNT = "HABDDeathCnt"; +// Amount of XP lost from the penalties. +const string HABD_LOST_XP_COUNT = "HABDLostXPCnt"; +// Amount of GP lost from the penalties. +const string HABD_LOST_GP_COUNT = "HABDLostGPCnt"; +// Number of times player bled since module load. +const string HABD_CURRENT_BLEED_COUNT = "HABDCBleedCnt"; +// Number of times player died since module load. +const string HABD_CURRENT_DEATH_COUNT = "HABDCDeathCnt"; +// Amount of XP lost from the penalties since module load. +const string HABD_CURRENT_LOST_XP_COUNT = "HABDCLostXPCnt"; +// Amount of GP lost from the penalties since module load. +const string HABD_CURRENT_LOST_GP_COUNT = "HABDCLostGPCnt"; +// 1 if the player was forced to respawn from DB (so that penalty isn't reapplied). +const string HABD_FORCED_RESPAWN = "HABDFRespawn"; +// Used to store a local array of the items the player was forced to unequipped +// because the item had the regeneration property. +const string HABD_UNEQUIPED_ITEMS = "HABDUneqdItems"; +// Used to track the object the respawned ghost is made to follow. +const string HABD_GHOST_AUTOFOLLOW = "HABDAutofollow"; +// Used to prevent updating the statistics when the states are reapplied from the DB. +const string HABD_PERSISTANT_REAPPLY = "HABDPReapply"; +// Used to store the player's CD key in the OnClientEnter event. +const string HABD_PERSISTANT_ID = "HABDPCID"; +// Used to store the player's respawn timer. +const string HABD_RESPAWN_TIMER = "HABDPRespawnT"; +// Used to store the player's raise timer. +const string HABD_RAISE_TIMER = "HABDPRaiseT"; +// Used to store the player's old relationship with Hostile faction. +const string HABD_OLD_FACTION = "HABDOldF"; +// Used to store the player's old relationship with Hostile faction. +const string HABD_OLD_FACTION_SET = "HABDOldFSet"; +// Who owns the items in the loot bag? +const string HABD_BAG_OWNER = "HABDBagOwn"; +// Is bleed notification already running? +const string HABD_REPORT_BLEED_RUNNING = "HABDBleedRep"; +// Is this a non-PC bleeding? +const string HABD_NPC_BLEED = "HABDNPCB"; +// Temporarily store the NPCs master +const string HABD_NPC_MASTER = "HABDNPCM"; +// Store the scroll that will be used to bring the player back if +// HABD_FORCE_RAISE_USES_SCROLLS is set to TRUE. +const string HABD_STORED_SCROLL = "HABDSRez"; + +// Turns on developer debugging information. Should not be used. +const int HABD_DEBUG = FALSE; + +// The name and version of this script. +const string HABD_VERSION = "Hemophiliacs Always Bleed to Death v0.03 ALPHA"; + +// **************************************************************************** +// COMMON FUNCTIONS +// **************************************************************************** + +string HABDGetPlayerStateName (object oPC) +{ + int iState = GetLocalInt(GetModule(), HABD_PLAYER_STATE+GetPCPlayerName(oPC)+GetName(oPC)); + switch(iState) + { + case HABD_STATE_PLAYER_ALIVE: return "alive"; + case HABD_STATE_PLAYER_BLEEDING: return "bleeding to death"; + case HABD_STATE_RESPAWNED_GHOST: return "respawned as a ghost"; + case HABD_STATE_PLAYER_DEAD: return "dead"; + case HABD_STATE_PLAYER_INSTANT_DEATH: return "instant death"; + } + return "Unknown State "+IntToString(iState); +} + +// **************************************************************************** + +// Applies XP/GP penalty to the player. Increments global statistics. +// oPC - the player to apply the penalty to. +// iPercXP - percentage of XP to remove (100% = 1 level) +// iPercGP - percentage of GP to remove (100% = all gold) +void HABDApplyPenalty(object oPC, int iPercXP, int iPercGP); + +void HABDApplyPenalty(object oPC, int iPercXP, int iPercGP) +{ + object oMod = GetModule(); + string sID = GetPCPlayerName(oPC)+GetName(oPC); + + // Do nothing if no penalty should be applied. + if ((iPercXP == 0) && (iPercGP == 0) || (!GetIsPC(oPC))) return; + + int nXP = GetXP(oPC); + int nPenalty = iPercXP * 10 * GetHitDice(oPC); //1000 = 100% penalty. + int nHD = GetHitDice(oPC); + int nMin = ((nHD * (nHD - 1)) / 2) * 1000; + + // Should we prevent the player from losing a level? + int nNewXP = nXP - nPenalty; + if (HABD_NO_LEVEL_LOSS_FROM_XP_PENALTY) + { + if (nNewXP < nMin) nNewXP = nMin; + } + // Should we limit the amount of gold taken from the player? + int nGoldToTake = FloatToInt(iPercGP * GetGold(oPC) / 100.0); //0.75 = 75% of players gold + if ( + (HABD_MAX_GP_LOSS_FROM_GP_PENALTY > 0) && + (nGoldToTake > HABD_MAX_GP_LOSS_FROM_GP_PENALTY) + ) + { + nGoldToTake = HABD_MAX_GP_LOSS_FROM_GP_PENALTY; + SendMessageToPC(oPC, "OOC: GP loss has reached maximum cap of "+IntToString(nGoldToTake)+" GP."); + } + // Increment statistics. + SetLocalInt(oMod, HABD_LOST_XP_COUNT+sID, GetLocalInt(oMod, HABD_LOST_XP_COUNT+sID)+nXP-nNewXP); + SetLocalInt(oMod, HABD_LOST_GP_COUNT+sID, GetLocalInt(oMod, HABD_LOST_GP_COUNT+sID)+nGoldToTake); + SetLocalInt(oMod, HABD_CURRENT_LOST_XP_COUNT+sID, GetLocalInt(oMod, HABD_CURRENT_LOST_XP_COUNT+sID)+nXP-nNewXP); + SetLocalInt(oMod, HABD_CURRENT_LOST_GP_COUNT+sID, GetLocalInt(oMod, HABD_CURRENT_LOST_GP_COUNT+sID)+nGoldToTake); + + // Apply XP penalty. + if (nNewXP < nXP) SetXP(oPC, nNewXP); + else + { + SendMessageToPC(oPC, "OOC: XP loss has reached minimum cap to prevent level loss."); + nPenalty = 0; + } + // Apply GP penalty. + AssignCommand(oPC, TakeGoldFromCreature(nGoldToTake, oPC, TRUE)); + // Notification. + string sMsg = "DEATH PENALTY APPLIED: " +GetName(oPC) + " " + IntToString(nPenalty) + " XP ("+IntToString(iPercXP)+"%), " + IntToString(nGoldToTake) + " GP ("+IntToString(iPercGP)+"%)."; + if (HABD_DM_NOTIFICATION_ON_PENALTY) SendMessageToAllDMs(sMsg); + SendMessageToPC(oPC, sMsg); + return; +} + +// **************************************************************************** + +// If the player is bleeding, it will stabilize them with no penalties. If the +// player is dead it will restore them to alive state and apply the penalty +// based on the spell used to restore them. This function does not guard against +// casting on living players because the raise/rez spells already do that. +// oPC - the dead/bleeding player. +// nSpell - SPELL_RAISE_DEAD or SPELL_RESURRECTION +void HABDApplyPenaltyIfDead(object oPC, int nSpell); + +void HABDApplyPenaltyIfDead(object oPC, int nSpell) +{ + object oMod = GetModule(); + string sID = GetPCPlayerName(oPC)+GetName(oPC); + // Check if casting raise/rez on a bleeding player + if (GetLocalInt(oMod, HABD_PLAYER_STATE+sID) == HABD_STATE_PLAYER_BLEEDING) + { + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectHeal(1), oPC); + FloatingTextStringOnCreature("SUCCESS: stabilized "+GetName(oPC)+".", oPC); + return; + } + // Set player back to alive, assumed that the player is NOT in the alive + // state. Otherwise potential exploit of casting on living players to give + // them penalties. + SetLocalInt(oMod, HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_ALIVE); + if (nSpell == SPELL_RAISE_DEAD) + { + HABDApplyPenalty(oPC, HABD_RAISE_XP_LOSS, HABD_RAISE_GP_LOSS); + AssignCommand(oPC, HABDUserDefinedRaise()); + } + if (nSpell == SPELL_RESURRECTION) + { + HABDApplyPenalty(oPC, HABD_REZ_XP_LOSS, HABD_REZ_GP_LOSS); + AssignCommand(oPC, HABDUserDefinedResurrection()); + } +} + +// **************************************************************************** + +// Returns the party size of oPC's party. Party size does not include non-PCs. +int HABDGetPartySize (object oPC); + +int HABDGetPartySize (object oPC) +{ + int i = 0; + object oParty = GetFirstFactionMember(oPC); + while (GetIsObjectValid(oParty)) + { + i++; + oParty = GetNextFactionMember(oPC); + } + return (i); +} + +// **************************************************************************** + +// Returns the time interval in seconds that it takes for a player to bleed +// -1 HP. +// oPC - player to get the bleed duration for. +// iNotify - if TRUE and the player is solo then they will receive a warning +// that they are bleeding to death very fast because they do not +// have a party. +float HABDGetBleedTimer (object oPC, int iNotify = TRUE); + +float HABDGetBleedTimer (object oPC, int iNotify = TRUE) +{ + // Is fast bleeding for solo players enabled? + if (HABD_SOLO_FAST_BLEED) + { + // Is the player solo? + if (HABDGetPartySize(oPC) == 1) + { + // Should we warn them? + if (iNotify == TRUE) SendMessageToPC(oPC, "OOC: Bleeding to death very fast because you do not have a party to save you."); + return (1.0); + } + } + // Get the scaled bleed duration based on the player's level. + int iLevel = GetHitDice(oPC); + int iRounds = 1; + switch (iLevel) + { + case 01: iRounds = HABD_ROUNDS_PER_BLEED_01; break; + case 02: iRounds = HABD_ROUNDS_PER_BLEED_02; break; + case 03: iRounds = HABD_ROUNDS_PER_BLEED_03; break; + case 04: iRounds = HABD_ROUNDS_PER_BLEED_04; break; + case 05: iRounds = HABD_ROUNDS_PER_BLEED_05; break; + case 06: iRounds = HABD_ROUNDS_PER_BLEED_06; break; + case 07: iRounds = HABD_ROUNDS_PER_BLEED_07; break; + case 08: iRounds = HABD_ROUNDS_PER_BLEED_08; break; + case 09: iRounds = HABD_ROUNDS_PER_BLEED_09; break; + case 10: iRounds = HABD_ROUNDS_PER_BLEED_10; break; + case 11: iRounds = HABD_ROUNDS_PER_BLEED_11; break; + case 12: iRounds = HABD_ROUNDS_PER_BLEED_12; break; + case 13: iRounds = HABD_ROUNDS_PER_BLEED_13; break; + case 14: iRounds = HABD_ROUNDS_PER_BLEED_14; break; + case 15: iRounds = HABD_ROUNDS_PER_BLEED_15; break; + case 16: iRounds = HABD_ROUNDS_PER_BLEED_16; break; + case 17: iRounds = HABD_ROUNDS_PER_BLEED_17; break; + case 18: iRounds = HABD_ROUNDS_PER_BLEED_18; break; + case 19: iRounds = HABD_ROUNDS_PER_BLEED_19; break; + case 20: iRounds = HABD_ROUNDS_PER_BLEED_20; break; + case 21: iRounds = HABD_ROUNDS_PER_BLEED_21; break; + case 22: iRounds = HABD_ROUNDS_PER_BLEED_22; break; + case 23: iRounds = HABD_ROUNDS_PER_BLEED_23; break; + case 24: iRounds = HABD_ROUNDS_PER_BLEED_24; break; + case 25: iRounds = HABD_ROUNDS_PER_BLEED_25; break; + case 26: iRounds = HABD_ROUNDS_PER_BLEED_26; break; + case 27: iRounds = HABD_ROUNDS_PER_BLEED_27; break; + case 28: iRounds = HABD_ROUNDS_PER_BLEED_28; break; + case 29: iRounds = HABD_ROUNDS_PER_BLEED_29; break; + case 30: iRounds = HABD_ROUNDS_PER_BLEED_30; break; + case 31: iRounds = HABD_ROUNDS_PER_BLEED_31; break; + case 32: iRounds = HABD_ROUNDS_PER_BLEED_32; break; + case 33: iRounds = HABD_ROUNDS_PER_BLEED_33; break; + case 34: iRounds = HABD_ROUNDS_PER_BLEED_34; break; + case 35: iRounds = HABD_ROUNDS_PER_BLEED_35; break; + case 36: iRounds = HABD_ROUNDS_PER_BLEED_36; break; + case 37: iRounds = HABD_ROUNDS_PER_BLEED_37; break; + case 38: iRounds = HABD_ROUNDS_PER_BLEED_38; break; + case 39: iRounds = HABD_ROUNDS_PER_BLEED_39; break; + case 40: iRounds = HABD_ROUNDS_PER_BLEED_40; break; + } + if (HABD_DEBUG) return (6.0); + else return (iRounds * 6.0); +} + +// **************************************************************************** + +// Bring a respawned ghost back to life. +// oTarget - the respawned ghost player. +// nSpell - SPELL_RAISE_DEAD or SPELL_RESURRECTION +void HABDCureRespawnGhost(object oTarget, int nSpell); + +void HABDCureRespawnGhost(object oTarget, int nSpell) +{ + // Do nothing if cast on a player who is still dead. + if(!GetIsDead(oTarget)) + { + object oMod = GetModule(); + string sID = GetPCPlayerName(oTarget)+GetName(oTarget); + // If the player state wasn't respawned then do nothing. + if (GetLocalInt(GetModule(), HABD_PLAYER_STATE+sID) == HABD_STATE_RESPAWNED_GHOST) + { + FloatingTextStringOnCreature("OOC: You have been brought back to life.", oTarget, FALSE); + // Allow the player to take damage. + SetPlotFlag(oTarget, FALSE); + // Set the player back to alive. + SetLocalInt(GetModule(), HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_ALIVE); + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_RAISE_DEAD), oTarget); + if (nSpell == SPELL_RAISE_DEAD) + { + HABDApplyPenalty(oTarget, HABD_RAISE_XP_LOSS, HABD_RAISE_GP_LOSS); + AssignCommand(oTarget, HABDUserDefinedRaise()); + } + if (nSpell == SPELL_RESURRECTION) + { + HABDApplyPenalty(oTarget, HABD_REZ_XP_LOSS, HABD_REZ_GP_LOSS); + AssignCommand(oTarget, HABDUserDefinedResurrection()); + } + } + } + } + +// **************************************************************************** + +// Unequip all regeneration items that a player is wearing. Items are stored +// as a local array so that they can be re-equipped later. +// oPC - the player to unequip the items for. +void HABDRegenerationItemsUnequip(object oPC); + +void HABDRegenerationItemsUnequip(object oPC) +{ + // If the player already has unequiped items they never had a re-equip + // call for then do nothing. WARNING: this could potential cause an + // exploit if players can find a way to come back to life without initiating + // the corresponding equip items call. + if (GetLocalInt(oPC, HABD_UNEQUIPED_ITEMS) != 0) return; + + // Go through the players inventory and unequip all of their regeneration + // items. + int iCount = 0; + int i; + object oItem; + object oNewItem; + for (i=0; i 0.0) sMsg = sMsg + "- you have "+FloatToString(HABD_POST_BLEED_INVIS_DUR,3,1)+" seconds of free movement after stabilization.\n"; + else sMsg = sMsg + "- monsters can see you to attack you as soon as you stabilize.\n"; + SendMessageToPC(oPC, sMsg); + + sMsg = "DEATH RULES:\n"; + if (HABD_SOLO_FORCE_RAISE_TIMER > 0.0) sMsg = sMsg + "- raise dead is forced for solo players when dead for more than "+FloatToString(HABD_SOLO_FORCE_RAISE_TIMER, 3,0)+" seconds.\n"; + else sMsg = sMsg + "- there is no solo player forced raise.\n"; + if (HABD_FORCE_RAISE_TIMER > 0.0) sMsg = sMsg + "- raise dead is forced when dead for more than "+FloatToString(HABD_FORCE_RAISE_TIMER, 3,0)+" seconds.\n"; + else sMsg = sMsg + "- there is no party player forced raise.\n"; + if (HABD_NPC_FORCE_RAISE_TIMER > 0.0) sMsg = sMsg + "- raise dead is forced for henchmen when dead for more than "+FloatToString(HABD_NPC_FORCE_RAISE_TIMER, 3,0)+" seconds.\n"; + else sMsg = sMsg + "- there is no henchmen forced raise.\n"; + if (HABD_FORCE_RAISE_USES_SCROLLS) sMsg = sMsg + "- forced raise uses raise dead/resurrection scrolls. If you run out you will not be raised.\n"; + if (HABD_FORCE_RESPAWN_TIMER > 0.0) sMsg = sMsg + "- respawn is forced when dead for more than "+FloatToString(HABD_FORCE_RESPAWN_TIMER, 3,0)+" seconds.\n"; + else sMsg = sMsg + "- there is no forced respawn.\n"; + if (HABD_NPC_FORCE_RESPAWN_TIMER > 0.0) sMsg = sMsg + "- respawn is forced for henchmen when dead for more than "+FloatToString(HABD_NPC_FORCE_RESPAWN_TIMER, 3,0)+" seconds.\n"; + else sMsg = sMsg + "- there is no henchmen forced respawn.\n"; + SendMessageToPC(oPC, sMsg); + + sMsg = "PENALTIES:\n"; + sMsg = sMsg + "- respawn has a "+IntToString(HABD_RESPAWN_XP_LOSS)+"% XP and "+IntToString(HABD_RESPAWN_GP_LOSS)+"% GP penalty ("+IntToString(HABD_RESPAWN_XP_LOSS*iXP/100)+" XP and "+IntToString(HABD_RESPAWN_GP_LOSS*iGP/100)+" GP for you).\n"; + sMsg = sMsg + "- raise dead has a "+IntToString(HABD_RAISE_XP_LOSS)+"% XP and "+IntToString(HABD_RAISE_GP_LOSS)+"% GP penalty ("+IntToString(HABD_RAISE_XP_LOSS*iXP/100)+" XP and "+IntToString(HABD_RAISE_GP_LOSS*iGP/100)+" GP for you).\n"; + sMsg = sMsg + "- resurrection has a "+IntToString(HABD_REZ_XP_LOSS)+"% XP and "+IntToString(HABD_REZ_GP_LOSS)+"% GP penalty ("+IntToString(HABD_REZ_XP_LOSS*iXP/100)+" XP and "+IntToString(HABD_REZ_GP_LOSS*iGP/100)+" GP for you).\n"; + if (HABD_NO_LEVEL_LOSS_FROM_XP_PENALTY) sMsg = sMsg + "- XP penalty CANNOT cause level loss.\n"; + else sMsg = sMsg + "- XP penalty CAN cause level loss.\n"; + if (HABD_MAX_GP_LOSS_FROM_GP_PENALTY > 0) sMsg = sMsg + "- GP penalty is capped at "+IntToString(HABD_MAX_GP_LOSS_FROM_GP_PENALTY)+" GP.\n"; + else sMsg = sMsg + "- is NOT capped.\n"; + SendMessageToPC(oPC, sMsg); + + sMsg = "ITEM DROPPING ON DEATH:\n"; + if ((HABD_DROP_GOLD == 0) && + (HABD_DROP_RAISE_REZ == 0) && + (HABD_DROP_BACKPACK == 0) && + (HABD_DROP_WEAPON_SHIELD == 0) && + (HABD_DROP_EQUIPPED == 0) && + (HABD_DROP_RANDOM_EQUIPPED == 0) && + (HABD_DROP_RANDOM_BACKPACK == 0) && + (HABD_DROP_MOST_EXPENSIVE_EQUIPPED == 0) && + (HABD_DROP_MOST_EXPENSIVE_BACKPACK == 0) + ) sMsg = sMsg + "- there is no item dropping/destruction on death.\n"; + if (HABD_DROP_GOLD > 0) sMsg = sMsg + "- all gold is "+HABDGetDropType(HABD_DROP_GOLD)+" on death.\n"; + if (HABD_DROP_WEAPON_SHIELD > 0) sMsg = sMsg + "- equipped left and right hand items are "+HABDGetDropType(HABD_DROP_WEAPON_SHIELD)+" on death.\n"; + if (HABD_DROP_RANDOM_EQUIPPED > 0) sMsg = sMsg + "- a random equipped item is "+HABDGetDropType(HABD_DROP_RANDOM_EQUIPPED)+" on death.\n"; + if (HABD_DROP_MOST_EXPENSIVE_EQUIPPED > 0) sMsg = sMsg + "- most expensive equipped item is "+HABDGetDropType(HABD_DROP_MOST_EXPENSIVE_EQUIPPED)+" on death.\n"; + if (HABD_DROP_EQUIPPED > 0) sMsg = sMsg + "- all equipped items are "+HABDGetDropType(HABD_DROP_EQUIPPED)+" on death.\n"; + if (HABD_DROP_RAISE_REZ > 0) sMsg = sMsg + "- raise dead/resurrection scrolls are "+HABDGetDropType(HABD_DROP_RAISE_REZ)+" on death.\n"; + if (HABD_DROP_RANDOM_BACKPACK > 0) sMsg = sMsg + "- a random backpack item is "+HABDGetDropType(HABD_DROP_RANDOM_BACKPACK)+" on death.\n"; + if (HABD_DROP_MOST_EXPENSIVE_BACKPACK > 0) sMsg = sMsg + "- most expensive backpack item is "+HABDGetDropType(HABD_DROP_MOST_EXPENSIVE_BACKPACK)+" on death.\n"; + if (HABD_DROP_BACKPACK > 0) sMsg = sMsg + "- all backpack items are "+HABDGetDropType(HABD_DROP_BACKPACK)+" on death.\n"; + SendMessageToPC(oPC, sMsg); + + sMsg = "RESPAWN:\n"; + if (HABD_RESPAWN_ALLOWED) + { + if (HABD_INSTANT_RESPAWN_ALLOWED) sMsg = sMsg + "- player controlled respawn IS allowed.\n"; + else sMsg = sMsg + "- player controlled respawn NOT allowed.\n"; + if (HABD_RESPAWN_SCRIPT == "habd_onpcrespawn") + { + sMsg = sMsg + "- on respawn you will become a ghost and lose control of your player.\n"; + sMsg = sMsg + "- other players can use bandages on your ghost to lead you to help.\n"; + sMsg = sMsg + "- raise or rez will bring the ghost back to life.\n"; + if (HABD_HENCHMEN_GHOST_RESPAWN) sMsg = sMsg + "- same respawn system is used for henchmen.\n"; + else sMsg = sMsg + "- custom respawn system used for henchmen (unknown).\n"; + } else sMsg = sMsg + "- custom respawn system used (unknown).\n"; + } else sMsg = sMsg + "- respawn is NOT allowed.\n"; + SendMessageToPC(oPC, sMsg); + + if ( + (HABD_USERDEFINED_BLEED_DESC != "") || + (HABD_USERDEFINED_RESPAWN_DESC != "") || + (HABD_USERDEFINED_RAISE_DESC != "") || + (HABD_USERDEFINED_RESURRECTION_DESC != "") + ) + { + sMsg = "ADDITIONAL:\n"; + if (HABD_USERDEFINED_BLEED_DESC != "") sMsg = sMsg+"OnBleedStabilized: "+HABD_USERDEFINED_BLEED_DESC+"\n"; + if (HABD_RESPAWN_SCRIPT == "habd_onpcrespawn") + { + if (HABD_USERDEFINED_RESPAWN_DESC != "") sMsg = sMsg+"OnRespawned: "+HABD_USERDEFINED_RESPAWN_DESC+"\n"; + } + if (HABD_USERDEFINED_RAISE_DESC != "") sMsg = sMsg+"OnRaised: "+HABD_USERDEFINED_RAISE_DESC+"\n"; + if (HABD_USERDEFINED_RESURRECTION_DESC != "") sMsg = sMsg+"OnRezzed: "+HABD_USERDEFINED_RESURRECTION_DESC+"\n"; + SendMessageToPC(oPC, sMsg); + } +} + +// **************************************************************************** + +// OnActivateItem event handler. Runs the corresponding functionality based on +// the item's tag. +// oPC - the player activating the item. +// oTarget - the player's target. +// oItem - the item they activated. +int HABDOnActivateItem(object oPC, object oTarget, object oItem); + +int HABDOnActivateItem(object oPC, object oTarget, object oItem) +{ + string sTag = GetTag(oItem); + // Have bandages at the top since they are usually time critical. + if (sTag == HABD_ITEM_BANDAGES) + { + HABDItemBandages(oPC, oTarget); + return TRUE; + } + if (sTag == HABD_ITEM_DM_DEATH) + { + HABDItemDMDeath(oPC, oTarget, oItem); + return TRUE; + } + if (sTag == HABD_ITEM_TOKEN) + { + HABDItemToken(oPC); + return TRUE; + } + if (sTag == HABD_ITEM_DM_TOKEN) + { + HABDItemDMToken(oPC, oTarget, oItem); + return TRUE; + } + if (sTag == HABD_ITEM_RULES) + { + HABDItemRules(oPC); + return TRUE; + } + return FALSE; +} + +// **************************************************************************** + +// Returns the ith element in a comma-separated-value string. If the element +// does not exist it returns an empty string. +// sStr - the CSV string. +// i - the ith element. +string HABDStrTok(string sStr, int i); + +string HABDStrTok(string sStr, int i) +{ + int iIndex = 1; + int iLast = 0; + int iPos = GetStringLength(sStr); + int iDelimiter = FindSubString(sStr, ","); + while (iDelimiter != -1) + { + if (iIndex == i) return GetStringLeft(GetStringRight(sStr, iPos), iDelimiter); + iIndex++; + iPos = iPos - iDelimiter - 1; + iDelimiter = FindSubString(GetStringRight(sStr, iPos), ","); + } + return ""; +} + +// **************************************************************************** + +// OnClientEnter event handler. Used to restore the information from the +// persistent DB. It also resets the bleeding/death/respawn state over +// server resets. +// oPC - player to restore information to. +void HABDGetDBOnClientEnter(object oPC); + +void HABDGetDBOnClientEnter(object oPC) +{ + // Remove any accidental states that might have been stored on the player + // file. + SetPlotFlag(oPC, FALSE); + SetCommandable(TRUE, oPC); + // This might screw things up if you are messing around with the faction + // system a lot. + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 0, oPC); + + if (!HADB_DB_PERSISTENT) return; + + string sID = GetPCPlayerName(oPC)+GetName(oPC); + object oMod = GetModule(); + + // Store the player's public CD key. That information is needed for writing + // to the database in the OnClientLeave event (because you can't determine + // the player's CD key after they have left). + SetLocalString(oMod, HABD_PERSISTANT_ID+GetName(oPC), GetPCPlayerName(oPC)); + + // We use packed strings in the database to reduce database access since + // its slow. Database index is limited to 32 characters. + string sData = GetCampaignString(HABD_DB_NAME, GetStringLeft(HABD_PERSIST_NAME+sID, 32)); + // Load statistics + int iDCount = StringToInt(HABDStrTok(sData, 1)); + int iBCount = StringToInt(HABDStrTok(sData, 2)); + int iXCount = StringToInt(HABDStrTok(sData, 3)); + int iGCount = StringToInt(HABDStrTok(sData, 4)); + // Restore the counters. + SetLocalInt(oMod, HABD_DEATH_COUNT+sID, iDCount); + SetLocalInt(oMod, HABD_BLEED_COUNT+sID, iBCount); + SetLocalInt(oMod, HABD_LOST_XP_COUNT+sID, iXCount); + SetLocalInt(oMod, HABD_LOST_GP_COUNT+sID, iGCount); + // Load state + int iHP = StringToInt(HABDStrTok(sData, 5)); + int iState = StringToInt(HABDStrTok(sData, 6)); + int iRespawn = StringToInt(HABDStrTok(sData, 7)); + int iRaise = StringToInt(HABDStrTok(sData, 8)); + // Restore state. + SetLocalInt(oMod, HABD_PLAYER_STATE+sID, iState); + SetLocalInt(oMod, HABD_LAST_HP+sID, iHP); + // Only apply timers if they are enabled. Module settings could have changed. + if (HABD_FORCE_RESPAWN_TIMER > 0.0) SetLocalInt(oMod, HABD_RESPAWN_TIMER+sID, iRespawn); + if ((HABD_FORCE_RAISE_TIMER > 0.0) || (HABD_SOLO_FORCE_RAISE_TIMER > 0.0)) SetLocalInt(oMod, HABD_RAISE_TIMER+sID, iRaise); + // Reapply bleeding. + if (iState == HABD_STATE_PLAYER_BLEEDING) + { + SetLocalInt(oPC, HABD_PERSISTANT_REAPPLY, 1); + int iDmg = GetCurrentHitPoints(oPC) - iHP; + SendMessageToPC(oPC, "HABD_DB: Restoring bleeding by doing "+IntToString(iDmg)+" HP damage."); + ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectDamage(iDmg, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_FIVE), oPC); + SetPlotFlag(oPC, TRUE); + } + // Reapply death. + if (iState == HABD_STATE_PLAYER_DEAD) + { + SetLocalInt(oPC, HABD_PERSISTANT_REAPPLY, 1); + SendMessageToPC(oPC, "HABD_DB: Restoring death."); + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDeath(), oPC); + } + // Reapply respawn. + if (iState == HABD_STATE_RESPAWNED_GHOST) + { + SetLocalInt(oPC, HABD_PERSISTANT_REAPPLY, 1); + SendMessageToPC(oPC, "HABD_DB: Restoring ghost respawn."); + SetLocalInt(oPC, HABD_FORCED_RESPAWN, 1); + AssignCommand(oPC, ExecuteScript(HABD_RESPAWN_SCRIPT, oPC)); + } + + // Log stuff to the server log for debugging purposes. Remove this later + // to speed things up even more. + PrintString("HABD_DB: Restoring "+sID+" gives "+sData); + PrintString("HABD_DB: Restoring "+sID+" Death="+IntToString(iDCount)+" Bleed="+IntToString(iBCount)+" XPLost="+IntToString(iXCount)+" GPLost="+IntToString(iGCount)); + // Log stuff to the server log for debugging purposes. Remove this later + // to speed things up even more. + PrintString("HABD_DB: Restoring "+sID+" gives "+sData); + PrintString("HABD_DB: Restoring "+sID+" iHP="+IntToString(iHP)+" iState="+IntToString(iState)+" iRespawnTimer="+IntToString(iRespawn)+" iRaiseTimer="+IntToString(iRaise)); +} + +// **************************************************************************** + +// OnClientLeave event handler. Used to store the information from the +// persistent DB. It also resets the bleeding/death/respawn state over +// server resets. +// sName - name of the player to store information about. +void HABDSetDBOnClientLeave(string sName); + +void HABDSetDBOnClientLeave(string sName) +{ + if (!HADB_DB_PERSISTENT) return; + + object oMod = GetModule(); + // Note: GetPCPlayerName does not function in the OnClientLeave event. + // So use the player's name to get the shadowed version we stored in the + // OnClientEnter. + string sID = GetLocalString(oMod, HABD_PERSISTANT_ID+sName)+sName; + // Shadow module level variables to local variables. + int iHP = GetLocalInt(oMod, HABD_LAST_HP+sID); + int iState = GetLocalInt(oMod, HABD_PLAYER_STATE+sID); + int iRespawn = GetLocalInt(oMod, HABD_RESPAWN_TIMER+sID); + int iRaise = GetLocalInt(oMod, HABD_RAISE_TIMER+sID); + int iDCount = GetLocalInt(oMod, HABD_DEATH_COUNT+sID); + int iBCount = GetLocalInt(oMod, HABD_BLEED_COUNT+sID); + int iXCount = GetLocalInt(oMod, HABD_LOST_XP_COUNT+sID); + int iGCount = GetLocalInt(oMod, HABD_LOST_GP_COUNT+sID); + + // Pack data into a string to reduce database accesses. + string sData = IntToString(iDCount)+","+IntToString(iBCount)+","+IntToString(iXCount)+","+IntToString(iGCount)+","+IntToString(iHP)+","+IntToString(iState)+","+IntToString(iRespawn)+","+IntToString(iRaise)+",0"; + // Database index is limited to 32 characters. + SetCampaignString(HABD_DB_NAME, GetStringLeft(HABD_PERSIST_NAME+sID,32), sData); + + // Log stuff to the server log for debugging purposes. Remove this later + // to speed things up even more. + PrintString("HABD_DB: Storing "+sID+" iHP="+IntToString(iHP)+" iState="+IntToString(iState)+" iRespawnTimer="+IntToString(iRespawn)+" iRaiseTimer="+IntToString(iRaise)); + PrintString("HABD_DB: Storing "+sID+" Death="+IntToString(iDCount)+" Bleed="+IntToString(iBCount)+" XPLost="+IntToString(iXCount)+" GPLost="+IntToString(iGCount)); + PrintString("HABD_DB: Storing "+sID+" "+sData); +} + +// **************************************************************************** + +const int HABD_NW_ASC_IS_BUSY = 0x40000000; + +void HABDAssociateBusy() +{ + int nPlot = GetLocalInt(OBJECT_SELF, "NW_ASSOCIATE_MASTER"); + nPlot = nPlot | HABD_NW_ASC_IS_BUSY; + SetLocalInt(OBJECT_SELF, "NW_ASSOCIATE_MASTER", nPlot); +} + +void HABDAssociateNotBusy() +{ + int nPlot = GetLocalInt(OBJECT_SELF, "NW_ASSOCIATE_MASTER"); + nPlot = nPlot & ~HABD_NW_ASC_IS_BUSY; + SetLocalInt(OBJECT_SELF, "NW_ASSOCIATE_MASTER", nPlot); +} + +void HABDRecoverHenchmanInstantDeath() +{ + // Should regeneration items be removed from bleeding players? + if (HABD_NERF_REGENERATION_ITEMS) + { + AssignCommand(OBJECT_SELF, HABDRegenerationItemsUnequip(OBJECT_SELF)); + } + + // Keep the player from taking additional damage while bleeding. + SetPlotFlag(OBJECT_SELF, TRUE); + // Bring the player back from death and make them bleed. + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectResurrection(), OBJECT_SELF); + int iBleed = 1+Random(4); + // Give them back their master. + //AddHenchman(GetLocalObject(oPC, HABD_NPC_MASTER), oPC); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectTemporaryHitpoints(10), OBJECT_SELF); + // Ten minutes should be enough for the NPC to bleed to death. + AssignCommand(OBJECT_SELF, ActionPlayAnimation(ANIMATION_LOOPING_DEAD_BACK, 1.0, 6.0)); + SetPlotFlag(OBJECT_SELF, FALSE); + // Will leave player at -6 to -9 + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDamage(iBleed, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_FIVE), OBJECT_SELF); + SetPlotFlag(OBJECT_SELF, TRUE); + // stop nearby attackers + AssignCommand(OBJECT_SELF, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectInvisibility(INVISIBILITY_TYPE_NORMAL), OBJECT_SELF, 6.0)); +} + +int HABDMakeHenchmanBleed() +{ + // Only run on henchmen. + if (GetAssociate(ASSOCIATE_TYPE_HENCHMAN, GetMaster()) != OBJECT_SELF) return FALSE; + string sID = GetPCPlayerName(OBJECT_SELF)+GetName(OBJECT_SELF); + object oMod = GetModule(); + if (HABD_DEBUG) SpeakString("DEBUG: HABD OnHenchmanDeath, "+GetName(OBJECT_SELF)+", HP: "+IntToString(GetCurrentHitPoints(OBJECT_SELF))+", master: "+GetName(GetMaster(OBJECT_SELF))+", state:"+HABDGetPlayerStateName(OBJECT_SELF), TALKVOLUME_SHOUT); + + // Check to see if they have bled at all - if not then give them a chance to bleed. + int iState = GetLocalInt(oMod, HABD_PLAYER_STATE+sID); + if ((iState == HABD_STATE_PLAYER_DEAD) || (iState == HABD_STATE_PLAYER_BLEEDING)) + { + // The henchmen is supposed to be dead. + if (HABD_HENCHMEN_GHOST_RESPAWN) + { + // Run the ghost respawn on the henchman. + DelayCommand(1.0, ExecuteScript("habd_onpcdeath", OBJECT_SELF)); + SetLocalInt(OBJECT_SELF, HABD_NPC_BLEED, 1); + SetLocalObject(OBJECT_SELF, HABD_NPC_MASTER, GetMaster(OBJECT_SELF)); + } else { + // Run the normal death stuff. + SetIsDestroyable(TRUE, TRUE, TRUE); + HABDAssociateNotBusy(); + return FALSE; + } + } + else + { + // Player died without going through bleeding. + // Special state for this circumstance. + SetLocalInt(oMod, HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_INSTANT_DEATH); + // The henchman is supposed to be bleeding. + DelayCommand(1.0, ExecuteScript("habd_onpcdying", OBJECT_SELF)); + DelayCommand(0.5, HABDRecoverHenchmanInstantDeath()); + } + // Keep the associate from healing themselves. Stay dead, dammit! + HABDAssociateBusy(); + // Keep the corpse from fading because we have to bring it back from death. + SetIsDestroyable(FALSE, TRUE, TRUE); + // Check to see if they have bled at all - if not then give them a chance to bleed. + if (GetLocalInt(oMod, HABD_PLAYER_STATE+sID) != HABD_STATE_PLAYER_DEAD) + { + // Player died without going through bleeding. + // Special state for this circumstance. + SetLocalInt(oMod, HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_INSTANT_DEATH); + } + SetLocalInt(OBJECT_SELF, HABD_NPC_BLEED, 1); + SetLocalObject(OBJECT_SELF, HABD_NPC_MASTER, GetMaster(OBJECT_SELF)); + return TRUE; +} + diff --git a/gamma_age_v2/habd_onpcdeath.ncs b/gamma_age_v2/habd_onpcdeath.ncs new file mode 100644 index 00000000..414c837b Binary files /dev/null and b/gamma_age_v2/habd_onpcdeath.ncs differ diff --git a/gamma_age_v2/habd_onpcdeath.nss b/gamma_age_v2/habd_onpcdeath.nss new file mode 100644 index 00000000..3b2c77ae --- /dev/null +++ b/gamma_age_v2/habd_onpcdeath.nss @@ -0,0 +1,732 @@ +// Hemophiliacs Always Bleed to Death +// By Demetrious and OldManWhistler +// +// PLEASE READ "habd_include" FOR MORE INFORMATION. +// +// OnPlayerDeath event handler. + +#include "habd_include" + +// **************************************************************************** + +// This function is used to create a pseudo-heartbeat on the death bag placeable +// that contains all of the dropped items on player death. +void DeathBagHeartbeat (); + +void DeathBagHeartbeat () +{ + if (GetIsObjectValid(GetFirstItemInInventory())) + { + // Set up timer. + DelayCommand(HABD_BAG_SELF_DESTRUCT_TIMER, DeathBagHeartbeat()); + // Try to alert the owner. + object oPC = GetLocalObject(OBJECT_SELF, HABD_BAG_OWNER); + if (GetIsObjectValid(oPC)) + { + if (GetLocalInt(OBJECT_SELF, HABD_NPC_BLEED) == 1) FloatingTextStringOnCreature("OOC: Your henchman/companion still has items in its death bag.", GetMaster(oPC), FALSE); + else FloatingTextStringOnCreature("OOC: You still have items in your death bag.", oPC, FALSE); + } else { + // No valid owner, so destroy the variable. + DeleteLocalObject(OBJECT_SELF, HABD_BAG_OWNER); + } + } else { + // No valid items left inside, so self-destruct. + SetPlotFlag(OBJECT_SELF, FALSE); + DestroyObject(OBJECT_SELF); + } +} + +// **************************************************************************** + +// Creates a placeable object and drops all the items into it based on the +// configured options. +// oPC - the dead player who is losing their items. +void DropItems (object oPC); + +void DropItems (object oPC) +{ + object oItem; + // Check that something is configured to drop. + if ((HABD_DROP_GOLD == 0) && + (HABD_DROP_RAISE_REZ == 0) && + (HABD_DROP_BACKPACK == 0) && + (HABD_DROP_WEAPON_SHIELD == 0) && + (HABD_DROP_EQUIPPED == 0) && + (HABD_DROP_RANDOM_EQUIPPED == 0) && + (HABD_DROP_RANDOM_BACKPACK == 0) && + (HABD_DROP_MOST_EXPENSIVE_EQUIPPED == 0) && + (HABD_DROP_MOST_EXPENSIVE_BACKPACK == 0) + ) return; + + object oBag; + + // Only build the placeable if something is configured to drop. + if ((HABD_DROP_GOLD == 1) || + (HABD_DROP_RAISE_REZ == 1) || + (HABD_DROP_BACKPACK == 1) || + (HABD_DROP_WEAPON_SHIELD == 1) || + (HABD_DROP_EQUIPPED == 1) || + (HABD_DROP_RANDOM_EQUIPPED == 1) || + (HABD_DROP_RANDOM_BACKPACK == 1) || + (HABD_DROP_MOST_EXPENSIVE_EQUIPPED == 1) || + (HABD_DROP_MOST_EXPENSIVE_BACKPACK == 1) + ) + { + // Create the bag and set up a heartbeat on it. + oBag = CreateObject(OBJECT_TYPE_PLACEABLE, HABD_PLACEABLE_BAG, GetLocation(oPC), TRUE); + // Sanity test. + if (!GetIsObjectValid(oBag)) return; + SetLocalObject(oBag, HABD_BAG_OWNER, oPC); + AssignCommand(oBag, DelayCommand(HABD_BAG_SELF_DESTRUCT_TIMER, DeathBagHeartbeat())); + } + + // Should we drop all gold? + if (HABD_DROP_GOLD != 0) + { + if (HABD_DROP_GOLD == 2) SendMessageToPC(oPC, "Destroying all gold."); + else SendMessageToPC(oPC, "Dropping all gold."); + if (HABD_DROP_GOLD == 2) TakeGoldFromCreature(GetGold(oPC), oPC, TRUE); + else AssignCommand(oBag, TakeGoldFromCreature(GetGold(oPC), oPC)); + } + // Should we only drop the right hand and left hand equipped items that aren't plot? + if (HABD_DROP_WEAPON_SHIELD != 0) + { + if (HABD_DROP_WEAPON_SHIELD == 2) SendMessageToPC(oPC, "Destroying equipped weapon and shield."); + else SendMessageToPC(oPC, "Dropping equipped weapon and shield."); + oItem = GetItemInSlot(INVENTORY_SLOT_LEFTHAND, oPC); + if (GetIsObjectValid(oItem) && (!GetPlotFlag(oItem))) + { + if (HABD_DROP_WEAPON_SHIELD == 2) DestroyObject(oItem); + else AssignCommand(oBag, ActionTakeItem(oItem, oPC)); + } + oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC); + if (GetIsObjectValid(oItem) && (!GetPlotFlag(oItem))) + { + if (HABD_DROP_WEAPON_SHIELD == 2) DestroyObject(oItem); + else AssignCommand(oBag, ActionTakeItem(oItem, oPC)); + } + } + // Should we drop a random equipped item? + if ((HABD_DROP_RANDOM_EQUIPPED != 0) || (HABD_DROP_MOST_EXPENSIVE_EQUIPPED != 0 )) + { + int iRandomEquipped; + int i; + int iRandomCount = 0; + int iGP = 0; + int iHighestGP = 0; + int iHighestGPPos = 0; + if (HABD_DROP_RANDOM_EQUIPPED == 2) SendMessageToPC(oPC, "Destroying a random equipped items."); + else if (HABD_DROP_RANDOM_EQUIPPED == 1) SendMessageToPC(oPC, "Dropping a random equipped items."); + if (HABD_DROP_MOST_EXPENSIVE_EQUIPPED == 2) SendMessageToPC(oPC, "Destroying most expensive equipped items."); + else if (HABD_DROP_MOST_EXPENSIVE_EQUIPPED == 1) SendMessageToPC(oPC, "Dropping most expensive equipped items."); + // Find the random item. + for (i=0; i iHighestGP) + { + iHighestGP = iGP; + iHighestGPPos = iRandomCount; + } + } + } + } + iRandomEquipped = Random(iRandomCount)+1; + iRandomCount = 0; + // Drop the item. + for (i=0; i iHighestGP) + { + iHighestGP = iGP; + iHighestGPPos = iRandomCount; + } + } + } + } else { + // Increment the number of random items and check + // for the highest GP item. + iRandomCount++; + if (HABD_DROP_MOST_EXPENSIVE_BACKPACK != 0) + { + iGP = GetGoldPieceValue(oItem); + if (iGP > iHighestGP) + { + iHighestGP = iGP; + iHighestGPPos = iRandomCount; + } + } + } + } + oItem = GetNextItemInInventory(oPC); + } + iRandomBackpack = Random(iRandomCount)+1; + iRandomCount = 0; + // Drop the random item. + // Find the random item. + oItem = GetFirstItemInInventory(oPC); + while (GetIsObjectValid(oItem)) + { + if (HABD_FORCE_RAISE_USES_SCROLLS) + { + // Search through the scrolls and skill the raise/rez scrolls + iBaseItemType = GetBaseItemType(oItem); + if ((iBaseItemType == BASE_ITEM_SCROLL) || + (iBaseItemType == BASE_ITEM_SPELLSCROLL)) + { + // Default scrolls cannot be made plot so don't worry about it. + // See if it matches the tags we are looking for. + if (FindSubString(HABD_SCROLL_TAGS, ":"+GetTag(oItem)+":") == -1) + { + iRandomCount++; + // If this is the random item then drop it. + if ((HABD_DROP_RANDOM_BACKPACK != 0) && (iRandomCount == iRandomBackpack)) + { + if (HABD_DROP_RANDOM_BACKPACK == 2) DestroyObject(oItem); + else AssignCommand(oBag, ActionTakeItem(oItem, oPC)); + } + // If this is the most expensive item then drop it. + if ((HABD_DROP_MOST_EXPENSIVE_BACKPACK != 0) && (iRandomCount == iHighestGPPos)) + { + if (HABD_DROP_MOST_EXPENSIVE_BACKPACK == 2) DestroyObject(oItem); + else AssignCommand(oBag, ActionTakeItem(oItem, oPC)); + } + } + } else { + iRandomCount++; + // If this is the random item then drop it. + if ((HABD_DROP_RANDOM_BACKPACK != 0) && (iRandomCount == iRandomBackpack)) + { + if (HABD_DROP_RANDOM_BACKPACK == 2) DestroyObject(oItem); + else AssignCommand(oBag, ActionTakeItem(oItem, oPC)); + } + // If this is the most expensive item then drop it. + if ((HABD_DROP_MOST_EXPENSIVE_BACKPACK != 0) && (iRandomCount == iHighestGPPos)) + { + if (HABD_DROP_MOST_EXPENSIVE_BACKPACK == 2) DestroyObject(oItem); + else AssignCommand(oBag, ActionTakeItem(oItem, oPC)); + } + } + } + oItem = GetNextItemInInventory(oPC); + } + } + // Should we drop everything in the backpack that isn't plot? + if (HABD_DROP_BACKPACK != 0) + { + int iBaseItemType; + if (HABD_DROP_BACKPACK == 2) SendMessageToPC(oPC, "Destroying all backpack items."); + else SendMessageToPC(oPC, "Dropping all backpack items."); + oItem = GetFirstItemInInventory(oPC); + while (GetIsObjectValid(oItem)) + { + if (HABD_FORCE_RAISE_USES_SCROLLS) + { + // Search through the scrolls and skill the raise/rez scrolls + iBaseItemType = GetBaseItemType(oItem); + if ((iBaseItemType == BASE_ITEM_SCROLL) || + (iBaseItemType == BASE_ITEM_SPELLSCROLL)) + { + // Default scrolls cannot be made plot so don't worry about it. + // See if it matches the tags we are looking for. + if (FindSubString(HABD_SCROLL_TAGS, ":"+GetTag(oItem)+":") == -1) + if (GetIsObjectValid(oItem) && (!GetPlotFlag(oItem))) + { + if (HABD_DROP_BACKPACK == 2) DestroyObject(oItem); + else AssignCommand(oBag, ActionTakeItem(oItem, oPC)); + } + } else { + if (GetIsObjectValid(oItem) && (!GetPlotFlag(oItem))) + { + if (HABD_DROP_BACKPACK == 2) DestroyObject(oItem); + else AssignCommand(oBag, ActionTakeItem(oItem, oPC)); + } + } + } + oItem = GetNextItemInInventory(oPC); + } + } + return; +} + +// **************************************************************************** + +// Report that a player died. OBJECT_SELF is the dead player. +void ReportPlayerDeath(); + +void ReportPlayerDeath() +{ + object oPC = OBJECT_SELF; + + // Abort is not a player + if (!GetIsPC(oPC)) return; + + int iHPs = GetCurrentHitPoints(oPC); + // Abort if player isn't dying + if (iHPs > 0) return; + + // Display notification. + FloatingTextStringOnCreature(GetName(oPC)+" HAS DIED!", oPC); + // Vocal notification. + AssignCommand(oPC, PlayVoiceChat(VOICE_CHAT_DEATH, oPC)); + if (HABD_DM_NOTIFICATION_ON_DEATH) SendMessageToAllDMs("DEAD: "+GetName(oPC)+" HAS DIED"); + DelayCommand(0.2,FloatingTextStringOnCreature("OOC: YOU HAVE JUST DIED, SO BE QUIET UNTIL YOU ARE RAISED. -DM", oPC, FALSE)); +} + +// **************************************************************************** + +// Recover a player from instant death. This is one of the key functions of +// this death system. Instant death isn't possible, you always bleed. +// oPC - the player who instantly died. +void RecoverInstantDeath(object oPC); + +void RecoverInstantDeath(object oPC) +{ + // Should regeneration items be removed from bleeding players? + if (HABD_NERF_REGENERATION_ITEMS) + { + AssignCommand(oPC, HABDRegenerationItemsUnequip(oPC)); + } + + // Bring the player back from death and make them bleed. + ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectResurrection(),oPC); + int iBleed = 6+Random(4); + SetPlotFlag(oPC, FALSE); + // Will leave player at -6 to -9 + ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectDamage(iBleed, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_FIVE), oPC); + SetPlotFlag(oPC, TRUE); + FloatingTextStringOnCreature("You nearly died! Bleeding starts at -"+IntToString(iBleed), oPC, FALSE); +} + +// **************************************************************************** +// Check to see if the player has any raise or resurrection scrolls on them. +// If they do have them then a local object will be set pointing to that item. +// oPC - the dead player. +// Returns the number of scrolls that they possess. +int CheckForRaiseRezScrolls(object oPC); + +int CheckForRaiseRezScrolls(object oPC) +{ + DeleteLocalObject(oPC, HABD_STORED_SCROLL); + int iStoredCost = 1000000; + int iCost = 0; + int iBaseItemType; + int iNumFound = 0; + object oItem = GetFirstItemInInventory(oPC); + while (GetIsObjectValid(oItem)) + { + // Search through the scrolls + iBaseItemType = GetBaseItemType(oItem); + if ((iBaseItemType == BASE_ITEM_SCROLL) || + (iBaseItemType == BASE_ITEM_SPELLSCROLL)) + { + // Default scrolls cannot be made plot so don't worry about it. + // See if it matches the tags we are looking for. + if (FindSubString(HABD_SCROLL_TAGS, ":"+GetTag(oItem)+":") != -1) + { + // Use the least expensive scroll the player has. + iCost = GetGoldPieceValue(oItem) / GetItemStackSize(oItem); + iNumFound = iNumFound + GetItemStackSize(oItem); + if (iCost < iStoredCost) + { + iStoredCost = iCost; + // Store the item because this is what we want to use to + // bring them back from the dead. + SetLocalObject(oPC, HABD_STORED_SCROLL, oItem); + } + } + } + oItem = GetNextItemInInventory(oPC); + } + return (iNumFound); +} + +// **************************************************************************** + +// Warn player that they will auto-respawn in fTime seconds. +// oPC - the dead player. +// fTime - the amount of time until auto-respawn. +void AutoRespawnWarning(object oPC, float fTime); + +void AutoRespawnWarning(object oPC, float fTime) +{ + // If the player is no longer dead then kill the warning. + if (!GetIsDead(oPC)) return; + if (GetLocalInt(GetModule(), HABD_PLAYER_STATE+GetPCPlayerName(oPC)+GetName(oPC)) != HABD_STATE_PLAYER_DEAD) return; + // Store + SetLocalInt(GetModule(), HABD_RESPAWN_TIMER+GetPCPlayerName(oPC)+GetName(oPC), FloatToInt(fTime)); + // Warn the player. + if(fTime > 1.0) FloatingTextStringOnCreature("OOC: "+GetName(oPC)+" will automatically respawn in "+FloatToString(fTime,4,1)+" seconds.", oPC, TRUE); + return; +} + +// **************************************************************************** + +// Warn player that they will auto-raise in fTime seconds. +// oPC - the dead player. +// fTime - the amount of time until auto-raise. +void AutoRaiseWarning(object oPC, float fTime); + +void AutoRaiseWarning(object oPC, float fTime) +{ + // If the player is no longer dead then kill the warning. + if (!GetIsDead(oPC)) return; + if (GetLocalInt(GetModule(), HABD_PLAYER_STATE+GetPCPlayerName(oPC)+GetName(oPC)) != HABD_STATE_PLAYER_DEAD) return; + // Store + SetLocalInt(GetModule(), HABD_RAISE_TIMER+GetPCPlayerName(oPC)+GetName(oPC), FloatToInt(fTime)); + // Warn the player. + if(fTime > 1.0) FloatingTextStringOnCreature("OOC: "+GetName(oPC)+" will automatically raise in "+FloatToString(fTime,4,1)+" seconds.", oPC, TRUE); + return; +} + +// **************************************************************************** + +// Forces a dead player to automatically respawn. +// oPC - the dead player who is being forced to respawn. +void ForceAutoRespawn(object oPC); + +void ForceAutoRespawn(object oPC) +{ + // Make sure the player is dead. + if (!GetIsDead(oPC) || + (GetLocalInt(GetModule(), HABD_PLAYER_STATE+GetPCPlayerName(oPC)+GetName(oPC)) != HABD_STATE_PLAYER_DEAD)) + { + DeleteLocalInt(GetModule(), HABD_RESPAWN_TIMER+GetPCPlayerName(oPC)+GetName(oPC)); + return; + } + + // Force the player to respawn. + SetLocalInt(oPC, HABD_FORCED_RESPAWN, 1); + AssignCommand(oPC, ExecuteScript(HABD_RESPAWN_SCRIPT, oPC)); + DeleteLocalInt(GetModule(), HABD_RESPAWN_TIMER+GetPCPlayerName(oPC)+GetName(oPC)); + FloatingTextStringOnCreature("OOC: Automatically respawning "+GetName(oPC)+" because timer elapsed.", oPC, TRUE); + return; +} + +// **************************************************************************** + +// Forces a dead player to automatically raise. +// oPC - the dead player who is being forced to raise. +void ForceAutoRaise(object oPC); + +void ForceAutoRaise(object oPC) +{ + // Make sure the player is dead. + int iState = GetLocalInt(GetModule(), HABD_PLAYER_STATE+GetPCPlayerName(oPC)+GetName(oPC)); + if ((iState != HABD_STATE_PLAYER_DEAD) && + (iState != HABD_STATE_RESPAWNED_GHOST)) + { + DeleteLocalInt(GetModule(), HABD_RAISE_TIMER+GetPCPlayerName(oPC)+GetName(oPC)); + return; + } + DeleteLocalInt(GetModule(), HABD_RAISE_TIMER+GetPCPlayerName(oPC)+GetName(oPC)); + // If force raise uses up scrolls, then do so. + if (HABD_FORCE_RAISE_USES_SCROLLS) + { + object oScroll = GetLocalObject(oPC, HABD_STORED_SCROLL); + if (GetItemPossessor(oScroll) == oPC) + { + int iStackSize = GetItemStackSize(oScroll); + // Only one item so destroy it, this is why it should only use scrolls. + // If it uses a charged item, then this could be wasted. + if (iStackSize == 1) DestroyObject(oScroll); + else SetItemStackSize(oScroll, iStackSize - 1); + } else { + FloatingTextStringOnCreature("OOC: Auto-raise aborted for "+GetName(oPC)+" because could not find any scrolls.", oPC, TRUE); + return; + } + DeleteLocalObject(oPC, HABD_STORED_SCROLL); + } + // Copy of Raise Dead spell script since you can't make a dead player cast raise at themself. + if (GetIsDead(oPC)) + { + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_RAISE_DEAD), GetLocation(oPC)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectResurrection(), oPC); + HABDApplyPenaltyIfDead(oPC, SPELL_RAISE_DEAD); + } else { + HABDCureRespawnGhost(oPC, SPELL_RAISE_DEAD); + } + // Force the player to respawn. + FloatingTextStringOnCreature("OOC: Automatically raising "+GetName(oPC)+" because timer elapsed.", oPC, TRUE); + return; +} + +// **************************************************************************** + +// Check if a player has spontaneously come back to life. +// oPC - the dead player. +// fTime - the duration to wait until the next health check. + +void CheckForDMHeal(object oPC, float fTime) +{ + object oMod = GetModule(); + string sID = GetPCPlayerName(oPC)+GetName(oPC); + // Check to see if the player is still alive. + int iState = GetLocalInt(oMod, HABD_PLAYER_STATE+sID); + if ( + (iState == HABD_STATE_RESPAWNED_GHOST) || + (iState == HABD_STATE_PLAYER_ALIVE) + ) return; + + // Quick little timer to check that PCs recover from a DM heal properly. + if (GetIsDead(oPC)) + { + DelayCommand(fTime, CheckForDMHeal(oPC, fTime)); + } else { + // Player has been DM healed. + SetPlotFlag(oPC, FALSE); + SetLocalInt(oMod, HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_ALIVE); + } +} + +// **************************************************************************** + +// This is the OnPlayerDeath event handler. + +void main() +{ + object oMod = GetModule(); + object oPC = GetLastPlayerDied(); + int iNPC = GetLocalInt(OBJECT_SELF, HABD_NPC_BLEED); + if (iNPC == 1) oPC = OBJECT_SELF; + string sID = GetPCPlayerName(oPC)+GetName(oPC); + + // If an NPC is running this script, then set up its master. The master was + // automatically wiped out when the henchman died. + if (iNPC) + { + if (!GetIsObjectValid(GetAssociate(ASSOCIATE_TYPE_HENCHMAN, GetLocalObject(OBJECT_SELF, HABD_NPC_MASTER)))) + AddHenchman(GetLocalObject(OBJECT_SELF, HABD_NPC_MASTER), oPC); + } + + if (HABD_DEBUG) SpeakString("DEBUG: HABD OnDeath, "+GetName(oPC)+", HP: "+IntToString(GetCurrentHitPoints(oPC))+", master: "+GetName(GetMaster(oPC))+", state:"+HABDGetPlayerStateName(oPC), TALKVOLUME_SHOUT); + + // Check to see if they have bled at all - if not then give them a chance to bleed. + if (GetLocalInt(oMod, HABD_PLAYER_STATE+sID) != HABD_STATE_PLAYER_DEAD) + { + // Player died without going through bleeding. + + // Keep the player from taking additional damage while bleeding. + SetPlotFlag(oPC, TRUE); + // Special state for this circumstance. + SetLocalInt(oMod, HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_INSTANT_DEATH); + // Bring the player to near-death. + AssignCommand(oPC, RecoverInstantDeath(oPC)); + // Force friendly to hostile faction. + if (!GetLocalInt(oPC, HABD_OLD_FACTION_SET)) + { + SetLocalInt(oPC, HABD_OLD_FACTION, GetStandardFactionReputation(STANDARD_FACTION_HOSTILE, oPC)); + SetLocalInt(oPC, HABD_OLD_FACTION_SET, 1); + } + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 100, oPC); + // stop nearby attackers + AssignCommand(oPC, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectInvisibility(INVISIBILITY_TYPE_NORMAL), oPC, 6.0)); + return; + } + + // Player has properly died. + + // Check for a DM Heal. + AssignCommand(oPC, DelayCommand(6.0, CheckForDMHeal(oPC, 6.0))); + + // Ensure that plot is not still set. + SetPlotFlag(oPC, FALSE); + // Set playerstate to dead not dying. + SetLocalInt(oMod, HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_DEAD); + // Alert that the player died. + AssignCommand(oPC, ReportPlayerDeath()); + + // Check if we are re-entering this state from persistence. + if (GetLocalInt(oPC, HABD_PERSISTANT_REAPPLY) != 1) + { + // Set the auto-respawn/raise timers to maximum. + SetLocalInt(oMod, HABD_RESPAWN_TIMER+sID, FloatToInt(HABD_FORCE_RESPAWN_TIMER)); + if ((HABD_SOLO_FORCE_RAISE_TIMER > 0.0) && (HABDGetPartySize(oPC))) + { + SetLocalInt(oMod, HABD_RAISE_TIMER+sID, FloatToInt(HABD_SOLO_FORCE_RAISE_TIMER)); + } else { + SetLocalInt(oMod, HABD_RAISE_TIMER+sID, FloatToInt(HABD_FORCE_RAISE_TIMER)); + } + // Increment the counters. + SetLocalInt(oMod, HABD_CURRENT_DEATH_COUNT+sID, GetLocalInt(oMod, HABD_CURRENT_DEATH_COUNT+sID) + 1); + SetLocalInt(oMod, HABD_DEATH_COUNT+sID, GetLocalInt(oMod, HABD_DEATH_COUNT+sID) + 1); + } else { + // State was reapplied, do not increment the counters. + DeleteLocalInt(oPC, HABD_PERSISTANT_REAPPLY); + // Autoraise timers will use their persistent values. + } + + // Should we reequip any regeneraton items? + if (HABD_NERF_REGENERATION_ITEMS) + { + AssignCommand(oPC, HABDRegenerationItemsReEquip(oPC)); + } + + // Drop items + AssignCommand(oPC, DropItems(oPC)); + + // Respawn option can be disabled. + if (HABD_RESPAWN_ALLOWED) + { + PopUpDeathGUIPanel (oPC, HABD_INSTANT_RESPAWN_ALLOWED, TRUE, 0, "Press the Respawn button to respawn as a DM controlled ghost. "+IntToString(HABD_RESPAWN_XP_LOSS)+"% XP & "+IntToString(HABD_RESPAWN_GP_LOSS)+"% GP penalty applies."); + } else { + FloatingTextStringOnCreature("OOC: Respawn is turned off. You must wait for your party to help you, DM intervention or automatic respawn/raise.", oPC, FALSE); + } + + // Handle the auto-respawn and auto-raise timers. + float fRespawn = IntToFloat(GetLocalInt(oMod, HABD_RESPAWN_TIMER+sID)); + float fRaise = IntToFloat(GetLocalInt(oMod, HABD_RAISE_TIMER+sID)); + if (iNPC) + { + // The respawn timer must be less than the raise timer for it to execute. + if ((fRespawn > 0.0) && ((fRespawn < fRaise) || (fRaise == 0.0))) + { + AssignCommand(oPC, DelayCommand(HABD_NPC_FORCE_RESPAWN_TIMER, ForceAutoRespawn(oPC))); + } + if (fRaise > 0.0) + { + if (HABD_FORCE_RAISE_USES_SCROLLS) + { + if (CheckForRaiseRezScrolls(oPC) <= 0) + { + return; + } + } + AssignCommand(oPC, DelayCommand(HABD_NPC_FORCE_RAISE_TIMER, ForceAutoRaise(oPC))); + } + } else { + // The respawn timer must be less than the raise timer for it to execute. + if ((fRespawn > 0.0) && ((fRespawn < fRaise) || (fRaise == 0.0))) + { + AssignCommand(oPC, AutoRespawnWarning(oPC, fRespawn)); + AssignCommand(oPC, DelayCommand(0.5 * fRespawn, AutoRespawnWarning(oPC, 0.5 * fRespawn))); + AssignCommand(oPC, DelayCommand(0.75*fRespawn, AutoRespawnWarning(oPC, 0.25*fRespawn))); + AssignCommand(oPC, DelayCommand(9*fRespawn, AutoRespawnWarning(oPC, 0.1*fRespawn))); + AssignCommand(oPC, DelayCommand(fRespawn, ForceAutoRespawn(oPC))); + } + if (fRaise > 0.0) + { + if (HABD_FORCE_RAISE_USES_SCROLLS) + { + if (CheckForRaiseRezScrolls(oPC) <= 0) + { + FloatingTextStringOnCreature("OOC: Out of scrolls. You have to wait for help.", oPC, FALSE); + return; + } + } + AssignCommand(oPC, AutoRaiseWarning(oPC, fRaise)); + AssignCommand(oPC, DelayCommand(0.5 * fRaise, AutoRaiseWarning(oPC, 0.5 * fRaise))); + AssignCommand(oPC, DelayCommand(0.75*fRaise, AutoRaiseWarning(oPC, 0.25*fRaise))); + AssignCommand(oPC, DelayCommand(9*fRaise, AutoRaiseWarning(oPC, 0.1*fRaise))); + AssignCommand(oPC, DelayCommand(fRaise, ForceAutoRaise(oPC))); + } + } + // DO NOT ADD ANY CODE HERE. IT MIGHT NOT BE EXECUTED. +} + + + + diff --git a/gamma_age_v2/habd_onpcdying.ncs b/gamma_age_v2/habd_onpcdying.ncs new file mode 100644 index 00000000..baa44305 Binary files /dev/null and b/gamma_age_v2/habd_onpcdying.ncs differ diff --git a/gamma_age_v2/habd_onpcdying.nss b/gamma_age_v2/habd_onpcdying.nss new file mode 100644 index 00000000..e473f5a5 --- /dev/null +++ b/gamma_age_v2/habd_onpcdying.nss @@ -0,0 +1,361 @@ +// Hemophiliacs Always Bleed to Death +// By Demtrious and OldManWhistler +// +// PLEASE READ "habd_include" FOR MORE INFORMATION. +// +// OnPlayerDying event handler. + +#include "habd_include" + +// **************************************************************************** + +// This function plays a random bleeding VoiceChat on a player. +// oPC - the player to make play a bleed voice. +void PlayBleedVoice (object oPC); + +void PlayBleedVoice (object oPC) +{ + switch (d6()) + { + case 1: PlayVoiceChat (VOICE_CHAT_PAIN1, oPC); break; + case 2: PlayVoiceChat (VOICE_CHAT_PAIN2, oPC); break; + case 3: PlayVoiceChat (VOICE_CHAT_PAIN3, oPC); break; + case 4: PlayVoiceChat (VOICE_CHAT_HEALME, oPC); break; + case 5: PlayVoiceChat (VOICE_CHAT_NEARDEATH, oPC); break; + case 6: PlayVoiceChat (VOICE_CHAT_HELP, oPC); break; + } + return; +} + +// **************************************************************************** + +// Heals players to 1 hp and to removes negative effects. In also calls the +// user defined bleed stabilization function. +// oPC - the player to heal. +void HealTo1HP(object oPC); + +void HealTo1HP(object oPC) +{ + object oMod = GetModule(); + string sID = GetPCPlayerName(oPC)+GetName(oPC); + // If player is already alive then abort. + if (GetLocalInt(oMod, HABD_PLAYER_STATE+sID) == HABD_STATE_PLAYER_ALIVE) return; + int iNPC = GetLocalInt(OBJECT_SELF, HABD_NPC_BLEED); + + // Give the player a chance to run away + if (HABD_POST_BLEED_INVIS_DUR > 0.0) ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectInvisibility(INVISIBILITY_TYPE_NORMAL), oPC, HABD_POST_BLEED_INVIS_DUR); + // Turn the plot flag off after a specific period of time. + SetPlotFlag(oPC, FALSE); + // Raises the player to 1 hp. + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectHeal(1 - (GetCurrentHitPoints(oPC))), oPC); + SetLocalInt(oMod,HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_ALIVE); //set player state to alive + // If this is a henchmen, then take them out of the busy state. + if (iNPC) + { + HABDAssociateNotBusy(); + } + + // Keep the player from being attacked, stop nearby attackers + AssignCommand(oPC, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectInvisibility(INVISIBILITY_TYPE_NORMAL), oPC, 6.0)); + // Make the player hostile again. + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, GetLocalInt(oPC, HABD_OLD_FACTION), oPC); + DeleteLocalInt(oPC, HABD_OLD_FACTION_SET); + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_PAUSE_DRUNK, 1.0, 5.0)); + + // Notify the player that they were healed. + DelayCommand(0.5, SendMessageToPC(oPC, "You have healed.")); + + // Apply user defined penalties. + AssignCommand(oPC, HABDUserDefinedBleed()); + + //Give a little visual effect for flare. + effect eVisual = EffectVisualEffect(VFX_IMP_RESTORATION); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eVisual, oPC); + + // If regeneration items were removed then reequip them. + if (HABD_NERF_REGENERATION_ITEMS) + { + AssignCommand(oPC, HABDRegenerationItemsReEquip(oPC)); + } + + // Fixes the inital respawn issue with monsters not reattacking. + //object oMonster = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY, oPC, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + //DelayCommand(9.0, AssignCommand(oMonster, ActionAttack(oPC))); +} + +// **************************************************************************** + +// Returns TRUE if the player has stabilized by gaining any HP since the last +// time they bled. +int CheckForStabilization(object oPC); + +int CheckForStabilization(object oPC) +{ + object oMod = GetModule(); + string sID = GetPCPlayerName(oPC)+GetName(oPC); + //Section deals with possiblity for healing by other players + if (GetCurrentHitPoints(oPC) > GetLocalInt(oMod, HABD_LAST_HP+sID)) //if hitpoint have increased + { + DelayCommand(1.0, HealTo1HP(oPC)); + return TRUE; + } + return FALSE; +} + +// **************************************************************************** + +// Report the bleed count for OBJECT_SELF. +void ReportPlayerBleed(); + +void ReportPlayerBleed() +{ + object oPC = OBJECT_SELF; + object oMod = GetModule(); + string sID = GetPCPlayerName(oPC)+GetName(oPC); + int iHPs = GetCurrentHitPoints(oPC); + int iNPC = GetLocalInt(OBJECT_SELF, HABD_NPC_BLEED); + if (iNPC) iHPs = iHPs - 10; + + if ( + (GetLocalInt(oMod, HABD_PLAYER_STATE+sID) != HABD_STATE_PLAYER_BLEEDING) || // check if player is still bleeding + (iHPs > 0) || // player has healed + (iHPs <= -10) || // player is a goner, let the death script kick in + (CheckForStabilization(oPC)) // check if player has gained any HP + ) + { + DeleteLocalInt(oPC, HABD_REPORT_BLEED_RUNNING); + return; + } + // The delay will effect how often players are vocal about bleeding. + DelayCommand(6.0, AssignCommand(oPC, ReportPlayerBleed())); + + // Prevent calling this function multiple times + SetLocalInt(oPC, HABD_REPORT_BLEED_RUNNING, 1); + + DelayCommand(0.1, FloatingTextStringOnCreature(GetName(oPC)+" is bleeding to death! At "+IntToString(iHPs)+" hitpoints.", oPC)); + if (HABD_DM_NOTIFICATION_ON_BLEED) SendMessageToAllDMs(GetName(oPC)+" is bleeding to death! At "+IntToString(iHPs)+" hitpoints."); + PlayBleedVoice(oPC); + AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_DEAD_BACK, 1.0, 6.0)); +} + +// **************************************************************************** + +// This function exists to fix the problem that occurs in bleeding scripts +// when the summoned familiar is being possessed by the player (sorc or wiz). +// That creates a condition where GetIsPC returns true for the familiar. +// What usually happens is that when the possessed familiar dies, the player +// is trapped in its body until the DM manually kills the player. +// While stuck in the dead familiar, the player is unable to run the unpossess +// action and the bleed count on the familiar usually does not work properly. + +// This function DOES NOT kill the familiar when the player is bleeding if the player +// is not possessing the familiar. The familiar will be able to continue fighting +// for its unconcious and bleeding master. +// oTarget - the possibly "possessed" player. +int KillPet(object oTarget, int nEffect = TRUE, int nVisualEffectId = VFX_IMP_UNSUMMON); + +int KillPet(object oTarget, int nEffect = TRUE, int nVisualEffectId = VFX_IMP_UNSUMMON) +{ + // Usage: place in your bleeding script with a call that looks something like + // if (KillPet(oPC)) return; // abort from the bleed script, oPC no longer exists + + effect eDeath = EffectDeath(FALSE, FALSE); + effect eVis = EffectVisualEffect(nVisualEffectId); + object oCreature = oTarget; + if(GetIsObjectValid(oCreature)) + { + object oMaster = GetMaster(oCreature); + if(GetIsObjectValid(oMaster)) + { + //Is the creature a summoned associate + if(GetAssociate(ASSOCIATE_TYPE_FAMILIAR, oMaster) == oCreature) + { + //Apply the VFX and delay the destruction of the summoned monster so + //that the script and VFX can play. + if(nEffect) + DelayCommand(0.001,ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY,eVis,GetLocation(oCreature),1.0f)); + SetPlotFlag(oCreature, FALSE); + DelayCommand(0.002,FloatingTextStringOnCreature(GetName(oMaster)+" HAS LOST FAMILIAR '"+GetName(oCreature)+"'", oCreature)); + if (HABD_DM_NOTIFICATION_ON_BLEED) SendMessageToAllDMs(GetName(oMaster)+" HAS LOST FAMILIAR '"+GetName(oCreature)+"'"); + DelayCommand(0.003, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eDeath, oCreature)); + return TRUE; + } + } + } + return FALSE; +} + +// **************************************************************************** + +// Applies -1 HP to the player and checks for stabilization. +// fBleedTimer - the time duration between bleeding -1 HP. +void BleedToDeath(float fBleedTimer) +{ + object oMod = GetModule(); + object oPC = OBJECT_SELF; + string sID = GetPCPlayerName(oPC)+GetName(oPC); + int iNPC = GetLocalInt(OBJECT_SELF, HABD_NPC_BLEED); + if (HABD_DEBUG) SpeakString("DEBUG: HABD OnBleed, "+GetName(oPC)+", HP: "+IntToString(GetCurrentHitPoints(oPC))+", master: "+GetName(GetMaster(oPC))+", state:"+HABDGetPlayerStateName(oPC), TALKVOLUME_SHOUT); + + int iPlayerState = GetLocalInt(oMod, HABD_PLAYER_STATE+sID); + if (iPlayerState != HABD_STATE_PLAYER_BLEEDING) return; + if (CheckForStabilization(oPC)) return; + + // if you get here - you are dying and have not been healed + // so you need to roll to see if you stablize + int nSavingRoll = d10(); + + // Death can be disabled before a certain level by "faking" the stabilization + // check. Do not let the players know that death is disabled because it will + // only encourage them to be idiots. + if ((HABD_NO_DEATH_UNTIL_LEVEL) && (GetHitDice(oPC) < HABD_NO_DEATH_UNTIL_LEVEL)) + { + switch (GetCurrentHitPoints(oPC)) + { + case 10: + case -1: nSavingRoll = nSavingRoll + 2; break; + case 9: + case -2: nSavingRoll = nSavingRoll + 3; break; + case 8: + case -3: nSavingRoll = nSavingRoll + 4; break; + case 7: + case -4: nSavingRoll = nSavingRoll + 5; break; + case 6: + case -5: nSavingRoll = nSavingRoll + 6; break; + case 5: + case -6: nSavingRoll = nSavingRoll + 7; break; + case 4: + case -7: nSavingRoll = nSavingRoll + 8; break; + case 3: + case -8: nSavingRoll = nSavingRoll + 9; break; + case 2: + case -9: + default: nSavingRoll = nSavingRoll + 10; break; + } + } + + if (nSavingRoll > 9) //set to 9 for 3E - lower for easier stabilization + { + DelayCommand(1.0, HealTo1HP(oPC)); //call heal subroutine + // Always make it look like they rolled a 10 to stabilize + SendMessageToPC(oPC,"Saving Roll to stop bleeding (at "+IntToString(GetCurrentHitPoints(oPC))+") = 10"); + FloatingTextStringOnCreature(GetName(oPC)+" has self-stabilized.", oPC); + DelayCommand(6.0, SendMessageToPC(oPC, "In a life or death effort you have survived, alive but barely.")); + return; + } + //if you get here, you have not been healed and did not successfully stabilize + else + { + // Most important, keep the bleeding chain going. + DelayCommand(fBleedTimer, AssignCommand(oPC, BleedToDeath(fBleedTimer))); + SendMessageToPC(oPC,"Saving Roll to stop bleeding (at "+IntToString(GetCurrentHitPoints(oPC))+") = " +IntToString(nSavingRoll)); + SetPlotFlag(oPC, FALSE); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectDamage(1,DAMAGE_TYPE_MAGICAL,DAMAGE_POWER_PLUS_FIVE), oPC); + SetPlotFlag(oPC, TRUE); + // Update local variable with hitpoints for healing option. + SetLocalInt(oMod,HABD_LAST_HP+sID, GetCurrentHitPoints(oPC)); + + // if this is true then the player has died. + if (GetCurrentHitPoints(oPC) <= -10) + { + SendMessageToPC(oPC,"You have died."); + // Ensure that plot is not still set. + SetPlotFlag(oPC, FALSE); + // Set up the hostile faction again. + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, GetLocalInt(oPC, HABD_OLD_FACTION), oPC); + DeleteLocalInt(oPC, HABD_OLD_FACTION_SET); + // Set playerstate to dead not dying + SetLocalInt(oMod,HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_DEAD); + // OnPlayerDead script will be called after this. + // BleedToDeath will be called one more time, but it will instantly + // abort because the player is not in the bleeding state. + return; + } + } +} + +// **************************************************************************** + +// OnPlayerDying event handler. +void main() +{ + object oMod = GetModule(); + object oPC = GetLastPlayerDying(); + int iNPC = GetLocalInt(OBJECT_SELF, HABD_NPC_BLEED); + if (iNPC == 1) oPC = OBJECT_SELF; + string sID = GetPCPlayerName(oPC)+GetName(oPC); + + // If an NPC is running this script, then set up its master. The master was + // automatically wiped out when the henchman died. + if (iNPC) + { + if (!GetIsObjectValid(GetAssociate(ASSOCIATE_TYPE_HENCHMAN, GetLocalObject(OBJECT_SELF, HABD_NPC_MASTER)))) + AddHenchman(GetLocalObject(OBJECT_SELF, HABD_NPC_MASTER), oPC); + } + + if (HABD_DEBUG) SpeakString("DEBUG: HABD OnDying, "+GetName(oPC)+", HP: "+IntToString(GetCurrentHitPoints(oPC))+", master: "+GetName(GetMaster(oPC))+", state:"+HABDGetPlayerStateName(oPC), TALKVOLUME_SHOUT); + + // Check if bleeding is running on DM or DM possessed, then abort. + if(GetIsDM(oPC) || GetIsDM(GetMaster(oPC))) return; + + // whistler: if this is a player in a possessed familiar, then just kill it. + // Familiar penalties will kick in when familiar dies. + if (KillPet(oPC)) return; + + int iState = GetLocalInt(oMod,HABD_PLAYER_STATE+sID); + if ((iState == HABD_STATE_PLAYER_DEAD) || (iState == HABD_STATE_RESPAWNED_GHOST)) return; + + // Most important, issue the commands to start the bleeding chain. + float fBleedTimer = HABDGetBleedTimer(oPC); + AssignCommand(oPC, DelayCommand(fBleedTimer, BleedToDeath(fBleedTimer))); + if (GetLocalInt(oPC, HABD_REPORT_BLEED_RUNNING) == 0) DelayCommand(6.0, AssignCommand(oPC, ReportPlayerBleed())); + + int iHPs = GetCurrentHitPoints(oPC); + SetPlotFlag(oPC, TRUE); + // Force friendly to hostile faction. + if (!GetLocalInt(oPC, HABD_OLD_FACTION_SET)) + { + SetLocalInt(oPC, HABD_OLD_FACTION, GetStandardFactionReputation(STANDARD_FACTION_HOSTILE, oPC)); + SetLocalInt(oPC, HABD_OLD_FACTION_SET, 1); + } + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 100, oPC); + // Keep the player from being attacked, stop nearby attackers + AssignCommand(oPC, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectInvisibility(INVISIBILITY_TYPE_NORMAL), oPC, 6.0)); + + // Allow a good chance for healing - will limit HP to -5 on a bleed level hit. + if ( + (iHPs<-5) && + (iState == HABD_STATE_PLAYER_ALIVE) + ) + { + int nHeal = -5 - iHPs; //should heal player to -5 + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectHeal(nHeal), oPC); + } + + // Set the state variables. + iHPs = GetCurrentHitPoints(oPC); + SetLocalInt(oMod,HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_BLEEDING); + SetLocalInt(oMod,HABD_LAST_HP+sID, GetCurrentHitPoints(oPC)); + + // Check if we are re-entering this state from persistence. + if (GetLocalInt(oPC, HABD_PERSISTANT_REAPPLY) != 1) + { + // Increment the counters. + SetLocalInt(oMod, HABD_CURRENT_BLEED_COUNT+sID, GetLocalInt(oMod, HABD_CURRENT_BLEED_COUNT+sID) + 1); + SetLocalInt(oMod, HABD_BLEED_COUNT+sID, GetLocalInt(oMod, HABD_BLEED_COUNT+sID) + 1); + } else { + DeleteLocalInt(oPC, HABD_PERSISTANT_REAPPLY); + } + + // Nerf regeneration items. + if (HABD_NERF_REGENERATION_ITEMS) + { + AssignCommand(oPC, HABDRegenerationItemsUnequip(oPC)); + } + + // Notify that bleeding has started. + if (iNPC) iHPs = iHPs - 10; + string sMsg = GetName(oPC)+" is bleeding to death! At "+IntToString(iHPs)+" hitpoints. Will die in "+FloatToString((10 + iHPs)*fBleedTimer, 3, 0)+" seconds."; + if (HABD_DM_NOTIFICATION_ON_BLEED) SendMessageToAllDMs(sMsg); + FloatingTextStringOnCreature(sMsg, oPC); +} diff --git a/gamma_age_v2/habd_onpcrespawn.ncs b/gamma_age_v2/habd_onpcrespawn.ncs new file mode 100644 index 00000000..27b456d2 Binary files /dev/null and b/gamma_age_v2/habd_onpcrespawn.ncs differ diff --git a/gamma_age_v2/habd_onpcrespawn.nss b/gamma_age_v2/habd_onpcrespawn.nss new file mode 100644 index 00000000..2fdcc03e --- /dev/null +++ b/gamma_age_v2/habd_onpcrespawn.nss @@ -0,0 +1,165 @@ +// Hemophiliacs Always Bleed to Death +// By Demtrious and OldManWhistler +// +// PLEASE READ "habd_include" FOR MORE INFORMATION. +// +// OnPlayerRespawn event handler. + +#include "habd_include" + +// Change this value if it is causing server lag. +const float GHOST_LOOP_TIMER = 6.0f; + +// **************************************************************************** + +// This function acts as a player heartbeat while the player is under the +// "respawn effect". +// oOldFollow - is the last object the player was told to follow. + +void Ghost(object oOldFollow = OBJECT_INVALID) +{ + object oMod = GetModule(); + object oPC = OBJECT_SELF; + string sID = GetPCPlayerName(oPC)+GetName(oPC); + + if (HABD_DEBUG) SpeakString("DEBUG: HABD OnGhostHB, "+GetName(oPC)+", PlotFlag:"+IntToString(GetPlotFlag(OBJECT_SELF))+", CommandableFlag:"+IntToString(GetCommandable())+", HP: "+IntToString(GetCurrentHitPoints(oPC))+", master: "+GetName(GetMaster(oPC))+", state:"+HABDGetPlayerStateName(oPC), TALKVOLUME_SHOUT); + + if ( + (GetPlotFlag(OBJECT_SELF)) && + (GetLocalInt(oMod, HABD_PLAYER_STATE+sID) == HABD_STATE_RESPAWNED_GHOST) + ) + { + // Is there someone to follow? + object oFollow = GetLocalObject(oPC, HABD_GHOST_AUTOFOLLOW); + HABDAssociateBusy(); + SetCommandable(TRUE); + // Most important, schedule the next iteration of the heartbeat. + DelayCommand(GHOST_LOOP_TIMER, Ghost(oFollow)); + if (GetIsObjectValid(oFollow)) + { + if (oFollow != oOldFollow) FloatingTextStringOnCreature(GetName(OBJECT_SELF)+" is now following "+ GetName(oFollow), oPC, TRUE); + if (GetArea(OBJECT_SELF) != GetArea(oFollow)) + { + SendMessageToPC(oPC, "Jumping to "+GetName(oFollow)); + // Not in same area, jump them there + ClearAllActions(); + ActionJumpToObject(oFollow); + } else { + // In same area, move them there + ClearAllActions(); + DelayCommand(0.5, ActionForceFollowObject(oFollow, 6.0f)); + } + } + // Remove their ability to control themselves + SetCommandable(FALSE); + } else { + // Respawn state has been removed. Restore the player to normal. + SetCommandable(TRUE); + SetPlotFlag(OBJECT_SELF, FALSE); + // Set playerstate to alive. + SetLocalInt(oMod, HABD_PLAYER_STATE+sID, HABD_STATE_PLAYER_ALIVE); + FloatingTextStringOnCreature("OOC: You shake off the ghostly effects.", OBJECT_SELF, FALSE); + // Restore the player's reputation with HOSTILE faction. + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, GetLocalInt(oPC, HABD_OLD_FACTION), oPC); + DeleteLocalInt(oPC, HABD_OLD_FACTION_SET); + effect eEffect = GetFirstEffect(OBJECT_SELF); + while(GetIsEffectValid(eEffect)) + { + // They are rezzed, remove sanctuary visual effects. + if (GetEffectType(eEffect) == EFFECT_TYPE_CONCEALMENT) + { + RemoveEffect(OBJECT_SELF, eEffect); + } + eEffect = GetNextEffect(OBJECT_SELF); + } + HABDAssociateNotBusy(); + AssignCommand(OBJECT_SELF, ClearAllActions()); + // Fixes the inital respawn issue with monsters not reattacking. + object oMonster = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY,oPC, 1, CREATURE_TYPE_PERCEPTION, PERCEPTION_SEEN); + DelayCommand(9.0, AssignCommand(oMonster, ActionAttack(oPC))); + } +} + +// **************************************************************************** + +// OnPlayerRespawn event handler. + +void main() +{ + // Check to see if the system is supposed to run this script, otherwise + // it may be configured improperly. + if (HABD_RESPAWN_SCRIPT != "habd_onpcrespawn") + { + ExecuteScript(HABD_RESPAWN_SCRIPT, OBJECT_SELF); + return; + } + + object oPC; + // Catch if the script was forced to executed. + if (GetLocalInt(OBJECT_SELF, HABD_FORCED_RESPAWN) == 1) + { + oPC = OBJECT_SELF; + HABDAssociateBusy(); + } else { + oPC = GetLastRespawnButtonPresser(); + } + object oMod = GetModule(); + string sID = GetPCPlayerName(oPC)+GetName(oPC); + + if (HABD_DEBUG) SpeakString("DEBUG: HABD OnRespawn, "+GetName(oPC)+", HP: "+IntToString(GetCurrentHitPoints(oPC))+", master: "+GetName(GetMaster(oPC))+", state:"+HABDGetPlayerStateName(oPC), TALKVOLUME_SHOUT); + /* + // Set the player state to respawn. + SetLocalInt(oMod, HABD_PLAYER_STATE+sID, HABD_STATE_RESPAWNED_GHOST); //set playerstate to DM raised. + + // Make it look like something happened. + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_DOOM), oPC); + */ + // Raise the player. + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectResurrection(), oPC); + /* + // Most important, schedule the ghost heartbeat. + AssignCommand(oPC, DelayCommand(3.0, Ghost())); + + // If they have a master, set up the master as the autofollow. + if (GetIsObjectValid(GetMaster(oPC))) SetLocalObject(oPC, HABD_GHOST_AUTOFOLLOW, GetMaster(oPC)); + else + { + // Remove any old autofollow objects. + DeleteLocalObject(oPC, HABD_GHOST_AUTOFOLLOW); + } + + // Apply the user defined effects. + AssignCommand(oPC, HABDUserDefinedRespawn()); + */ + // Check if we are re-entering this state from persistence. + if (GetLocalInt(oPC, HABD_PERSISTANT_REAPPLY) != 1) + { + // Apply the respawn penalty. + HABDApplyPenalty(oPC, HABD_RESPAWN_XP_LOSS, HABD_RESPAWN_GP_LOSS); + } else { + DeleteLocalInt(oPC, HABD_PERSISTANT_REAPPLY); + } + /* + // Make them invulnerable + SetPlotFlag(oPC, TRUE); + + // Make them ignored by hostiles + if (!GetLocalInt(oPC, HABD_OLD_FACTION_SET)) + { + SetLocalInt(oPC, HABD_OLD_FACTION, GetStandardFactionReputation(STANDARD_FACTION_HOSTILE, oPC)); + SetLocalInt(oPC, HABD_OLD_FACTION_SET, 1); + } + SetStandardFactionReputation(STANDARD_FACTION_HOSTILE, 100, oPC); + + // Apply effects to make them a ghost. + // Don't set the concealment too high just incase they find a way to abuse the system. + effect eBad = EffectConcealment(1); + eBad = EffectLinkEffects(EffectVisualEffect(VFX_DUR_PROT_SHADOW_ARMOR), eBad); + eBad = EffectLinkEffects(EffectVisualEffect(VFX_DUR_GHOSTLY_VISAGE), eBad); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, eBad, oPC); + + FloatingTextStringOnCreature("OOC: You are a ghost. Do not interact with the other players.", oPC, FALSE); + SetCommandable(FALSE, oPC); + */ +} + diff --git a/gamma_age_v2/habd_rules.uti b/gamma_age_v2/habd_rules.uti new file mode 100644 index 00000000..2a86607e Binary files /dev/null and b/gamma_age_v2/habd_rules.uti differ diff --git a/gamma_age_v2/halfplate_med.uti b/gamma_age_v2/halfplate_med.uti new file mode 100644 index 00000000..098d6523 Binary files /dev/null and b/gamma_age_v2/halfplate_med.uti differ diff --git a/gamma_age_v2/hawkoid.utc b/gamma_age_v2/hawkoid.utc new file mode 100644 index 00000000..f89fd50c Binary files /dev/null and b/gamma_age_v2/hawkoid.utc differ diff --git a/gamma_age_v2/herlproperties.uti b/gamma_age_v2/herlproperties.uti new file mode 100644 index 00000000..b69ed4dc Binary files /dev/null and b/gamma_age_v2/herlproperties.uti differ diff --git a/gamma_age_v2/herp.utc b/gamma_age_v2/herp.utc new file mode 100644 index 00000000..f7eb5810 Binary files /dev/null and b/gamma_age_v2/herp.utc differ diff --git a/gamma_age_v2/hide_lg.uti b/gamma_age_v2/hide_lg.uti new file mode 100644 index 00000000..8de3476a Binary files /dev/null and b/gamma_age_v2/hide_lg.uti differ diff --git a/gamma_age_v2/hide_med.uti b/gamma_age_v2/hide_med.uti new file mode 100644 index 00000000..109d656e Binary files /dev/null and b/gamma_age_v2/hide_med.uti differ diff --git a/gamma_age_v2/hide_sm.uti b/gamma_age_v2/hide_sm.uti new file mode 100644 index 00000000..cc5e1ebb Binary files /dev/null and b/gamma_age_v2/hide_sm.uti differ diff --git a/gamma_age_v2/hide_st.uti b/gamma_age_v2/hide_st.uti new file mode 100644 index 00000000..1243d972 Binary files /dev/null and b/gamma_age_v2/hide_st.uti differ diff --git a/gamma_age_v2/hif_onacquireite.ncs b/gamma_age_v2/hif_onacquireite.ncs new file mode 100644 index 00000000..4aca9d94 Binary files /dev/null and b/gamma_age_v2/hif_onacquireite.ncs differ diff --git a/gamma_age_v2/hif_onacquireite.nss b/gamma_age_v2/hif_onacquireite.nss new file mode 100644 index 00000000..effa7495 --- /dev/null +++ b/gamma_age_v2/hif_onacquireite.nss @@ -0,0 +1,13 @@ +// prc_onaquire,x2_mod_def_aqu +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onacquireitem event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onaquire", OBJECT_SELF); + ExecuteScript("x2_mod_def_aqu", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onactivateit.ncs b/gamma_age_v2/hif_onactivateit.ncs new file mode 100644 index 00000000..3cc571e0 Binary files /dev/null and b/gamma_age_v2/hif_onactivateit.ncs differ diff --git a/gamma_age_v2/hif_onactivateit.nss b/gamma_age_v2/hif_onactivateit.nss new file mode 100644 index 00000000..1a3da0c4 --- /dev/null +++ b/gamma_age_v2/hif_onactivateit.nss @@ -0,0 +1,13 @@ +// prc_onactivate,sm_on_act +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onactivateitem event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onactivate", OBJECT_SELF); + ExecuteScript("sm_on_act", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onclientente.ncs b/gamma_age_v2/hif_onclientente.ncs new file mode 100644 index 00000000..657b79c0 Binary files /dev/null and b/gamma_age_v2/hif_onclientente.ncs differ diff --git a/gamma_age_v2/hif_onclientente.nss b/gamma_age_v2/hif_onclientente.nss new file mode 100644 index 00000000..c71be091 --- /dev/null +++ b/gamma_age_v2/hif_onclientente.nss @@ -0,0 +1,13 @@ +// prc_onenter,sm_on_client_ent +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the oncliententer event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onenter", OBJECT_SELF); + ExecuteScript("sm_on_client_ent", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onclientleav.ncs b/gamma_age_v2/hif_onclientleav.ncs new file mode 100644 index 00000000..ad990590 Binary files /dev/null and b/gamma_age_v2/hif_onclientleav.ncs differ diff --git a/gamma_age_v2/hif_onclientleav.nss b/gamma_age_v2/hif_onclientleav.nss new file mode 100644 index 00000000..4baffcbd --- /dev/null +++ b/gamma_age_v2/hif_onclientleav.nss @@ -0,0 +1,13 @@ +// prc_onleave,sm_on_client_lv +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onclientleave event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onleave", OBJECT_SELF); + ExecuteScript("sm_on_client_lv", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onheartbeat.ncs b/gamma_age_v2/hif_onheartbeat.ncs new file mode 100644 index 00000000..ee56169c Binary files /dev/null and b/gamma_age_v2/hif_onheartbeat.ncs differ diff --git a/gamma_age_v2/hif_onheartbeat.nss b/gamma_age_v2/hif_onheartbeat.nss new file mode 100644 index 00000000..754b754c --- /dev/null +++ b/gamma_age_v2/hif_onheartbeat.nss @@ -0,0 +1,13 @@ +// prc_onheartbeat,x3_mod_def_hb +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onheartbeat event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onheartbeat", OBJECT_SELF); + ExecuteScript("x3_mod_def_hb", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onmoduleload.ncs b/gamma_age_v2/hif_onmoduleload.ncs new file mode 100644 index 00000000..c2910695 Binary files /dev/null and b/gamma_age_v2/hif_onmoduleload.ncs differ diff --git a/gamma_age_v2/hif_onmoduleload.nss b/gamma_age_v2/hif_onmoduleload.nss new file mode 100644 index 00000000..dbb5c226 --- /dev/null +++ b/gamma_age_v2/hif_onmoduleload.nss @@ -0,0 +1,13 @@ +// prc_onmodload,sm_on_mod_ld +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onmoduleload event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onmodload", OBJECT_SELF); + ExecuteScript("sm_on_mod_ld", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onplayerchat.ncs b/gamma_age_v2/hif_onplayerchat.ncs new file mode 100644 index 00000000..8fe597f0 Binary files /dev/null and b/gamma_age_v2/hif_onplayerchat.ncs differ diff --git a/gamma_age_v2/hif_onplayerchat.nss b/gamma_age_v2/hif_onplayerchat.nss new file mode 100644 index 00000000..c1ca05df --- /dev/null +++ b/gamma_age_v2/hif_onplayerchat.nss @@ -0,0 +1,13 @@ +// prc_onplayerchat,dmfi_onplychat +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerchat event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onplayerchat", OBJECT_SELF); + ExecuteScript("dmfi_onplychat", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onplayerdeat.ncs b/gamma_age_v2/hif_onplayerdeat.ncs new file mode 100644 index 00000000..fee5601d Binary files /dev/null and b/gamma_age_v2/hif_onplayerdeat.ncs differ diff --git a/gamma_age_v2/hif_onplayerdeat.nss b/gamma_age_v2/hif_onplayerdeat.nss new file mode 100644 index 00000000..d4d89e86 --- /dev/null +++ b/gamma_age_v2/hif_onplayerdeat.nss @@ -0,0 +1,13 @@ +// prc_ondeath,sm_on_death +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerdeath event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_ondeath", OBJECT_SELF); + ExecuteScript("sm_on_death", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onplayerdyin.ncs b/gamma_age_v2/hif_onplayerdyin.ncs new file mode 100644 index 00000000..b07ca428 Binary files /dev/null and b/gamma_age_v2/hif_onplayerdyin.ncs differ diff --git a/gamma_age_v2/hif_onplayerdyin.nss b/gamma_age_v2/hif_onplayerdyin.nss new file mode 100644 index 00000000..428df190 --- /dev/null +++ b/gamma_age_v2/hif_onplayerdyin.nss @@ -0,0 +1,13 @@ +// prc_ondying,sm_on_dying +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerdying event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_ondying", OBJECT_SELF); + ExecuteScript("sm_on_dying", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onplayerequi.ncs b/gamma_age_v2/hif_onplayerequi.ncs new file mode 100644 index 00000000..7ca177b3 Binary files /dev/null and b/gamma_age_v2/hif_onplayerequi.ncs differ diff --git a/gamma_age_v2/hif_onplayerequi.nss b/gamma_age_v2/hif_onplayerequi.nss new file mode 100644 index 00000000..f7fa8ee7 --- /dev/null +++ b/gamma_age_v2/hif_onplayerequi.nss @@ -0,0 +1,13 @@ +// prc_equip,x2_mod_def_equ +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerequipitem event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_equip", OBJECT_SELF); + ExecuteScript("x2_mod_def_equ", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onplayerresp.ncs b/gamma_age_v2/hif_onplayerresp.ncs new file mode 100644 index 00000000..152318e9 Binary files /dev/null and b/gamma_age_v2/hif_onplayerresp.ncs differ diff --git a/gamma_age_v2/hif_onplayerresp.nss b/gamma_age_v2/hif_onplayerresp.nss new file mode 100644 index 00000000..c49729b2 --- /dev/null +++ b/gamma_age_v2/hif_onplayerresp.nss @@ -0,0 +1,13 @@ +// prc_onrespawn,sm_on_respawn +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerrespawn event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onrespawn", OBJECT_SELF); + ExecuteScript("sm_on_respawn", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onplayerrest.ncs b/gamma_age_v2/hif_onplayerrest.ncs new file mode 100644 index 00000000..8aa84fd6 Binary files /dev/null and b/gamma_age_v2/hif_onplayerrest.ncs differ diff --git a/gamma_age_v2/hif_onplayerrest.nss b/gamma_age_v2/hif_onplayerrest.nss new file mode 100644 index 00000000..e83a048f --- /dev/null +++ b/gamma_age_v2/hif_onplayerrest.nss @@ -0,0 +1,13 @@ +// prc_rest,sm_on_rest +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerrest event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_rest", OBJECT_SELF); + ExecuteScript("sm_on_rest", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onplayeruneq.ncs b/gamma_age_v2/hif_onplayeruneq.ncs new file mode 100644 index 00000000..735449e8 Binary files /dev/null and b/gamma_age_v2/hif_onplayeruneq.ncs differ diff --git a/gamma_age_v2/hif_onplayeruneq.nss b/gamma_age_v2/hif_onplayeruneq.nss new file mode 100644 index 00000000..efab99cf --- /dev/null +++ b/gamma_age_v2/hif_onplayeruneq.nss @@ -0,0 +1,13 @@ +// prc_unequip,x2_mod_def_unequ +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onplayerunequipitem event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_unequip", OBJECT_SELF); + ExecuteScript("x2_mod_def_unequ", OBJECT_SELF); +} diff --git a/gamma_age_v2/hif_onunaquireit.ncs b/gamma_age_v2/hif_onunaquireit.ncs new file mode 100644 index 00000000..7ac12ea2 Binary files /dev/null and b/gamma_age_v2/hif_onunaquireit.ncs differ diff --git a/gamma_age_v2/hif_onunaquireit.nss b/gamma_age_v2/hif_onunaquireit.nss new file mode 100644 index 00000000..03f75262 --- /dev/null +++ b/gamma_age_v2/hif_onunaquireit.nss @@ -0,0 +1,13 @@ +// prc_onunaquire,sm_on_unacquire +///////////////////////////////////////////////////////////////////// +// +// This script has been auto-generated by HakInstaller to call +// multiple handlers for the onunaquireitem event. +// +///////////////////////////////////////////////////////////////////// + +void main() +{ + ExecuteScript("prc_onunaquire", OBJECT_SELF); + ExecuteScript("sm_on_unacquire", OBJECT_SELF); +} diff --git a/gamma_age_v2/hisser.utc b/gamma_age_v2/hisser.utc new file mode 100644 index 00000000..a4761ca1 Binary files /dev/null and b/gamma_age_v2/hisser.utc differ diff --git a/gamma_age_v2/hisser001.utc b/gamma_age_v2/hisser001.utc new file mode 100644 index 00000000..a2bc5f40 Binary files /dev/null and b/gamma_age_v2/hisser001.utc differ diff --git a/gamma_age_v2/hisserhide.uti b/gamma_age_v2/hisserhide.uti new file mode 100644 index 00000000..f643db3d Binary files /dev/null and b/gamma_age_v2/hisserhide.uti differ diff --git a/gamma_age_v2/hlslang_014.uti b/gamma_age_v2/hlslang_014.uti new file mode 100644 index 00000000..0148f025 Binary files /dev/null and b/gamma_age_v2/hlslang_014.uti differ diff --git a/gamma_age_v2/hlslang_015.uti b/gamma_age_v2/hlslang_015.uti new file mode 100644 index 00000000..8af2150d Binary files /dev/null and b/gamma_age_v2/hlslang_015.uti differ diff --git a/gamma_age_v2/hlslang_016.uti b/gamma_age_v2/hlslang_016.uti new file mode 100644 index 00000000..6488e5a8 Binary files /dev/null and b/gamma_age_v2/hlslang_016.uti differ diff --git a/gamma_age_v2/hlslang_1.uti b/gamma_age_v2/hlslang_1.uti new file mode 100644 index 00000000..bc711f53 Binary files /dev/null and b/gamma_age_v2/hlslang_1.uti differ diff --git a/gamma_age_v2/hlslang_10.uti b/gamma_age_v2/hlslang_10.uti new file mode 100644 index 00000000..c1101162 Binary files /dev/null and b/gamma_age_v2/hlslang_10.uti differ diff --git a/gamma_age_v2/hlslang_101.uti b/gamma_age_v2/hlslang_101.uti new file mode 100644 index 00000000..29a42732 Binary files /dev/null and b/gamma_age_v2/hlslang_101.uti differ diff --git a/gamma_age_v2/hlslang_102.uti b/gamma_age_v2/hlslang_102.uti new file mode 100644 index 00000000..4285f8e5 Binary files /dev/null and b/gamma_age_v2/hlslang_102.uti differ diff --git a/gamma_age_v2/hlslang_103.uti b/gamma_age_v2/hlslang_103.uti new file mode 100644 index 00000000..2af638d3 Binary files /dev/null and b/gamma_age_v2/hlslang_103.uti differ diff --git a/gamma_age_v2/hlslang_104.uti b/gamma_age_v2/hlslang_104.uti new file mode 100644 index 00000000..cb1ef048 Binary files /dev/null and b/gamma_age_v2/hlslang_104.uti differ diff --git a/gamma_age_v2/hlslang_105.uti b/gamma_age_v2/hlslang_105.uti new file mode 100644 index 00000000..93694d0e Binary files /dev/null and b/gamma_age_v2/hlslang_105.uti differ diff --git a/gamma_age_v2/hlslang_106.uti b/gamma_age_v2/hlslang_106.uti new file mode 100644 index 00000000..d2e8d8c0 Binary files /dev/null and b/gamma_age_v2/hlslang_106.uti differ diff --git a/gamma_age_v2/hlslang_107.uti b/gamma_age_v2/hlslang_107.uti new file mode 100644 index 00000000..1c6ff3dd Binary files /dev/null and b/gamma_age_v2/hlslang_107.uti differ diff --git a/gamma_age_v2/hlslang_108.uti b/gamma_age_v2/hlslang_108.uti new file mode 100644 index 00000000..ea2a94b5 Binary files /dev/null and b/gamma_age_v2/hlslang_108.uti differ diff --git a/gamma_age_v2/hlslang_109.uti b/gamma_age_v2/hlslang_109.uti new file mode 100644 index 00000000..7032b557 Binary files /dev/null and b/gamma_age_v2/hlslang_109.uti differ diff --git a/gamma_age_v2/hlslang_11.uti b/gamma_age_v2/hlslang_11.uti new file mode 100644 index 00000000..4e282431 Binary files /dev/null and b/gamma_age_v2/hlslang_11.uti differ diff --git a/gamma_age_v2/hlslang_12.uti b/gamma_age_v2/hlslang_12.uti new file mode 100644 index 00000000..772c1d47 Binary files /dev/null and b/gamma_age_v2/hlslang_12.uti differ diff --git a/gamma_age_v2/hlslang_13.uti b/gamma_age_v2/hlslang_13.uti new file mode 100644 index 00000000..db6fa1c6 Binary files /dev/null and b/gamma_age_v2/hlslang_13.uti differ diff --git a/gamma_age_v2/hlslang_2.uti b/gamma_age_v2/hlslang_2.uti new file mode 100644 index 00000000..ad373065 Binary files /dev/null and b/gamma_age_v2/hlslang_2.uti differ diff --git a/gamma_age_v2/hlslang_3.uti b/gamma_age_v2/hlslang_3.uti new file mode 100644 index 00000000..80fde1f0 Binary files /dev/null and b/gamma_age_v2/hlslang_3.uti differ diff --git a/gamma_age_v2/hlslang_4.uti b/gamma_age_v2/hlslang_4.uti new file mode 100644 index 00000000..b1d5f218 Binary files /dev/null and b/gamma_age_v2/hlslang_4.uti differ diff --git a/gamma_age_v2/hlslang_5.uti b/gamma_age_v2/hlslang_5.uti new file mode 100644 index 00000000..dfb87efa Binary files /dev/null and b/gamma_age_v2/hlslang_5.uti differ diff --git a/gamma_age_v2/hlslang_6.uti b/gamma_age_v2/hlslang_6.uti new file mode 100644 index 00000000..40ed9f32 Binary files /dev/null and b/gamma_age_v2/hlslang_6.uti differ diff --git a/gamma_age_v2/hlslang_7.uti b/gamma_age_v2/hlslang_7.uti new file mode 100644 index 00000000..dea9b502 Binary files /dev/null and b/gamma_age_v2/hlslang_7.uti differ diff --git a/gamma_age_v2/hlslang_8.uti b/gamma_age_v2/hlslang_8.uti new file mode 100644 index 00000000..325b5f5c Binary files /dev/null and b/gamma_age_v2/hlslang_8.uti differ diff --git a/gamma_age_v2/hlslang_9.uti b/gamma_age_v2/hlslang_9.uti new file mode 100644 index 00000000..2d177294 Binary files /dev/null and b/gamma_age_v2/hlslang_9.uti differ diff --git a/gamma_age_v2/holcut.utc b/gamma_age_v2/holcut.utc new file mode 100644 index 00000000..31b4e38b Binary files /dev/null and b/gamma_age_v2/holcut.utc differ diff --git a/gamma_age_v2/howler.utc b/gamma_age_v2/howler.utc new file mode 100644 index 00000000..9398263b Binary files /dev/null and b/gamma_age_v2/howler.utc differ diff --git a/gamma_age_v2/inc_array.nss b/gamma_age_v2/inc_array.nss new file mode 100644 index 00000000..31370c45 --- /dev/null +++ b/gamma_age_v2/inc_array.nss @@ -0,0 +1,504 @@ +#include "nwnx_regex" + +/// @addtogroup data Data +/// @brief Provides a number of data structures for NWN code to use (simulated arrays) +/// @{ +/// @file nwnx_data.nss + +const int INVALID_INDEX = -1; +const int TYPE_FLOAT = 0; +const int TYPE_INTEGER = 1; +const int TYPE_OBJECT = 2; +const int TYPE_STRING = 3; + +/// @defgroup data_array_at Array At +/// @brief Returns the element at the index. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param index The index. +/// @return The element of associated type. +/// @{ +string Array_At_Str(string tag, int index, object obj=OBJECT_INVALID); +float Array_At_Flt(string tag, int index, object obj=OBJECT_INVALID); +int Array_At_Int(string tag, int index, object obj=OBJECT_INVALID); +object Array_At_Obj(string tag, int index, object obj=OBJECT_INVALID); +/// @} + + +/// Clears the entire array, such that size==0. +void Array_Clear(string tag, object obj=OBJECT_INVALID); + +/// @defgroup data_array_contains Array Contains +/// @brief Checks if array contains the element. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param element The element. +/// @return TRUE if the collection contains the element. +/// @{ +int Array_Contains_Flt(string tag, float element, object obj=OBJECT_INVALID); +int Array_Contains_Int(string tag, int element, object obj=OBJECT_INVALID); +int Array_Contains_Obj(string tag, object element, object obj=OBJECT_INVALID); +int Array_Contains_Str(string tag, string element, object obj=OBJECT_INVALID); +/// @} + +/// Copies the array of name otherTag over the array of name tag. +void Array_Copy(string tag, string otherTag, object obj=OBJECT_INVALID); + +/// Erases the element at index, and shuffles any elements from index size-1 to index + 1 left. +void Array_Erase(string tag, int index, object obj=OBJECT_INVALID); + +/// @defgroup data_array_find Array Find +/// @brief Get the index at which the element is located. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param element The element. +/// @return Returns the index at which the element is located, or ARRAY_INVALID_INDEX. +/// @{ +int Array_Find_Flt(string tag, float element, object obj=OBJECT_INVALID); +int Array_Find_Int(string tag, int element, object obj=OBJECT_INVALID); +int Array_Find_Obj(string tag, object element, object obj=OBJECT_INVALID); +int Array_Find_Str(string tag, string element, object obj=OBJECT_INVALID); +/// @} + +/// @defgroup data_array_insert Array Insert +/// @brief Inserts the element at the index, where size > index >= 0. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param index The index. +/// @param element The element. +/// @{ +void Array_Insert_Flt(string tag, int index, float element, object obj=OBJECT_INVALID); +void Array_Insert_Int(string tag, int index, int element, object obj=OBJECT_INVALID); +void Array_Insert_Obj(string tag, int index, object element, object obj=OBJECT_INVALID); +void Array_Insert_Str(string tag, int index, string element, object obj=OBJECT_INVALID); +/// @} + +/// @defgroup data_array_pushback Array Pushback +/// @brief Pushes an element to the back of the collection. +/// @remark Functionally identical to an insert at index size-1. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param element The element. +/// @{ +void Array_PushBack_Flt(string tag, float element, object obj=OBJECT_INVALID); +void Array_PushBack_Int(string tag, int element, object obj=OBJECT_INVALID); +void Array_PushBack_Obj(string tag, object element, object obj=OBJECT_INVALID); +void Array_PushBack_Str(string tag, string element, object obj=OBJECT_INVALID); +/// @} + +/// Resizes the array. If the array is shrinking, it chops off elements at the ned. +void Array_Resize(string tag, int size, object obj=OBJECT_INVALID); + +/// Reorders the array such each possible permutation of elements has equal probability of appearance. +void Array_Shuffle(string tag, object obj=OBJECT_INVALID); + +/// Returns the size of the array. +int Array_Size(string tag, object obj=OBJECT_INVALID); + +/// Sorts the collection based on descending order. +void Array_SortAscending(string tag, int type=TYPE_STRING, object obj=OBJECT_INVALID); + +/// Sorts the collection based on descending order. +void Array_SortDescending(string tag, int type=TYPE_STRING, object obj=OBJECT_INVALID); + +/// @defgroup data_array_set Array Set +/// @brief Sets the element at the index, where size > index >= 0. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param index The index. +/// @param element The element. +/// @{ +void Array_Set_Flt(string tag, int index, float element, object obj=OBJECT_INVALID); +void Array_Set_Int(string tag, int index, int element, object obj=OBJECT_INVALID); +void Array_Set_Obj(string tag, int index, object element, object obj=OBJECT_INVALID); +void Array_Set_Str(string tag, int index, string element, object obj=OBJECT_INVALID); +/// @} + +/// @} + +// +// Local Utility Functions. +// +string GetTableName(string tag, object obj=OBJECT_INVALID, int bare=FALSE) { + if (obj == OBJECT_INVALID) + obj = GetModule(); + + string sName = "array_" + ObjectToString(obj) + "_" + tag; + // Remove invalid characters from the tag rather than failing. + string sCleansed = NWNX_Regex_Replace(sName, "[^A-Za-z0-9_\$@#]", ""); + // But provide some feedback. + if (GetStringLength(sName) != GetStringLength(sCleansed) || GetStringLength(sCleansed) == 0) { + WriteTimestampedLogEntry("WARNING: Invalid table name detected for array with tag <" + tag + ">. Only characters (a-zA-Z0-9), _, @, $ and # are allowed. Using <"+sCleansed+"> instead."); + + } + + // BARE returns just the table name with no wrapping. + if (bare == TRUE) { + return sCleansed; + } + + // Table name wraped in quotes to avoid token expansion. + return "\""+sCleansed+"\""; +} + +string GetTableCreateString(string tag, object obj=OBJECT_INVALID) { + // for simplicity sake, everything is turned into a string. Possible enhancement + // to create specific tables for int/float/whatever. + return "CREATE TABLE IF NOT EXISTS " + GetTableName(tag, obj) + " ( ind INTEGER PRIMARY KEY, value TEXT )"; +} + +int TableExists(string tag, object obj=OBJECT_INVALID) { + string stmt = "SELECT name FROM sqlite_master WHERE type = 'table' AND name = @tablename"; + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + SqlBindString(sqlQuery, "@tablename", GetTableName(tag, obj)); + return SqlStep(sqlQuery); +} + +void ExecuteStatement(string statement, object obj=OBJECT_INVALID) { + if (obj == OBJECT_INVALID) + obj = GetModule(); + // There's no direct "execute this.." everything has to be prepared then executed. + //WriteTimestampedLogEntry("SQL: " + statement); + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), statement); + SqlStep(sqlQuery); +} + +void CreateArrayTable(string tag, object obj=OBJECT_INVALID) { + string createStatement = GetTableCreateString(tag, obj); + ExecuteStatement(createStatement, obj); +} + +// Get the table row count. Returns -1 on error (0 is a valid number of rows in a table) +int GetRowCount(string tag, object obj=OBJECT_INVALID) { + if (obj == OBJECT_INVALID) + obj = GetModule(); + CreateArrayTable(tag, obj); + string stmt = "SELECT COUNT(1) FROM " + GetTableName(tag, obj); + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + if ( SqlStep(sqlQuery) ) { + return SqlGetInt(sqlQuery, 0); + } + return -1; +} + + +//////////////////////////////////////////////////////////////////////////////// +// return the value contained in location "index" +string Array_At_Str(string tag, int index, object obj=OBJECT_INVALID) +{ + // Just "create if not exists" to ensure it exists for the insert. + CreateArrayTable(tag, obj); + + string stmt = "SELECT value FROM " + GetTableName(tag, obj) + " WHERE ind = @ind"; + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + SqlBindInt(sqlQuery, "@ind", index); + if ( SqlStep(sqlQuery) ) { + return SqlGetString(sqlQuery, 0); + } + return ""; +} + +float Array_At_Flt(string tag, int index, object obj=OBJECT_INVALID) +{ + string st = Array_At_Str(tag, index, obj); + if (st == "") { + return 0.0; + } + return StringToFloat(st); +} + +int Array_At_Int(string tag, int index, object obj=OBJECT_INVALID) +{ + string st = Array_At_Str(tag, index, obj); + if (st == "") { + return 0; + } + return StringToInt(st); +} + +object Array_At_Obj(string tag, int index, object obj=OBJECT_INVALID) +{ + string st = Array_At_Str(tag, index, obj); + if (st == "") { + return OBJECT_INVALID; + } + return StringToObject(st); +} + +void Array_Clear(string tag, object obj=OBJECT_INVALID) +{ + ExecuteStatement("delete from "+GetTableName(tag, obj), obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Return true/value (1/0) if the array contains the value "element" +int Array_Contains_Str(string tag, string element, object obj=OBJECT_INVALID) +{ + CreateArrayTable(tag, obj); + string stmt = "SELECT COUNT(1) FROM "+GetTableName(tag, obj)+" WHERE value = @element"; + + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + SqlBindString(sqlQuery, "@element", element); + + int pos = -1; + if ( SqlStep(sqlQuery) ) { + pos = SqlGetInt(sqlQuery, 0); + if (pos > 0) { + return TRUE; + } + } + return FALSE; +} + +int Array_Contains_Flt(string tag, float element, object obj=OBJECT_INVALID) +{ + return Array_Contains_Str(tag, FloatToString(element), obj); +} + +int Array_Contains_Int(string tag, int element, object obj=OBJECT_INVALID) +{ + return Array_Contains_Str(tag, IntToString(element), obj); +} + +int Array_Contains_Obj(string tag, object element, object obj=OBJECT_INVALID) +{ + return Array_Contains_Str(tag, ObjectToString(element), obj); +} + + +//////////////////////////////////////////////////////////////////////////////// +void Array_Copy(string tag, string otherTag, object obj=OBJECT_INVALID) +{ + CreateArrayTable(otherTag, obj); + ExecuteStatement("INSERT INTO "+GetTableName(otherTag, obj)+" SELECT * FROM "+GetTableName(tag, obj), obj); +} + +//////////////////////////////////////////////////////////////////////////////// +void Array_Erase(string tag, int index, object obj=OBJECT_INVALID) +{ + int rows = GetRowCount(tag, obj); + // Silently fail if "index" is outside the range of valid indicies. + if (index >= 0 && index < rows) { + string stmt = "DELETE FROM "+GetTableName(tag, obj)+" WHERE ind = @ind"; + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + SqlBindInt(sqlQuery, "@ind", index); + SqlStep(sqlQuery); + + stmt = "UPDATE "+GetTableName(tag, obj)+" SET ind = ind - 1 WHERE ind > @ind"; + sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + SqlBindInt(sqlQuery, "@ind", index); + SqlStep(sqlQuery); + } +} + +//////////////////////////////////////////////////////////////////////////////// +// return the index in the array containing "element" +// if not found, return INVALID_INDEX +int Array_Find_Str(string tag, string element, object obj=OBJECT_INVALID) +{ + string stmt = "SELECT IFNULL(MIN(ind),@invalid_index) FROM "+GetTableName(tag, obj)+" WHERE value = @element"; + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + SqlBindInt(sqlQuery, "@invalid_index", INVALID_INDEX); + SqlBindString(sqlQuery, "@element", element); + if ( SqlStep(sqlQuery) ) { + return SqlGetInt(sqlQuery, 0); + } + return INVALID_INDEX; +} + +int Array_Find_Flt(string tag, float element, object obj=OBJECT_INVALID) +{ + return Array_Find_Str(tag, FloatToString(element), obj); +} + +int Array_Find_Int(string tag, int element, object obj=OBJECT_INVALID) +{ + return Array_Find_Str(tag, IntToString(element), obj); +} + +int Array_Find_Obj(string tag, object element, object obj=OBJECT_INVALID) +{ + return Array_Find_Str(tag, ObjectToString(element), obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Insert a new element into position 'index'. If index is beyond the number of rows in the array, +// this will quietly fail. This could be changed if you wanted to support sparse +// arrays. +void Array_Insert_Str(string tag, int index, string element, object obj=OBJECT_INVALID) +{ + int rows = GetRowCount(tag, obj); + // Index numbers are off by one, much like C arrays, so for "rows=10" - values are 0-9. + // It's not unreasonable to fail if you try to insert ind=10 into an array who's indexes + // only go to 9, but I guess it doesn't hurt as long as we're not allowing gaps in + // index numbers. + if (index >= 0 && index <= rows) { + // index is passed as an integer, so immune (as far as I know) to SQL injection for a one shot query. + ExecuteStatement("UPDATE "+GetTableName(tag, obj)+" SET ind = ind + 1 WHERE ind >= "+IntToString(index), obj); + // Element, however, is not. + string stmt = "INSERT INTO "+GetTableName(tag, obj)+" VALUES ( @ind, @element )"; + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + SqlBindInt(sqlQuery, "@ind", index); + SqlBindString(sqlQuery, "@element", element); + SqlStep(sqlQuery); + } +} + +void Array_Insert_Flt(string tag, int index, float element, object obj=OBJECT_INVALID) +{ + Array_Insert_Str(tag, index, FloatToString(element), obj); +} + +void Array_Insert_Int(string tag, int index, int element, object obj=OBJECT_INVALID) +{ + Array_Insert_Str(tag, index, IntToString(element), obj); +} + +void Array_Insert_Obj(string tag, int index, object element, object obj=OBJECT_INVALID) +{ + Array_Insert_Str(tag, index, ObjectToString(element), obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Insert a new element at the end of the array. +void Array_PushBack_Str(string tag, string element, object obj=OBJECT_INVALID) +{ + // If rowCount = 10, indexes are from 0 to 9, so this becomes the 11th entry at index 10. + int rowCount = GetRowCount(tag, obj); + + string stmt = "INSERT INTO "+GetTableName(tag, obj)+" VALUES ( @ind, @element )"; + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + SqlBindInt(sqlQuery, "@ind", rowCount); + SqlBindString(sqlQuery, "@element", element); + SqlStep(sqlQuery); +} + +void Array_PushBack_Flt(string tag, float element, object obj=OBJECT_INVALID) +{ + Array_PushBack_Str(tag, FloatToString(element), obj); +} + +void Array_PushBack_Int(string tag, int element, object obj=OBJECT_INVALID) +{ + Array_PushBack_Str(tag, IntToString(element), obj); +} + +void Array_PushBack_Obj(string tag, object element, object obj=OBJECT_INVALID) +{ + Array_PushBack_Str(tag, ObjectToString(element), obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Cuts the array off at size 'size'. Elements beyond size are removed. +void Array_Resize(string tag, int size, object obj=OBJECT_INVALID) +{ + // Int immune to sql injection so easier to one-shot it. + ExecuteStatement("DELETE FROM "+GetTableName(tag, obj)+" WHERE ind >= " + IntToString(size), obj); +} + +//////////////////////////////////////////////////////////////////////////////// +void Array_Shuffle(string tag, object obj=OBJECT_INVALID) +{ + string table = GetTableName(tag, obj, TRUE); + ExecuteStatement("CREATE TABLE " +table+ "_temp AS SELECT ROW_NUMBER() OVER(ORDER BY RANDOM())-1, value FROM " +table, obj); + ExecuteStatement("DELETE FROM " +table , obj); + ExecuteStatement("INSERT INTO " +table+ " SELECT * FROM " +table+ "_temp", obj); + ExecuteStatement("DROP TABLE " +table+ "_TEMP", obj); +} + +//////////////////////////////////////////////////////////////////////////////// +int Array_Size(string tag, object obj=OBJECT_INVALID) +{ + return GetRowCount(tag, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Sort the array by value according to 'direction' (ASC or DESC). +// Supplying a type allows for correct numerical sorting of integers or floats. +void Array_Sort(string tag, string dir="ASC", int type=TYPE_STRING, object obj=OBJECT_INVALID) +{ + string table = GetTableName(tag, obj, TRUE); + string direction = GetStringUpperCase(dir); + + if ( ! (direction == "ASC" || direction == "DESC") ) { + WriteTimestampedLogEntry("WARNING: Invalid sort direction <" + direction + "> supplied. Defaulting to ASC."); + direction = "ASC"; + } + + // default orderBy for strings. + string orderBy = "ORDER BY value " + direction; + switch(type) { + case TYPE_INTEGER: + orderBy = "ORDER BY CAST(value AS INTEGER)" + direction; + break; + case TYPE_FLOAT: + orderBy = "ORDER BY CAST(value AS DECIMAL)" + direction; + break; + } + ExecuteStatement("CREATE TABLE " +table+ "_temp AS SELECT ROW_NUMBER() OVER(" + orderBy + ")-1, value FROM " +table, obj); + ExecuteStatement("DELETE FROM " +table, obj); + ExecuteStatement("INSERT INTO " +table+ " SELECT * FROM " +table+ "_temp", obj); + ExecuteStatement("DROP TABLE " +table+ "_temp", obj); +} + +void Array_SortAscending(string tag, int type=TYPE_STRING, object obj=OBJECT_INVALID) +{ + Array_Sort(tag, "ASC", type, obj); +} + +void Array_SortDescending(string tag, int type=TYPE_STRING, object obj=OBJECT_INVALID) +{ + Array_Sort(tag, "DESC", type, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Set the value of array index 'index' to a 'element' +// This will quietly eat values if index > array size +void Array_Set_Str(string tag, int index, string element, object obj=OBJECT_INVALID) +{ + int rows = GetRowCount(tag, obj); + if (index >= 0 && index <= rows) { + string stmt = "UPDATE "+GetTableName(tag, obj)+" SET value = @element WHERE ind = @ind"; + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + SqlBindInt(sqlQuery, "@ind", rows); + SqlBindString(sqlQuery, "@element", element); + SqlStep(sqlQuery); + } +} + +void Array_Set_Flt(string tag, int index, float element, object obj=OBJECT_INVALID) +{ + Array_Set_Str(tag, index, FloatToString(element), obj); +} + +void Array_Set_Int(string tag, int index, int element, object obj=OBJECT_INVALID) +{ + Array_Set_Str(tag, index, IntToString(element), obj); +} + +void Array_Set_Obj(string tag, int index, object element, object obj=OBJECT_INVALID) +{ + Array_Set_Str(tag, index, ObjectToString(element), obj); +} + +void Array_Debug_Dump(string tag, string title = "xxx", object obj=OBJECT_INVALID) { + if (title != "xxx") { + WriteTimestampedLogEntry("== " + title + " ======================================"); + } + WriteTimestampedLogEntry("Table name = " + GetTableName(tag, obj)); + string stmt = "SELECT ind, value FROM " + GetTableName(tag, obj); + sqlquery sqlQuery = SqlPrepareQueryObject(GetModule(), stmt); + int ind = -1; + string value = ""; + while ( SqlStep(sqlQuery) ) { + ind = SqlGetInt(sqlQuery, 0); + value = SqlGetString(sqlQuery, 1); + WriteTimestampedLogEntry(tag + "[" + IntToString(ind) + "] = " + value); + } +} diff --git a/gamma_age_v2/indie.utc b/gamma_age_v2/indie.utc new file mode 100644 index 00000000..38bcda8a Binary files /dev/null and b/gamma_age_v2/indie.utc differ diff --git a/gamma_age_v2/indietouch.uti b/gamma_age_v2/indietouch.uti new file mode 100644 index 00000000..56d90db0 Binary files /dev/null and b/gamma_age_v2/indietouch.uti differ diff --git a/gamma_age_v2/innkeeper.utc b/gamma_age_v2/innkeeper.utc new file mode 100644 index 00000000..b950fae5 Binary files /dev/null and b/gamma_age_v2/innkeeper.utc differ diff --git a/gamma_age_v2/invisobj001.utp b/gamma_age_v2/invisobj001.utp new file mode 100644 index 00000000..853d43aa Binary files /dev/null and b/gamma_age_v2/invisobj001.utp differ diff --git a/gamma_age_v2/it_arhelm004.uti b/gamma_age_v2/it_arhelm004.uti new file mode 100644 index 00000000..261bede6 Binary files /dev/null and b/gamma_age_v2/it_arhelm004.uti differ diff --git a/gamma_age_v2/it_creitemdrs001.uti b/gamma_age_v2/it_creitemdrs001.uti new file mode 100644 index 00000000..63255fdb Binary files /dev/null and b/gamma_age_v2/it_creitemdrs001.uti differ diff --git a/gamma_age_v2/it_creitemunh001.uti b/gamma_age_v2/it_creitemunh001.uti new file mode 100644 index 00000000..1aad8248 Binary files /dev/null and b/gamma_age_v2/it_creitemunh001.uti differ diff --git a/gamma_age_v2/it_crewps003.uti b/gamma_age_v2/it_crewps003.uti new file mode 100644 index 00000000..7befeefd Binary files /dev/null and b/gamma_age_v2/it_crewps003.uti differ diff --git a/gamma_age_v2/it_crewps016.uti b/gamma_age_v2/it_crewps016.uti new file mode 100644 index 00000000..e19b145b Binary files /dev/null and b/gamma_age_v2/it_crewps016.uti differ diff --git a/gamma_age_v2/itempalcus.itp b/gamma_age_v2/itempalcus.itp new file mode 100644 index 00000000..b18723f8 Binary files /dev/null and b/gamma_age_v2/itempalcus.itp differ diff --git a/gamma_age_v2/j_inc_walk.nss b/gamma_age_v2/j_inc_walk.nss new file mode 100644 index 00000000..a5169a10 --- /dev/null +++ b/gamma_age_v2/j_inc_walk.nss @@ -0,0 +1,333 @@ +// Walk waypoints include. + +int NW_FLAG_STEALTH = 0x00000004; +int NW_FLAG_SEARCH = 0x00000008; +int NW_FLAG_DAY_NIGHT_POSTING = 0x00100000; + +// Animations: +// Randomwalk normally, or move to nearest ally. +int AMBIENT_ANIMATIONS = 1; +// These will face nearest ally, and talk or laugh. If no ally then look right/left. +int IMMOBILE_AMBIENT_ANIMATIONS = 2; +// This is the bird animations. +int AMBIENT_ANIMATIONS_AVIAN = 3; +// This will make the creatures "group" and sit, and normally talk. +int AMBIENT_GROUP_ANIMATIONS = 4; +// This will make the creature talk with nearby allies, as to not look dead. +// Also, if alone, it will take drinks, and things like that. +int IMMOBILE_ANIMATIONS_AND_SOLO = 5; +// This is a consitution for just random walking, nothing else. +int AMBIENT_ANIMAL_WALKING = 6; + +// Run the circuit. +void RunCircuit(int nTens, int nNum, int nRun = FALSE, float fPause = 1.0); +// Base for moving round thier waypoints +void WalkWayPoints(int nRun = FALSE, float fPause = 1.0); +// Used in walk waypoints +void RunNextCircuit(int nRun = FALSE, float fPause = 1.0); +// Checks which waypoint they are on, if any valid. TRUE if got any waypoints in range. +int CheckWayPoints(object oWalker = OBJECT_SELF); +//Returns true if the object is walking any waypoints. +int GetIsPostOrWalking(object oWalker = OBJECT_SELF); +// Returns the string to use - depending on day or night. +string GetStringPrefix(string sPrefix, object oWalker = OBJECT_SELF); +// This sets a spawn in condition. +void SetSpawnInCondition(int nCondition, int bValid = TRUE, string sName = "NW_GENERIC_MASTER"); +//Gets the spawn in condition.Can set things to different ints if you like. +int GetSpawnInCondition(int nCondition, string sName = "NW_GENERIC_MASTER"); + +//:://///////////////////////////////////////////// +//:: Master Local Set +//:: FileName +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + All On Spawn in conditions in the game are now + being stored within one local. The get and set + changed or checks the condition of this one + Hex local. The NW_FLAG_XXX variables above + allow for the user of these functions throughout + the generic scripts. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 14, 2001 +//::////////////////////////////////////////////// +void SetSpawnInCondition(int nCondition, int bValid, string sName) +{ + int nPlot = GetLocalInt(OBJECT_SELF, sName); + if(bValid == TRUE) + { + nPlot = nPlot | nCondition; + SetLocalInt(OBJECT_SELF, sName, nPlot); + } + else if (bValid == FALSE) + { + nPlot = nPlot & ~nCondition; + SetLocalInt(OBJECT_SELF, sName, nPlot); + } +} + +int GetSpawnInCondition(int nCondition, string sName) +{ + int nPlot = GetLocalInt(OBJECT_SELF, sName); + if(nPlot & nCondition) + { + return TRUE; + } + return FALSE; +} + +//*************************** +//*************************** +// +//WAY POINT WALK FUNCTIONS +// +//*************************** +//*************************** + +//:://///////////////////////////////////////////// +//:: Walk Way Point Path +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Allows specified person walk a waypoint path +*/ +//::////////////////////////////////////////////// +//:: Created By: Aidan Scanlan +//:: Created On: July 10, 2001 +//::////////////////////////////////////////////// + +void WalkWayPoints(int nRun = FALSE, float fPause = 1.0) //Run first circuit +{ + if(CheckWayPoints()) + { + ClearAllActions(); + } + + string NightWayString; + string NightPostString; + string sWay; + string sPost; + + //The block of code below deals with night and day cycle for postings and walkway points. + if(GetSpawnInCondition(NW_FLAG_DAY_NIGHT_POSTING)) + { + NightWayString = "WN_"; + NightPostString = "NIGHT_"; + } + else + { + NightWayString = "WP_"; + NightPostString = "POST_"; + } + + // We will set what strings to use. + SetLocalString(OBJECT_SELF, "NW_GENERIC_WALKWAYS_DAY", "WP_"); + SetLocalString(OBJECT_SELF, "NW_GENERIC_WALKWAYS_NIGHT", NightWayString); + SetLocalString(OBJECT_SELF, "NW_GENERIC_POSTING_DAY", "POST_"); + SetLocalString(OBJECT_SELF, "NW_GENERIC_POSTING_NIGHT", NightPostString); + + // Which shall we use? Day or night? + sWay = GetStringPrefix("NW_GENERIC_WALKWAYS"); + sPost = GetStringPrefix("NW_GENERIC_POSTING"); + + //I have now determined what the prefixs for the current walkways and postings are and will use them instead + // of POST_ and WP_ + + if(GetSpawnInCondition(NW_FLAG_STEALTH)) + { + // Will hide all the time, when they walk + ActionUseSkill(SKILL_HIDE, OBJECT_SELF); + } + else if(GetSpawnInCondition(NW_FLAG_SEARCH) || GetLocalInt(OBJECT_SELF, "ANIMATIONS") == IMMOBILE_AMBIENT_ANIMATIONS) + { + // Will search all the time, when they walk, or if we are not going to move. + ActionUseSkill(SKILL_SEARCH, OBJECT_SELF); + } + + //Test if OBJECT_SELF has waypoints to walk + string sWayTag = GetTag(OBJECT_SELF); + sWayTag = sWay + sWayTag + "_01"; + object oWay1 = GetNearestObjectByTag(sWayTag); + // Get the object, if nearest (IE in area one) is not valid. + if(!GetIsObjectValid(oWay1)) + { + oWay1 = GetObjectByTag(sWayTag); + } + + if(GetIsObjectValid(oWay1)) + { + int nNth = 1; + int nTens; + int nNum; + object oNearest = GetNearestObject(OBJECT_TYPE_WAYPOINT, OBJECT_SELF, nNth); + while (GetIsObjectValid(oNearest)) + { + string sNearestTag = GetTag(oNearest); + //removes the first 3 and last three characters from the waypoint's tag + //and checks it against his own tag. Waypoint tag format is WP_MyTag_XX. + if(GetSubString(sNearestTag, 3, GetStringLength(sNearestTag) - 6) == GetTag(OBJECT_SELF)) + { + string sTens = GetStringRight(GetTag(oNearest), 2); + nTens = StringToInt(sTens)/10; + nNum= StringToInt(GetStringRight(GetTag(oNearest), 1)); + oNearest = OBJECT_INVALID; + } + else + { + nNth++; + oNearest = GetNearestObject(OBJECT_TYPE_WAYPOINT,OBJECT_SELF,nNth); + } + } + RunCircuit(nTens, nNum, nRun, fPause); //*************************************** + ActionWait(fPause); + ActionDoCommand(RunNextCircuit(nRun, fPause)); + } + else // Else go to the post we have set. + { + sWayTag = GetTag(OBJECT_SELF); + sWayTag = sPost + sWayTag; + oWay1 = GetNearestObjectByTag(sWayTag); + if(!GetIsObjectValid(oWay1)) + { + oWay1 = GetObjectByTag(sWayTag); + } + if(GetIsObjectValid(oWay1)) + { + ActionForceMoveToObject(oWay1, nRun, 1.0, 60.0); + float fFacing = GetFacing(oWay1); + ActionDoCommand(SetFacing(fFacing)); + } + } +} + +void RunNextCircuit(int nRun = FALSE, float fPause = 1.0) +{ + RunCircuit(0, 1, nRun, fPause); + ActionWait(fPause); + ActionDoCommand(RunNextCircuit(nRun, fPause)); +} + +//:://///////////////////////////////////////////// +//:: Run Circuit +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Calculates the proper path to follow along a + predetermined set of way points +*/ +//::////////////////////////////////////////////// +//:: Created By: Aidan Scanlan +//:: Created On: July 10, 2001 +//::////////////////////////////////////////////// + +void RunCircuit(int nTens, int nNum, int nRun = FALSE, float fPause = 1.0) +{ + // starting at a given way point, move sequentialy through incrementally + // increasing points until there are no more valid ones. + // We will check for day/night in these instead of heartbeats. + string sWay = GetStringPrefix("NW_GENERIC_WALKWAYS"); + string sNewString; + object oTargetPoint = GetWaypointByTag(sWay + GetTag(OBJECT_SELF) + "_" + IntToString(nTens) + IntToString(nNum)); + + while(GetIsObjectValid(oTargetPoint)) + { + ActionWait(fPause); + ActionMoveToObject(oTargetPoint, nRun); + nNum++; + if (nNum > 9) + { + nTens++; + nNum = 0; + } + // Maybe change string prefix to use. + sNewString = GetStringPrefix("NW_GENERIC_WALKWAYS"); + if(sNewString != sWay) + { + WalkWayPoints(nRun, fPause); + return; + } + oTargetPoint = GetWaypointByTag(sWay + GetTag(OBJECT_SELF) + "_" + IntToString(nTens) + IntToString(nNum)); + } + // once there are no more waypoints available, decriment back to the last + // valid point. + nNum--; + if (nNum < 0) + { + nTens--; + nNum = 9; + } + + // start the cycle again going back to point 01 + oTargetPoint = GetWaypointByTag(sWay + GetTag(OBJECT_SELF) + "_" + IntToString(nTens) + IntToString(nNum)); + while(GetIsObjectValid(oTargetPoint)) + { + ActionWait(fPause); + ActionMoveToObject(oTargetPoint, nRun); + nNum--; + if (nNum < 0) + { + nTens--; + nNum = 9; + } + // Maybe change string prefix to use. + sNewString = GetStringPrefix("NW_GENERIC_WALKWAYS"); + if(sNewString != sWay) + { + WalkWayPoints(nRun, fPause); + return; + } + oTargetPoint = GetWaypointByTag(sWay + GetTag(OBJECT_SELF) + "_" + IntToString(nTens) + IntToString(nNum)); + } +} + +//:://///////////////////////////////////////////// +//:: Check Walkways +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This function checks the passed in object to + see if they are supposed to be walking to + day or night postings. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Feb 26, 2002 +//::////////////////////////////////////////////// + +int CheckWayPoints(object oWalker) +{ + object oWay1; + object oWay2; + object oWay3; + object oWay4; + string sTag = GetTag(oWalker); + if(GetSpawnInCondition(NW_FLAG_DAY_NIGHT_POSTING)) + { + oWay2 = GetWaypointByTag("NIGHT_" + sTag); + oWay4 = GetWaypointByTag("WN_" + sTag + "_01"); + } + + oWay1 = GetWaypointByTag("POST_" + sTag); + oWay3 = GetWaypointByTag("WP_" + sTag + "_01"); + + if(GetIsObjectValid(oWay2) || GetIsObjectValid(oWay4) || GetIsObjectValid(oWay1) || GetIsObjectValid(oWay3)) + { + return TRUE; + } + return FALSE; +} + +// Returns the string to use - depending on day or night. +string GetStringPrefix(string sPrefix, object oWalker) +{ + if(GetIsDay() || GetIsDawn()) + { + return GetLocalString(OBJECT_SELF, sPrefix + "_DAY"); + } + else + { + return GetLocalString(OBJECT_SELF, sPrefix + "_NIGHT"); + } +} diff --git a/gamma_age_v2/jaget.utc b/gamma_age_v2/jaget.utc new file mode 100644 index 00000000..9a0e9cf8 Binary files /dev/null and b/gamma_age_v2/jaget.utc differ diff --git a/gamma_age_v2/jagethide.uti b/gamma_age_v2/jagethide.uti new file mode 100644 index 00000000..61a65b86 Binary files /dev/null and b/gamma_age_v2/jagethide.uti differ diff --git a/gamma_age_v2/jemagonproperti.uti b/gamma_age_v2/jemagonproperti.uti new file mode 100644 index 00000000..7d8f1c94 Binary files /dev/null and b/gamma_age_v2/jemagonproperti.uti differ diff --git a/gamma_age_v2/joardanz.utc b/gamma_age_v2/joardanz.utc new file mode 100644 index 00000000..d997bc9e Binary files /dev/null and b/gamma_age_v2/joardanz.utc differ diff --git a/gamma_age_v2/joardanzcow.utc b/gamma_age_v2/joardanzcow.utc new file mode 100644 index 00000000..9d89cfd6 Binary files /dev/null and b/gamma_age_v2/joardanzcow.utc differ diff --git a/gamma_age_v2/juog.utc b/gamma_age_v2/juog.utc new file mode 100644 index 00000000..47255d1e Binary files /dev/null and b/gamma_age_v2/juog.utc differ diff --git a/gamma_age_v2/kailin.utc b/gamma_age_v2/kailin.utc new file mode 100644 index 00000000..4865d26f Binary files /dev/null and b/gamma_age_v2/kailin.utc differ diff --git a/gamma_age_v2/kailin.uti b/gamma_age_v2/kailin.uti new file mode 100644 index 00000000..00a9500f Binary files /dev/null and b/gamma_age_v2/kailin.uti differ diff --git a/gamma_age_v2/kailinbite.uti b/gamma_age_v2/kailinbite.uti new file mode 100644 index 00000000..1b911cd6 Binary files /dev/null and b/gamma_age_v2/kailinbite.uti differ diff --git a/gamma_age_v2/kailinclaw.uti b/gamma_age_v2/kailinclaw.uti new file mode 100644 index 00000000..9b244e3e Binary files /dev/null and b/gamma_age_v2/kailinclaw.uti differ diff --git a/gamma_age_v2/kamodo.utc b/gamma_age_v2/kamodo.utc new file mode 100644 index 00000000..1670cc5f Binary files /dev/null and b/gamma_age_v2/kamodo.utc differ diff --git a/gamma_age_v2/kamodohide.uti b/gamma_age_v2/kamodohide.uti new file mode 100644 index 00000000..ed51e910 Binary files /dev/null and b/gamma_age_v2/kamodohide.uti differ diff --git a/gamma_age_v2/katkin.utc b/gamma_age_v2/katkin.utc new file mode 100644 index 00000000..12bdb08c Binary files /dev/null and b/gamma_age_v2/katkin.utc differ diff --git a/gamma_age_v2/katkin001.utc b/gamma_age_v2/katkin001.utc new file mode 100644 index 00000000..8fbdcb99 Binary files /dev/null and b/gamma_age_v2/katkin001.utc differ diff --git a/gamma_age_v2/keeshin.utc b/gamma_age_v2/keeshin.utc new file mode 100644 index 00000000..e4a65230 Binary files /dev/null and b/gamma_age_v2/keeshin.utc differ diff --git a/gamma_age_v2/kiikcee.utc b/gamma_age_v2/kiikcee.utc new file mode 100644 index 00000000..59d59b9f Binary files /dev/null and b/gamma_age_v2/kiikcee.utc differ diff --git a/gamma_age_v2/kiikceeproperti.uti b/gamma_age_v2/kiikceeproperti.uti new file mode 100644 index 00000000..e85cdbd1 Binary files /dev/null and b/gamma_age_v2/kiikceeproperti.uti differ diff --git a/gamma_age_v2/knighthelmet.uti b/gamma_age_v2/knighthelmet.uti new file mode 100644 index 00000000..91c52649 Binary files /dev/null and b/gamma_age_v2/knighthelmet.uti differ diff --git a/gamma_age_v2/knightofgeneticp.utc b/gamma_age_v2/knightofgeneticp.utc new file mode 100644 index 00000000..5814687c Binary files /dev/null and b/gamma_age_v2/knightofgeneticp.utc differ diff --git a/gamma_age_v2/knightsplate.uti b/gamma_age_v2/knightsplate.uti new file mode 100644 index 00000000..6ed67990 Binary files /dev/null and b/gamma_age_v2/knightsplate.uti differ diff --git a/gamma_age_v2/latterbug.utc b/gamma_age_v2/latterbug.utc new file mode 100644 index 00000000..d655fe65 Binary files /dev/null and b/gamma_age_v2/latterbug.utc differ diff --git a/gamma_age_v2/leath_arm_lg.uti b/gamma_age_v2/leath_arm_lg.uti new file mode 100644 index 00000000..56b8197c Binary files /dev/null and b/gamma_age_v2/leath_arm_lg.uti differ diff --git a/gamma_age_v2/leath_arm_med.uti b/gamma_age_v2/leath_arm_med.uti new file mode 100644 index 00000000..d8e6f590 Binary files /dev/null and b/gamma_age_v2/leath_arm_med.uti differ diff --git a/gamma_age_v2/leath_arm_sm.uti b/gamma_age_v2/leath_arm_sm.uti new file mode 100644 index 00000000..a6bab606 Binary files /dev/null and b/gamma_age_v2/leath_arm_sm.uti differ diff --git a/gamma_age_v2/leath_arm_st.uti b/gamma_age_v2/leath_arm_st.uti new file mode 100644 index 00000000..937236f3 Binary files /dev/null and b/gamma_age_v2/leath_arm_st.uti differ diff --git a/gamma_age_v2/lil.utc b/gamma_age_v2/lil.utc new file mode 100644 index 00000000..92c614c8 Binary files /dev/null and b/gamma_age_v2/lil.utc differ diff --git a/gamma_age_v2/lil001.utc b/gamma_age_v2/lil001.utc new file mode 100644 index 00000000..bd20a8cd Binary files /dev/null and b/gamma_age_v2/lil001.utc differ diff --git a/gamma_age_v2/lilarrow.uti b/gamma_age_v2/lilarrow.uti new file mode 100644 index 00000000..47d3fda0 Binary files /dev/null and b/gamma_age_v2/lilarrow.uti differ diff --git a/gamma_age_v2/limbo001.are b/gamma_age_v2/limbo001.are new file mode 100644 index 00000000..0277fad5 Binary files /dev/null and b/gamma_age_v2/limbo001.are differ diff --git a/gamma_age_v2/limbo001.gic b/gamma_age_v2/limbo001.gic new file mode 100644 index 00000000..b90f2ded Binary files /dev/null and b/gamma_age_v2/limbo001.gic differ diff --git a/gamma_age_v2/limbo001.git b/gamma_age_v2/limbo001.git new file mode 100644 index 00000000..48d1e570 Binary files /dev/null and b/gamma_age_v2/limbo001.git differ diff --git a/gamma_age_v2/loopur.utc b/gamma_age_v2/loopur.utc new file mode 100644 index 00000000..a5c79c1d Binary files /dev/null and b/gamma_age_v2/loopur.utc differ diff --git a/gamma_age_v2/maarcl108.uti b/gamma_age_v2/maarcl108.uti new file mode 100644 index 00000000..20667cb9 Binary files /dev/null and b/gamma_age_v2/maarcl108.uti differ diff --git a/gamma_age_v2/mantabite.uti b/gamma_age_v2/mantabite.uti new file mode 100644 index 00000000..48c5b66b Binary files /dev/null and b/gamma_age_v2/mantabite.uti differ diff --git a/gamma_age_v2/mantahide.uti b/gamma_age_v2/mantahide.uti new file mode 100644 index 00000000..fceac411 Binary files /dev/null and b/gamma_age_v2/mantahide.uti differ diff --git a/gamma_age_v2/mantas.utc b/gamma_age_v2/mantas.utc new file mode 100644 index 00000000..60f379f2 Binary files /dev/null and b/gamma_age_v2/mantas.utc differ diff --git a/gamma_age_v2/marlock.utc b/gamma_age_v2/marlock.utc new file mode 100644 index 00000000..93b0624a Binary files /dev/null and b/gamma_age_v2/marlock.utc differ diff --git a/gamma_age_v2/marlockfemale.utc b/gamma_age_v2/marlockfemale.utc new file mode 100644 index 00000000..22dac422 Binary files /dev/null and b/gamma_age_v2/marlockfemale.utc differ diff --git a/gamma_age_v2/marlockproperti.uti b/gamma_age_v2/marlockproperti.uti new file mode 100644 index 00000000..15b96874 Binary files /dev/null and b/gamma_age_v2/marlockproperti.uti differ diff --git a/gamma_age_v2/mdwarf.utc b/gamma_age_v2/mdwarf.utc new file mode 100644 index 00000000..d1e19ab6 Binary files /dev/null and b/gamma_age_v2/mdwarf.utc differ diff --git a/gamma_age_v2/medicalrobot.utc b/gamma_age_v2/medicalrobot.utc new file mode 100644 index 00000000..859443c0 Binary files /dev/null and b/gamma_age_v2/medicalrobot.utc differ diff --git a/gamma_age_v2/melf.utc b/gamma_age_v2/melf.utc new file mode 100644 index 00000000..e93504b8 Binary files /dev/null and b/gamma_age_v2/melf.utc differ diff --git a/gamma_age_v2/menarl.utc b/gamma_age_v2/menarl.utc new file mode 100644 index 00000000..b88e65e4 Binary files /dev/null and b/gamma_age_v2/menarl.utc differ diff --git a/gamma_age_v2/menarlhide.uti b/gamma_age_v2/menarlhide.uti new file mode 100644 index 00000000..12846c5f Binary files /dev/null and b/gamma_age_v2/menarlhide.uti differ diff --git a/gamma_age_v2/mgnome.utc b/gamma_age_v2/mgnome.utc new file mode 100644 index 00000000..721c0b5e Binary files /dev/null and b/gamma_age_v2/mgnome.utc differ diff --git a/gamma_age_v2/mhalfelf.utc b/gamma_age_v2/mhalfelf.utc new file mode 100644 index 00000000..bf78b3b2 Binary files /dev/null and b/gamma_age_v2/mhalfelf.utc differ diff --git a/gamma_age_v2/mhalfling.utc b/gamma_age_v2/mhalfling.utc new file mode 100644 index 00000000..d8e57cbd Binary files /dev/null and b/gamma_age_v2/mhalfling.utc differ diff --git a/gamma_age_v2/mhalforc.utc b/gamma_age_v2/mhalforc.utc new file mode 100644 index 00000000..aef6ef56 Binary files /dev/null and b/gamma_age_v2/mhalforc.utc differ diff --git a/gamma_age_v2/mhuman.utc b/gamma_age_v2/mhuman.utc new file mode 100644 index 00000000..89faedc9 Binary files /dev/null and b/gamma_age_v2/mhuman.utc differ diff --git a/gamma_age_v2/mhuman_1.utc b/gamma_age_v2/mhuman_1.utc new file mode 100644 index 00000000..b1cd4295 Binary files /dev/null and b/gamma_age_v2/mhuman_1.utc differ diff --git a/gamma_age_v2/mhuman_10.utc b/gamma_age_v2/mhuman_10.utc new file mode 100644 index 00000000..c8edf2e8 Binary files /dev/null and b/gamma_age_v2/mhuman_10.utc differ diff --git a/gamma_age_v2/mhuman_2.utc b/gamma_age_v2/mhuman_2.utc new file mode 100644 index 00000000..11b2e879 Binary files /dev/null and b/gamma_age_v2/mhuman_2.utc differ diff --git a/gamma_age_v2/mhuman_3.utc b/gamma_age_v2/mhuman_3.utc new file mode 100644 index 00000000..c49cecb0 Binary files /dev/null and b/gamma_age_v2/mhuman_3.utc differ diff --git a/gamma_age_v2/mhuman_4.utc b/gamma_age_v2/mhuman_4.utc new file mode 100644 index 00000000..f6e73b23 Binary files /dev/null and b/gamma_age_v2/mhuman_4.utc differ diff --git a/gamma_age_v2/mhuman_5.utc b/gamma_age_v2/mhuman_5.utc new file mode 100644 index 00000000..5db7d886 Binary files /dev/null and b/gamma_age_v2/mhuman_5.utc differ diff --git a/gamma_age_v2/mhuman_6.utc b/gamma_age_v2/mhuman_6.utc new file mode 100644 index 00000000..441bab90 Binary files /dev/null and b/gamma_age_v2/mhuman_6.utc differ diff --git a/gamma_age_v2/mhuman_7.utc b/gamma_age_v2/mhuman_7.utc new file mode 100644 index 00000000..9b03dd88 Binary files /dev/null and b/gamma_age_v2/mhuman_7.utc differ diff --git a/gamma_age_v2/mhuman_8.utc b/gamma_age_v2/mhuman_8.utc new file mode 100644 index 00000000..5074b5eb Binary files /dev/null and b/gamma_age_v2/mhuman_8.utc differ diff --git a/gamma_age_v2/mhuman_9.utc b/gamma_age_v2/mhuman_9.utc new file mode 100644 index 00000000..0753c8ed Binary files /dev/null and b/gamma_age_v2/mhuman_9.utc differ diff --git a/gamma_age_v2/mmorpgspawner.utp b/gamma_age_v2/mmorpgspawner.utp new file mode 100644 index 00000000..922fa633 Binary files /dev/null and b/gamma_age_v2/mmorpgspawner.utp differ diff --git a/gamma_age_v2/mod_ctrl_bk_set.ncs b/gamma_age_v2/mod_ctrl_bk_set.ncs new file mode 100644 index 00000000..6e123e98 Binary files /dev/null and b/gamma_age_v2/mod_ctrl_bk_set.ncs differ diff --git a/gamma_age_v2/mod_ctrl_bk_set.nss b/gamma_age_v2/mod_ctrl_bk_set.nss new file mode 100644 index 00000000..cf781ced --- /dev/null +++ b/gamma_age_v2/mod_ctrl_bk_set.nss @@ -0,0 +1,61 @@ +// DMFI MP Starter Mod +// mod_ctrl_bk_set +// called from the module control settings conversation +// sends a message on the DM channel (to all DMs) with current settings + +void main () +{ + +// determine current module settings for rest, death, and respawn systems + +int restchoice = GetLocalInt(GetModule(), "rest_system"); +int deathchoice = GetLocalInt(GetModule(), "death_system"); +int rspchoice = GetLocalInt(GetModule(), "respawn_system"); + +// initialize message variables + +string msg1; +string msg2; +string msg3; + +// determine current rest system + +if (restchoice == 1) + msg1 = "Time-based rest (time interval between rests)"; +if (restchoice == 2) + msg1 = "Supply-based rest (requires tagged item)"; +if (restchoice == 3) + msg1 = "DMFI resting system"; +if (restchoice == 4) + msg1 = "Unlimited rest (normal NWN:EE system)"; +if (restchoice == 5) + msg1 = "Resting disabled"; + +// determine current death system + +if (deathchoice == 1) + msg2 = "Parthenon Easy Death System (PCs revivable if party member still alive)"; +if (deathchoice == 2) + msg2 = "HABD death / bleeding system"; +if (deathchoice == 3) + msg2 = "Unlimited respawn (no penalty)"; +if (deathchoice == 4) + msg2 = "Unlimited respawn (with penalty)"; + +// determine current respawn system + +if (rspchoice == 1) + msg3 = "Respawn location set to current PC location"; +if (rspchoice == 2) + msg3 = "Respawn location set to module starting location"; +if (rspchoice == 3) + msg3 = "Respawn location set to custom waypoint"; + +// send DM channel messages with settings +SendMessageToAllDMs("CURRENT MOD CONTROL SETTINGS"); +SendMessageToAllDMs(msg1); +SendMessageToAllDMs(msg2); +SendMessageToAllDMs(msg3); + +} + diff --git a/gamma_age_v2/mod_ruleset.dlg b/gamma_age_v2/mod_ruleset.dlg new file mode 100644 index 00000000..f01fec13 Binary files /dev/null and b/gamma_age_v2/mod_ruleset.dlg differ diff --git a/gamma_age_v2/module.ifo b/gamma_age_v2/module.ifo new file mode 100644 index 00000000..1eb5372e Binary files /dev/null and b/gamma_age_v2/module.ifo differ diff --git a/gamma_age_v2/module.jrl b/gamma_age_v2/module.jrl new file mode 100644 index 00000000..5f615b0e Binary files /dev/null and b/gamma_age_v2/module.jrl differ diff --git a/gamma_age_v2/mordmagman01.are b/gamma_age_v2/mordmagman01.are new file mode 100644 index 00000000..4e861fad Binary files /dev/null and b/gamma_age_v2/mordmagman01.are differ diff --git a/gamma_age_v2/mordmagman01.gic b/gamma_age_v2/mordmagman01.gic new file mode 100644 index 00000000..42a6c2d1 Binary files /dev/null and b/gamma_age_v2/mordmagman01.gic differ diff --git a/gamma_age_v2/mordmagman01.git b/gamma_age_v2/mordmagman01.git new file mode 100644 index 00000000..adb2b1f5 Binary files /dev/null and b/gamma_age_v2/mordmagman01.git differ diff --git a/gamma_age_v2/mordmagman02.are b/gamma_age_v2/mordmagman02.are new file mode 100644 index 00000000..6ca46b88 Binary files /dev/null and b/gamma_age_v2/mordmagman02.are differ diff --git a/gamma_age_v2/mordmagman02.gic b/gamma_age_v2/mordmagman02.gic new file mode 100644 index 00000000..42a6c2d1 Binary files /dev/null and b/gamma_age_v2/mordmagman02.gic differ diff --git a/gamma_age_v2/mordmagman02.git b/gamma_age_v2/mordmagman02.git new file mode 100644 index 00000000..cd6de787 Binary files /dev/null and b/gamma_age_v2/mordmagman02.git differ diff --git a/gamma_age_v2/mordmagman03.are b/gamma_age_v2/mordmagman03.are new file mode 100644 index 00000000..e9736ef8 Binary files /dev/null and b/gamma_age_v2/mordmagman03.are differ diff --git a/gamma_age_v2/mordmagman03.gic b/gamma_age_v2/mordmagman03.gic new file mode 100644 index 00000000..42a6c2d1 Binary files /dev/null and b/gamma_age_v2/mordmagman03.gic differ diff --git a/gamma_age_v2/mordmagman03.git b/gamma_age_v2/mordmagman03.git new file mode 100644 index 00000000..7ba27bbc Binary files /dev/null and b/gamma_age_v2/mordmagman03.git differ diff --git a/gamma_age_v2/mordmagman04.are b/gamma_age_v2/mordmagman04.are new file mode 100644 index 00000000..be1a1354 Binary files /dev/null and b/gamma_age_v2/mordmagman04.are differ diff --git a/gamma_age_v2/mordmagman04.gic b/gamma_age_v2/mordmagman04.gic new file mode 100644 index 00000000..42a6c2d1 Binary files /dev/null and b/gamma_age_v2/mordmagman04.gic differ diff --git a/gamma_age_v2/mordmagman04.git b/gamma_age_v2/mordmagman04.git new file mode 100644 index 00000000..caa3dd43 Binary files /dev/null and b/gamma_age_v2/mordmagman04.git differ diff --git a/gamma_age_v2/mordmagman05.are b/gamma_age_v2/mordmagman05.are new file mode 100644 index 00000000..775016c6 Binary files /dev/null and b/gamma_age_v2/mordmagman05.are differ diff --git a/gamma_age_v2/mordmagman05.gic b/gamma_age_v2/mordmagman05.gic new file mode 100644 index 00000000..42a6c2d1 Binary files /dev/null and b/gamma_age_v2/mordmagman05.gic differ diff --git a/gamma_age_v2/mordmagman05.git b/gamma_age_v2/mordmagman05.git new file mode 100644 index 00000000..0cf5bfe8 Binary files /dev/null and b/gamma_age_v2/mordmagman05.git differ diff --git a/gamma_age_v2/mordmagman06.are b/gamma_age_v2/mordmagman06.are new file mode 100644 index 00000000..0d7bcbfb Binary files /dev/null and b/gamma_age_v2/mordmagman06.are differ diff --git a/gamma_age_v2/mordmagman06.gic b/gamma_age_v2/mordmagman06.gic new file mode 100644 index 00000000..42a6c2d1 Binary files /dev/null and b/gamma_age_v2/mordmagman06.gic differ diff --git a/gamma_age_v2/mordmagman06.git b/gamma_age_v2/mordmagman06.git new file mode 100644 index 00000000..475e0602 Binary files /dev/null and b/gamma_age_v2/mordmagman06.git differ diff --git a/gamma_age_v2/movechair.utp b/gamma_age_v2/movechair.utp new file mode 100644 index 00000000..ef36a2b2 Binary files /dev/null and b/gamma_age_v2/movechair.utp differ diff --git a/gamma_age_v2/movestool.utp b/gamma_age_v2/movestool.utp new file mode 100644 index 00000000..6f84c47d Binary files /dev/null and b/gamma_age_v2/movestool.utp differ diff --git a/gamma_age_v2/narleps.utc b/gamma_age_v2/narleps.utc new file mode 100644 index 00000000..e88e4c79 Binary files /dev/null and b/gamma_age_v2/narleps.utc differ diff --git a/gamma_age_v2/nbde_inc.nss b/gamma_age_v2/nbde_inc.nss new file mode 100644 index 00000000..673fd31d --- /dev/null +++ b/gamma_age_v2/nbde_inc.nss @@ -0,0 +1,747 @@ +//void main(){} + +//:://///////////////////////////////////////////// +//:: Natural Bioware Database Extension v1.0 +//:: nbde_inc +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + +*/ +//::////////////////////////////////////////////// +//:: Created By: Knat +//:: Created On: 8/2004 +//::////////////////////////////////////////////// +/* + +Natural Bioware Database Extension v1.0 +"Andale, Andale! EEEE-ha....!" + +----------------------------------------------------------------------------- +--- What is NBDE ? +----------------------------------------------------------------------------- + +NBDE is basically a wrapper for the standard bioware database system, +eliminating most of its restrictions. But even more important, it significantly +boosts both reading and writing speed. + +It will make your db scripts more secure and always keeps your database files +in the best possible shape. It furthermore reduces the amount of overhead in +your database and keeps it as slim as possible. + +there is no need to periodically use a pack utility, which further +reduces administrative tasks... + +and this all gets achieved with the use of this simple script. I recommend any +scripter to check this out if he plans to use biowares onboard database +functionality. It should also be very easy to convert already existing scripts. + +----------------------------------------------------------------------------- +--- Installation +----------------------------------------------------------------------------- + +Simply import nbde.erf and you are done. + +It includes the following stuff: + +Scripts: + + name: nbde_inc + main include script... + +Areas: + + name: _NBDE + special area. this is a 2x2 microset area holding the database vault container. + you can delete this area and move the container to another place if you want. + +Items: + + Custom > Special > Custom 4 + name: Database + special database item with the resref "nbde_database" + don't touch this item... + +----------------------------------------------------------------------------- +--- Eliminated Restrictions ? +----------------------------------------------------------------------------- + +Biowares database system mimics the interface of Local Variables. +Instead of SetLocalInt() you use SetCampaignInt(), GetLocalInt() turns into +GetCampaignInt(). This makes it very easy to use, even for novice scripters. +But the normal bioware database does not consequently implement this approach. +Several stumbling blocks, slight differences to normal Set-/GetLocal functions, +may lead to severe functional problems and hard to track bugs if you try to +achieve a bit more complex goals... + +>>> 32-Char sVarName Limitation: +-------------------------------- + +the sVarName parameter in the original functions only accepts strings with a +maximum length of 32 chars. it will simply cut the string if it exceeds this +limit... + +example: + +SetCampaignInt("MYDB", "PREFIX" + GetTag(oArea), 100); + +The second parameter is the sVarName one, with the 32 char limit. The above +statement is a bit risky, because GetTag(oArea) could return a string with a +maximum length of 32. "PREFIX" has a length of 6 chars, so any area with a +tag of length >26 could lead to unintended sVarNames. + +Same for this example: + +SetCampaignInt("MYDB", GetName(oPC) + GetPCPlayerName(oPC), 100); + +same problem. GetName() alone may return a string with a length >32, which +could again lead to a problematic sVarName. + +NBDE completely eliminates the 32-char sVarName limitation and enables the +scripter to use the full scope of dynamically concatenated sVarNames, +without the need of hashing systems or other workarounds, which generally +consume a bit of extra cpu time... + +>>> UNIQUE sVarName Limitation: +------------------------------- + +the sVarName parameter in the original functions MUST be unique across the +entire database, regardless of the variable type. + +example: + +SetCampaignInt("MYDB", "TEST", 10); +SetCampaignString("MYDB", "TEST", "ABCD"); + +the second line will OVERWRITE the former integer variable "TEST" with a string. +This means a GetCampaignInt("MYDB", "TEST") returns 0 + +using NBDE eliminates this limitation. +It works now similar to LocalVariables (the intended goal) + +NBDE conversion of the above example: + +NBDE_SetCampaignInt("MYDB", "TEST", 10); +NBDE_SetCampaignString("MYDB", "TEST", "ABCD"); + +second line will not overwrite the integer variable + +NBDE_GetCampaignInt("MYDB", "TEST") returns the correct 10 +NBDE_GetCampaignString("MYDB", "TEST") returns "ABCD" + +The original function set contains only one delete command, called +DeleteCampaignVariable(), because of the unique nature of sVarNames. + +NBDE contains one delete command for each variable type, to account for the +possible non uniqueness: + +NBDE_DeleteCampaignInt() +NBDE_DeleteCampaignFloat() +NBDE_DeleteCampaignString() +NBDE_DeleteCampaignVector() +NBDE_DeleteCampaignLocation() + +this again now works similar to the LocalVariables interface, which also +gives you a delete command for each variable type: + +aka DeleteLoaclInt(), DeleteLocalFloat(), DeleteLocalString(), + DeleteLocalVector(), DeleteLocalLocation() + +>>> Broken Locations: +--------------------- + +the original SetCampaignLocation/GetCampaignLocation functions are not very +reliable, because they are using the areas object-id for reference, which +is a runtime generated ID. stored locations in the database can get invalid +if you change the area layout in the toolset (e.g. deleting old areas, etc.) + +nbde location functions are 100% reliable, as long as you use unique TAGs for +your areas. I repeat, you need to use UNIQUE TAGS for your areas... + +----------------------------------------------------------------------------- +--- No need to pack the database +----------------------------------------------------------------------------- + +NWN's database files grow very large, very fast, because deleted entries get +only "flagged" as deleted. but they still reside in the dabase file physically. + +to stop this evergrowing database, you usually call an external "pack" +utility which reorganizes the database files (deletion of flagged entries, +index re-ordering, etc.) + +unfortunately, the only working pack utility is the one you find in the +/utils directory, called DataPack.exe . But some people reported problems +on large database files... (i never had problems with this tool, though) + +the good news is, you don't need to touch this utility ever, while using +this extension. NBDE will automatically keep all your database files as +compact/small as possible. + +no external maintenance needed... + +NBDE_Delete commands immediately shrink your database in size (physically +deleted records) after a flushing command (read more about that in a minute). + +attention: +there is a known problem in the linux version: + +The DestroyCampaignDatabase command doesnt always work in linux. i think +this relates to the different file systems used. + +you should be ok using the following rules for your database +names (sCampaignName parameter): + + - max length 16 chars + - only use alphanumeric chars and underscore + - NO space + + +----------------------------------------------------------------------------- +--- Usage +----------------------------------------------------------------------------- + +first, include nbde_inc to all scripts using this extension: + +#include "nbde_inc" + +You basically use it the same way you would use the original +database. just add the NBDE_ prefix infront of the function. + +original example: + +int n = GetCampaignInt("MYDB", "MYVAR"); + +nbde conversion: + +#include "nbde_inc" + +int n = NBDE_GetCampaignInt("MYDB", "MYVAR"); + +Important differences: + +Database Flushing: +------------------ + +writing to the database will not issue a physical write directly. +You need to "Flush" a database in order to physically write the contents of +a complete database to your HD. this sounds slow, but its not, because of +the large overhead of standard SetCampaign calls... +Writing out a single integer via SetCampaignInt takes roughly +100ms (0.1 seconds), writing out an object with 1000 integers via +SetCampaignObject takes roughly 150ms. that's the whole +magic behind the system. it basically just consolidates your writes.. + +original example: + +SetCampaignInt("MYDB", "MYVAR1", 10); +SetCampaignInt("MYDB", "MYVAR2", 20); +SetCampaignInt("MYDB", "MYVAR3", 30); +SetCampaignInt("MYDB", "MYVAR4", 40); +SetCampaignInt("MYDB", "MYVAR5", 50); + +nbde conversion: + +NBDE_SetCampaignInt("MYDB", "MYVAR1", 10); +NBDE_SetCampaignInt("MYDB", "MYVAR2", 20); +NBDE_SetCampaignInt("MYDB", "MYVAR3", 30); +NBDE_SetCampaignInt("MYDB", "MYVAR4", 40); +NBDE_SetCampaignInt("MYDB", "MYVAR5", 50); +NBDE_FlushCampaignDatabase("MYDB"); + +the original example takes roughly half a second (500ms), +the converted example only 100ms. + +you can gain a lot of speed and do things impossible with the original +database using the right flushing scheme. you can flush critical data asap +but you can get away flushing not so critical stuff only once every few +minutes, or during onClientLeave, or once an Area is out of players, and so on... + +keep in mind: you can loose data if the server crashes before +you flushed your database. + +delete function: +---------------- + +the original version only got one delete function, DeleteCampaignVariable. +That's because of the unique nature of sVarNames... +NBDE eliminates this restriction and therefore exposes one delete +function for each data-type. + +original example: + +DeleteCampaignVariable("MYDB", "MYVAR"); + +you need to know the datatype of "MYVAR" in order to correctly convert this +line to NBDE. lets assume it's an integer... + +nbde conversion: + +NBDE_DeleteCampaignInt("MYDB", "MYVAR"); + + +Unloading a Database: +--------------------- + +nbde databases are kept in memory. NBDE_UnloadCampaignDatabase() unloads +the database with the name sCampaignName from memory. + +useful to unload databases you don't need often. unloading/reloading is quite +fast, so don't hesitate to use this regulary... + + +*/ + +// database item name, used as sVarName parameter in Store-/RetrieveCampaignObject +const string NBDE_DATABASE_ITEM_VARNAME = "+++_DATABASE_ITEM_+++"; + +// database item resref, needed for auto-creation +const string NBDE_DATABASE_ITEM_RESREF = "nbde_database"; + +// database index prefix +// used to index a database via Get/SetLocalObject +const string NBDE_INDEX_PREFIX = "NBDE_DATABASE_"; + +// database vault tag +// this vault is usually a container +const string NBDE_VAULT_TAG = "NBDE_VAULT"; + +// prefixes used to store locations/vectors as strings +// this should eliminate collisions with normal strings +const string NBDE_LOC_PREFIX = "ĨÆĨ"; +const string NBDE_VEC_PREFIX = "øŖø"; + +// This stores an int out to the specified campaign database +// The database name IS case sensitive and it must be the same for both set and get functions. +// If you want a variable to pertain to a specific player in the game, provide a player object. +// +// Improvements to original bioware function: +// Vastly improved writing speed... +// There is no limit on the length of sVarname (original function is limited to 32 chars) +// sVarname must NOT be unique. you can use the same sVarname with a different data-type +void NBDE_SetCampaignInt(string sCampaignName, string sVarname, int nInt, object oPlayer = OBJECT_INVALID); + +// This stores a float out to the specified campaign database +// The database name IS case sensitive and it must be the same for both set and get functions. +// If you want a variable to pertain to a specific player in the game, provide a player object. +// +// Improvements to original bioware function: +// Vastly improved writing speed... +// There is no limit on the length of sVarname (original function is limited to 32 chars) +// sVarname must NOT be unique. you can use the same sVarname with a different data-type +void NBDE_SetCampaignFloat(string sCampaignName, string sVarname, float flFloat, object oPlayer = OBJECT_INVALID); + +// This stores a string out to the specified campaign database +// The database name IS case sensitive and it must be the same for both set and get functions. +// If you want a variable to pertain to a specific player in the game, provide a player object. +// +// Improvements to original bioware function: +// Vastly improved writing speed... +// There is no limit on the length of sVarname (original function is limited to 32 chars) +// sVarname must NOT be unique. you can use the same sVarname with a different data-type +void NBDE_SetCampaignString(string sCampaignName, string sVarname, string sString, object oPlayer = OBJECT_INVALID); + +// This stores a location out to the specified campaign database +// The database name IS case sensitive and it must be the same for both set and get functions. +// If you want a variable to pertain to a specific player in the game, provide a player object. +// +// Improvements to original bioware function: +// Vastly improved writing speed... +// There is no limit on the length of sVarname (original function is limited to 32 chars) +// sVarname must NOT be unique. you can use the same sVarname with a different data-type +// +// Original function is not very reliable, because it is using the areas object-id, which is +// a runtime generated ID. Stored locations may turn invalid in case you change the area layout in the toolset. +// (e.g. deleting old areas) +// +// This function is 100% reliable, as long as you use unique TAGs for your areas +void NBDE_SetCampaignLocation(string sCampaignName, string sVarname, location locLocation, object oPlayer = OBJECT_SELF); + +// This stores a vector out to the specified campaign database +// The database name IS case sensitive and it must be the same for both set and get functions. +// If you want a variable to pertain to a specific player in the game, provide a player object. +// +// Improvements to original bioware function: +// Vastly improved writing speed... +// There is no limit on the length of sVarname (original function is limited to 32 chars) +// sVarname must NOT be unique. you can use the same sVarname with a different data-type +void NBDE_SetCampaignVector(string sCampaignName, string sVarname, vector vVector, object oPlayer = OBJECT_SELF); + +// This will read an int from the specified campaign database +// The database name IS case sensitive and it must be the same for both set and get functions. +// If you want a variable to pertain to a specific player in the game, provide a player object. +// +// Improvements to original bioware function: +// Improved reading speed... +// There is no limit on the length of sVarname (original function is limited to 32 chars) +// sVarname must NOT be unique. you can use the same sVarname with a different data-type +int NBDE_GetCampaignInt(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID); + +// This will read a float from the specified campaign database +// The database name IS case sensitive and it must be the same for both set and get functions. +// If you want a variable to pertain to a specific player in the game, provide a player object. +// +// Improvements to original bioware function: +// Improved reading speed... +// There is no limit on the length of sVarname (original function is limited to 32 chars) +// sVarname must NOT be unique. you can use the same sVarname with a different data-type +float NBDE_GetCampaignFloat(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID); + +// This will read a string from the specified campaign database +// The database name IS case sensitive and it must be the same for both set and get functions. +// If you want a variable to pertain to a specific player in the game, provide a player object. +// +// Improvements to original bioware function: +// Improved reading speed... +// There is no limit on the length of sVarname (original function is limited to 32 chars) +// sVarname must NOT be unique. you can use the same sVarname with a different data-type +string NBDE_GetCampaignString(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID); + +// This will read a location from the specified campaign database +// The database name IS case sensitive and it must be the same for both set and get functions. +// If you want a variable to pertain to a specific player in the game, provide a player object. +// +// Improvements to original bioware function: +// Improved reading speed... +// There is no limit on the length of sVarname (original function is limited to 32 chars) +// sVarname must NOT be unique. you can use the same sVarname with a different data-type +// +// Original function is not very reliable, because it is using the areas object-id, which is +// a runtime generated ID. Stored locations may turn invalid in case you change the area layout in the toolset. +// (e.g. deleting old areas) +// +// This function is 100% reliable, as long as you use unique TAGs for your areas +location NBDE_GetCampaignLocation(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID); + +// This will read a vector from the specified campaign database +// The database name IS case sensitive and it must be the same for both set and get functions. +// If you want a variable to pertain to a specific player in the game, provide a player object. +// +// Improvements to original bioware function: +// Improved reading speed... +// There is no limit on the length of sVarname (original function is limited to 32 chars) +// sVarname must NOT be unique. you can use the same sVarname with a different data-type +vector NBDE_GetCampaignVector(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID); + +// this will remove an integer from the specified campaign database +// +// Improvements to original bioware function: +// This will physically delete the variable from the database, not only flagging it +// Database will shrink in size +// No need to pack your database ever +void NBDE_DeleteCampaignInt(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID); + +// this will remove a float from the specified campaign database +// +// Improvements to original bioware function: +// This will physically delete the variable from the database, not only flagging it +// Database will shrink in size +// No need to pack your database ever +void NBDE_DeleteCampaignFloat(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID); + +// This will remove a string from the specified campaign database +// +// Improvements to original bioware function: +// This will physically delete the variable from the database, not only flagging it +// Database will shrink in size +// No need to pack your database ever +void NBDE_DeleteCampaignString(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID); + +// This will remove a location from the specified campaign database +// +// Improvements to original bioware function: +// This will physically delete the variable from the database, not only flagging it +// Database will shrink in size +// No need to pack your database ever +void NBDE_DeleteCampaignLocation(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID); + +// This will remove a vector from the specified campaign database +// +// Improvements to original bioware function: +// This will physically delete the variable from the database, not only flagging it +// Database will shrink in size +// No need to pack your database ever +void NBDE_DeleteCampaignVector(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID); + +// This will flush a database to disk with a SINGLE StoreCampaignObject() call +// +// Don't use this function in a rapid manner. +// Delay each call to this function by at least 1 second (using delaycommand) +// in order to eliminate possible spikes... +void NBDE_FlushCampaignDatabase(string sCampaignName); + +// NBDE databases are kept in memory. this commands unloads +// the database with the name sCampaignName from memory. +// +// Useful to unload databases you don't need often. +// Unloading/reloading is quite fast, so don't hesitate to use +// this regulary... +// +// Reloading happens automatically, btw... +void NBDE_UnloadCampaignDatabase(string sCampaignName); + + +// --------------------------- IMPLEMENTATION ---------------------------- +/* ----------------------------------------------------------------------- */ + +// everything not in here gets considered an illegal character +// - mixed up for additional security +const string HASH_INDEX = "#i!j$k%l{&M/n(o)p=q?r^¤Xs`Tu'v]AwBxCyDzE1F2-G3t;4I}5Y:J6_K7+Z[Lm9N\ l0kOjPhQ,gRfSeHdU8cVbWa."; + +const int HASH_PRIME = 3021377; + +// simple hash +// returns -1 if string contains illegal character +int NBDE_Hash(string sData) +{ + int nLen = GetStringLength(sData); + int i, nHash, nChar; + for(i=0;i>27)) ^ nChar; + } + return nHash % HASH_PRIME; +} + +// serialize location to padded string +string NBDE_LocationToString(location lLoc) +{ + // serialization garbage... more or less "redo if it screws" code + string sLoc = IntToString(FloatToInt(GetPositionFromLocation(lLoc).x*100)); + sLoc = (GetStringLength(sLoc) < 5) ? sLoc + GetStringLeft(" ",5 - GetStringLength(sLoc)) : GetStringLeft(sLoc,5); + sLoc += IntToString(FloatToInt(GetPositionFromLocation(lLoc).y*100)); + sLoc = (GetStringLength(sLoc) < 10) ? sLoc + GetStringLeft(" ",10 - GetStringLength(sLoc)) : GetStringLeft(sLoc,10); + sLoc += IntToString(FloatToInt(GetPositionFromLocation(lLoc).z*100)); + sLoc = (GetStringLength(sLoc) < 15) ? sLoc + GetStringLeft(" ",15 - GetStringLength(sLoc)) : GetStringLeft(sLoc,15); + sLoc += IntToString(FloatToInt(GetFacingFromLocation(lLoc)*100)); + sLoc = (GetStringLength(sLoc) < 20) ? sLoc + GetStringLeft(" ",20 - GetStringLength(sLoc)) : GetStringLeft(sLoc,20); + sLoc += GetTag(GetAreaFromLocation(lLoc)); + sLoc = (GetStringLength(sLoc) < 52) ? sLoc + GetStringLeft(" ",52 - GetStringLength(sLoc)) : GetStringLeft(sLoc,52); + return sLoc; +} + +// de-serialize string to location +location NBDE_StringToLocation(string sLoc) +{ + // fast de-serialize code using padded strings + vector vVec; + // build vector + vVec.x = StringToFloat(GetStringLeft(sLoc,5)) / 100; + vVec.y = StringToFloat(GetSubString(sLoc,5,5)) / 100; + vVec.z = StringToFloat(GetSubString(sLoc,10,5)) / 100;; + int nPad = FindSubString(GetSubString(sLoc, 20,32)," "); + // build & return location + return Location(GetObjectByTag((nPad != -1) ? GetSubString(sLoc, 20,nPad) : GetSubString(sLoc, 20,32)), vVec, StringToFloat(GetSubString(sLoc,15,5)) / 100); +} + +// serialize vector to padded string +string NBDE_VectorToString(vector vVec) +{ + // serialization garbage... more or less "redo if it screws" code + string sVec = IntToString(FloatToInt(vVec.x*100)); + sVec = (GetStringLength(sVec) < 5) ? sVec + GetStringLeft(" ",5 - GetStringLength(sVec)) : GetStringLeft(sVec,5); + sVec += IntToString(FloatToInt(vVec.y*100)); + sVec = (GetStringLength(sVec) < 10) ? sVec + GetStringLeft(" ",10 - GetStringLength(sVec)) : GetStringLeft(sVec,10); + sVec += IntToString(FloatToInt(vVec.z*100)); + sVec = (GetStringLength(sVec) < 15) ? sVec + GetStringLeft(" ",15 - GetStringLength(sVec)) : GetStringLeft(sVec,15); + return sVec; +} + +vector NBDE_StringToVector(string sVec) +{ + // fast de-serialize code using padded strings + vector vVec; + vVec.x = StringToFloat(GetStringLeft(sVec,5)) / 100; + vVec.y = StringToFloat(GetSubString(sVec,5,5)) / 100; + vVec.z = StringToFloat(GetSubString(sVec,10,5)) / 100; + return vVec; +} + +// returns player key with hopefully safe delimiter +string NBDE_GetPlayerKey(object oPC) +{ + return GetName(oPC)+"¤"+GetPCPlayerName(oPC); +} + +// returns database object for the specified campaign database +// +// - auto-creates database object in case it doesn't exist +// - builds index for fast access +// +// you usually don't need to use this function directly... +object NBDE_GetCampaignDatabaseObject(string sCampaignName) +{ + // get database item + object oDatabase = GetLocalObject(GetObjectByTag(NBDE_VAULT_TAG), NBDE_INDEX_PREFIX + sCampaignName); + // retrieve/create database if not indexed already + if(!GetIsObjectValid(oDatabase)) + { + // get database vault object + // this container holds all database objects/items + object oVault = GetObjectByTag(NBDE_VAULT_TAG); + // check for valid vault + if(!GetIsObjectValid(oVault)) + { + WriteTimestampedLogEntry("NBDE> Error: unable to locate '"+NBDE_VAULT_TAG+"' vault container object"); + return OBJECT_INVALID; + } + // one time load + oDatabase = RetrieveCampaignObject(sCampaignName, NBDE_DATABASE_ITEM_VARNAME, GetLocation(oVault), oVault); + // not found ? create it + if(!GetIsObjectValid(oDatabase)) oDatabase = CreateItemOnObject(NBDE_DATABASE_ITEM_RESREF, oVault); + // check for valid database object + if(!GetIsObjectValid(oDatabase)) + { + WriteTimestampedLogEntry("NBDE> Error: unable to create '"+sCampaignName+"' database object"); + return OBJECT_INVALID; + } + // index item for fast access + SetLocalObject(oVault, NBDE_INDEX_PREFIX + sCampaignName, oDatabase); + } + return oDatabase; +} + +// this will flush (aka write to disk) the specified campaign database in one big swoop +// +// don't use this function in a rapid manner. +// delay each subsequent call to this function by at least 1 second (using delaycommand) +// this way you completely eliminate cpu-spikes, no matter how many database +// you flush. +void NBDE_FlushCampaignDatabase(string sCampaignName) +{ + // get database vault, it holds all database items + object oVault = GetObjectByTag(NBDE_VAULT_TAG); + if(GetIsObjectValid(oVault)) + { + // get database item + object oDatabase = GetLocalObject(oVault, NBDE_INDEX_PREFIX + sCampaignName); + // store the whole database via one single StoreCampaignObject call + // all variables on the item get stored with the item + if(GetIsObjectValid(oDatabase)) + { + // delete database on each flush to keep it compact and clean + DestroyCampaignDatabase(sCampaignName); + // store database + StoreCampaignObject(sCampaignName, NBDE_DATABASE_ITEM_VARNAME , oDatabase); + } + // database not loaded, no need to flush... + } + else // vault container missing + WriteTimestampedLogEntry("NBDE> Error: unable to locate '"+NBDE_VAULT_TAG+"' vault container object"); +} + +void NBDE_UnloadCampaignDatabase(string sCampaignName) +{ + // get database vault, it holds all database items + object oVault = GetObjectByTag(NBDE_VAULT_TAG); + if(GetIsObjectValid(oVault)) + { + // get database item + object oDatabase = GetLocalObject(oVault, NBDE_INDEX_PREFIX + sCampaignName); + if(GetIsObjectValid(oDatabase)) + { + // delete index + DeleteLocalObject(oVault, NBDE_INDEX_PREFIX + sCampaignName); + // delete database object + DestroyObject(oDatabase); + } + // database not loaded, do nothing + } + else // vault container missing + WriteTimestampedLogEntry("NBDE> Error: unable to locate '"+NBDE_VAULT_TAG+"' vault container object"); +} + +void NBDE_SetCampaignInt(string sCampaignName, string sVarname, int nInt, object oPlayer = OBJECT_INVALID) +{ + SetLocalInt(NBDE_GetCampaignDatabaseObject(sCampaignName) , + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname, nInt ); +} + +void NBDE_SetCampaignFloat(string sCampaignName, string sVarname, float fFloat, object oPlayer = OBJECT_INVALID) +{ + SetLocalFloat(NBDE_GetCampaignDatabaseObject(sCampaignName) , + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname, fFloat); +} + +void NBDE_SetCampaignString(string sCampaignName, string sVarname, string sString, object oPlayer = OBJECT_INVALID) +{ + SetLocalString(NBDE_GetCampaignDatabaseObject(sCampaignName) , + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname, sString); +} + +void NBDE_SetCampaignLocation(string sCampaignName, string sVarname, location locLocation, object oPlayer = OBJECT_SELF) +{ + SetLocalString( NBDE_GetCampaignDatabaseObject(sCampaignName) , + NBDE_LOC_PREFIX + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname , + NBDE_LocationToString(locLocation) ); +} + +void NBDE_SetCampaignVector(string sCampaignName, string sVarname, vector vVector, object oPlayer = OBJECT_SELF) +{ + SetLocalString(NBDE_GetCampaignDatabaseObject(sCampaignName) , + NBDE_VEC_PREFIX + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname , + NBDE_VectorToString(vVector) ); +} + +int NBDE_GetCampaignInt(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID) +{ + return GetLocalInt(NBDE_GetCampaignDatabaseObject(sCampaignName) , + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname ); +} + +float NBDE_GetCampaignFloat(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID) +{ + return GetLocalFloat(NBDE_GetCampaignDatabaseObject(sCampaignName) , + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname ); +} + +string NBDE_GetCampaignString(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID) +{ + return GetLocalString(NBDE_GetCampaignDatabaseObject(sCampaignName) , + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname ); +} + +location NBDE_GetCampaignLocation(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID) +{ + return NBDE_StringToLocation( GetLocalString(NBDE_GetCampaignDatabaseObject(sCampaignName) , + NBDE_LOC_PREFIX + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname) ); +} + +vector NBDE_GetCampaignVector(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID) +{ + return NBDE_StringToVector( GetLocalString(NBDE_GetCampaignDatabaseObject(sCampaignName), + NBDE_VEC_PREFIX + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname) ); +} + +void NBDE_DeleteCampaignInt(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID) +{ + DeleteLocalInt(NBDE_GetCampaignDatabaseObject(sCampaignName) , + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname); +} + +void NBDE_DeleteCampaignFloat(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID) +{ + DeleteLocalFloat(NBDE_GetCampaignDatabaseObject(sCampaignName) , + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname); +} + +void NBDE_DeleteCampaignString(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID) +{ + DeleteLocalString(NBDE_GetCampaignDatabaseObject(sCampaignName) , + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname); +} + +void NBDE_DeleteCampaignLocation(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID) +{ + DeleteLocalString(NBDE_GetCampaignDatabaseObject(sCampaignName) , + NBDE_LOC_PREFIX + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname); +} + +void NBDE_DeleteCampaignVector(string sCampaignName, string sVarname, object oPlayer = OBJECT_INVALID) +{ + DeleteLocalString(NBDE_GetCampaignDatabaseObject(sCampaignName) , + NBDE_VEC_PREFIX + ((GetIsObjectValid(oPlayer)) ? NBDE_GetPlayerKey(oPlayer) : "") + sVarname); +} + + diff --git a/gamma_age_v2/nthlai.utc b/gamma_age_v2/nthlai.utc new file mode 100644 index 00000000..1f37e969 Binary files /dev/null and b/gamma_age_v2/nthlai.utc differ diff --git a/gamma_age_v2/nw_c2_default4.ncs b/gamma_age_v2/nw_c2_default4.ncs new file mode 100644 index 00000000..728a4924 Binary files /dev/null and b/gamma_age_v2/nw_c2_default4.ncs differ diff --git a/gamma_age_v2/nw_c2_default4.nss b/gamma_age_v2/nw_c2_default4.nss new file mode 100644 index 00000000..a0d3d504 --- /dev/null +++ b/gamma_age_v2/nw_c2_default4.nss @@ -0,0 +1,109 @@ +//::////////////////////////////////////////////////// +//:: NW_C2_DEFAULT4 +/* + Default OnConversation event handler for NPCs. + + */ +//::////////////////////////////////////////////////// +//:: Copyright (c) 2002 Floodgate Entertainment +//:: Created By: Naomi Novik +//:: Created On: 12/22/2002 +//::////////////////////////////////////////////////// + +#include "nw_i0_generic" + +void main() +{ + // * if petrified, jump out + if (GetHasEffect(EFFECT_TYPE_PETRIFY, OBJECT_SELF) == TRUE) + { + return; + } + + // * If dead, exit directly. + if (GetIsDead(OBJECT_SELF) == TRUE) + { + return; + } + + + // See if what we just 'heard' matches any of our + // predefined patterns + int nMatch = GetListenPatternNumber(); + object oShouter = GetLastSpeaker(); + + + // 2008.05.25 tsunami282 - removed for NWN 1.69 (no longer needed) + //DMFI CODE ADDITIONS BEGIN HERE + // if (GetIsPC(oShouter) || GetIsDM(oShouter) || GetIsDMPossessed(oShouter)) + // { + // ExecuteScript("dmfi_voice_exe", OBJECT_SELF); + // } + + if (nMatch == -1 && GetIsPC(oShouter) &&(GetLocalInt(GetModule(), "dmfi_AllMute") || GetLocalInt(OBJECT_SELF, "dmfi_Mute"))) + { + SendMessageToAllDMs(GetName(oShouter) + " is trying to speak to a muted NPC, " + GetName(OBJECT_SELF) + ", in area " + GetName(GetArea(OBJECT_SELF))); + SendMessageToPC(oShouter, "This NPC is muted. A DM will be here shortly."); + return; + } + //DMFI CODE ADDITIONS END HERE + + + + if (nMatch == -1) + { + // Not a match -- start an ordinary conversation + if (GetCommandable(OBJECT_SELF)) + { + ClearActions(CLEAR_NW_C2_DEFAULT4_29); + BeginConversation(); + } + else + // * July 31 2004 + // * If only charmed then allow conversation + // * so you can have a better chance of convincing + // * people of lowering prices + if (GetHasEffect(EFFECT_TYPE_CHARMED) == TRUE) + { + ClearActions(CLEAR_NW_C2_DEFAULT4_29); + BeginConversation(); + } + } + // Respond to shouts from friendly non-PCs only + else if (GetIsObjectValid(oShouter) + && !GetIsPC(oShouter) + && GetIsFriend(oShouter)) + { + object oIntruder = OBJECT_INVALID; + // Determine the intruder if any + if(nMatch == 4) + { + oIntruder = GetLocalObject(oShouter, "NW_BLOCKER_INTRUDER"); + } + else if (nMatch == 5) + { + oIntruder = GetLastHostileActor(oShouter); + if(!GetIsObjectValid(oIntruder)) + { + oIntruder = GetAttemptedAttackTarget(); + if(!GetIsObjectValid(oIntruder)) + { + oIntruder = GetAttemptedSpellTarget(); + if(!GetIsObjectValid(oIntruder)) + { + oIntruder = OBJECT_INVALID; + } + } + } + } + + // Actually respond to the shout + RespondToShout(oShouter, nMatch, oIntruder); + } + + // Send the user-defined event if appropriate + if(GetSpawnInCondition(NW_FLAG_ON_DIALOGUE_EVENT)) + { + SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_DIALOGUE)); + } +} diff --git a/gamma_age_v2/nw_c2_default5.ncs b/gamma_age_v2/nw_c2_default5.ncs new file mode 100644 index 00000000..9c839745 Binary files /dev/null and b/gamma_age_v2/nw_c2_default5.ncs differ diff --git a/gamma_age_v2/nw_c2_default5.nss b/gamma_age_v2/nw_c2_default5.nss new file mode 100644 index 00000000..fa4d20ff --- /dev/null +++ b/gamma_age_v2/nw_c2_default5.nss @@ -0,0 +1,104 @@ +//:://///////////////////////////////////////////// +//:: Default On Attacked +//:: NW_C2_DEFAULT5 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + If already fighting then ignore, else determine + combat round +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 16, 2001 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Modified By: Deva Winblood +//:: Modified On: Jan 4th, 2008 +//:: Added Support for Mounted Combat Feat Support +//::////////////////////////////////////////////// + +#include "nw_i0_generic" + +//DMFI CODE ADDITIONS***************************** +void SafeFaction(object oCurrent, object oAttacker) +{ + AssignCommand(oAttacker, ClearAllActions()); + AssignCommand(oCurrent, ClearAllActions()); + // * Note: waiting for Sophia to make SetStandardFactionReptuation to clear all personal reputation + if (GetStandardFactionReputation(STANDARD_FACTION_COMMONER, oAttacker) <= 10) + { SetLocalInt(oAttacker, "NW_G_Playerhasbeenbad", 10); // * Player bad + SetStandardFactionReputation(STANDARD_FACTION_COMMONER, 80, oAttacker); + } + if (GetStandardFactionReputation(STANDARD_FACTION_MERCHANT, oAttacker) <= 10) + { SetLocalInt(oAttacker, "NW_G_Playerhasbeenbad", 10); // * Player bad + SetStandardFactionReputation(STANDARD_FACTION_MERCHANT, 80, oAttacker); + } + if (GetStandardFactionReputation(STANDARD_FACTION_DEFENDER, oAttacker) <= 10) + { SetLocalInt(oAttacker, "NW_G_Playerhasbeenbad", 10); // * Player bad + SetStandardFactionReputation(STANDARD_FACTION_DEFENDER, 80, oAttacker); + } + + +} +//END DMFI CODE ADDITIONS************************* + +void main() +{ +//DMFI CODE ADDITIONS***************************** + if ((GetIsPC(GetLastAttacker()) && (GetLocalInt(GetModule(), "dmfi_safe_factions")==1))) + { + SafeFaction(OBJECT_SELF, GetLastAttacker()); + SpeakString("DM ALERT: Default non-hostile faction member attacked. Player: "+GetName(GetLastAttacker()), TALKVOLUME_SILENT_SHOUT); + SendMessageToAllDMs("DMFI Safe Faction setting is currently set to ignore."); + SendMessageToPC(GetLastAttacker(), "Script Fired."); + return; + } +//END DMFI CODE ADDITIONS**************************** + + if (!GetLocalInt(GetModule(),"X3_NO_MOUNTED_COMBAT_FEAT")) + { // set variables on target for mounted combat + SetLocalInt(OBJECT_SELF,"bX3_LAST_ATTACK_PHYSICAL",TRUE); + SetLocalInt(OBJECT_SELF,"nX3_HP_BEFORE",GetCurrentHitPoints(OBJECT_SELF)); + } // set variables on target for mounted combat + + if(GetFleeToExit()) { + // Run away! + ActivateFleeToExit(); + } else if (GetSpawnInCondition(NW_FLAG_SET_WARNINGS)) { + // We give an attacker one warning before we attack + // This is not fully implemented yet + SetSpawnInCondition(NW_FLAG_SET_WARNINGS, FALSE); + + //Put a check in to see if this attacker was the last attacker + //Possibly change the GetNPCWarning function to make the check + } else { + object oAttacker = GetLastAttacker(); + if (!GetIsObjectValid(oAttacker)) { + // Don't do anything, invalid attacker + + } else if (!GetIsFighting(OBJECT_SELF)) { + // We're not fighting anyone else, so + // start fighting the attacker + if(GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL)) { + SetSummonHelpIfAttacked(); + DetermineSpecialBehavior(oAttacker); + } else if (GetArea(oAttacker) == GetArea(OBJECT_SELF)) { + SetSummonHelpIfAttacked(); + DetermineCombatRound(oAttacker); + } + + //Shout Attack my target, only works with the On Spawn In setup + SpeakString("NW_ATTACK_MY_TARGET", TALKVOLUME_SILENT_TALK); + + //Shout that I was attacked + SpeakString("NW_I_WAS_ATTACKED", TALKVOLUME_SILENT_TALK); + } + } + + + if(GetSpawnInCondition(NW_FLAG_ATTACK_EVENT)) + { + SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_ATTACKED)); + } +} + diff --git a/gamma_age_v2/nw_s0_raisdead.ncs b/gamma_age_v2/nw_s0_raisdead.ncs new file mode 100644 index 00000000..c85af024 Binary files /dev/null and b/gamma_age_v2/nw_s0_raisdead.ncs differ diff --git a/gamma_age_v2/nw_s0_raisdead.nss b/gamma_age_v2/nw_s0_raisdead.nss new file mode 100644 index 00000000..9d9acd26 --- /dev/null +++ b/gamma_age_v2/nw_s0_raisdead.nss @@ -0,0 +1,41 @@ +//:://///////////////////////////////////////////// +//:: [Raise Dead] +//:: [NW_S0_RaisDead.nss] +//:: Copyright (c) 2000 Bioware Corp. +//::////////////////////////////////////////////// +//:: Brings a character back to life with 1 HP. +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 31, 2001 +//::////////////////////////////////////////////// +//:: Last Updated By: Preston Watamaniuk, On: April 11, 2001 +//:: VFX Pass By: Preston W, On: June 22, 2001 + +// DEATH CODE START +#include "habd_include" +// DEATH CODE END + + +void main() +{ + //Declare major variables + object oTarget = GetSpellTargetObject(); + effect eRaise = EffectResurrection(); + effect eVis = EffectVisualEffect(VFX_IMP_RAISE_DEAD); + + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_RAISE_DEAD, FALSE)); + if(GetIsDead(oTarget)) + { + //Apply raise dead effect and VFX impact + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, GetLocation(oTarget)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eRaise, oTarget); + // HABD CODE START + HABDApplyPenaltyIfDead(oTarget, SPELL_RAISE_DEAD); + // HABD CODE END + } + // HABD CODE START + HABDCureRespawnGhost(oTarget, SPELL_RAISE_DEAD); + // HABD CODE END +} + diff --git a/gamma_age_v2/nw_s0_resserec.ncs b/gamma_age_v2/nw_s0_resserec.ncs new file mode 100644 index 00000000..3ace5491 Binary files /dev/null and b/gamma_age_v2/nw_s0_resserec.ncs differ diff --git a/gamma_age_v2/nw_s0_resserec.nss b/gamma_age_v2/nw_s0_resserec.nss new file mode 100644 index 00000000..eda598f7 --- /dev/null +++ b/gamma_age_v2/nw_s0_resserec.nss @@ -0,0 +1,44 @@ +//:://///////////////////////////////////////////// +//:: [Ressurection] +//:: [NW_S0_Ressurec.nss] +//:: Copyright (c) 2000 Bioware Corp. +//::////////////////////////////////////////////// +//:: Brings a character back to life with full +//:: health. +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Jan 31, 2001 +//::////////////////////////////////////////////// +//:: Last Updated By: Preston Watamaniuk, On: April 11, 2001 +//:: VFX Pass By: Preston W, On: June 22, 2001 + +// DEATH CODE START +#include "habd_include" +// DEATH CODE END + +void main() +{ + //Get the spell target + object oTarget = GetSpellTargetObject(); + //Check to make sure the target is dead first + //Fire cast spell at event for the specified target + SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_RESURRECTION, FALSE)); + if (GetIsDead(oTarget)) + { + //Declare major variables + int nHealed = GetMaxHitPoints(oTarget); + effect eRaise = EffectResurrection(); + effect eHeal = EffectHeal(nHealed + 10); + effect eVis = EffectVisualEffect(VFX_IMP_RAISE_DEAD); + //Apply the heal, raise dead and VFX impact effect + ApplyEffectToObject(DURATION_TYPE_INSTANT, eRaise, oTarget); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eHeal, oTarget); + ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, GetLocation(oTarget)); + // HABD CODE START + HABDApplyPenaltyIfDead(oTarget, SPELL_RESURRECTION); + // HABD CODE END + } + // HABD CODE START + HABDCureRespawnGhost(oTarget, SPELL_RESURRECTION); + // HABD CODE END +} diff --git a/gamma_age_v2/nw_s3_actitem01.ncs b/gamma_age_v2/nw_s3_actitem01.ncs new file mode 100644 index 00000000..ec852d4a Binary files /dev/null and b/gamma_age_v2/nw_s3_actitem01.ncs differ diff --git a/gamma_age_v2/nw_s3_actitem01.nss b/gamma_age_v2/nw_s3_actitem01.nss new file mode 100644 index 00000000..02575a9c --- /dev/null +++ b/gamma_age_v2/nw_s3_actitem01.nss @@ -0,0 +1,32 @@ +//:://///////////////////////////////////////////// +//:: Actuvate Item Script +//:: NW_S3_ActItem01 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + This fires the event on the module that allows + for items to have special powers. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Dec 19, 2001 +//::////////////////////////////////////////////// +//:: Modified by The DMFI Team to handle activation of DMFI Wands & Widgets + +void main() +{ + object oItem = GetSpellCastItem(); + object oTarget = GetSpellTargetObject(); + location lLocal = GetSpellTargetLocation(); + + if (GetStringLeft(GetTag(oItem), 5) == "dmfi_" || + GetStringLeft(GetTag(oItem), 8) == "hlslang_") + { + SetLocalObject(OBJECT_SELF, "dmfi_item", oItem); + SetLocalObject(OBJECT_SELF, "dmfi_target", oTarget); + SetLocalLocation(OBJECT_SELF, "dmfi_location", lLocal); + ExecuteScript("dmfi_activate", OBJECT_SELF); + return; + } + SignalEvent(GetModule(), EventActivateItem(oItem, lLocal, oTarget)); +} diff --git a/gamma_age_v2/nwnx.nss b/gamma_age_v2/nwnx.nss new file mode 100644 index 00000000..fe8942cf --- /dev/null +++ b/gamma_age_v2/nwnx.nss @@ -0,0 +1,113 @@ +/// @addtogroup nwnx NWNX +/// @brief Functions for plugin developers. +/// @{ +/// @file nwnx.nss + +/// @brief Scripting interface to NWNX. +/// @param pluginName The plugin name. +/// @param functionName The function name (do not include NWNX_Plugin_). +void NWNX_CallFunction(string pluginName, string functionName); +/// @brief Pushes the specified type to the c++ side +/// @param pluginName The plugin name. +/// @param functionName The function name (do not include NWNX_Plugin_). +/// @param value The value of specified type to push. +void NWNX_PushArgumentInt(string pluginName, string functionName, int value); +/// @copydoc NWNX_PushArgumentInt() +void NWNX_PushArgumentFloat(string pluginName, string functionName, float value); +/// @copydoc NWNX_PushArgumentInt() +void NWNX_PushArgumentObject(string pluginName, string functionName, object value); +/// @copydoc NWNX_PushArgumentInt() +void NWNX_PushArgumentString(string pluginName, string functionName, string value); +/// @copydoc NWNX_PushArgumentInt() +void NWNX_PushArgumentEffect(string pluginName, string functionName, effect value); +/// @copydoc NWNX_PushArgumentInt() +void NWNX_PushArgumentItemProperty(string pluginName, string functionName, itemproperty value); +/// @brief Returns the specified type from the c++ side +/// @param pluginName The plugin name. +/// @param functionName The function name (do not include NWNX_Plugin_). +/// @return The value of specified type. +int NWNX_GetReturnValueInt(string pluginName, string functionName); +/// @copydoc NWNX_GetReturnValueInt() +float NWNX_GetReturnValueFloat(string pluginName, string functionName); +/// @copydoc NWNX_GetReturnValueInt() +object NWNX_GetReturnValueObject(string pluginName, string functionName); +/// @copydoc NWNX_GetReturnValueInt() +string NWNX_GetReturnValueString(string pluginName, string functionName); +/// @copydoc NWNX_GetReturnValueInt() +effect NWNX_GetReturnValueEffect(string pluginName, string functionName); +/// @copydoc NWNX_GetReturnValueInt() +itemproperty NWNX_GetReturnValueItemProperty(string pluginName, string functionName); + +/// @private +string NWNX_INTERNAL_BuildString(string pluginName, string functionName, string operation) +{ + return "NWNXEE!ABIv2!" + pluginName + "!" + functionName + "!" + operation; +} +/// @} + +void NWNX_CallFunction(string pluginName, string functionName) +{ + PlaySound(NWNX_INTERNAL_BuildString(pluginName, functionName, "CALL")); +} + +void NWNX_PushArgumentInt(string pluginName, string functionName, int value) +{ + SetLocalInt(OBJECT_INVALID, NWNX_INTERNAL_BuildString(pluginName, functionName, "PUSH"), value); +} + +void NWNX_PushArgumentFloat(string pluginName, string functionName, float value) +{ + SetLocalFloat(OBJECT_INVALID, NWNX_INTERNAL_BuildString(pluginName, functionName, "PUSH"), value); +} + +void NWNX_PushArgumentObject(string pluginName, string functionName, object value) +{ + SetLocalObject(OBJECT_INVALID, NWNX_INTERNAL_BuildString(pluginName, functionName, "PUSH"), value); +} + +void NWNX_PushArgumentString(string pluginName, string functionName, string value) +{ + SetLocalString(OBJECT_INVALID, NWNX_INTERNAL_BuildString(pluginName, functionName, "PUSH"), value); +} + +void NWNX_PushArgumentEffect(string pluginName, string functionName, effect value) +{ + TagEffect(value, NWNX_INTERNAL_BuildString(pluginName, functionName, "PUSH")); +} + +void NWNX_PushArgumentItemProperty(string pluginName, string functionName, itemproperty value) +{ + TagItemProperty(value, NWNX_INTERNAL_BuildString(pluginName, functionName, "PUSH")); +} + +int NWNX_GetReturnValueInt(string pluginName, string functionName) +{ + return GetLocalInt(OBJECT_INVALID, NWNX_INTERNAL_BuildString(pluginName, functionName, "POP")); +} + +float NWNX_GetReturnValueFloat(string pluginName, string functionName) +{ + return GetLocalFloat(OBJECT_INVALID, NWNX_INTERNAL_BuildString(pluginName, functionName, "POP")); +} + +object NWNX_GetReturnValueObject(string pluginName, string functionName) +{ + return GetLocalObject(OBJECT_INVALID, NWNX_INTERNAL_BuildString(pluginName, functionName, "POP")); +} + +string NWNX_GetReturnValueString(string pluginName, string functionName) +{ + return GetLocalString(OBJECT_INVALID, NWNX_INTERNAL_BuildString(pluginName, functionName, "POP")); +} + +effect NWNX_GetReturnValueEffect(string pluginName, string functionName) +{ + effect e; + return TagEffect(e, NWNX_INTERNAL_BuildString(pluginName, functionName, "POP")); +} + +itemproperty NWNX_GetReturnValueItemProperty(string pluginName, string functionName) +{ + itemproperty ip; + return TagItemProperty(ip, NWNX_INTERNAL_BuildString(pluginName, functionName, "POP")); +} diff --git a/gamma_age_v2/nwnx_admin.nss b/gamma_age_v2/nwnx_admin.nss new file mode 100644 index 00000000..bbb43df9 --- /dev/null +++ b/gamma_age_v2/nwnx_admin.nss @@ -0,0 +1,344 @@ +/// @addtogroup admin Administration +/// @brief Various admin related functions +/// @{ +/// @file nwnx_admin.nss +#include "nwnx" + +const string NWNX_Administration = "NWNX_Administration"; ///< @private + +/// @name Administration Options +/// @anchor admin_opts +/// +/// @{ +const int NWNX_ADMINISTRATION_OPTION_ALL_KILLABLE = 0; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_NON_PARTY_KILLABLE = 1; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_REQUIRE_RESURRECTION = 2; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_LOSE_STOLEN_ITEMS = 3; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_LOSE_ITEMS = 4; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_LOSE_EXP = 5; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_LOSE_GOLD = 6; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_LOSE_GOLD_NUM = 7; +const int NWNX_ADMINISTRATION_OPTION_LOSE_EXP_NUM = 8; +const int NWNX_ADMINISTRATION_OPTION_LOSE_ITEMS_NUM = 9; +const int NWNX_ADMINISTRATION_OPTION_PVP_SETTING = 10; // 0 = No PVP, 1 = Party PVP, 2 = Full PVP +const int NWNX_ADMINISTRATION_OPTION_PAUSE_AND_PLAY = 11; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_ONE_PARTY_ONLY = 12; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_ENFORCE_LEGAL_CHARACTERS = 13; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_ITEM_LEVEL_RESTRICTIONS = 14; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_CDKEY_BANLIST_ALLOWLIST = 15; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_DISALLOW_SHOUTING = 16; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_SHOW_DM_JOIN_MESSAGE = 17; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_BACKUP_SAVED_CHARACTERS = 18; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_AUTO_FAIL_SAVE_ON_1 = 19; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_VALIDATE_SPELLS = 20; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_EXAMINE_EFFECTS = 21; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_EXAMINE_CHALLENGE_RATING = 22; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_USE_MAX_HITPOINTS = 23; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_RESTORE_SPELLS_USES = 24; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_RESET_ENCOUNTER_SPAWN_POOL = 25; // TRUE/FALSE +const int NWNX_ADMINISTRATION_OPTION_HIDE_HITPOINTS_GAINED = 26; // TRUE/FALSE +/// @} + +/// @name Administration Debug Types +/// @anchor admin_debug +/// +/// @{ +const int NWNX_ADMINISTRATION_DEBUG_COMBAT = 0; // TRUE/FALSE +const int NWNX_ADMINISTRATION_DEBUG_SAVING_THROW = 1; // TRUE/FALSE +const int NWNX_ADMINISTRATION_DEBUG_MOVEMENT_SPEED = 2; // TRUE/FALSE +const int NWNX_ADMINISTRATION_DEBUG_HIT_DIE = 3; // TRUE/FALSE +/// @} + +/// @brief Gets the current player password. +/// @return The current player password. +string NWNX_Administration_GetPlayerPassword(); + +/// @brief Sets the password for players to login. +/// @param password The password to use. +void NWNX_Administration_SetPlayerPassword(string password); + +/// @brief Clears the player password required to login. +void NWNX_Administration_ClearPlayerPassword(); + +/// @brief Gets the current DM password. +/// @return The current DM password. +string NWNX_Administration_GetDMPassword(); + +/// @brief Sets the password for DMs to login. +/// @param password The password to use. +void NWNX_Administration_SetDMPassword(string password); + +/// @brief Signals the server to immediately shut down. +void NWNX_Administration_ShutdownServer(); + +/// @brief Deletes the player character from the servervault +/// +/// The PC will be immediately booted from the game with a "Delete Character" message +/// +/// @param oPC The player to delete. +/// @param bPreserveBackup If true, it will leave the file on server, only appending ".deleted0" to the bic filename. +/// @param sKickMessage An optional kick message, if left blank it will default to "Delete Character" as reason. +void NWNX_Administration_DeletePlayerCharacter(object oPC, int bPreserveBackup = TRUE, string sKickMessage = ""); + +/// @brief Bans the provided IP. +/// @param ip The IP Address to ban. +void NWNX_Administration_AddBannedIP(string ip); + +/// @brief Removes the ban on the provided IP. +/// @param ip The IP Address to unban. +void NWNX_Administration_RemoveBannedIP(string ip); + +/// @brief Bans the provided Public CD Key. +/// @param key The Public CD Key to ban. +void NWNX_Administration_AddBannedCDKey(string key); + +/// @brief Removes the ban on the provided Public CD Key. +/// @param key The Public CD Key to unban. +void NWNX_Administration_RemoveBannedCDKey(string key); + +/// @brief Bans the provided playername. +/// @param playerName The player name (community name) to ban. +/// @warning A user can change their playername at will. +void NWNX_Administration_AddBannedPlayerName(string playerName); + +/// @brief Removes the ban on the provided playername. +/// @param playerName The player name (community name) to unban. +void NWNX_Administration_RemoveBannedPlayerName(string playerName); + +/// @brief Get a list of all banned IPs/Keys/names as a string. +/// @return A string with a listing of the banned IPs/Keys/names. +string NWNX_Administration_GetBannedList(); + +/// @brief Set the module's name as shown to the serverlist. +/// @param name The name to give the module. +void NWNX_Administration_SetModuleName(string name); + +/// @brief Set the server's name as shown to the serverlist. +/// @param name The name to give the server. +void NWNX_Administration_SetServerName(string name); + +/// @brief Returns the server's name as shown to the serverlist. +string NWNX_Administration_GetServerName(); + +/// @brief Get an @ref admin_opts "Administration Option" value. +/// @param option An @ref admin_opts "Administration Option". +/// @return The current setting for the supplied option from @ref admin_opts "Administration Options". +int NWNX_Administration_GetPlayOption(int option); + +/// @brief Set an @ref admin_opts "Administration Options" to a value. +/// @param option The option to adjust from @ref admin_opts "Administration Options". +/// @param value The new value for the option. +void NWNX_Administration_SetPlayOption(int option, int value); + +/// @brief Delete the TURD of playerName + characterName. +/// +/// At times a PC may get stuck in a permanent crash loop when attempting to log +/// in. This function allows administrators to delete their Temporary User +/// Resource Data where the PC's current location is stored allowing them to log +/// into the starting area. +/// +/// @param playerName The community (login name). +/// @param characterName The character name. +/// @return Returns TRUE if successful +int NWNX_Administration_DeleteTURD(string playerName, string characterName); + +/// @brief Get an @ref admin_debug "Administration Debug Type" value. +/// @param type An @ref admin_debug "Administration Debug Type". +/// @return The current value for the supplied debug type from @ref admin_debug "Administration Debug Types". +int NWNX_Administration_GetDebugValue(int type); + +/// @brief Set an @ref admin_debug "Administration Debug Type" to a value. +/// @param type The debug type to adjust from @ref admin_debug "Administration Debug Types". +/// @param state The new state for the debug type, TRUE or FALSE +void NWNX_Administration_SetDebugValue(int type, int state); + +/// @brief Reload all rules (2da stuff etc). +/// @warning DANGER, DRAGONS. Bad things may or may not happen. +void NWNX_Administration_ReloadRules(); + +/// @} + +string NWNX_Administration_GetPlayerPassword() +{ + string sFunc = "GetPlayerPassword"; + + NWNX_CallFunction(NWNX_Administration, sFunc); + return NWNX_GetReturnValueString(NWNX_Administration, sFunc); +} + +void NWNX_Administration_SetPlayerPassword(string password) +{ + string sFunc = "SetPlayerPassword"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, password); + NWNX_CallFunction(NWNX_Administration, sFunc); +} + +void NWNX_Administration_ClearPlayerPassword() +{ + string sFunc = "ClearPlayerPassword"; + + NWNX_CallFunction(NWNX_Administration, sFunc); +} + +string NWNX_Administration_GetDMPassword() +{ + string sFunc = "GetDMPassword"; + + NWNX_CallFunction(NWNX_Administration, sFunc); + return NWNX_GetReturnValueString(NWNX_Administration, sFunc); +} + +void NWNX_Administration_SetDMPassword(string password) +{ + string sFunc = "SetDMPassword"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, password); + NWNX_CallFunction(NWNX_Administration, sFunc); +} + +void NWNX_Administration_ShutdownServer() +{ + string sFunc = "ShutdownServer"; + + NWNX_CallFunction(NWNX_Administration, sFunc); +} + +void NWNX_Administration_DeletePlayerCharacter(object oPC, int bPreserveBackup = TRUE, string sKickMessage = "") +{ + string sFunc = "DeletePlayerCharacter"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, sKickMessage); + NWNX_PushArgumentInt(NWNX_Administration, sFunc, bPreserveBackup); + NWNX_PushArgumentObject(NWNX_Administration, sFunc, oPC); + NWNX_CallFunction(NWNX_Administration, sFunc); +} + +void NWNX_Administration_AddBannedIP(string ip) +{ + string sFunc = "AddBannedIP"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, ip); + NWNX_CallFunction(NWNX_Administration, sFunc); +} +void NWNX_Administration_RemoveBannedIP(string ip) +{ + string sFunc = "RemoveBannedIP"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, ip); + NWNX_CallFunction(NWNX_Administration, sFunc); +} +void NWNX_Administration_AddBannedCDKey(string key) +{ + string sFunc = "AddBannedCDKey"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, key); + NWNX_CallFunction(NWNX_Administration, sFunc); +} +void NWNX_Administration_RemoveBannedCDKey(string key) +{ + string sFunc = "RemoveBannedCDKey"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, key); + NWNX_CallFunction(NWNX_Administration, sFunc); +} +void NWNX_Administration_AddBannedPlayerName(string playerName) +{ + string sFunc = "AddBannedPlayerName"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, playerName); + NWNX_CallFunction(NWNX_Administration, sFunc); +} +void NWNX_Administration_RemoveBannedPlayerName(string playerName) +{ + string sFunc = "RemoveBannedPlayerName"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, playerName); + NWNX_CallFunction(NWNX_Administration, sFunc); +} +string NWNX_Administration_GetBannedList() +{ + string sFunc = "GetBannedList"; + + NWNX_CallFunction(NWNX_Administration, sFunc); + return NWNX_GetReturnValueString(NWNX_Administration, sFunc); +} + +void NWNX_Administration_SetModuleName(string name) +{ + string sFunc = "SetModuleName"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, name); + NWNX_CallFunction(NWNX_Administration, sFunc); +} + +void NWNX_Administration_SetServerName(string name) +{ + string sFunc = "SetServerName"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, name); + NWNX_CallFunction(NWNX_Administration, sFunc); +} + +string NWNX_Administration_GetServerName() +{ + string sFunc = "GetServerName"; + NWNX_CallFunction(NWNX_Administration, sFunc); + return NWNX_GetReturnValueString(NWNX_Administration, sFunc); +} + +int NWNX_Administration_GetPlayOption(int option) +{ + string sFunc = "GetPlayOption"; + + NWNX_PushArgumentInt(NWNX_Administration, sFunc, option); + NWNX_CallFunction(NWNX_Administration, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Administration, sFunc); +} + +void NWNX_Administration_SetPlayOption(int option, int value) +{ + string sFunc = "SetPlayOption"; + + NWNX_PushArgumentInt(NWNX_Administration, sFunc, value); + NWNX_PushArgumentInt(NWNX_Administration, sFunc, option); + NWNX_CallFunction(NWNX_Administration, sFunc); +} + +int NWNX_Administration_DeleteTURD(string playerName, string characterName) +{ + string sFunc = "DeleteTURD"; + + NWNX_PushArgumentString(NWNX_Administration, sFunc, characterName); + NWNX_PushArgumentString(NWNX_Administration, sFunc, playerName); + NWNX_CallFunction(NWNX_Administration, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Administration, sFunc); +} + +int NWNX_Administration_GetDebugValue(int type) +{ + string sFunc = "GetDebugValue"; + + NWNX_PushArgumentInt(NWNX_Administration, sFunc, type); + NWNX_CallFunction(NWNX_Administration, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Administration, sFunc); +} + +void NWNX_Administration_SetDebugValue(int type, int state) +{ + string sFunc = "SetDebugValue"; + + NWNX_PushArgumentInt(NWNX_Administration, sFunc, state); + NWNX_PushArgumentInt(NWNX_Administration, sFunc, type); + NWNX_CallFunction(NWNX_Administration, sFunc); +} + +void NWNX_Administration_ReloadRules() +{ + string sFunc = "ReloadRules"; + + NWNX_CallFunction(NWNX_Administration, sFunc); +} diff --git a/gamma_age_v2/nwnx_appearance.nss b/gamma_age_v2/nwnx_appearance.nss new file mode 100644 index 00000000..6f31140a --- /dev/null +++ b/gamma_age_v2/nwnx_appearance.nss @@ -0,0 +1,73 @@ +/// @addtogroup appearance Appearance +/// @brief Allows the appearance and some other things of creatures to be overridden per player. +/// @{ +/// @file nwnx_appearance.nss +#include "nwnx" + +const string NWNX_Appearance = "NWNX_Appearance"; ///< @private + +/// @name Appearance Types +/// @anchor appearance_types +/// +/// The various types of changes that can be made to how a PC is perceived. +/// @{ +const int NWNX_APPEARANCE_TYPE_APPEARANCE = 0; ///< APPEARANCE_TYPE_* or -1 to remove +const int NWNX_APPEARANCE_TYPE_GENDER = 1; ///< GENDER_* or -1 to remove + +/// @brief 0-GetMaxHitPoints(oCreature) or -1 to remove +/// @note This is visual only. Does not change the Examine Window health status. +const int NWNX_APPEARANCE_TYPE_HITPOINTS = 2; +const int NWNX_APPEARANCE_TYPE_HAIR_COLOR = 3; ///< 0-175 or -1 to remove +const int NWNX_APPEARANCE_TYPE_SKIN_COLOR = 4; ///< 0-175 or -1 to remove +const int NWNX_APPEARANCE_TYPE_PHENOTYPE = 5; ///< PHENOTYPE_* or -1 to remove +const int NWNX_APPEARANCE_TYPE_HEAD_TYPE = 6; ///< 0-? or -1 to remove +const int NWNX_APPEARANCE_TYPE_SOUNDSET = 7; ///< See soundset.2da or -1 to remove +const int NWNX_APPEARANCE_TYPE_TAIL_TYPE = 8; ///< CREATURE_TAIL_TYPE_* or see tailmodel.2da, -1 to remove +const int NWNX_APPEARANCE_TYPE_WING_TYPE = 9; ///< CREATURE_WING_TYPE_* or see wingmodel.2da, -1 to remove +const int NWNX_APPEARANCE_TYPE_FOOTSTEP_SOUND = 10; ///< 0-17 or see footstepsounds.2da, -1 to remove + +/// @brief See portraits.2da, -1 to remove +/// @note Does not change the Examine Window portrait. +const int NWNX_APPEARANCE_TYPE_PORTRAIT = 11; +///@} + +/// @brief Override a creature's appearance type for a player. +/// @param oPlayer The player who will see/hear things differently. +/// @param oCreature The target creature whose appearance type to alter for oPlayer. Can be a PC. +/// @param nType The @ref appearance_types "Appearance Type" to set or -1 to fully remove override. +/// @param nValue The new value for the appearance type. +void NWNX_Appearance_SetOverride(object oPlayer, object oCreature, int nType, int nValue); + +/// @brief Get a creature's appearance type for a player. +/// @param oPlayer The player who see/hear things differently. +/// @param oCreature The target creature whose appearance type is altered for oPlayer. Can be a PC. +/// @param nType The @ref appearance_types "Appearance Type" to get. +/// @return The value for the appearance type or -1 when not set. +int NWNX_Appearance_GetOverride(object oPlayer, object oCreature, int nType); + +/// @} + +void NWNX_Appearance_SetOverride(object oPlayer, object oCreature, int nType, int nValue) +{ + string sFunc = "SetOverride"; + + NWNX_PushArgumentInt(NWNX_Appearance, sFunc, nValue); + NWNX_PushArgumentInt(NWNX_Appearance, sFunc, nType); + NWNX_PushArgumentObject(NWNX_Appearance, sFunc, oCreature); + NWNX_PushArgumentObject(NWNX_Appearance, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Appearance, sFunc); +} + +int NWNX_Appearance_GetOverride(object oPlayer, object oCreature, int nType) +{ + string sFunc = "GetOverride"; + + NWNX_PushArgumentInt(NWNX_Appearance, sFunc, nType); + NWNX_PushArgumentObject(NWNX_Appearance, sFunc, oCreature); + NWNX_PushArgumentObject(NWNX_Appearance, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Appearance, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Appearance, sFunc); +} diff --git a/gamma_age_v2/nwnx_area.nss b/gamma_age_v2/nwnx_area.nss new file mode 100644 index 00000000..f1a9134f --- /dev/null +++ b/gamma_age_v2/nwnx_area.nss @@ -0,0 +1,660 @@ +/// @addtogroup area Area +/// @brief Functions exposing additional area properties as well as creating transitions. +/// @{ +/// @file nwnx_area.nss +#include "nwnx" + +const string NWNX_Area = "NWNX_Area"; ///< @private + +/// @name Area PVP Settings +/// @anchor area_pvp +/// @{ +const int NWNX_AREA_PVP_SETTING_NO_PVP = 0; +const int NWNX_AREA_PVP_SETTING_PARTY_PVP = 1; +const int NWNX_AREA_PVP_SETTING_FULL_PVP = 2; +const int NWNX_AREA_PVP_SETTING_SERVER_DEFAULT = 3; +/// @} + +/// @name Area Weather Settings +/// @anchor area_weather +/// @{ +const int NWNX_AREA_WEATHER_CHANCE_RAIN = 0; +const int NWNX_AREA_WEATHER_CHANCE_SNOW = 1; +const int NWNX_AREA_WEATHER_CHANCE_LIGHTNING = 2; +/// @} + +/// @name Area Day Night Cycle Settings +/// @anchor area_daynight +/// @{ +const int NWNX_AREA_DAYNIGHTCYCLE_CYCLE_DAY_NIGHT = 0; +const int NWNX_AREA_DAYNIGHTCYCLE_ALWAYS_BRIGHT = 1; +const int NWNX_AREA_DAYNIGHTCYCLE_ALWAYS_DARK = 2; +/// @} + +/// @name Area Sun/Moon Color Settings +/// @anchor area_color +/// @{ +const int NWNX_AREA_COLOR_TYPE_MOON_AMBIENT = 0; +const int NWNX_AREA_COLOR_TYPE_MOON_DIFFUSE = 1; +const int NWNX_AREA_COLOR_TYPE_SUN_AMBIENT = 2; +const int NWNX_AREA_COLOR_TYPE_SUN_DIFFUSE = 3; +/// @} + +/// @brief A tile info struct +struct NWNX_Area_TileInfo +{ + int nID; ///< The tile's ID + int nHeight; ///< The tile's height + int nOrientation; ///< The tile's orientation + int nGridX; ///< The tile's grid x position + int nGridY; ///< The tile's grid y position +}; + +/// @brief Gets the number of players in area. +/// @param area The area object. +/// @return The player count for the area. +int NWNX_Area_GetNumberOfPlayersInArea(object area); + +/// @brief Gets the creature that last entered area. +/// @param area The area object. +/// @return The most recent creature to enter the area. +object NWNX_Area_GetLastEntered(object area); + +/// @brief Gets the creature that last left area +/// @param area The area object. +object NWNX_Area_GetLastLeft(object area); + +/// @brief Get the PVP setting of area +/// @param area The area object. +/// @return Returns the @ref area_pvp "PVP Setting" for the area. +int NWNX_Area_GetPVPSetting(object area); + +/// @brief Set the PVP setting of area +/// @param area The area object. +/// @param pvpSetting One of @ref area_pvp the "PVP Settings". +void NWNX_Area_SetPVPSetting(object area, int pvpSetting); + +/// @brief Get the spot modifier of area +/// @param area The area object. +/// @return The value of the Spot skill modifier for this area. +int NWNX_Area_GetAreaSpotModifier(object area); + +/// @brief Set the spot modifier of area +/// @param area The area object. +/// @param spotModifier The modifier to the Spot skill for this area. +/// @sa NWNX_SkillRanks_SetAreaModifier() to change any skill modifier. +void NWNX_Area_SetAreaSpotModifier(object area, int spotModifier); + +/// @brief Get the listen modifer of area +/// @param area The area object. +/// @return The value of the Listen skill modifier for this area. +int NWNX_Area_GetAreaListenModifier(object area); + +/// @brief Set the listen modifier of area +/// @param area The area object. +/// @param listenModifier The modifier to the Listen skill for this area. +/// @sa NWNX_SkillRanks_SetAreaModifier() to change any skill modifier. +void NWNX_Area_SetAreaListenModifier(object area, int listenModifier); + +/// @brief Checks the No Resting area flag +/// @param area The area object. +/// @return TRUE if resting is not allowed in area. +int NWNX_Area_GetNoRestingAllowed(object area); + +/// @brief Set whether to disable resting in the area. +/// @param area The area object. +/// @param bNoRestingAllowed TRUE to disable resting in the area. +void NWNX_Area_SetNoRestingAllowed(object area, int bNoRestingAllowed); + +/// @brief Get the wind power in area +/// @param area The area object. +/// @return The wind power for the area. (0-2) +int NWNX_Area_GetWindPower(object area); + +/// @brief Set the wind power in area +/// @param area The area object. +/// @param windPower Set to 0, 1 or 2. +void NWNX_Area_SetWindPower(object area, int windPower); + +/// @brief Get the weather chance of type in area +/// @param type A @ref area_weather "Weather Setting". +/// @param area The area object. +/// @return The percentage chance for the weather type. (0-100) +int NWNX_Area_GetWeatherChance(object area, int type); + +/// @brief Set the weather chance of type in area +/// @param area The area object. +/// @param type A @ref area_weather "Weather Setting". +/// @param chance The chance this weather event occurs. +void NWNX_Area_SetWeatherChance(object area, int type, int chance); + +/// @brief Get the fog clip distance in area +/// @param area The area object. +/// @return The fog clip distance. +float NWNX_Area_GetFogClipDistance(object area); + +/// @brief Set the fog clip distance in area +/// @param area The area object. +/// @param distance The new fog clip distance. +void NWNX_Area_SetFogClipDistance(object area, float distance); + +/// @brief Get the shadow opacity of area +/// @param area The area object. +/// @return The shadow opacity for the area. (0-100) +int NWNX_Area_GetShadowOpacity(object area); + +/// @brief Set the shadow opacity of area +/// @param area The area object. +/// @param shadowOpacity The shadow opacity to set for the area (0-100). +void NWNX_Area_SetShadowOpacity(object area, int shadowOpacity); + +/// @brief Get the day/night cycle of area +/// @param area The area object. +/// @return The @ref area_daynight "Day Night Cycle Setting". +int NWNX_Area_GetDayNightCycle(object area); + +/// @brief Set the day/night cycle of area +/// @param area The area object. +/// @param type = A @ref area_daynight "Day Night Cycle Setting". +void NWNX_Area_SetDayNightCycle(object area, int type); + +/// @brief Get the Sun/Moon Ambient/Diffuse colors of area +/// @param area The area object. +/// @param type = A @ref area_color "Sun/Moon Color Setting". +/// @return A FOG_COLOR_* or a custom value, -1 on error. +int NWNX_Area_GetSunMoonColors(object area, int type); + +/// @brief Set the Sun/Moon Ambient/Diffuse colors of area +// type = NWNX_AREA_COLOR_TYPE_* +/// @param area The area object. +/// @param type = A @ref area_color "Sun/Moon Color Setting". +/// @param color = A FOG_COLOR_*. +/// @note The color can also be represented as a hex RGB number if specific color shades are desired. +/// The format of a hex specified color would be 0xFFEEDD where +/// * FF would represent the amount of red in the color +/// * EE would represent the amount of green in the color +/// * DD would represent the amount of blue in the color. +void NWNX_Area_SetSunMoonColors(object area, int type, int color); + +/// @brief Create and returns a transition (square shaped of specified size) at a location. +/// @param area The area object. +/// @param target A door or waypoint object. +/// @param x,y,z The position to create the transition. +/// @param size The size of the square. +/// @param tag If specified, the returning object will have this tag. +/// @sa NWNX_Object_SetTriggerGeometry() if you wish to draw the transition as something other than a square. +object NWNX_Area_CreateTransition(object area, object target, float x, float y, float z, float size = 2.0f, string tag=""); + +/// @brief Get the state of a tile animation loop. +/// @param oArea The area object. +/// @param fTileX, fTileY The coordinates of the tile. +/// @param nAnimLoop The loop to check. (1-3) +/// @return TRUE if the loop is enabled. +int NWNX_Area_GetTileAnimationLoop(object oArea, float fTileX, float fTileY, int nAnimLoop); + +/// @brief Set the state of a tile animation loop. +/// @param oArea The area object. +/// @param fTileX, fTileY The coordinates of the tile. +/// @param nAnimLoop The loop to set (1-3). +/// @param bEnabled TRUE or FALSE. +/// @note Requires clients to re-enter the area for it to take effect +void NWNX_Area_SetTileAnimationLoop(object oArea, float fTileX, float fTileY, int nAnimLoop, int bEnabled); + +/// @brief Get the name of the tile model from any location. +/// @param oArea The area name. +/// @param fTileX, fTileY The coordinates of the tile. +string NWNX_Area_GetTileModelResRef(object oArea, float fTileX, float fTileY); + +/// @brief Test to see if there's a direct, walkable line between two points in the area. +/// @param oArea The area object. +/// @param fStartX, fStartY The starting points. +/// @param fEndX, fEndY The ending points. +/// @param fPerSpace The personal space of a creature. Found in appearance.2da. +/// @param fHeight The height of a creature. Found in appearance.2da. +/// @param bIgnoreDoors Whether to ignore doors in the check. +/// @return +/// * 1 if there is a direct walkable line. +/// * -1 if the line is blocked by terrain. +/// * -2 if the line is blocked by a placeable. +/// * -3 if the line is blocked by a creature. +int NWNX_Area_TestDirectLine(object oArea, float fStartX, float fStartY, float fEndX, float fEndY, float fPerSpace, float fHeight, int bIgnoreDoors=FALSE); + +/// @brief Get if the area music is playing. +/// @param oArea The area object. +/// @param bBattleMusic Set to TRUE to get if the battle music is playing. +/// @return TRUE if music is playing +int NWNX_Area_GetMusicIsPlaying(object oArea, int bBattleMusic = FALSE); + +/// @brief Create and return a generic trigger (square shaped of specified size) at a location. +/// @param oArea The area object. +/// @param fX, fY, fZ The position to create the trigger. +/// @param sTag If specified, the returned trigger will have this tag. +/// @param fSize The size of the square. +/// @sa NWNX_Object_SetTriggerGeometry() if you wish to draw the trigger as something other than a square. +object NWNX_Area_CreateGenericTrigger(object oArea, float fX, float fY, float fZ, string sTag = "", float fSize = 1.0f); + +/// @brief Add oObject to the ExportGIT exclusion list, objects on this list won't be exported when NWNX_Area_ExportGIT() is called. +/// @param oObject The object to add +void NWNX_Area_AddObjectToExclusionList(object oObject); + +/// @brief Remove oObject from the ExportGIT exclusion list. +/// @param oObject The object to add +void NWNX_Area_RemoveObjectFromExclusionList(object oObject); + +/// @brief Export the .git file of oArea to the UserDirectory/nwnx folder, or to the location of sAlias. +/// @note Take care with local objects set on objects, they will likely not reference the same object after a server restart. +/// @param oArea The area to export the .git file of. +/// @param sFileName The filename, 16 characters or less and should be lowercase. If left blank the resref of oArea will be used. +/// @param bExportVarTable If TRUE, local variables set on oArea will be exported too. +/// @param bExportUUID If TRUE, the UUID of oArea will be exported, if it has one. +/// @param nObjectFilter One or more OBJECT_TYPE_* constants. These object will not be exported. For example OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR +/// will not export creatures and doors. Use OBJECT_TYPE_ALL to filter all objects or 0 to export all objects. +/// @param sAlias The alias of the resource directory to add the .git file to. Default: UserDirectory/nwnx +/// @return TRUE if exported successfully, FALSE if not. +int NWNX_Area_ExportGIT(object oArea, string sFileName = "", int bExportVarTable = TRUE, int bExportUUID = TRUE, int nObjectFilter = 0, string sAlias = "NWNX"); + +/// @brief Get the tile info of the tile at [fTileX, fTileY] in oArea. +/// @param oArea The area name. +/// @param fTileX, fTileY The coordinates of the tile. +/// @return A NWNX_Area_TileInfo struct with tile info. +struct NWNX_Area_TileInfo NWNX_Area_GetTileInfo(object oArea, float fTileX, float fTileY); + +/// @brief Export the .are file of oArea to the UserDirectory/nwnx folder, or to the location of sAlias. +/// @param oArea The area to export the .are file of. +/// @param sFileName The filename, 16 characters or less and should be lowercase. This will also be the resref of the area. +/// @param sNewName Optional new name of the area. Leave blank to use the current name. +/// @param sNewTag Optional new tag of the area. Leave blank to use the current tag. +/// @param sAlias The alias of the resource directory to add the .are file to. Default: UserDirectory/nwnx +/// @return TRUE if exported successfully, FALSE if not. +int NWNX_Area_ExportARE(object oArea, string sFileName, string sNewName = "", string sNewTag = "", string sAlias = "NWNX"); + +/// @} + +int NWNX_Area_GetNumberOfPlayersInArea(object area) +{ + string sFunc = "GetNumberOfPlayersInArea"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +object NWNX_Area_GetLastEntered(object area) +{ + string sFunc = "GetLastEntered"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueObject(NWNX_Area, sFunc); +} + +object NWNX_Area_GetLastLeft(object area) +{ + string sFunc = "GetLastLeft"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueObject(NWNX_Area, sFunc); +} + +int NWNX_Area_GetPVPSetting(object area) +{ + string sFunc = "GetPVPSetting"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +void NWNX_Area_SetPVPSetting(object area, int pvpSetting) +{ + string sFunc = "SetPVPSetting"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, pvpSetting); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +int NWNX_Area_GetAreaSpotModifier(object area) +{ + string sFunc = "GetAreaSpotModifier"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +void NWNX_Area_SetAreaSpotModifier(object area, int spotModifier) +{ + string sFunc = "SetAreaSpotModifier"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, spotModifier); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +int NWNX_Area_GetAreaListenModifier(object area) +{ + string sFunc = "GetAreaListenModifier"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +void NWNX_Area_SetAreaListenModifier(object area, int listenModifier) +{ + string sFunc = "SetAreaListenModifier"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, listenModifier); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +int NWNX_Area_GetNoRestingAllowed(object area) +{ + string sFunc = "GetNoRestingAllowed"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +void NWNX_Area_SetNoRestingAllowed(object area, int bNoRestingAllowed) +{ + string sFunc = "SetNoRestingAllowed"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, bNoRestingAllowed); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +int NWNX_Area_GetWindPower(object area) +{ + string sFunc = "GetWindPower"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +void NWNX_Area_SetWindPower(object area, int windPower) +{ + string sFunc = "SetWindPower"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, windPower); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +int NWNX_Area_GetWeatherChance(object area, int type) +{ + string sFunc = "GetWeatherChance"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, type); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +void NWNX_Area_SetWeatherChance(object area, int type, int chance) +{ + string sFunc = "SetWeatherChance"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, chance); + NWNX_PushArgumentInt(NWNX_Area, sFunc, type); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +float NWNX_Area_GetFogClipDistance(object area) +{ + string sFunc = "GetFogClipDistance"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueFloat(NWNX_Area, sFunc); +} + +void NWNX_Area_SetFogClipDistance(object area, float distance) +{ + string sFunc = "SetFogClipDistance"; + + NWNX_PushArgumentFloat(NWNX_Area, sFunc, distance); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +int NWNX_Area_GetShadowOpacity(object area) +{ + string sFunc = "GetShadowOpacity"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +void NWNX_Area_SetShadowOpacity(object area, int shadowOpacity) +{ + string sFunc = "SetShadowOpacity"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, shadowOpacity); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); +} + + +int NWNX_Area_GetDayNightCycle(object area) +{ + string sFunc = "GetDayNightCycle"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +void NWNX_Area_SetDayNightCycle(object area, int type) +{ + string sFunc = "SetDayNightCycle"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, type); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +int NWNX_Area_GetSunMoonColors(object area, int type) +{ + string sFunc = "GetSunMoonColors"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, type); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +void NWNX_Area_SetSunMoonColors(object area, int type, int color) +{ + string sFunc = "SetSunMoonColors"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, color); + NWNX_PushArgumentInt(NWNX_Area, sFunc, type); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +object NWNX_Area_CreateTransition(object area, object target, float x, float y, float z, float size = 2.0f, string tag="") +{ + string sFunc = "CreateTransition"; + + NWNX_PushArgumentString(NWNX_Area, sFunc, tag); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, size); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, z); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, y); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, x); + NWNX_PushArgumentObject(NWNX_Area, sFunc, target); + NWNX_PushArgumentObject(NWNX_Area, sFunc, area); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueObject(NWNX_Area, sFunc); +} + +int NWNX_Area_GetTileAnimationLoop(object oArea, float fTileX, float fTileY, int nAnimLoop) +{ + string sFunc = "GetTileAnimationLoop"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, nAnimLoop); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fTileY); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fTileX); + NWNX_PushArgumentObject(NWNX_Area, sFunc, oArea); + + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +void NWNX_Area_SetTileAnimationLoop(object oArea, float fTileX, float fTileY, int nAnimLoop, int bEnabled) +{ + string sFunc = "SetTileAnimationLoop"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, bEnabled); + NWNX_PushArgumentInt(NWNX_Area, sFunc, nAnimLoop); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fTileY); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fTileX); + NWNX_PushArgumentObject(NWNX_Area, sFunc, oArea); + + NWNX_CallFunction(NWNX_Area, sFunc); +} + +string NWNX_Area_GetTileModelResRef(object oArea, float fTileX, float fTileY) +{ + string sFunc = "GetTileModelResRef"; + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fTileY); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fTileX); + NWNX_PushArgumentObject(NWNX_Area, sFunc, oArea); + + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueString(NWNX_Area, sFunc); +} + +int NWNX_Area_TestDirectLine(object oArea, float fStartX, float fStartY, float fEndX, float fEndY, float fPerSpace, float fHeight, int bIgnoreDoors=FALSE) +{ + string sFunc = "TestDirectLine"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, bIgnoreDoors); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fHeight); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fPerSpace); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fEndY); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fEndX); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fStartY); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fStartX); + NWNX_PushArgumentObject(NWNX_Area, sFunc, oArea); + + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +int NWNX_Area_GetMusicIsPlaying(object oArea, int bBattleMusic = FALSE) +{ + string sFunc = "GetMusicIsPlaying"; + + NWNX_PushArgumentInt(NWNX_Area, sFunc, bBattleMusic); + NWNX_PushArgumentObject(NWNX_Area, sFunc, oArea); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +object NWNX_Area_CreateGenericTrigger(object oArea, float fX, float fY, float fZ, string sTag = "", float fSize = 1.0f) +{ + string sFunc = "CreateGenericTrigger"; + + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fSize); + NWNX_PushArgumentString(NWNX_Area, sFunc, sTag); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fZ); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fY); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fX); + NWNX_PushArgumentObject(NWNX_Area, sFunc, oArea); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueObject(NWNX_Area, sFunc); +} + +void NWNX_Area_AddObjectToExclusionList(object oObject) +{ + string sFunc = "AddObjectToExclusionList"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, oObject); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +void NWNX_Area_RemoveObjectFromExclusionList(object oObject) +{ + string sFunc = "RemoveObjectFromExclusionList"; + + NWNX_PushArgumentObject(NWNX_Area, sFunc, oObject); + NWNX_CallFunction(NWNX_Area, sFunc); +} + +int NWNX_Area_ExportGIT(object oArea, string sFileName = "", int bExportVarTable = TRUE, int bExportUUID = TRUE, int nObjectFilter = 0, string sAlias = "NWNX") +{ + string sFunc = "ExportGIT"; + + NWNX_PushArgumentString(NWNX_Area, sFunc, sAlias); + NWNX_PushArgumentInt(NWNX_Area, sFunc, nObjectFilter); + NWNX_PushArgumentInt(NWNX_Area, sFunc, bExportUUID); + NWNX_PushArgumentInt(NWNX_Area, sFunc, bExportVarTable); + NWNX_PushArgumentString(NWNX_Area, sFunc, sFileName); + NWNX_PushArgumentObject(NWNX_Area, sFunc, oArea); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} + +struct NWNX_Area_TileInfo NWNX_Area_GetTileInfo(object oArea, float fTileX, float fTileY) +{ + string sFunc = "GetTileInfo"; + + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fTileY); + NWNX_PushArgumentFloat(NWNX_Area, sFunc, fTileX); + NWNX_PushArgumentObject(NWNX_Area, sFunc, oArea); + NWNX_CallFunction(NWNX_Area, sFunc); + + struct NWNX_Area_TileInfo str; + + str.nGridY = NWNX_GetReturnValueInt(NWNX_Area, sFunc); + str.nGridX = NWNX_GetReturnValueInt(NWNX_Area, sFunc); + str.nOrientation = NWNX_GetReturnValueInt(NWNX_Area, sFunc); + str.nHeight = NWNX_GetReturnValueInt(NWNX_Area, sFunc); + str.nID = NWNX_GetReturnValueInt(NWNX_Area, sFunc); + + return str; +} + +int NWNX_Area_ExportARE(object oArea, string sFileName, string sNewName = "", string sNewTag = "", string sAlias = "NWNX") +{ + string sFunc = "ExportARE"; + + NWNX_PushArgumentString(NWNX_Area, sFunc, sAlias); + NWNX_PushArgumentString(NWNX_Area, sFunc, sNewTag); + NWNX_PushArgumentString(NWNX_Area, sFunc, sNewName); + NWNX_PushArgumentString(NWNX_Area, sFunc, sFileName); + NWNX_PushArgumentObject(NWNX_Area, sFunc, oArea); + NWNX_CallFunction(NWNX_Area, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Area, sFunc); +} diff --git a/gamma_age_v2/nwnx_chat.nss b/gamma_age_v2/nwnx_chat.nss new file mode 100644 index 00000000..90ca95e4 --- /dev/null +++ b/gamma_age_v2/nwnx_chat.nss @@ -0,0 +1,158 @@ +/// @addtogroup chat Chat +/// @brief Functions related to chat. +/// @{ +/// @file nwnx_chat.nss +#include "nwnx" + +const string NWNX_Chat = "NWNX_Chat"; ///< @private + +/// @name Chat Channels +/// @anchor chat_channels +/// +/// Constants defining the various chat channels. +/// @{ +const int NWNX_CHAT_CHANNEL_PLAYER_TALK = 1; +const int NWNX_CHAT_CHANNEL_PLAYER_SHOUT = 2; +const int NWNX_CHAT_CHANNEL_PLAYER_WHISPER = 3; +const int NWNX_CHAT_CHANNEL_PLAYER_TELL = 4; +const int NWNX_CHAT_CHANNEL_SERVER_MSG = 5; +const int NWNX_CHAT_CHANNEL_PLAYER_PARTY = 6; +const int NWNX_CHAT_CHANNEL_PLAYER_DM = 14; +const int NWNX_CHAT_CHANNEL_DM_TALK = 17; +const int NWNX_CHAT_CHANNEL_DM_SHOUT = 18; +const int NWNX_CHAT_CHANNEL_DM_WHISPER = 19; +const int NWNX_CHAT_CHANNEL_DM_TELL = 20; +const int NWNX_CHAT_CHANNEL_DM_PARTY = 22; +const int NWNX_CHAT_CHANNEL_DM_DM = 30; +/// @} + +/// @brief Sends a chat message. +/// @remark If no target is provided, then it broadcasts to all eligible targets. +/// @param channel The @ref chat_channels "channel" to send the message. +/// @param message The message to send. +/// @param sender The sender of the message. +/// @param target The receiver of the message. +/// @return TRUE if successful, FALSE otherwise. +int NWNX_Chat_SendMessage(int channel, string message, object sender = OBJECT_SELF, object target = OBJECT_INVALID); + +/// @brief Registers the script which receives all chat messages. +/// @note If a script was previously registered, this one will take over. +/// @param script The script name to handle the chat events. +void NWNX_Chat_RegisterChatScript(string script); + +/// @brief Skips a chat message +/// @note Must be called from a chat or system script handler. +void NWNX_Chat_SkipMessage(); + +/// @brief Gets the chat @ref chat_channels "channel". +/// @note Must be called from a chat or system script handler. +/// @return The @ref chat_channels "channel" the message is sent. +int NWNX_Chat_GetChannel(); + +/// @brief Gets the message. +/// @note Must be called from a chat or system script handler. +/// @return The message sent. +string NWNX_Chat_GetMessage(); + +/// @brief Gets the sender of the message. +/// @note Must be called from a chat or system script handler. +/// @return The object sending the message. +object NWNX_Chat_GetSender(); + +/// @brief Gets the target of the message. +/// @note Must be called from an chat or system script handler. +/// @return The target of the message or OBJECT_INVALID if no target. +object NWNX_Chat_GetTarget(); + +/// @brief Sets the distance with which the player hears talks or whispers. +/// @remark Per player settings override server wide. +/// @param distance The distance in meters. +/// @param listener The listener, if OBJECT_INVALID then it will be set server wide. +/// @param channel The @ref chat_channels "channel" to modify the distance heard. Only applicable for talk and whisper. +void NWNX_Chat_SetChatHearingDistance(float distance, object listener = OBJECT_INVALID, int channel = NWNX_CHAT_CHANNEL_PLAYER_TALK); + +/// @brief Gets the distance with which the player hears talks or whisper +/// @param listener The listener, if OBJECT_INVALID then will return server wide setting. +/// @param channel The @ref chat_channels "channel". Only applicable for talk and whisper. +float NWNX_Chat_GetChatHearingDistance(object listener = OBJECT_INVALID, int channel = NWNX_CHAT_CHANNEL_PLAYER_TALK); + +/// @} + +int NWNX_Chat_SendMessage(int channel, string message, object sender = OBJECT_SELF, object target = OBJECT_INVALID) +{ + string sFunc = "SendMessage"; + + NWNX_PushArgumentObject(NWNX_Chat, sFunc, target); + NWNX_PushArgumentObject(NWNX_Chat, sFunc, sender); + NWNX_PushArgumentString(NWNX_Chat, sFunc, message); + NWNX_PushArgumentInt(NWNX_Chat, sFunc, channel); + NWNX_CallFunction(NWNX_Chat, sFunc); + return NWNX_GetReturnValueInt(NWNX_Chat, sFunc); +} + +void NWNX_Chat_RegisterChatScript(string script) +{ + string sFunc = "RegisterChatScript"; + + NWNX_PushArgumentString(NWNX_Chat, sFunc, script); + NWNX_CallFunction(NWNX_Chat, sFunc); +} + +void NWNX_Chat_SkipMessage() +{ + string sFunc = "SkipMessage"; + + NWNX_CallFunction(NWNX_Chat, sFunc); +} + +int NWNX_Chat_GetChannel() +{ + string sFunc = "GetChannel"; + + NWNX_CallFunction(NWNX_Chat, sFunc); + return NWNX_GetReturnValueInt(NWNX_Chat, sFunc); +} + +string NWNX_Chat_GetMessage() +{ + string sFunc = "GetMessage"; + + NWNX_CallFunction(NWNX_Chat, sFunc); + return NWNX_GetReturnValueString(NWNX_Chat, sFunc); +} + +object NWNX_Chat_GetSender() +{ + string sFunc = "GetSender"; + + NWNX_CallFunction(NWNX_Chat, sFunc); + return NWNX_GetReturnValueObject(NWNX_Chat, sFunc); +} + +object NWNX_Chat_GetTarget() +{ + string sFunc = "GetTarget"; + + NWNX_CallFunction(NWNX_Chat, sFunc); + return NWNX_GetReturnValueObject(NWNX_Chat, sFunc); +} + +void NWNX_Chat_SetChatHearingDistance(float distance, object listener = OBJECT_INVALID, int channel = NWNX_CHAT_CHANNEL_PLAYER_TALK) +{ + string sFunc = "SetChatHearingDistance"; + + NWNX_PushArgumentInt(NWNX_Chat, sFunc, channel); + NWNX_PushArgumentObject(NWNX_Chat, sFunc, listener); + NWNX_PushArgumentFloat(NWNX_Chat, sFunc, distance); + NWNX_CallFunction(NWNX_Chat, sFunc); +} + +float NWNX_Chat_GetChatHearingDistance(object listener = OBJECT_INVALID, int channel = NWNX_CHAT_CHANNEL_PLAYER_TALK) +{ + string sFunc = "GetChatHearingDistance"; + + NWNX_PushArgumentInt(NWNX_Chat, sFunc, channel); + NWNX_PushArgumentObject(NWNX_Chat, sFunc, listener); + NWNX_CallFunction(NWNX_Chat, sFunc); + return NWNX_GetReturnValueFloat(NWNX_Chat, sFunc); +} diff --git a/gamma_age_v2/nwnx_consts.nss b/gamma_age_v2/nwnx_consts.nss new file mode 100644 index 00000000..3562ec79 --- /dev/null +++ b/gamma_age_v2/nwnx_consts.nss @@ -0,0 +1,182 @@ +/// @ingroup nwnx +/// @addtogroup consts NWNX Constants +/// @brief Provides various NWScript <-> Engine Constants Translation Table functions +/// @{ +/// @file nwnx_consts.nss + +/// @brief Translates ANIMATION_LOOPING_* and ANIMATION_FIREFORGET_* constants to their engine equivalent. +/// @param nAnimation The nwn animation constant +/// @return The engine equivalent of the constant +int NWNX_Consts_TranslateNWScriptAnimation(int nAnimation); + +/// @brief Translates engine animation constants to their ANIMATION_LOOPING_* and ANIMATION_FIREFORGET_* equivalent. +/// @param nAnimation The engine animation constant +/// @return The NWScript equivalent of the constant or -1 if a nwscript equivalent doesn't exist +int NWNX_Consts_TranslateEngineAnimation(int nAnimation); + +/// @brief Translates OBJECT_TYPE_* constants to their engine equivalent. +/// @param nObjectType The nwn object type +/// @return The engine equivalent of the constant +int NWNX_Consts_TranslateNWScriptObjectType(int nObjectType); + + +int NWNX_Consts_TranslateNWScriptAnimation(int nAnimation) +{ + switch (nAnimation) + { + case ANIMATION_LOOPING_PAUSE: nAnimation = 0; break; + case ANIMATION_LOOPING_PAUSE2: nAnimation = 52; break; + case ANIMATION_LOOPING_LISTEN: nAnimation = 30; break; + case ANIMATION_LOOPING_MEDITATE: nAnimation = 32; break; + case ANIMATION_LOOPING_WORSHIP: nAnimation = 33; break; + case ANIMATION_LOOPING_LOOK_FAR: nAnimation = 48; break; + case ANIMATION_LOOPING_SIT_CHAIR: nAnimation = 36; break; + case ANIMATION_LOOPING_SIT_CROSS: nAnimation = 47; break; + case ANIMATION_LOOPING_TALK_NORMAL: nAnimation = 38; break; + case ANIMATION_LOOPING_TALK_PLEADING: nAnimation = 39; break; + case ANIMATION_LOOPING_TALK_FORCEFUL: nAnimation = 40; break; + case ANIMATION_LOOPING_TALK_LAUGHING: nAnimation = 41; break; + case ANIMATION_LOOPING_GET_LOW: nAnimation = 59; break; + case ANIMATION_LOOPING_GET_MID: nAnimation = 60; break; + case ANIMATION_LOOPING_PAUSE_TIRED: nAnimation = 57; break; + case ANIMATION_LOOPING_PAUSE_DRUNK: nAnimation = 58; break; + case ANIMATION_LOOPING_DEAD_FRONT: nAnimation = 6; break; + case ANIMATION_LOOPING_DEAD_BACK: nAnimation = 8; break; + case ANIMATION_LOOPING_CONJURE1: nAnimation = 15; break; + case ANIMATION_LOOPING_CONJURE2: nAnimation = 16; break; + case ANIMATION_LOOPING_SPASM: nAnimation = 93; break; + case ANIMATION_LOOPING_CUSTOM1: nAnimation = 97; break; + case ANIMATION_LOOPING_CUSTOM2: nAnimation = 98; break; + case ANIMATION_LOOPING_CUSTOM3: nAnimation = 101; break; + case ANIMATION_LOOPING_CUSTOM4: nAnimation = 102; break; + case ANIMATION_LOOPING_CUSTOM5: nAnimation = 103; break; + case ANIMATION_LOOPING_CUSTOM6: nAnimation = 104; break; + case ANIMATION_LOOPING_CUSTOM7: nAnimation = 105; break; + case ANIMATION_LOOPING_CUSTOM8: nAnimation = 106; break; + case ANIMATION_LOOPING_CUSTOM9: nAnimation = 107; break; + case ANIMATION_LOOPING_CUSTOM10: nAnimation = 108; break; + case ANIMATION_LOOPING_CUSTOM11: nAnimation = 109; break; + case ANIMATION_LOOPING_CUSTOM12: nAnimation = 110; break; + case ANIMATION_LOOPING_CUSTOM13: nAnimation = 111; break; + case ANIMATION_LOOPING_CUSTOM14: nAnimation = 112; break; + case ANIMATION_LOOPING_CUSTOM15: nAnimation = 113; break; + case ANIMATION_LOOPING_CUSTOM16: nAnimation = 114; break; + case ANIMATION_LOOPING_CUSTOM17: nAnimation = 115; break; + case ANIMATION_LOOPING_CUSTOM18: nAnimation = 116; break; + case ANIMATION_LOOPING_CUSTOM19: nAnimation = 117; break; + case ANIMATION_LOOPING_CUSTOM20: nAnimation = 118; break; + case ANIMATION_MOUNT1: nAnimation = 119; break; + case ANIMATION_DISMOUNT1: nAnimation = 120; break; + case ANIMATION_FIREFORGET_HEAD_TURN_LEFT: nAnimation = 53; break; + case ANIMATION_FIREFORGET_HEAD_TURN_RIGHT: nAnimation = 54; break; + case ANIMATION_FIREFORGET_PAUSE_SCRATCH_HEAD: nAnimation = 55; break; + case ANIMATION_FIREFORGET_PAUSE_BORED: nAnimation = 56; break; + case ANIMATION_FIREFORGET_SALUTE: nAnimation = 34; break; + case ANIMATION_FIREFORGET_BOW: nAnimation = 35; break; + case ANIMATION_FIREFORGET_STEAL: nAnimation = 37; break; + case ANIMATION_FIREFORGET_GREETING: nAnimation = 29; break; + case ANIMATION_FIREFORGET_TAUNT: nAnimation = 28; break; + case ANIMATION_FIREFORGET_VICTORY1: nAnimation = 44; break; + case ANIMATION_FIREFORGET_VICTORY2: nAnimation = 45; break; + case ANIMATION_FIREFORGET_VICTORY3: nAnimation = 46; break; + case ANIMATION_FIREFORGET_READ: nAnimation = 71; break; + case ANIMATION_FIREFORGET_DRINK: nAnimation = 70; break; + case ANIMATION_FIREFORGET_DODGE_SIDE: nAnimation = 90; break; + case ANIMATION_FIREFORGET_DODGE_DUCK: nAnimation = 91; break; + case ANIMATION_FIREFORGET_SPASM: nAnimation = 23; break; + default: nAnimation = 0; break; + } + + return nAnimation; +} + +int NWNX_Consts_TranslateEngineAnimation(int nAnimation) +{ + switch (nAnimation) + { + case 0: nAnimation = ANIMATION_LOOPING_PAUSE; break; + case 52: nAnimation = ANIMATION_LOOPING_PAUSE2; break; + case 30: nAnimation = ANIMATION_LOOPING_LISTEN; break; + case 32: nAnimation = ANIMATION_LOOPING_MEDITATE; break; + case 33: nAnimation = ANIMATION_LOOPING_WORSHIP; break; + case 48: nAnimation = ANIMATION_LOOPING_LOOK_FAR; break; + case 36: nAnimation = ANIMATION_LOOPING_SIT_CHAIR; break; + case 47: nAnimation = ANIMATION_LOOPING_SIT_CROSS; break; + case 38: nAnimation = ANIMATION_LOOPING_TALK_NORMAL; break; + case 39: nAnimation = ANIMATION_LOOPING_TALK_PLEADING; break; + case 40: nAnimation = ANIMATION_LOOPING_TALK_FORCEFUL; break; + case 41: nAnimation = ANIMATION_LOOPING_TALK_LAUGHING; break; + case 59: nAnimation = ANIMATION_LOOPING_GET_LOW; break; + case 60: nAnimation = ANIMATION_LOOPING_GET_MID; break; + case 57: nAnimation = ANIMATION_LOOPING_PAUSE_TIRED; break; + case 58: nAnimation = ANIMATION_LOOPING_PAUSE_DRUNK; break; + case 6: nAnimation = ANIMATION_LOOPING_DEAD_FRONT; break; + case 8: nAnimation = ANIMATION_LOOPING_DEAD_BACK; break; + case 15: nAnimation = ANIMATION_LOOPING_CONJURE1; break; + case 16: nAnimation = ANIMATION_LOOPING_CONJURE2; break; + case 93: nAnimation = ANIMATION_LOOPING_SPASM; break; + case 97: nAnimation = ANIMATION_LOOPING_CUSTOM1; break; + case 98: nAnimation = ANIMATION_LOOPING_CUSTOM2; break; + case 101: nAnimation = ANIMATION_LOOPING_CUSTOM3; break; + case 102: nAnimation = ANIMATION_LOOPING_CUSTOM4; break; + case 103: nAnimation = ANIMATION_LOOPING_CUSTOM5; break; + case 104: nAnimation = ANIMATION_LOOPING_CUSTOM6; break; + case 105: nAnimation = ANIMATION_LOOPING_CUSTOM7; break; + case 106: nAnimation = ANIMATION_LOOPING_CUSTOM8; break; + case 107: nAnimation = ANIMATION_LOOPING_CUSTOM9; break; + case 108: nAnimation = ANIMATION_LOOPING_CUSTOM10; break; + case 109: nAnimation = ANIMATION_LOOPING_CUSTOM11; break; + case 110: nAnimation = ANIMATION_LOOPING_CUSTOM12; break; + case 111: nAnimation = ANIMATION_LOOPING_CUSTOM13; break; + case 112: nAnimation = ANIMATION_LOOPING_CUSTOM14; break; + case 113: nAnimation = ANIMATION_LOOPING_CUSTOM15; break; + case 114: nAnimation = ANIMATION_LOOPING_CUSTOM16; break; + case 115: nAnimation = ANIMATION_LOOPING_CUSTOM17; break; + case 116: nAnimation = ANIMATION_LOOPING_CUSTOM18; break; + case 117: nAnimation = ANIMATION_LOOPING_CUSTOM19; break; + case 118: nAnimation = ANIMATION_LOOPING_CUSTOM20; break; + case 119: nAnimation = ANIMATION_MOUNT1; break; + case 120: nAnimation = ANIMATION_DISMOUNT1; break; + case 53: nAnimation = ANIMATION_FIREFORGET_HEAD_TURN_LEFT; break; + case 54: nAnimation = ANIMATION_FIREFORGET_HEAD_TURN_RIGHT; break; + case 55: nAnimation = ANIMATION_FIREFORGET_PAUSE_SCRATCH_HEAD; break; + case 56: nAnimation = ANIMATION_FIREFORGET_PAUSE_BORED; break; + case 34: nAnimation = ANIMATION_FIREFORGET_SALUTE; break; + case 35: nAnimation = ANIMATION_FIREFORGET_BOW; break; + case 37: nAnimation = ANIMATION_FIREFORGET_STEAL; break; + case 29: nAnimation = ANIMATION_FIREFORGET_GREETING; break; + case 28: nAnimation = ANIMATION_FIREFORGET_TAUNT; break; + case 44: nAnimation = ANIMATION_FIREFORGET_VICTORY1; break; + case 45: nAnimation = ANIMATION_FIREFORGET_VICTORY2; break; + case 46: nAnimation = ANIMATION_FIREFORGET_VICTORY3; break; + case 71: nAnimation = ANIMATION_FIREFORGET_READ; break; + case 70: nAnimation = ANIMATION_FIREFORGET_DRINK; break; + case 90: nAnimation = ANIMATION_FIREFORGET_DODGE_SIDE; break; + case 91: nAnimation = ANIMATION_FIREFORGET_DODGE_DUCK; break; + case 23: nAnimation = ANIMATION_FIREFORGET_SPASM; break; + default: nAnimation = -1; break; + } + + return nAnimation; +} + +int NWNX_Consts_TranslateNWScriptObjectType(int nObjectType) +{ + switch(nObjectType) + { + case OBJECT_TYPE_ALL: nObjectType = 0; break; + case OBJECT_TYPE_AREA_OF_EFFECT: nObjectType = 11; break; + case OBJECT_TYPE_CREATURE: nObjectType = 5; break; + case OBJECT_TYPE_DOOR: nObjectType = 10; break; + case OBJECT_TYPE_ENCOUNTER: nObjectType = 13; break; + case OBJECT_TYPE_ITEM: nObjectType = 6; break; + case OBJECT_TYPE_PLACEABLE: nObjectType = 9; break; + case OBJECT_TYPE_STORE: nObjectType = 14; break; + case OBJECT_TYPE_TRIGGER: nObjectType = 7; break; + case OBJECT_TYPE_WAYPOINT: nObjectType = 12; break; + default: nObjectType = 0; break; + } + + return nObjectType; +} +/// @} // End of consts diff --git a/gamma_age_v2/nwnx_creature.nss b/gamma_age_v2/nwnx_creature.nss new file mode 100644 index 00000000..0e3486a1 --- /dev/null +++ b/gamma_age_v2/nwnx_creature.nss @@ -0,0 +1,2150 @@ +/// @addtogroup creature Creature +/// @brief Functions exposing additional creature properties. +/// @{ +/// @file nwnx_creature.nss +#include "nwnx" + +const string NWNX_Creature = "NWNX_Creature"; ///< @private + +/// @name Creature Movement Rates +/// @anchor creature_movement_rates +/// +/// The various types of movement rates. +/// @{ +const int NWNX_CREATURE_MOVEMENT_RATE_PC = 0; +const int NWNX_CREATURE_MOVEMENT_RATE_IMMOBILE = 1; +const int NWNX_CREATURE_MOVEMENT_RATE_VERY_SLOW = 2; +const int NWNX_CREATURE_MOVEMENT_RATE_SLOW = 3; +const int NWNX_CREATURE_MOVEMENT_RATE_NORMAL = 4; +const int NWNX_CREATURE_MOVEMENT_RATE_FAST = 5; +const int NWNX_CREATURE_MOVEMENT_RATE_VERY_FAST = 6; +const int NWNX_CREATURE_MOVEMENT_RATE_DEFAULT = 7; +const int NWNX_CREATURE_MOVEMENT_RATE_DM_FAST = 8; +/// @} + +/// @name Creature Movement Types +/// @anchor creature_movement_types +/// +/// The various types of movement types. +/// @{ +const int NWNX_CREATURE_MOVEMENT_TYPE_STATIONARY = 0; +const int NWNX_CREATURE_MOVEMENT_TYPE_WALK = 1; +const int NWNX_CREATURE_MOVEMENT_TYPE_RUN = 2; +const int NWNX_CREATURE_MOVEMENT_TYPE_SIDESTEP = 3; +const int NWNX_CREATURE_MOVEMENT_TYPE_WALK_BACKWARDS = 4; +/// @} + +/// @name Cleric Domains +/// @anchor cleric_domains +/// +/// The clerical domains. +/// @{ +const int NWNX_CREATURE_CLERIC_DOMAIN_AIR = 0; +const int NWNX_CREATURE_CLERIC_DOMAIN_ANIMAL = 1; +const int NWNX_CREATURE_CLERIC_DOMAIN_DEATH = 3; +const int NWNX_CREATURE_CLERIC_DOMAIN_DESTRUCTION = 4; +const int NWNX_CREATURE_CLERIC_DOMAIN_EARTH = 5; +const int NWNX_CREATURE_CLERIC_DOMAIN_EVIL = 6; +const int NWNX_CREATURE_CLERIC_DOMAIN_FIRE = 7; +const int NWNX_CREATURE_CLERIC_DOMAIN_GOOD = 8; +const int NWNX_CREATURE_CLERIC_DOMAIN_HEALING = 9; +const int NWNX_CREATURE_CLERIC_DOMAIN_KNOWLEDGE = 10; +const int NWNX_CREATURE_CLERIC_DOMAIN_MAGIC = 13; +const int NWNX_CREATURE_CLERIC_DOMAIN_PLANT = 14; +const int NWNX_CREATURE_CLERIC_DOMAIN_PROTECTION = 15; +const int NWNX_CREATURE_CLERIC_DOMAIN_STRENGTH = 16; +const int NWNX_CREATURE_CLERIC_DOMAIN_SUN = 17; +const int NWNX_CREATURE_CLERIC_DOMAIN_TRAVEL = 18; +const int NWNX_CREATURE_CLERIC_DOMAIN_TRICKERY = 19; +const int NWNX_CREATURE_CLERIC_DOMAIN_WAR = 20; +const int NWNX_CREATURE_CLERIC_DOMAIN_WATER = 21; +/// @} + +/// @name Bonus Types +/// @anchor bonus_types +/// +/// Used with NWNX_Creature_GetTotalEffectBonus() these are the types of temporary bonuses from effects. +/// @{ +const int NWNX_CREATURE_BONUS_TYPE_ATTACK = 1; +const int NWNX_CREATURE_BONUS_TYPE_DAMAGE = 2; +const int NWNX_CREATURE_BONUS_TYPE_SAVING_THROW = 3; +const int NWNX_CREATURE_BONUS_TYPE_ABILITY = 4; +const int NWNX_CREATURE_BONUS_TYPE_SKILL = 5; +const int NWNX_CREATURE_BONUS_TYPE_TOUCH_ATTACK = 6; +/// @} + +/// @struct NWNX_Creature_SpecialAbility +/// @brief A creature special ability. +struct NWNX_Creature_SpecialAbility +{ + int id; ///< The spell id + int ready; ///< Whether it can be used + int level; ///< The level of the ability +}; + +/// @struct NWNX_Creature_MemorisedSpell +/// @brief A memorised spell structure. +struct NWNX_Creature_MemorisedSpell +{ + int id; ///< Spell ID + int ready; ///< Whether the spell can be cast + int meta; ///< Metamagic type, if any + int domain; ///< Clerical domain, if any +}; + +/// @brief Gives the creature a feat. +/// @param creature The creature object. +/// @param feat The feat id. +/// @remark Consider also using NWNX_Creature_AddFeatByLevel() to properly allocate the feat to a level +void NWNX_Creature_AddFeat(object creature, int feat); + +/// @brief Gives the creature a feat assigned at a level +/// @param creature The creature object. +/// @param feat The feat id. +/// @param level The level they gained the feat. +/// @remark Adds the feat to the stat list at the provided level. +void NWNX_Creature_AddFeatByLevel(object creature, int feat, int level); + +/// @brief Removes a feat from a creature. +/// @param creature The creature object. +/// @param feat The feat id. +void NWNX_Creature_RemoveFeat(object creature, int feat); + +/// @brief Determines if the creature knows a feat. +/// @note This differs from native @nwn{GetHasFeat} which returns FALSE if the feat has no more uses per day. +/// @param creature The creature object. +/// @param feat The feat id. +/// @return TRUE if the creature has the feat, regardless if they have any usages left or not. +int NWNX_Creature_GetKnowsFeat(object creature, int feat); + +/// @brief Returns the count of feats learned at the provided level. +/// @param creature The creature object. +/// @param level The level. +/// @return The count of feats. +int NWNX_Creature_GetFeatCountByLevel(object creature, int level); + +/// @brief Returns the feat learned at the level and index. +/// @param creature The creature object. +/// @param level The level. +/// @param index The index. Index bounds: 0 <= index < NWNX_Creature_GetFeatCountByLevel(). +/// @return The feat id at the index. +int NWNX_Creature_GetFeatByLevel(object creature, int level, int index); + +/// @brief Returns the creature level where the specified feat was learned. +/// @param creature The creature object. +/// @param feat The feat id. +/// @return The character level that the specified feat was granted, otherwise 0 if the creature does not have this feat. +int NWNX_Creature_GetFeatGrantLevel(object creature, int feat); + +/// @brief Get the total number of feats known by creature. +/// @param creature The creature object. +/// @return The total feat count for the creature. +int NWNX_Creature_GetFeatCount(object creature); + +/// @brief Returns the creature's feat at a given index +/// @param creature The creature object. +/// @param index The index. Index bounds: 0 <= index < NWNX_Creature_GetFeatCount(); +/// @return The feat id at the index. +int NWNX_Creature_GetFeatByIndex(object creature, int index); + +/// @brief Gets if creature meets feat requirements. +/// @param creature The creature object. +/// @param feat The feat id. +/// @return TRUE if creature meets all requirements to take given feat +int NWNX_Creature_GetMeetsFeatRequirements(object creature, int feat); + +/// @brief Gets the count of special abilities of the creature. +/// @param creature The creature object. +/// @return The total special ability count. +int NWNX_Creature_GetSpecialAbilityCount(object creature); + +/// @brief Returns the creature's special ability at a given index. +/// @param creature The creature object. +/// @param index The index. Index bounds: 0 <= index < NWNX_Creature_GetSpecialAbilityCount(). +/// @return An NWNX_Creature_SpecialAbility struct. +struct NWNX_Creature_SpecialAbility NWNX_Creature_GetSpecialAbility(object creature, int index); + +/// @brief Adds a special ability to a creature. +/// @param creature The creature object. +/// @param ability An NWNX_Creature_SpecialAbility struct. +void NWNX_Creature_AddSpecialAbility(object creature, struct NWNX_Creature_SpecialAbility ability); + +/// @brief Removes a special ability from a creature. +/// @param creature The creature object. +/// @param index The index. Index bounds: 0 <= index < NWNX_Creature_GetSpecialAbilityCount(). +void NWNX_Creature_RemoveSpecialAbility(object creature, int index); + +/// @brief Sets a special ability at the index for the creature. +/// @param creature The creature object. +/// @param index The index. Index bounds: 0 <= index < NWNX_Creature_GetSpecialAbilityCount(). +/// @param ability An NWNX_Creature_SpecialAbility struct. +void NWNX_Creature_SetSpecialAbility(object creature, int index, struct NWNX_Creature_SpecialAbility ability); + +/// @brief Get the class taken by the creature at the provided level. +/// @param creature The creature object. +/// @param level The level. +/// @return The class id. +int NWNX_Creature_GetClassByLevel(object creature, int level); + +/// @brief Sets the base AC for the creature. +/// @param creature The creature object. +/// @param ac The base AC to set for the creature. +void NWNX_Creature_SetBaseAC(object creature, int ac); + +/// @brief Get the base AC for the creature. +/// @param creature The creature object. +/// @return The base AC. +int NWNX_Creature_GetBaseAC(object creature); + +/// @brief Sets the ability score of the creature to the provided value. +/// @note Does not apply racial bonuses/penalties. +/// @param creature The creature object. +/// @param ability The ability constant. +/// @param value The value to set. +void NWNX_Creature_SetRawAbilityScore(object creature, int ability, int value); + +/// @brief Gets the ability score of the creature. +/// @note Does not apply racial bonuses/penalties. +/// @param creature The creature object. +/// @param ability The ability constant. +/// @return The ability score. +int NWNX_Creature_GetRawAbilityScore(object creature, int ability); + +/// @brief Adjusts the ability score of a creature. +/// @note Does not apply racial bonuses/penalties. +/// @param creature The creature object. +/// @param ability The ability constant. +/// @param modifier The modifier value. +void NWNX_Creature_ModifyRawAbilityScore(object creature, int ability, int modifier); + +/// @brief Gets the raw ability score a polymorphed creature had prior to polymorphing. +/// @note For Strength, Dexterity and Constitution only. +/// @param creature The creature object. +/// @param ability The ability constant. +/// @return The raw ability score. +int NWNX_Creature_GetPrePolymorphAbilityScore(object creature, int ability); + +/// @brief Gets the count of memorised spells for a creature's class at a level. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @return The memorised spell count. +int NWNX_Creature_GetMemorisedSpellCountByLevel(object creature, int class, int level); + +/// @brief Gets the memorised spell at a class level's index. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @param index The index. Index bounds: 0 <= index < NWNX_Creature_GetMemorisedSpellCountByLevel(). +/// @return An NWNX_Creature_MemorisedSpell() struct. +struct NWNX_Creature_MemorisedSpell NWNX_Creature_GetMemorisedSpell(object creature, int class, int level, int index); + +/// @brief Sets the memorised spell at a class level's index. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @param index The index. Index bounds: 0 <= index < NWNX_Creature_GetMemorisedSpellCountByLevel(). +/// @param spell An NWNX_Creature_MemorisedSpell() struct. +void NWNX_Creature_SetMemorisedSpell(object creature, int class, int level, int index, struct NWNX_Creature_MemorisedSpell spell); + +/// @brief Gets the remaining spell slots (innate casting) at a class level's index. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @return The remaining spell slot count. +int NWNX_Creature_GetRemainingSpellSlots(object creature, int class, int level); + +/// @brief Sets the remaining spell slots (innate casting) at a class level. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @param slots The remaining spell slots to set. +void NWNX_Creature_SetRemainingSpellSlots(object creature, int class, int level, int slots); + +/// @brief Gets the maximum spell slots (innate casting) at a class level. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @return The maximum spell slot count. +int NWNX_Creature_GetMaxSpellSlots(object creature, int class, int level); + +/// @brief Gets the known spell count (innate casting) at a class level. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @return The known spell count. +int NWNX_Creature_GetKnownSpellCount(object creature, int class, int level); + +/// @brief Gets the known spell at a class level's index. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @param index The index. Index bounds: 0 <= index < NWNX_Creature_GetKnownSpellCount(). +/// @return The spell id. +int NWNX_Creature_GetKnownSpell(object creature, int class, int level, int index); + +/// @brief Add a spell to a creature's spellbook for class. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @param spellId The spell to remove. +void NWNX_Creature_AddKnownSpell(object creature, int class, int level, int spellId); + +/// @brief Remove a spell from creature's spellbook for class. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @param spellId The spell to remove. +void NWNX_Creature_RemoveKnownSpell(object creature, int class, int level, int spellId); + +/// @brief Clear a specific spell from the creature's spellbook for class +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param spellId The spell to clear. +void NWNX_Creature_ClearMemorisedKnownSpells(object creature, int class, int spellId); + +/// @brief Clear the memorised spell of the creature for the class, level and index. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param level The spell level. +/// @param index The index. Index bounds: 0 <= index < NWNX_Creature_GetMemorisedSpellCountByLevel(). +void NWNX_Creature_ClearMemorisedSpell(object creature, int class, int level, int index); + +/// @brief Gets the maximum hit points for creature for level. +/// @param creature The creature object. +/// @param level The level. +/// @return The maximum hit points a creature can have for the class at the provided level. +int NWNX_Creature_GetMaxHitPointsByLevel(object creature, int level); + +/// @brief Sets the maximum hit points for creature. +/// @param creature The creature object. +/// @param level The level. +/// @param value The amount to set the max hit points. +void NWNX_Creature_SetMaxHitPointsByLevel(object creature, int level, int value); + +/// @brief Set creature's movement rate. +/// @param creature The creature object. +/// @param rate The movement rate. +void NWNX_Creature_SetMovementRate(object creature, int rate); + +/// @brief Returns the creature's current movement rate factor. +/// @remark Base movement rate factor is 1.0. +/// @param creature The creature object. +/// @return The current movement rate factor. +float NWNX_Creature_GetMovementRateFactor(object creature); + +/// @brief Sets the creature's current movement rate factor. +/// @note Base movement rate factor is 1.0. +/// @param creature The creature object. +/// @param rate The rate to set. +void NWNX_Creature_SetMovementRateFactor(object creature, float rate); + +/// @brief Sets the creature's maximum movement rate cap. +/// @note Default movement rate cap is 1.5. +/// @param creature The creature object. +/// @param cap The cap to set. +void NWNX_Creature_SetMovementRateFactorCap(object creature, float cap); + +/// @brief Returns the creature's current movement type +/// @param creature The creature object. +/// @return An NWNX_CREATURE_MOVEMENT_TYPE_* constant. +int NWNX_Creature_GetMovementType(object creature); + +/// @brief Sets the maximum movement rate a creature can have while walking (not running) +/// @remark This allows a creature with movement speed enhancements to walk at a normal rate. +/// @param creature The creature object. +/// @param fWalkRate The walk rate to apply. Setting the value to -1.0 will remove the cap. +/// Default value is 2000.0, which is the base human walk speed. +void NWNX_Creature_SetWalkRateCap(object creature, float fWalkRate = 2000.0f); + +/// @brief Set creature's raw good/evil alignment value. +/// @param creature The creature object. +/// @param value The value to set. +void NWNX_Creature_SetAlignmentGoodEvil(object creature, int value); + +/// @brief Set creature's raw law/chaos alignment value. +/// @param creature The creature object. +/// @param value The value to set. +void NWNX_Creature_SetAlignmentLawChaos(object creature, int value); + +/// @brief Get the soundset index for creature. +/// @param creature The creature object. +/// @return The soundset used by the creature. +int NWNX_Creature_GetSoundset(object creature); + +/// @brief Set the soundset index for creature. +/// @param creature The creature object. +/// @param soundset The soundset index. +void NWNX_Creature_SetSoundset(object creature, int soundset); + +/// @brief Set the base ranks in a skill for creature +/// @param creature The creature object. +/// @param skill The skill id. +/// @param rank The value to set as the skill rank. +void NWNX_Creature_SetSkillRank(object creature, int skill, int rank); + +/// @brief Set the class ID in a particular position for a creature. +/// @param creature The creature object. +/// @param position Should be 0, 1, or 2 depending on how many classes the creature +/// has and which is to be modified. +/// @param classID A valid ID number in classes.2da and between 0 and 255. +void NWNX_Creature_SetClassByPosition(object creature, int position, int classID); + +/// @brief Set the level at the given position for a creature. +/// @note A creature should already have a class in that position. +/// @param creature The creature object. +/// @param position Should be 0, 1, or 2 depending on how many classes the creature +/// has and which is to be modified. +/// @param level The level to set. +void NWNX_Creature_SetLevelByPosition(object creature, int position, int level); + +/// @brief Set creature's base attack bonus (BAB). +/// @note Modifying the BAB will also affect the creature's attacks per round and its +/// eligibility for feats, prestige classes, etc. +/// @param creature The creature object. +/// @param bab The BAB value. Should be between 0 and 254. Setting BAB to 0 will cause the +/// creature to revert to its original BAB based on its classes and levels. A creature can +/// never have an actual BAB of zero. +/// @remark The base game has a function @nwn{SetBaseAttackBonus}, which actually sets +/// the bonus attacks per round for a creature, not the BAB. +void NWNX_Creature_SetBaseAttackBonus(object creature, int bab); + +/// @brief Gets the creatures current attacks per round (using equipped weapon). +/// @param creature The creature object. +/// @param bBaseAPR If TRUE, will return the base attacks per round, based on BAB and +/// equipped weapons, regardless of overrides set by calls to @nwn{SetBaseAttackBonus} builtin function. +/// @return The attacks per round. +int NWNX_Creature_GetAttacksPerRound(object creature, int bBaseAPR = FALSE); + +/// @brief Sets the creature gender. +/// @param creature The creature object. +/// @param gender The GENDER_ constant. +void NWNX_Creature_SetGender(object creature, int gender); + +/// @brief Restore all creature feat uses. +/// @param creature The creature object. +void NWNX_Creature_RestoreFeats(object creature); + +/// @brief Restore all creature special ability uses. +/// @param creature The creature object. +void NWNX_Creature_RestoreSpecialAbilities(object creature); + +/// @brief Restore all creature spells per day for given level. +/// @param creature The creature object. +/// @param level The level to restore. If -1, all spells are restored. +void NWNX_Creature_RestoreSpells(object creature, int level = -1); + +/// @brief Restore uses for all items carried by the creature. +/// @param creature The creature object. +void NWNX_Creature_RestoreItems(object creature); + +/// @brief Sets the creature size. +/// @param creature The creature object. +/// @param size Use CREATURE_SIZE_* constants. +void NWNX_Creature_SetSize(object creature, int size); + +/// @brief Gets the creature's remaining unspent skill points. +/// @param creature The creature object. +/// @return The remaining unspent skill points. +int NWNX_Creature_GetSkillPointsRemaining(object creature); + +/// @brief Sets the creature's remaining unspent skill points. +/// @param creature The creature object. +/// @param skillpoints The value to set. +void NWNX_Creature_SetSkillPointsRemaining(object creature, int skillpoints); + +/// @brief Sets the creature's racial type +/// @param creature The creature object. +/// @param racialtype The racial type to set. +void NWNX_Creature_SetRacialType(object creature, int racialtype); + +/// @brief Sets the creature's gold without sending a feedback message +/// @param creature The creature object. +/// @param gold The amount of gold to set for their creature. +void NWNX_Creature_SetGold(object creature, int gold); + +/// @brief Sets corpse decay time in milliseconds +/// @param creature The creature object. +/// @param nDecayTime The corpse decay time. +void NWNX_Creature_SetCorpseDecayTime(object creature, int nDecayTime); + +/// @brief Gets the creature's base save. +/// @param creature The creature object. +/// @param which One of SAVING_THROW_FORT, SAVING_THROW_REFLEX or SAVING_THROW_WILL +/// @return The base save value. +/// @note This will include any modifiers set in the toolset. +int NWNX_Creature_GetBaseSavingThrow(object creature, int which); + +/// @brief Sets the creature's base save. +/// @param creature The creature object. +/// @param which One of SAVING_THROW_FORT, SAVING_THROW_REFLEX or SAVING_THROW_WILL +/// @param value The base save value. +void NWNX_Creature_SetBaseSavingThrow(object creature, int which, int value); + +/// @brief Add levels of class to the creature, bypassing all validation +/// @param creature The creature object. +/// @param class The class id. +/// @param count The amount of levels of class to add. +/// @note This will not work on player characters. +void NWNX_Creature_LevelUp(object creature, int class, int count=1); + +/// @brief Remove last levels from a creature. +/// @param creature The creature object. +/// @param count The amount of levels to decrement. +/// @note This will not work on player characters. +void NWNX_Creature_LevelDown(object creature, int count=1); + +/// @brief Sets the creature's challenge rating +/// @param creature The creature object. +/// @param fCR The challenge rating. +void NWNX_Creature_SetChallengeRating(object creature, float fCR); + +/// @brief Returns the creature's highest attack bonus based on its own stats. +/// @note AB vs. Type and +AB on Gauntlets are excluded +/// @param creature The creature object. +/// @param isMelee +/// * TRUE: Get Melee/Unarmed Attack Bonus +/// * FALSE: Get Ranged Attack Bonus +/// * -1: Get Attack Bonus depending on the weapon creature has equipped in its right hand +/// Defaults to Melee Attack Bonus if weapon is invalid or no weapon +/// @param isTouchAttack If the attack was a touch attack. +/// @param isOffhand If the attack was with the offhand. +/// @param includeBaseAttackBonus Should the result include the base attack bonus. +/// @return The highest attack bonus. +int NWNX_Creature_GetAttackBonus(object creature, int isMelee = -1, int isTouchAttack = FALSE, int isOffhand = FALSE, int includeBaseAttackBonus = TRUE); + +/// @brief Get highest level version of feat possessed by creature. +/// @remark For feats that increment in power, for example, barbarian rage. +/// @param creature The creature object. +/// @param feat The feat id. +/// @return The highest level version of the feat. +int NWNX_Creature_GetHighestLevelOfFeat(object creature, int feat); + +/// @brief Get feat remaining uses. +/// @param creature The creature object. +/// @param feat The feat id. +/// @return The amount of remaining uses. +int NWNX_Creature_GetFeatRemainingUses(object creature, int feat); + +/// @brief Get feat total uses. +/// @param creature The creature object. +/// @param feat The feat id. +/// @return The total uses. +int NWNX_Creature_GetFeatTotalUses(object creature, int feat); + +/// @brief Set feat remaining uses. +/// @param creature The creature object. +/// @param feat The feat id. +/// @param uses The amount of remaining uses. +void NWNX_Creature_SetFeatRemainingUses(object creature, int feat, int uses); + +/// @brief Get total effect bonus +/// @remark This exposes the actual bonus value beyond a player's base scores to attack, damage bonus, saves, +/// skills, ability scores, and touch attack provided by spells, equipment, potions etc. +/// @param creature The creature object. +/// @param bonusType A @ref bonus_types "Bonus Type" +/// @param target A target object. Used to calculate bonuses versus specific races, alignments, etc. +/// @param isElemental If a damage bonus includes elemental damage. +/// @param isForceMax If the bonus should return the maximum possible. +/// @param savetype A SAVING_THROW_* constant. +/// @param saveSpecificType A SAVING_THROW_TYPE_* constant. +/// @param skill A skill id. +/// @param abilityScore An ABILITY_* constant. +/// @param isOffhand Whether the attack is an offhand attack. +/// @return The bonus value. +int NWNX_Creature_GetTotalEffectBonus(object creature, int bonusType=NWNX_CREATURE_BONUS_TYPE_ATTACK, object target=OBJECT_INVALID, int isElemental=0, int isForceMax=0, int savetype=-1, int saveSpecificType=-1, int skill=-1, int abilityScore=-1, int isOffhand=FALSE); + +/// @brief Set the original first or last name of creature +/// @param creature The creature object. +/// @param name The name to give the creature. +/// @param isLastName TRUE to change their last name, FALSE for first. +/// @note For PCs this will persist to the .bic file if saved. Requires a relog to update. +void NWNX_Creature_SetOriginalName(object creature, string name, int isLastName); + +/// @brief Get the original first or last name of creature +/// @param creature The creature object. +/// @param isLastName TRUE to get last name, FALSE for first name. +/// @return The original first or last name of the creature. +string NWNX_Creature_GetOriginalName(object creature, int isLastName); + +/// @brief Set creature's spell resistance +/// @param creature The creature object. +/// @param sr The spell resistance. +/// @warning This setting will be overwritten by effects and once those effects fade the old setting (typically 0) will be set. +void NWNX_Creature_SetSpellResistance(object creature, int sr); + +/// @brief Set creature's animal companion creature type +/// @param creature The master creature object. +/// @param type The type from ANIMAL_COMPANION_CREATURE_TYPE_*. +void NWNX_Creature_SetAnimalCompanionCreatureType(object creature, int type); + +/// @brief Set creature's familiar creature type +/// @param creature The master creature object. +/// @param type The type from FAMILIAR_CREATURE_TYPE_*. +void NWNX_Creature_SetFamiliarCreatureType(object creature, int type); + +/// @brief Set creature's animal companion's name +/// @param creature The master creature object. +/// @param name The name to give their animal companion. +void NWNX_Creature_SetAnimalCompanionName(object creature, string name); + +/// @brief Set creature's familiar's name +/// @param creature The master creature object. +/// @param name The name to give their familiar. +void NWNX_Creature_SetFamiliarName(object creature, string name); + +/// @brief Get whether the creature can be disarmed. +/// @param creature The creature object. +/// @return TRUE if the creature can be disarmed. +int NWNX_Creature_GetDisarmable(object creature); + +/// @brief Set whether a creature can be disarmed. +/// @param creature The creature object. +/// @param disarmable Set to TRUE if the creature can be disarmed. +void NWNX_Creature_SetDisarmable(object creature, int disarmable); + +/// @brief Gets one of creature's domains. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param index The first or second domain. +/// @deprecated Use GetDomain(). This will be removed in future NWNX releases. +int NWNX_Creature_GetDomain(object creature, int class, int index); + +/// @brief Sets one of creature's domains. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param index The first or second domain. +/// @param domain The domain constant to set. +void NWNX_Creature_SetDomain(object creature, int class, int index, int domain); + +/// @brief Gets the creature's specialist school. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @deprecated Use GetSpecialization(). This will be removed in future NWNX releases. +int NWNX_Creature_GetSpecialization(object creature, int class); + +/// @brief Sets creature's specialist school. +/// @param creature The creature object. +/// @param class The class id from classes.2da. (Not class index 0-2) +/// @param school The school constant. +void NWNX_Creature_SetSpecialization(object creature, int class, int school); + +/// @brief Sets oCreatures faction to be the faction with id nFactionId. +/// @param oCreature The creature. +/// @param nFactionId The faction id we want the creature to join. +void NWNX_Creature_SetFaction(object oCreature, int nFactionId); + +/// @brief Gets the faction id from oCreature +/// @param oCreature the creature we wish to query against +/// @return faction id as an integer, -1 when used against invalid creature or invalid object. +int NWNX_Creature_GetFaction(object oCreature); + +/// @brief Get whether a creature is flat-footed. +/// @param oCreature The creature object. +/// @return TRUE if the creature is flat-footed. +int NWNX_Creature_GetFlatFooted(object oCreature); + +/// @brief Serialize oCreature's quickbar to a base64 string +/// @param oCreature The creature. +/// @return A base64 string representation of oCreature's quickbar. +string NWNX_Creature_SerializeQuickbar(object oCreature); + +/// @brief Deserialize sSerializedQuickbar for oCreature +/// @param oCreature The creature. +/// @param sSerializedQuickbar A base64 string of a quickbar +/// @return TRUE on success +int NWNX_Creature_DeserializeQuickbar(object oCreature, string sSerializedQuickbar); + +/// @brief Sets a caster level modifier for oCreature +/// @param oCreature the target creature +/// @param nClass the class that this modifier will apply to +/// @param nModifier the modifier to apply +/// @param bPersist whether the modifier should be persisted to the .bic file if applicable +void NWNX_Creature_SetCasterLevelModifier(object oCreature, int nClass, int nModifier, int bPersist = FALSE); + +/// @brief Gets the current caster level modifier for oCreature +/// @param oCreature the target creature +/// @param nClass the creature caster class +/// @return the current caster level modifier for the creature +int NWNX_Creature_GetCasterLevelModifier(object oCreature, int nClass); + +/// @brief Sets a caster level override for oCreature +/// @param oCreature the target creature +/// @param nClass the class that this modifier will apply to +/// @param nCasterLevel the caster level override to apply +/// @param bPersist whether the override should be persisted to the .bic file if applicable +void NWNX_Creature_SetCasterLevelOverride(object oCreature, int nClass, int nCasterLevel, int bPersist = FALSE); + +/// @brief Gets the current caster level override for oCreature +/// @param oCreature the target creature +/// @param nClass the creature caster class +/// @return the current caster level override for the creature or -1 if not set +int NWNX_Creature_GetCasterLevelOverride(object oCreature, int nClass); + +/// @brief Move a creature to limbo. +/// @param oCreature The creature object. +void NWNX_Creature_JumpToLimbo(object oCreature); + +/// @brief Sets the critical hit multiplier modifier for the Creature +/// @param oCreature The target creature +/// @param nModifier The modifier to apply +/// @param nHand 0 for all attacks, 1 for Mainhand, 2 for Offhand +/// @param bPersist Whether the modifier should persist to .bic file if applicable +/// @param nBaseItem Applies the.modifier only when the attack used this baseitem. BASE_ITEM_GLOVES for Unarmed, '-1' for all +/// @note Persistence is activated each server reset by the first use of either 'SetCriticalMultiplier*' functions. Recommended to trigger on a dummy target OnModuleLoad to enable persistence. +void NWNX_Creature_SetCriticalMultiplierModifier(object oCreature, int nModifier, int nHand = 0, int bPersist = FALSE, int nBaseItem = -1); + +/// @brief Gets the critical hit multiplier modifier for the Creature +/// @param oCreature The target creature +/// @param nHand 0 for all attacks, 1 for Mainhand, 2 for Offhand +/// @param nBaseItem The baseitem modifer to retrieve. BASE_ITEM_GLOVES for Unarmed, '-1' for all +/// @return the current critical hit multiplier modifier for the creature +int NWNX_Creature_GetCriticalMultiplierModifier(object oCreature, int nHand = 0, int nBaseItem = -1); + +/// @brief Sets the critical hit multiplier override for the Creature. +/// @param oCreature The target creature +/// @param nOverride The override value to apply. -1 to clear override. +/// @param nHand 0 for all attacks, 1 for Mainhand, 2 for Offhand +/// @param bPersist Whether the modifier should persist to .bic file if applicable +/// @param nBaseItem Applies the.Override only when the attack used this baseitem. BASE_ITEM_GLOVES for Unarmed, '-1' for all +/// @note Persistence is activated each server reset by the first use of either 'SetCriticalMultiplier*' functions. Recommended to trigger on a dummy target OnModuleLoad to enable persistence. +void NWNX_Creature_SetCriticalMultiplierOverride(object oCreature, int nOverride, int nHand = 0, int bPersist = FALSE, int nBaseItem = -1); + +/// @brief Gets the critical hit multiplier override for the Creature +/// @param oCreature The target creature +/// @param nHand 0 for all attacks, 1 for Mainhand, 2 for Offhand +/// @param nBaseItem The baseitem Override to retrieve. BASE_ITEM_GLOVES for Unarmed, '-1' for all +/// @return the current critical hit multiplier override for the creature. No override == -1 +int NWNX_Creature_GetCriticalMultiplierOverride(object oCreature, int nHand = 0, int nBaseItem = -1); + +/// @brief Sets the critical hit range modifier for the creature. +/// @param oCreature The target creature +/// @param nModifier The modifier to apply. Positive modifiers reduce critical chance. (I.e. From 18-20, a +1 results in crit range of 19-20) +/// @param nHand 0 for all attacks, 1 for Mainhand, 2 for Offhand +/// @param bPersist Whether the modifier should persist to .bic file if applicable +/// @param nBaseItem Applies the.modifier only when the attack used this baseitem. BASE_ITEM_GLOVES for Unarmed, '-1' for all +/// @note Persistence is activated each server reset by the first use of either 'SetCriticalRange*' functions. Recommended to trigger on a dummy target OnModuleLoad to enable persistence. +void NWNX_Creature_SetCriticalRangeModifier(object oCreature, int nModifier, int nHand = 0, int bPersist = FALSE, int nBaseItem = -1); + +/// @brief Gets the critical hit range modifier for the creature. +/// @param oCreature The target creature +/// @param nHand 0 for all attacks, 1 for Mainhand, 2 for Offhand +/// @param nBaseItem The baseitem modifer to retrieve. BASE_ITEM_GLOVES for Unarmed, '-1' for all +/// @return the current critical hit range modifier for the creature +int NWNX_Creature_GetCriticalRangeModifier(object oCreature, int nHand = 0, int nBaseItem = -1); + +/// @brief Sets the critical hit range Override for the creature. +/// @param oCreature The target creature +/// @param nOverride The new minimum roll to crit. i.e nOverride of 15 results in crit range of 15-20. -1 to clear override. +/// @param nHand 0 for all attacks, 1 for Mainhand, 2 for Offhand +/// @param bPersist Whether the modifier should persist to .bic file if applicable +/// @param nBaseItem Applies the.Override only when the attack used this baseitem. BASE_ITEM_GLOVES for Unarmed, '-1' for all +/// @note Persistence is activated each server reset by the first use of either 'SetCriticalRange*' functions. Recommended to trigger on a dummy target OnModuleLoad to enable persistence. +void NWNX_Creature_SetCriticalRangeOverride(object oCreature, int nOverride, int nHand = 0, int bPersist = FALSE, int nBaseItem = -1); + +/// @brief Sets the critical hit range Override for the creature. +/// @param oCreature The target creature +/// @param nHand 0 for all attacks, 1 for Mainhand, 2 for Offhand +/// @param nBaseItem The baseitem Override to retrieve. BASE_ITEM_GLOVES for Unarmed, '-1' for all +/// @return the current critical hit range override for the creature. No override == -1 +int NWNX_Creature_GetCriticalRangeOverride(object oCreature, int nHand = 0, int nBaseItem = -1); + +/// @brief Add oAssociate as nAssociateType to oCreature +/// @warning Only basic checks are done so care must be taken when using this function +/// @param oCreature The creature to add oAssociate to +/// @param oAssociate The associate, must be a NPC +/// @param nAssociateType The associate type, one of ASSOCIATE_TYPE_*, except _NONE +void NWNX_Creature_AddAssociate(object oCreature, object oAssociate, int nAssociateType); + +/// @brief Set whether an effect icon is flashing or not. +/// @param oCreature The target creature. +/// @param nIconId The icon id, see effecticons.2da. +/// @param bFlashing TRUE for flashing, FALSE for not flashing. +void NWNX_Creature_SetEffectIconFlashing(object oCreature, int nIconId, int bFlashing); + +/// @brief Override the damage level of oCreature. +/// @note Damage levels are the damage state under a creature's name, for example: 'Near Death' +/// @param oCreature The target creature. +/// @param nDamageLevel A damage level, see damagelevels.2da. Allowed values: 0-255 or -1 to remove the override. +void NWNX_Creature_OverrideDamageLevel(object oCreature, int nDamageLevel); + +/// @brief Set the encounter source of oCreature. +/// @param oCreature The target creature. +/// @param oEncounter The source encounter +void NWNX_Creature_SetEncounter(object oCreature, object oEncounter); + +/// @brief Get the encounter source of oCreature. +/// @param oCreature The target creature. +/// @return The encounter, OBJECT_INVALID if not part of an encounter or on error +object NWNX_Creature_GetEncounter(object oCreature); + +/// @brief Get if oCreature is currently bartering. +/// @param oCreature The target creature. +/// @return TRUE if oCreature is bartering, FALSE if not or on error. +int NWNX_Creature_GetIsBartering(object oCreature); + +/// @brief Sets caster level for the last item used. Use in a spellhook or spell event before to set caster level for any spells cast from the item. +/// @param oCreature the creature who used the item. +/// @param nCasterLvl the desired caster level. +void NWNX_Creature_SetLastItemCasterLevel(object oCreature, int nCasterLvl); + +/// @brief Gets the caster level of the last item used. +/// @param oCreature the creature who used the item. +/// @return returns the creatures last used item's level. +int NWNX_Creature_GetLastItemCasterLevel(object oCreature); + +/// @brief Gets the Armor classed of attacked against versus +/// @param oAttacked The one being attacked +/// @param oVersus The one doing the attacking +/// @param nTouch TRUE for touch attacks +/// @return -255 on Error, Flat footed AC if oVersus is invalid or the Attacked AC versus oVersus. +int NWNX_Creature_GetArmorClassVersus(object oAttacked, object oVersus, int nTouch=FALSE); + +/// @brief Gets the current walk animation of oCreature. +/// @param oCreature The target creature. +/// @return -1 on Error, otherwise the walk animation number +int NWNX_Creature_GetWalkAnimation(object oCreature); + +/// @brief Sets the current walk animation of oCreature. +/// @param oCreature The target creature. +/// @param nAnimation The walk animation number. +void NWNX_Creature_SetWalkAnimation(object oCreature, int nAnimation); + +/// @brief Changes the attack modifier depending on the dice roll. Used to skip autofail on 1 and autosucceed on 20 as well. +/// @param oCreature The attacking creature, use OBJECT_INVALID for all. +/// @param nRoll The dice roll to modify. +/// @param nModifier The modifier to the attack, use 0 to turn off autofail for 1/autosucceed for 20 with no attack modifier value. +void NWNX_Creature_SetAttackRollOverride(object oCreature, int nRoll, int nModifier); + +/// @brief Works like the tweak but can be turned on and off for all creatures or single ones. +/// @param oCreature The parrying creature, use OBJECT_INVALID for all. +/// @param bParry TRUE to parry all attacks. +/// @note Use this command on_module_load instead of the NWNX_TWEAKS_PARRY_ALL_ATTACKS tweak if using NWNX_Creature_SetAttackRollOverride() +void NWNX_Creature_SetParryAllAttacks(object oCreature, int bParry); + +/// @brief Gets the NoPermanentDeath flag of oCreature. +/// @param oCreature The target creature. +/// @return TRUE/FALSE or -1 on error. +int NWNX_Creature_GetNoPermanentDeath(object oCreature); + +/// @brief Sets the NoPermanentDeath flag of oCreature. +/// @param oCreature The target creature. +/// @param bNoPermanentDeath TRUE/FALSE. +void NWNX_Creature_SetNoPermanentDeath(object oCreature, int bNoPermanentDeath); + +/// @brief Compute a safe location for oCreature. +/// @param oCreature The target creature. +/// @param vPosition The starting position. +/// @param fRadius The search radius around vPosition. +/// @param bWalkStraightLineRequired Whether the creature must be able to walk in a straight line to the position. +/// @return A safe location as vector, will return vPosition if one wasn't found. Returns {0.0, 0.0, 0.0} on error. +vector NWNX_Creature_ComputeSafeLocation(object oCreature, vector vPosition, float fRadius = 20.0f, int bWalkStraightLineRequired = TRUE); + +/// @brief Update oCreature's perception of oTargetCreature. +/// @param oCreature The creature. +/// @param oTargetCreature The target creature. +void NWNX_Creature_DoPerceptionUpdateOnCreature(object oCreature, object oTargetCreature); + +/// @} + +void NWNX_Creature_AddFeat(object creature, int feat) +{ + string sFunc = "AddFeat"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, feat); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_AddFeatByLevel(object creature, int feat, int level) +{ + string sFunc = "AddFeatByLevel"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, feat); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_RemoveFeat(object creature, int feat) +{ + string sFunc = "RemoveFeat"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, feat); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetKnowsFeat(object creature, int feat) +{ + string sFunc = "GetKnowsFeat"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, feat); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetFeatCountByLevel(object creature, int level) +{ + string sFunc = "GetFeatCountByLevel"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetFeatByLevel(object creature, int level, int index) +{ + string sFunc = "GetFeatByLevel"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, index); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetFeatCount(object creature) +{ + string sFunc = "GetFeatCount"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetFeatGrantLevel(object creature, int feat) +{ + string sFunc = "GetFeatGrantLevel"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, feat); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetFeatByIndex(object creature, int index) +{ + string sFunc = "GetFeatByIndex"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, index); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetMeetsFeatRequirements(object creature, int feat) +{ + string sFunc = "GetMeetsFeatRequirements"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, feat); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +struct NWNX_Creature_SpecialAbility NWNX_Creature_GetSpecialAbility(object creature, int index) +{ + string sFunc = "GetSpecialAbility"; + + struct NWNX_Creature_SpecialAbility ability; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, index); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + + ability.level = NWNX_GetReturnValueInt(NWNX_Creature, sFunc); + ability.ready = NWNX_GetReturnValueInt(NWNX_Creature, sFunc); + ability.id = NWNX_GetReturnValueInt(NWNX_Creature, sFunc); + + return ability; +} + +int NWNX_Creature_GetSpecialAbilityCount(object creature) +{ + string sFunc = "GetSpecialAbilityCount"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + NWNX_CallFunction(NWNX_Creature, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_AddSpecialAbility(object creature, struct NWNX_Creature_SpecialAbility ability) +{ + string sFunc = "AddSpecialAbility"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ability.id); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ability.ready); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ability.level); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_RemoveSpecialAbility(object creature, int index) +{ + string sFunc = "RemoveSpecialAbility"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, index); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetSpecialAbility(object creature, int index, struct NWNX_Creature_SpecialAbility ability) +{ + string sFunc = "SetSpecialAbility"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ability.id); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ability.ready); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ability.level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, index); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetClassByLevel(object creature, int level) +{ + string sFunc = "GetClassByLevel"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetBaseAC(object creature, int ac) +{ + string sFunc = "SetBaseAC"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ac); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetBaseAC(object creature) +{ + string sFunc = "GetBaseAC"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetRawAbilityScore(object creature, int ability, int value) +{ + string sFunc = "SetRawAbilityScore"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, value); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ability); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetRawAbilityScore(object creature, int ability) +{ + string sFunc = "GetRawAbilityScore"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ability); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_ModifyRawAbilityScore(object creature, int ability, int modifier) +{ + string sFunc = "ModifyRawAbilityScore"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, modifier); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ability); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetPrePolymorphAbilityScore(object creature, int ability) +{ + string sFunc = "GetPrePolymorphAbilityScore"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, ability); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +struct NWNX_Creature_MemorisedSpell NWNX_Creature_GetMemorisedSpell(object creature, int class, int level, int index) +{ + string sFunc = "GetMemorisedSpell"; + struct NWNX_Creature_MemorisedSpell spell; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, index); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + + spell.domain = NWNX_GetReturnValueInt(NWNX_Creature, sFunc); + spell.meta = NWNX_GetReturnValueInt(NWNX_Creature, sFunc); + spell.ready = NWNX_GetReturnValueInt(NWNX_Creature, sFunc); + spell.id = NWNX_GetReturnValueInt(NWNX_Creature, sFunc); + return spell; +} + +int NWNX_Creature_GetMemorisedSpellCountByLevel(object creature, int class, int level) +{ + string sFunc = "GetMemorisedSpellCountByLevel"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetMemorisedSpell(object creature, int class, int level, int index, struct NWNX_Creature_MemorisedSpell spell) +{ + string sFunc = "SetMemorisedSpell"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, spell.id); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, spell.ready); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, spell.meta); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, spell.domain); + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, index); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetRemainingSpellSlots(object creature, int class, int level) +{ + string sFunc = "GetRemainingSpellSlots"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetRemainingSpellSlots(object creature, int class, int level, int slots) +{ + string sFunc = "SetRemainingSpellSlots"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, slots); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetKnownSpell(object creature, int class, int level, int index) +{ + string sFunc = "GetKnownSpell"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, index); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetKnownSpellCount(object creature, int class, int level) +{ + string sFunc = "GetKnownSpellCount"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_RemoveKnownSpell(object creature, int class, int level, int spellId) +{ + string sFunc = "RemoveKnownSpell"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, spellId); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_AddKnownSpell(object creature, int class, int level, int spellId) +{ + string sFunc = "AddKnownSpell"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, spellId); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_ClearMemorisedKnownSpells(object creature, int class, int spellId) +{ + string sFunc = "ClearMemorisedKnownSpells"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, spellId); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_ClearMemorisedSpell(object creature, int class, int level, int index) +{ + string sFunc = "ClearMemorisedSpell"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, index); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetMaxSpellSlots(object creature, int class, int level) +{ + string sFunc = "GetMaxSpellSlots"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + + +int NWNX_Creature_GetMaxHitPointsByLevel(object creature, int level) +{ + string sFunc = "GetMaxHitPointsByLevel"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetMaxHitPointsByLevel(object creature, int level, int value) +{ + string sFunc = "SetMaxHitPointsByLevel"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, value); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetMovementRate(object creature, int rate) +{ + string sFunc = "SetMovementRate"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, rate); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +float NWNX_Creature_GetMovementRateFactor(object creature) +{ + string sFunc = "GetMovementRateFactor"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueFloat(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetMovementRateFactor(object creature, float factor) +{ + string sFunc = "SetMovementRateFactor"; + + NWNX_PushArgumentFloat(NWNX_Creature, sFunc, factor); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetMovementRateFactorCap(object creature, float cap) +{ + string sFunc = "SetMovementRateFactorCap"; + + NWNX_PushArgumentFloat(NWNX_Creature, sFunc, cap); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetAlignmentGoodEvil(object creature, int value) +{ + string sFunc = "SetAlignmentGoodEvil"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, value); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetAlignmentLawChaos(object creature, int value) +{ + string sFunc = "SetAlignmentLawChaos"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, value); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetSoundset(object creature) +{ + string sFunc = "GetSoundset"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetSoundset(object creature, int soundset) +{ + string sFunc = "SetSoundset"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, soundset); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetSkillRank(object creature, int skill, int rank) +{ + string sFunc = "SetSkillRank"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, rank); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, skill); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetClassByPosition(object creature, int position, int classID) +{ + string sFunc = "SetClassByPosition"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, classID); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, position); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetLevelByPosition(object creature, int position, int level) +{ + string sFunc = "SetLevelByPosition"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, position); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetBaseAttackBonus(object creature, int bab) +{ + string sFunc = "SetBaseAttackBonus"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bab); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetAttacksPerRound(object creature, int bBaseAPR = FALSE) +{ + string sFunc = "GetAttacksPerRound"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bBaseAPR); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetGender(object creature, int gender) +{ + string sFunc = "SetGender"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, gender); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_RestoreFeats(object creature) +{ + string sFunc = "RestoreFeats"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_RestoreSpecialAbilities(object creature) +{ + string sFunc = "RestoreSpecialAbilities"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_RestoreSpells(object creature, int level = -1) +{ + string sFunc = "RestoreSpells"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, level); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_RestoreItems(object creature) +{ + string sFunc = "RestoreItems"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetSize(object creature, int size) +{ + string sFunc = "SetSize"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, size); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetSkillPointsRemaining(object creature) +{ + string sFunc = "GetSkillPointsRemaining"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + + +void NWNX_Creature_SetSkillPointsRemaining(object creature, int skillpoints) +{ + string sFunc = "SetSkillPointsRemaining"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, skillpoints); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetRacialType(object creature, int racialtype) +{ + string sFunc = "SetRacialType"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, racialtype); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetMovementType(object creature) +{ + string sFunc = "GetMovementType"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetWalkRateCap(object creature, float fWalkRate = 2000.0f) +{ + string sFunc = "SetWalkRateCap"; + NWNX_PushArgumentFloat(NWNX_Creature, sFunc, fWalkRate); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetGold(object creature, int gold) +{ + string sFunc = "SetGold"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, gold); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetCorpseDecayTime(object creature, int nDecayTime) +{ + string sFunc = "SetCorpseDecayTime"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nDecayTime); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + + +int NWNX_Creature_GetBaseSavingThrow(object creature, int which) +{ + string sFunc = "GetBaseSavingThrow"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, which); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetBaseSavingThrow(object creature, int which, int value) +{ + string sFunc = "SetBaseSavingThrow"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, value); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, which); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_LevelUp(object creature, int class, int count=1) +{ + string sFunc = "LevelUp"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, count); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_LevelDown(object creature, int count=1) +{ + string sFunc = "LevelDown"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, count); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetChallengeRating(object creature, float fCR) +{ + string sFunc = "SetChallengeRating"; + NWNX_PushArgumentFloat(NWNX_Creature, sFunc, fCR); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetAttackBonus(object creature, int isMelee = -1, int isTouchAttack = FALSE, int isOffhand = FALSE, int includeBaseAttackBonus = TRUE) +{ + string sFunc = "GetAttackBonus"; + + if (isMelee == -1) + { + object oWeapon = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, creature); + + if (GetIsObjectValid(oWeapon)) + { + isMelee = !GetWeaponRanged(oWeapon); + } + else + {// Default to melee for unarmed + isMelee = TRUE; + } + } + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, includeBaseAttackBonus); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, isOffhand); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, isTouchAttack); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, isMelee); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetHighestLevelOfFeat(object creature, int feat) +{ + string sFunc = "GetHighestLevelOfFeat"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, feat); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetFeatRemainingUses(object creature, int feat) +{ + string sFunc = "GetFeatRemainingUses"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, feat); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetFeatTotalUses(object creature, int feat) +{ + string sFunc = "GetFeatTotalUses"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, feat); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetFeatRemainingUses(object creature, int feat, int uses) +{ + string sFunc = "SetFeatRemainingUses"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, uses); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, feat); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetTotalEffectBonus(object creature, int bonusType=NWNX_CREATURE_BONUS_TYPE_ATTACK, object target=OBJECT_INVALID, int isElemental=0, int isForceMax=0, int savetype=-1, int saveSpecificType=-1, int skill=-1, int abilityScore=-1, int isOffhand=FALSE) +{ + string sFunc = "GetTotalEffectBonus"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, isOffhand); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, abilityScore); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, skill); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, saveSpecificType); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, savetype); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, isForceMax); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, isElemental); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, target); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bonusType); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetOriginalName(object creature, string name, int isLastName) +{ + string sFunc = "SetOriginalName"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, isLastName); + NWNX_PushArgumentString(NWNX_Creature, sFunc, name); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +string NWNX_Creature_GetOriginalName(object creature, int isLastName) +{ + string sFunc = "GetOriginalName"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, isLastName); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueString(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetSpellResistance(object creature, int sr) +{ + string sFunc = "SetSpellResistance"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, sr); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetAnimalCompanionCreatureType(object creature, int type) +{ + string sFunc = "SetAnimalCompanionCreatureType"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, type); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetFamiliarCreatureType(object creature, int type) +{ + string sFunc = "SetFamiliarCreatureType"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, type); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetAnimalCompanionName(object creature, string name) +{ + string sFunc = "SetAnimalCompanionName"; + + NWNX_PushArgumentString(NWNX_Creature, sFunc, name); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetFamiliarName(object creature, string name) +{ + string sFunc = "SetFamiliarName"; + + NWNX_PushArgumentString(NWNX_Creature, sFunc, name); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetDisarmable(object creature) +{ + string sFunc = "GetDisarmable"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetDisarmable(object creature, int disarmable) +{ + string sFunc = "SetDisarmable"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, disarmable); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetDomain(object creature, int class, int index) +{ + WriteTimestampedLogEntry("NWNX_Creature: GetDomain() is deprecated. Please use the basegame's GetDomain() instead"); + + return GetDomain(creature, index, class); +} + +void NWNX_Creature_SetDomain(object creature, int class, int index, int domain) +{ + string sFunc = "SetDomain"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, domain); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, index); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetSpecialization(object creature, int class) +{ + WriteTimestampedLogEntry("NWNX_Creature: GetSpecialization() is deprecated. Please use the basegame's GetSpecialization() instead"); + + return GetSpecialization(creature, class); +} + +void NWNX_Creature_SetSpecialization(object creature, int class, int school) +{ + string sFunc = "SetSpecialization"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, school); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, class); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, creature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetFaction(object oCreature, int nFactionId) +{ + string sFunc = "SetFaction"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nFactionId); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetFaction(object oCreature) +{ + string sFunc = "GetFaction"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetFlatFooted(object oCreature) +{ + string sFunc = "GetFlatFooted"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +string NWNX_Creature_SerializeQuickbar(object oCreature) +{ + string sFunc = "SerializeQuickbar"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); + + return NWNX_GetReturnValueString(NWNX_Creature, sFunc); +} + +int NWNX_Creature_DeserializeQuickbar(object oCreature, string sSerializedQuickbar) +{ + string sFunc = "DeserializeQuickbar"; + + NWNX_PushArgumentString(NWNX_Creature, sFunc, sSerializedQuickbar); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetCasterLevelModifier(object oCreature, int nClass, int nModifier, int bPersist = FALSE) +{ + string sFunc = "SetCasterLevelModifier"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bPersist); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nModifier); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nClass); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetCasterLevelModifier(object oCreature, int nClass) +{ + string sFunc = "GetCasterLevelModifier"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nClass); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetCasterLevelOverride(object oCreature, int nClass, int nCasterLevel, int bPersist = FALSE) +{ + string sFunc = "SetCasterLevelOverride"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bPersist); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nCasterLevel); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nClass); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetCasterLevelOverride(object oCreature, int nClass) +{ + string sFunc = "GetCasterLevelOverride"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nClass); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_JumpToLimbo(object oCreature) +{ + string sFunc = "JumpToLimbo"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetCriticalMultiplierModifier(object oCreature, int nModifier, int nHand = 0, int bPersist = FALSE, int nBaseItem = -1) +{ + string sFunc = "SetCriticalMultiplierModifier"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nBaseItem); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bPersist); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nHand); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nModifier); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetCriticalMultiplierModifier(object oCreature, int nHand = 0, int nBaseItem = -1) +{ + string sFunc = "GetCriticalMultiplierModifier"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nBaseItem); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nHand); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetCriticalMultiplierOverride(object oCreature, int nOverride, int nHand = 0, int bPersist = FALSE, int nBaseItem = -1) +{ + string sFunc = "SetCriticalMultiplierOverride"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nBaseItem); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bPersist); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nHand); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nOverride); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetCriticalMultiplierOverride(object oCreature, int nHand = 0, int nBaseItem = -1) +{ + string sFunc = "GetCriticalMultiplierOverride"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nBaseItem); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nHand); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetCriticalRangeModifier(object oCreature, int nModifier, int nHand = 0, int bPersist = FALSE, int nBaseItem = -1) +{ + string sFunc = "SetCriticalRangeModifier"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nBaseItem); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bPersist); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nHand); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nModifier); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetCriticalRangeModifier(object oCreature, int nHand = 0, int nBaseItem = -1) +{ + string sFunc = "GetCriticalRangeModifier"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nBaseItem); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nHand); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetCriticalRangeOverride(object oCreature, int nOverride, int nHand = 0, int bPersist = FALSE, int nBaseItem = -1) +{ + string sFunc = "SetCriticalRangeOverride"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nBaseItem); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bPersist); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nHand); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nOverride); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetCriticalRangeOverride(object oCreature, int nHand = 0, int nBaseItem = -1) +{ + string sFunc = "GetCriticalRangeOverride"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nBaseItem); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nHand); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_AddAssociate(object oCreature, object oAssociate, int nAssociateType) +{ + string sFunc = "AddAssociate"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nAssociateType); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oAssociate); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetEffectIconFlashing(object oCreature, int nIconId, int bFlashing) +{ + string sFunc = "SetEffectIconFlashing"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bFlashing); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nIconId); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_OverrideDamageLevel(object oCreature, int nDamageLevel) +{ + string sFunc = "OverrideDamageLevel"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nDamageLevel); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetEncounter(object oCreature, object oEncounter) +{ + string sFunc = "SetEncounter"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oEncounter); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +object NWNX_Creature_GetEncounter(object oCreature) +{ + string sFunc = "GetEncounter"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); + + return NWNX_GetReturnValueObject(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetIsBartering(object oCreature) +{ + string sFunc = "GetIsBartering"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetLastItemCasterLevel(object oCreature, int nCasterLvl) +{ + string sFunc = "SetLastItemCasterLevel"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nCasterLvl); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} + + +int NWNX_Creature_GetLastItemCasterLevel(object oCreature) +{ + string sFunc = "GetLastItemCasterLevel"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetArmorClassVersus(object oAttacked, object oVersus, int nTouch=FALSE) +{ + string sFunc = "GetArmorClassVersus"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nTouch); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oVersus); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oAttacked); + NWNX_CallFunction(NWNX_Creature, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetWalkAnimation(object oCreature) +{ + string sFunc = "GetWalkAnimation"; + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetWalkAnimation(object oCreature, int nAnimation) +{ + string sFunc = "SetWalkAnimation"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nAnimation); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetAttackRollOverride(object oCreature, int nRoll, int nModifier) +{ + string sFunc = "SetAttackRollOverride"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nModifier); + NWNX_PushArgumentInt(NWNX_Creature, sFunc, nRoll); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetParryAllAttacks(object oCreature, int bParry) +{ + string sFunc = "SetParryAllAttacks"; + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bParry); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +int NWNX_Creature_GetNoPermanentDeath(object oCreature) +{ + string sFunc = "GetNoPermanentDeath"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Creature, sFunc); +} + +void NWNX_Creature_SetNoPermanentDeath(object oCreature, int bNoPermanentDeath) +{ + string sFunc = "SetNoPermanentDeath"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bNoPermanentDeath); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} + +vector NWNX_Creature_ComputeSafeLocation(object oCreature, vector vPosition, float fRadius = 20.0f, int bWalkStraightLineRequired = TRUE) +{ + string sFunc = "ComputeSafeLocation"; + + NWNX_PushArgumentInt(NWNX_Creature, sFunc, bWalkStraightLineRequired); + NWNX_PushArgumentFloat(NWNX_Creature, sFunc, fRadius); + NWNX_PushArgumentFloat(NWNX_Creature, sFunc, vPosition.x); + NWNX_PushArgumentFloat(NWNX_Creature, sFunc, vPosition.y); + NWNX_PushArgumentFloat(NWNX_Creature, sFunc, vPosition.z); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); + + vector v; + v.z = NWNX_GetReturnValueFloat(NWNX_Creature, sFunc); + v.y = NWNX_GetReturnValueFloat(NWNX_Creature, sFunc); + v.x = NWNX_GetReturnValueFloat(NWNX_Creature, sFunc); + + return v; +} + +void NWNX_Creature_DoPerceptionUpdateOnCreature(object oCreature, object oTargetCreature) +{ + string sFunc = "DoPerceptionUpdateOnCreature"; + + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oTargetCreature); + NWNX_PushArgumentObject(NWNX_Creature, sFunc, oCreature); + NWNX_CallFunction(NWNX_Creature, sFunc); +} diff --git a/gamma_age_v2/nwnx_damage.nss b/gamma_age_v2/nwnx_damage.nss new file mode 100644 index 00000000..3e206ea2 --- /dev/null +++ b/gamma_age_v2/nwnx_damage.nss @@ -0,0 +1,253 @@ +/// @addtogroup damage Damage +/// @brief Run a script before damage and attack events allowing for modification. Includes function to arbitrarily apply damage. +/// @{ +/// @file nwnx_damage.nss +#include "nwnx" + +const string NWNX_Damage = "NWNX_Damage"; ///< @private + +/// @struct NWNX_Damage_DamageEventData +/// @brief Damage Event Data +struct NWNX_Damage_DamageEventData +{ + object oDamager; ///< The object that inflicted the damage. + int iBludgeoning; ///< Bludgeoning damage + int iPierce; ///< Piercing damage + int iSlash; ///< Slashing damage + int iMagical; ///< Magical damage + int iAcid; ///< Acid damage + int iCold; ///< Cold damage + int iDivine; ///< Divine damage + int iElectrical; ///< Electrical damage + int iFire; ///< Fire damage + int iNegative; ///< Negative damage + int iPositive; ///< Positive damage + int iSonic; ///< Sonic damage + int iBase; ///< Base damage +}; + +/// @struct NWNX_Damage_AttackEventData +/// @brief Attack Event Data +struct NWNX_Damage_AttackEventData +{ + object oTarget; ///< The target who took the damage + int iBludgeoning; ///< Bludgeoning damage + int iPierce; ///< Piercing damage + int iSlash; ///< Slashing damage + int iMagical; ///< Magical damage + int iAcid; ///< Acid damage + int iCold; ///< Cold damage + int iDivine; ///< Divine damage + int iElectrical; ///< Electrical damage + int iFire; ///< Fire damage + int iNegative; ///< Negative damage + int iPositive; ///< Positive damage + int iSonic; ///< Sonic damage + int iBase; ///< Base damage + int iAttackNumber; ///< 1-based index of the attack in current combat round + int iAttackResult; ///< 1=hit, 3=critical hit, 4=miss, 8=concealed + int iAttackType; ///< 1=main hand, 2=offhand, 3-5=creature, 6=haste + int iSneakAttack; ///< 0=neither, 1=sneak attack, 2=death attack, 3=both +}; + +/// @struct NWNX_Damage_DamageData +/// @brief Used for DealDamage +struct NWNX_Damage_DamageData +{ + int iBludgeoning; ///< Bludgeoning damage + int iPierce; ///< Piercing damage + int iSlash; ///< Slashing damage + int iMagical; ///< Magical damage + int iAcid; ///< Acid damage + int iCold; ///< Cold damage + int iDivine; ///< Divine damage + int iElectrical; ///< Electrical damage + int iFire; ///< Fire damage + int iNegative; ///< Negative damage + int iPositive; ///< Positive damage + int iSonic; ///< Sonic damage + int iPower; ///< For overcoming DR +}; + +/// @brief Sets the script to run with a damage event. +/// @param sScript The script that will handle the damage event. +/// @param oOwner An object if only executing for a specific object or OBJECT_INVALID for global. +void NWNX_Damage_SetDamageEventScript(string sScript, object oOwner=OBJECT_INVALID); + +/// @brief Get Damage Event Data +/// @return A NWNX_Damage_DamageEventData struct. +/// @note To use only in the Damage Event Script. +struct NWNX_Damage_DamageEventData NWNX_Damage_GetDamageEventData(); + +/// @brief Set Damage Event Data +/// @param data A NWNX_Damage_DamageEventData struct. +/// @note To use only in the Damage Event Script. +void NWNX_Damage_SetDamageEventData(struct NWNX_Damage_DamageEventData data); + +/// @brief Sets the script to run with an attack event. +/// @param sScript The script that will handle the attack event. +/// @param oOwner An object if only executing for a specific object or OBJECT_INVALID for global. +void NWNX_Damage_SetAttackEventScript(string sScript, object oOwner=OBJECT_INVALID); + +/// @brief Get Attack Event Data +/// @return A NWNX_Damage_AttackEventData struct. +/// @note To use only in the Attack Event Script. +struct NWNX_Damage_AttackEventData NWNX_Damage_GetAttackEventData(); + +/// @brief Set Attack Event Data +/// @param data A NWNX_Damage_AttackEventData struct. +/// @note To use only in the Attack Event Script. +void NWNX_Damage_SetAttackEventData(struct NWNX_Damage_AttackEventData data); + +/// @brief Deal damage to a target. +/// @remark Permits multiple damage types and checks enhancement bonus for overcoming DR. +/// @param data A NWNX_Damage_DamageData struct. +/// @param oTarget The target object on whom the damage is dealt. +/// @param oSource The source of the damage. +/// @param iRanged Whether the attack should be treated as ranged by the engine (for example when considering damage inflicted by Acid Sheath and other such effects) +void NWNX_Damage_DealDamage(struct NWNX_Damage_DamageData data, object oTarget, object oSource=OBJECT_SELF, int iRanged = FALSE); + +/// @} + +void NWNX_Damage_SetDamageEventScript(string sScript, object oOwner=OBJECT_INVALID) +{ + string sFunc = "SetEventScript"; + + NWNX_PushArgumentObject(NWNX_Damage, sFunc, oOwner); + NWNX_PushArgumentString(NWNX_Damage, sFunc, sScript); + NWNX_PushArgumentString(NWNX_Damage, sFunc, "DAMAGE"); + + NWNX_CallFunction(NWNX_Damage, sFunc); +} + +struct NWNX_Damage_DamageEventData NWNX_Damage_GetDamageEventData() +{ + string sFunc = "GetDamageEventData"; + struct NWNX_Damage_DamageEventData data; + + NWNX_CallFunction(NWNX_Damage, sFunc); + + data.oDamager = NWNX_GetReturnValueObject(NWNX_Damage, sFunc); + data.iBludgeoning = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iPierce = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iSlash = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iMagical = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iAcid = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iCold = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iDivine = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iElectrical = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iFire = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iNegative = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iPositive = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iSonic = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iBase = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + + return data; +} + +void NWNX_Damage_SetDamageEventData(struct NWNX_Damage_DamageEventData data) +{ + string sFunc = "SetDamageEventData"; + + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iBase); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iSonic); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iPositive); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iNegative); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iFire); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iElectrical); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iDivine); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iCold); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iAcid); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iMagical); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iSlash); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iPierce); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iBludgeoning); + + NWNX_CallFunction(NWNX_Damage, sFunc); +} + +void NWNX_Damage_SetAttackEventScript(string sScript, object oOwner=OBJECT_INVALID) +{ + string sFunc = "SetEventScript"; + + NWNX_PushArgumentObject(NWNX_Damage, sFunc, oOwner); + NWNX_PushArgumentString(NWNX_Damage, sFunc, sScript); + NWNX_PushArgumentString(NWNX_Damage, sFunc, "ATTACK"); + + NWNX_CallFunction(NWNX_Damage, sFunc); +} + +struct NWNX_Damage_AttackEventData NWNX_Damage_GetAttackEventData() +{ + string sFunc = "GetAttackEventData"; + struct NWNX_Damage_AttackEventData data; + + NWNX_CallFunction(NWNX_Damage, sFunc); + + data.oTarget = NWNX_GetReturnValueObject(NWNX_Damage, sFunc); + data.iBludgeoning = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iPierce = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iSlash = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iMagical = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iAcid = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iCold = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iDivine = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iElectrical = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iFire = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iNegative = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iPositive = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iSonic = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iBase = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iAttackNumber = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iAttackResult = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iAttackType = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + data.iSneakAttack = NWNX_GetReturnValueInt(NWNX_Damage, sFunc); + + return data; +} + +void NWNX_Damage_SetAttackEventData(struct NWNX_Damage_AttackEventData data) +{ + string sFunc = "SetAttackEventData"; + + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iAttackResult); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iBase); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iSonic); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iPositive); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iNegative); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iFire); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iElectrical); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iDivine); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iCold); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iAcid); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iMagical); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iSlash); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iPierce); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iBludgeoning); + + NWNX_CallFunction(NWNX_Damage, sFunc); +} + +void NWNX_Damage_DealDamage(struct NWNX_Damage_DamageData data, object oTarget, object oSource, int iRanged = FALSE) +{ + string sFunc = "DealDamage"; + + NWNX_PushArgumentInt(NWNX_Damage, sFunc, iRanged); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iPower); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iSonic); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iPositive); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iNegative); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iFire); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iElectrical); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iDivine); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iCold); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iAcid); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iMagical); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iSlash); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iPierce); + NWNX_PushArgumentInt(NWNX_Damage, sFunc, data.iBludgeoning); + NWNX_PushArgumentObject(NWNX_Damage, sFunc, oTarget); + NWNX_PushArgumentObject(NWNX_Damage, sFunc, oSource); + + NWNX_CallFunction(NWNX_Damage, sFunc); +} diff --git a/gamma_age_v2/nwnx_data.nss b/gamma_age_v2/nwnx_data.nss new file mode 100644 index 00000000..b900de5b --- /dev/null +++ b/gamma_age_v2/nwnx_data.nss @@ -0,0 +1,351 @@ +/// @addtogroup data Data +/// @brief Provides a number of data structures for NWN code to use (simulated arrays) +/// @{ +/// @file nwnx_data.nss + +#include "inc_array" + +// All these calls just pass through to the Array code in inc_array to provide +// an NWNX_Data compatible API for ease of transition. + +const int NWNX_DATA_INVALID_INDEX = INVALID_INDEX; +const int NWNX_DATA_TYPE_FLOAT = TYPE_FLOAT; +const int NWNX_DATA_TYPE_INTEGER = TYPE_INTEGER; +const int NWNX_DATA_TYPE_OBJECT = TYPE_OBJECT; +const int NWNX_DATA_TYPE_STRING = TYPE_STRING; + +/// @defgroup data_array_at Array At +/// @brief Returns the element at the index. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param index The index. +/// @return The element of associated type. +/// @{ +string NWNX_Data_Array_At_Str(object obj, string tag, int index); +float NWNX_Data_Array_At_Flt(object obj, string tag, int index); +int NWNX_Data_Array_At_Int(object obj, string tag, int index); +object NWNX_Data_Array_At_Obj(object obj, string tag, int index); +/// @} + + +/// Clears the entire array, such that size==0. +void NWNX_Data_Array_Clear(int type, object obj, string tag); + +/// @defgroup data_array_contains Array Contains +/// @brief Checks if array contains the element. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param element The element. +/// @return TRUE if the collection contains the element. +/// @{ +int NWNX_Data_Array_Contains_Flt(object obj, string tag, float element); +int NWNX_Data_Array_Contains_Int(object obj, string tag, int element); +int NWNX_Data_Array_Contains_Obj(object obj, string tag, object element); +int NWNX_Data_Array_Contains_Str(object obj, string tag, string element); +/// @} + +/// Copies the array of name otherTag over the array of name tag. +void NWNX_Data_Array_Copy(int type, object obj, string tag, string otherTag); + +/// Erases the element at index, and shuffles any elements from index size-1 to index + 1 left. +void NWNX_Data_Array_Erase(int type, object obj, string tag, int index); + +/// @defgroup data_array_find Array Find +/// @brief Get the index at which the element is located. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param element The element. +/// @return Returns the index at which the element is located, or ARRAY_INVALID_INDEX. +/// @{ +int NWNX_Data_Array_Find_Flt(object obj, string tag, float element); +int NWNX_Data_Array_Find_Int(object obj, string tag, int element); +int NWNX_Data_Array_Find_Obj(object obj, string tag, object element); +int NWNX_Data_Array_Find_Str(object obj, string tag, string element); +/// @} + +/// @defgroup data_array_insert Array Insert +/// @brief Inserts the element at the index, where size > index >= 0. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param index The index. +/// @param element The element. +/// @{ +void NWNX_Data_Array_Insert_Flt(object obj, string tag, int index, float element); +void NWNX_Data_Array_Insert_Int(object obj, string tag, int index, int element); +void NWNX_Data_Array_Insert_Obj(object obj, string tag, int index, object element); +void NWNX_Data_Array_Insert_Str(object obj, string tag, int index, string element); +/// @} + +/// @defgroup data_array_pushback Array Pushback +/// @brief Pushes an element to the back of the collection. +/// @remark Functionally identical to an insert at index size-1. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param element The element. +/// @{ +void NWNX_Data_Array_PushBack_Flt(object obj, string tag, float element); +void NWNX_Data_Array_PushBack_Int(object obj, string tag, int element); +void NWNX_Data_Array_PushBack_Obj(object obj, string tag, object element); +void NWNX_Data_Array_PushBack_Str(object obj, string tag, string element); +/// @} + +/// Resizes the array. If the array is shrinking, it chops off elements at the ned. +void NWNX_Data_Array_Resize(int type, object obj, string tag, int size); + +/// Reorders the array such each possible permutation of elements has equal probability of appearance. +void NWNX_Data_Array_Shuffle(int type, object obj, string tag); + +/// Returns the size of the array. +int NWNX_Data_Array_Size(int type, object obj, string tag); + +/// Sorts the collection based on descending order. +void NWNX_Data_Array_SortAscending(int type, object obj, string tag); + +/// Sorts the collection based on descending order. +void NWNX_Data_Array_SortDescending(int type, object obj, string tag); + +/// @defgroup data_array_set Array Set +/// @brief Sets the element at the index, where size > index >= 0. +/// @ingroup data +/// @param obj The object. +/// @param tag The tag. +/// @param index The index. +/// @param element The element. +/// @{ +void NWNX_Data_Array_Set_Flt(object obj, string tag, int index, float element); +void NWNX_Data_Array_Set_Int(object obj, string tag, int index, int element); +void NWNX_Data_Array_Set_Obj(object obj, string tag, int index, object element); +void NWNX_Data_Array_Set_Str(object obj, string tag, int index, string element); +/// @} + +/// @} + +//////////////////////////////////////////////////////////////////////////////// +// return the value contained in location "index" +string NWNX_Data_Array_At_Str(object obj, string tag, int index) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_At_Str(tag, index, obj); +} + +float NWNX_Data_Array_At_Flt(object obj, string tag, int index) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_At_Flt(tag, index, obj); +} + +int NWNX_Data_Array_At_Int(object obj, string tag, int index) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_At_Int(tag, index, obj); +} + +object NWNX_Data_Array_At_Obj(object obj, string tag, int index) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_At_Obj(tag, index, obj); +} + +void NWNX_Data_Array_Clear(int type, object obj, string tag) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Clear(tag, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Return true/value (1/0) if the array contains the value "element" +int NWNX_Data_Array_Contains_Str(object obj, string tag, string element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_Contains_Str(tag, element, obj); +} + +int NWNX_Data_Array_Contains_Flt(object obj, string tag, float element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_Contains_Flt(tag, element, obj); +} + +int NWNX_Data_Array_Contains_Int(object obj, string tag, int element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_Contains_Int(tag, element, obj); +} + +int NWNX_Data_Array_Contains_Obj(object obj, string tag, object element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_Contains_Obj(tag, element, obj); +} + + +//////////////////////////////////////////////////////////////////////////////// +void NWNX_Data_Array_Copy(int type, object obj, string tag, string otherTag) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Copy(tag, otherTag, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +void NWNX_Data_Array_Erase(int type, object obj, string tag, int index) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Erase(tag, index, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// return the index in the array containing "element" +// if not found, return NWNX_DATA_INVALID_INDEX +int NWNX_Data_Array_Find_Str(object obj, string tag, string element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_Find_Str(tag, element, obj); +} + +int NWNX_Data_Array_Find_Flt(object obj, string tag, float element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_Find_Flt(tag, element, obj); +} + +int NWNX_Data_Array_Find_Int(object obj, string tag, int element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_Find_Int(tag, element, obj); +} + +int NWNX_Data_Array_Find_Obj(object obj, string tag, object element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_Find_Obj(tag, element, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Insert a new element into position 'index'. If index is beyond the number of rows in the array, +// this will quietly fail. This could be changed if you wanted to support sparse +// arrays. +void NWNX_Data_Array_Insert_Str(object obj, string tag, int index, string element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Insert_Str(tag, index, element, obj); +} + +void NWNX_Data_Array_Insert_Flt(object obj, string tag, int index, float element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Insert_Flt(tag, index, element, obj); +} + +void NWNX_Data_Array_Insert_Int(object obj, string tag, int index, int element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Insert_Int(tag, index, element, obj); +} + +void NWNX_Data_Array_Insert_Obj(object obj, string tag, int index, object element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Insert_Obj(tag, index, element, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Insert a new element at the end of the array. +void NWNX_Data_Array_PushBack_Str(object obj, string tag, string element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_PushBack_Str(tag, element, obj); +} + +void NWNX_Data_Array_PushBack_Flt(object obj, string tag, float element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_PushBack_Flt(tag, element, obj); +} + +void NWNX_Data_Array_PushBack_Int(object obj, string tag, int element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_PushBack_Int(tag, element, obj); +} + +void NWNX_Data_Array_PushBack_Obj(object obj, string tag, object element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_PushBack_Obj(tag, element, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Cuts the array off at size 'size'. Elements beyond size are removed. +void NWNX_Data_Array_Resize(int type, object obj, string tag, int size) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Resize(tag, size, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +void NWNX_Data_Array_Shuffle(int type, object obj, string tag) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Shuffle(tag, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +int NWNX_Data_Array_Size(int type, object obj, string tag) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + return Array_Size(tag, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Sort the array by value according to 'direciton' (ASC or DESC) +// Note that this is a lexical sort, so sorting an array of ints or floats will have +// odd results +void NWNX_Data_Array_Sort(object obj, string tag, string direction) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Sort(tag, direction, TYPE_STRING, obj); +} + +void NWNX_Data_Array_SortAscending(int type, object obj, string tag) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_SortAscending(tag, TYPE_STRING, obj); +} + +void NWNX_Data_Array_SortDescending(int type, object obj, string tag) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_SortDescending(tag, TYPE_STRING, obj); +} + +//////////////////////////////////////////////////////////////////////////////// +// Set the value of array index 'index' to a 'element' +// This will quietly eat values if index > array size +void NWNX_Data_Array_Set_Str(object obj, string tag, int index, string element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Set_Str(tag, index, element, obj); +} + +void NWNX_Data_Array_Set_Flt(object obj, string tag, int index, float element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Set_Flt(tag, index, element, obj); +} + +void NWNX_Data_Array_Set_Int(object obj, string tag, int index, int element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Set_Int(tag, index, element, obj); +} + +void NWNX_Data_Array_Set_Obj(object obj, string tag, int index, object element) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Data is deprecated. You should migrate to Array (see inc_array)"); + Array_Set_Obj(tag, index, element, obj); +} diff --git a/gamma_age_v2/nwnx_dialog.nss b/gamma_age_v2/nwnx_dialog.nss new file mode 100644 index 00000000..744943b5 --- /dev/null +++ b/gamma_age_v2/nwnx_dialog.nss @@ -0,0 +1,139 @@ +/// @addtogroup dialog Dialog +/// @brief Functions exposing additional dialog properties +/// @{ +/// @file nwnx_dialog.nss + +#include "nwnx" + +const string NWNX_Dialog = "NWNX_Dialog"; ///< @private + +/// @name Dialog Node Types +/// @anchor dialog_node_types +/// @{ +const int NWNX_DIALOG_NODE_TYPE_INVALID = -1; +const int NWNX_DIALOG_NODE_TYPE_STARTING_NODE = 0; +const int NWNX_DIALOG_NODE_TYPE_ENTRY_NODE = 1; +const int NWNX_DIALOG_NODE_TYPE_REPLY_NODE = 2; +/// @} + +/// @name Dialog Script Types +/// @anchor dialog_script_types +/// @{ +const int NWNX_DIALOG_SCRIPT_TYPE_OTHER = 0; +const int NWNX_DIALOG_SCRIPT_TYPE_STARTING_CONDITIONAL = 1; +const int NWNX_DIALOG_SCRIPT_TYPE_ACTION_TAKEN = 2; +/// @} + +/// @name Dialog Languages +/// @anchor dialog_languages +/// @{ +const int NWNX_DIALOG_LANGUAGE_ENGLISH = 0; +const int NWNX_DIALOG_LANGUAGE_FRENCH = 1; +const int NWNX_DIALOG_LANGUAGE_GERMAN = 2; +const int NWNX_DIALOG_LANGUAGE_ITALIAN = 3; +const int NWNX_DIALOG_LANGUAGE_SPANISH = 4; +const int NWNX_DIALOG_LANGUAGE_POLISH = 5; +const int NWNX_DIALOG_LANGUAGE_KOREAN = 128; +const int NWNX_DIALOG_LANGUAGE_CHINESE_TRADITIONAL = 129; +const int NWNX_DIALOG_LANGUAGE_CHINESE_SIMPLIFIED = 130; +const int NWNX_DIALOG_LANGUAGE_JAPANESE = 131; +/// @} + +/// @brief Get the @ref dialog_node_types "Node Type" of the current text node +/// @return A @ref dialog_node_types "Node Type". If called out of dialog, returns NWNX_DIALOG_NODE_TYPE_INVALID +int NWNX_Dialog_GetCurrentNodeType(); + +/// @brief Get the @ref dialog_script_types "Script Type" of the current text node +/// @return A @ref dialog_script_types "Node Type". If called out of dialog, returns NWNX_DIALOG_SCRIPT_TYPE_OTHER +int NWNX_Dialog_GetCurrentScriptType(); + +/// @brief Get the absolute ID of the current node in the conversation +/// @note NWNX_DIALOG_NODE_TYPE_ENTRY_NODE and NWNX_DIALOG_NODE_TYPE_REPLY_NODE nodes +/// have different namespaces, so they can share the same ID +/// @return The absolute ID in the dialog. If called out of dialog, returns -1 +int NWNX_Dialog_GetCurrentNodeID(); + +/// @brief Get the index of the current node in the list of replies/entries. +/// @note The index is zero based, and counts items not displayed due to a StartingConditional. +/// @return The index of the current node. +int NWNX_Dialog_GetCurrentNodeIndex(); + +/// @brief Get the text of the current node +/// @param language The @ref dialog_languages "language" of the text. +/// @param gender The gender for the text. +string NWNX_Dialog_GetCurrentNodeText(int language=NWNX_DIALOG_LANGUAGE_ENGLISH, int gender=GENDER_MALE); + +/// @brief Set the text of the current node for given language/gender +/// @note This will only work in a starting conditional script (action take comes after the text is displayed) +/// @param text The text for the node. +/// @param language The @ref dialog_languages "language" of the text. +/// @param gender The gender for the text. +void NWNX_Dialog_SetCurrentNodeText(string text, int language=NWNX_DIALOG_LANGUAGE_ENGLISH, int gender=GENDER_MALE); + +/// @brief End a conversation oObject is involved in, it will fire the OnAbort script of the conversation +/// @warning Calling this from a conversation script will crash your server. +/// @param oObject The object in a conversation +void NWNX_Dialog_End(object oObject); + +/// @} + + +int NWNX_Dialog_GetCurrentNodeType() +{ + string sFunc = "GetCurrentNodeType"; + + NWNX_CallFunction(NWNX_Dialog, sFunc); + return NWNX_GetReturnValueInt(NWNX_Dialog, sFunc); +} + +int NWNX_Dialog_GetCurrentScriptType() +{ + string sFunc = "GetCurrentScriptType"; + + NWNX_CallFunction(NWNX_Dialog, sFunc); + return NWNX_GetReturnValueInt(NWNX_Dialog, sFunc); +} + +int NWNX_Dialog_GetCurrentNodeID() +{ + string sFunc = "GetCurrentNodeID"; + + NWNX_CallFunction(NWNX_Dialog, sFunc); + return NWNX_GetReturnValueInt(NWNX_Dialog, sFunc); +} + +int NWNX_Dialog_GetCurrentNodeIndex() +{ + string sFunc = "GetCurrentNodeIndex"; + + NWNX_CallFunction(NWNX_Dialog, sFunc); + return NWNX_GetReturnValueInt(NWNX_Dialog, sFunc); +} + +string NWNX_Dialog_GetCurrentNodeText(int language=NWNX_DIALOG_LANGUAGE_ENGLISH, int gender=GENDER_MALE) +{ + string sFunc = "GetCurrentNodeText"; + + NWNX_PushArgumentInt(NWNX_Dialog, sFunc, gender); + NWNX_PushArgumentInt(NWNX_Dialog, sFunc, language); + NWNX_CallFunction(NWNX_Dialog, sFunc); + return NWNX_GetReturnValueString(NWNX_Dialog, sFunc); +} + +void NWNX_Dialog_SetCurrentNodeText(string text, int language=NWNX_DIALOG_LANGUAGE_ENGLISH, int gender=GENDER_MALE) +{ + string sFunc = "SetCurrentNodeText"; + + NWNX_PushArgumentInt(NWNX_Dialog, sFunc, gender); + NWNX_PushArgumentInt(NWNX_Dialog, sFunc, language); + NWNX_PushArgumentString(NWNX_Dialog, sFunc, text); + NWNX_CallFunction(NWNX_Dialog, sFunc); +} + +void NWNX_Dialog_End(object oObject) +{ + string sFunc = "End"; + + NWNX_PushArgumentObject(NWNX_Dialog, sFunc, oObject); + NWNX_CallFunction(NWNX_Dialog, sFunc); +} diff --git a/gamma_age_v2/nwnx_effect.nss b/gamma_age_v2/nwnx_effect.nss new file mode 100644 index 00000000..fdc61035 --- /dev/null +++ b/gamma_age_v2/nwnx_effect.nss @@ -0,0 +1,259 @@ +/// @addtogroup effect Effect +/// @brief Utility functions to manipulate the builtin effect type. +/// @{ +/// @file nwnx_effect.nss +#include "nwnx" + +const string NWNX_Effect = "NWNX_Effect"; ///< @private + +/// An unpacked effect +struct NWNX_EffectUnpacked +{ + int nType; ///< @todo Describe + int nSubType; ///< @todo Describe + + float fDuration; ///< @todo Describe + int nExpiryCalendarDay; ///< @todo Describe + int nExpiryTimeOfDay; ///< @todo Describe + + object oCreator; ///< @todo Describe + int nSpellId; ///< @todo Describe + int bExpose; ///< @todo Describe + int bShowIcon; ///< @todo Describe + int nCasterLevel; ///< @todo Describe + + effect eLinkLeft; ///< @todo Describe + int bLinkLeftValid; ///< @todo Describe + effect eLinkRight; ///< @todo Describe + int bLinkRightValid; ///< @todo Describe + + int nNumIntegers; ///< @todo Describe + int nParam0; ///< @todo Describe + int nParam1; ///< @todo Describe + int nParam2; ///< @todo Describe + int nParam3; ///< @todo Describe + int nParam4; ///< @todo Describe + int nParam5; ///< @todo Describe + int nParam6; ///< @todo Describe + int nParam7; ///< @todo Describe + float fParam0; ///< @todo Describe + float fParam1; ///< @todo Describe + float fParam2; ///< @todo Describe + float fParam3; ///< @todo Describe + string sParam0; ///< @todo Describe + string sParam1; ///< @todo Describe + string sParam2; ///< @todo Describe + string sParam3; ///< @todo Describe + string sParam4; ///< @todo Describe + string sParam5; ///< @todo Describe + object oParam0; ///< @todo Describe + object oParam1; ///< @todo Describe + object oParam2; ///< @todo Describe + object oParam3; ///< @todo Describe + vector vParam0; ///< @todo Describe + vector vParam1; ///< @todo Describe + + string sTag; ///< @todo Describe +}; + +/// @brief Convert native effect type to unpacked structure. +/// @param e The effect to convert. +/// @return A constructed NWNX_EffectUnpacked. +struct NWNX_EffectUnpacked NWNX_Effect_UnpackEffect(effect e); + +/// @brief Convert unpacked effect structure to native type. +/// @param e The NWNX_EffectUnpacked structure to convert. +/// @return The effect. +effect NWNX_Effect_PackEffect(struct NWNX_EffectUnpacked e); + +/// @brief Set a script with optional data that runs when an effect expires +/// @param e The effect. +/// @param script The script to run when the effect expires. +/// @param data Any other data you wish to send back to the script. +/// @remark OBJECT_SELF in the script is the object the effect is applied to. +/// @note Only works for TEMPORARY and PERMANENT effects applied to an object. +effect NWNX_Effect_SetEffectExpiredScript(effect e, string script, string data = ""); + +/// @brief Get the data set with NWNX_Effect_SetEffectExpiredScript() +/// @note Should only be called from a script set with NWNX_Effect_SetEffectExpiredScript(). +/// @return The data attached to the effect. +string NWNX_Effect_GetEffectExpiredData(); + +/// @brief Get the effect creator. +/// @note Should only be called from a script set with NWNX_Effect_SetEffectExpiredScript(). +/// @return The object from which the effect originated. +object NWNX_Effect_GetEffectExpiredCreator(); + +/// @brief replace an already applied effect on an object +/// Only duration, subtype, tag and spell related fields can be overwritten. +/// @note eNew and eOld need to have the same type. +/// @return Number of internal effects updated. +int NWNX_Effect_ReplaceEffect(object obj, effect eOld, effect eNew); + +/// @} + +struct NWNX_EffectUnpacked NWNX_Effect_UnpackEffect(effect e) +{ + string sFunc = "UnpackEffect"; + + NWNX_PushArgumentEffect(NWNX_Effect, sFunc, e); + NWNX_CallFunction(NWNX_Effect, sFunc); + + struct NWNX_EffectUnpacked n; + n.sTag = NWNX_GetReturnValueString(NWNX_Effect, sFunc); + + float fZ = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + float fY = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + float fX = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + n.vParam1 = Vector(fX, fY, fZ); + fZ = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + fY = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + fX = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + n.vParam0 = Vector(fX, fY, fZ); + n.oParam3 = NWNX_GetReturnValueObject(NWNX_Effect, sFunc); + n.oParam2 = NWNX_GetReturnValueObject(NWNX_Effect, sFunc); + n.oParam1 = NWNX_GetReturnValueObject(NWNX_Effect, sFunc); + n.oParam0 = NWNX_GetReturnValueObject(NWNX_Effect, sFunc); + n.sParam5 = NWNX_GetReturnValueString(NWNX_Effect, sFunc); + n.sParam4 = NWNX_GetReturnValueString(NWNX_Effect, sFunc); + n.sParam3 = NWNX_GetReturnValueString(NWNX_Effect, sFunc); + n.sParam2 = NWNX_GetReturnValueString(NWNX_Effect, sFunc); + n.sParam1 = NWNX_GetReturnValueString(NWNX_Effect, sFunc); + n.sParam0 = NWNX_GetReturnValueString(NWNX_Effect, sFunc); + n.fParam3 = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + n.fParam2 = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + n.fParam1 = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + n.fParam0 = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + n.nParam7 = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nParam6 = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nParam5 = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nParam4 = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nParam3 = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nParam2 = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nParam1 = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nParam0 = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nNumIntegers = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + + n.bLinkRightValid = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.eLinkRight = NWNX_GetReturnValueEffect(NWNX_Effect, sFunc); + n.bLinkLeftValid = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.eLinkLeft = NWNX_GetReturnValueEffect(NWNX_Effect, sFunc); + + n.nCasterLevel = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.bShowIcon = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.bExpose = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nSpellId = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.oCreator = NWNX_GetReturnValueObject(NWNX_Effect, sFunc); + + n.nExpiryTimeOfDay = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nExpiryCalendarDay = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.fDuration = NWNX_GetReturnValueFloat(NWNX_Effect, sFunc); + + n.nSubType = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + n.nType = NWNX_GetReturnValueInt(NWNX_Effect, sFunc); + + return n; +} +effect NWNX_Effect_PackEffect(struct NWNX_EffectUnpacked e) +{ + string sFunc = "PackEffect"; + + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nType); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nSubType); + + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.fDuration); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nExpiryCalendarDay); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nExpiryTimeOfDay); + + NWNX_PushArgumentObject(NWNX_Effect, sFunc, e.oCreator); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nSpellId); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.bExpose); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.bShowIcon); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nCasterLevel); + + NWNX_PushArgumentEffect(NWNX_Effect, sFunc, e.eLinkLeft); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.bLinkLeftValid); + NWNX_PushArgumentEffect(NWNX_Effect, sFunc, e.eLinkRight); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.bLinkRightValid); + + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nNumIntegers); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nParam0); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nParam1); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nParam2); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nParam3); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nParam4); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nParam5); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nParam6); + NWNX_PushArgumentInt(NWNX_Effect, sFunc, e.nParam7); + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.fParam0); + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.fParam1); + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.fParam2); + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.fParam3); + NWNX_PushArgumentString(NWNX_Effect, sFunc, e.sParam0); + NWNX_PushArgumentString(NWNX_Effect, sFunc, e.sParam1); + NWNX_PushArgumentString(NWNX_Effect, sFunc, e.sParam2); + NWNX_PushArgumentString(NWNX_Effect, sFunc, e.sParam3); + NWNX_PushArgumentString(NWNX_Effect, sFunc, e.sParam4); + NWNX_PushArgumentString(NWNX_Effect, sFunc, e.sParam5); + NWNX_PushArgumentObject(NWNX_Effect, sFunc, e.oParam0); + NWNX_PushArgumentObject(NWNX_Effect, sFunc, e.oParam1); + NWNX_PushArgumentObject(NWNX_Effect, sFunc, e.oParam2); + NWNX_PushArgumentObject(NWNX_Effect, sFunc, e.oParam3); + + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.vParam0.x); + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.vParam0.y); + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.vParam0.z); + + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.vParam1.x); + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.vParam1.y); + NWNX_PushArgumentFloat(NWNX_Effect, sFunc, e.vParam1.z); + + NWNX_PushArgumentString(NWNX_Effect, sFunc, e.sTag); + + NWNX_CallFunction(NWNX_Effect, sFunc); + return NWNX_GetReturnValueEffect(NWNX_Effect, sFunc); +} + +effect NWNX_Effect_SetEffectExpiredScript(effect e, string script, string data = "") +{ + string sFunc = "SetEffectExpiredScript"; + + NWNX_PushArgumentString(NWNX_Effect, sFunc, data); + NWNX_PushArgumentString(NWNX_Effect, sFunc, script); + NWNX_PushArgumentEffect(NWNX_Effect, sFunc, e); + + NWNX_CallFunction(NWNX_Effect, sFunc); + + return NWNX_GetReturnValueEffect(NWNX_Effect, sFunc); +} + +string NWNX_Effect_GetEffectExpiredData() +{ + string sFunc = "GetEffectExpiredData"; + + NWNX_CallFunction(NWNX_Effect, sFunc); + + return NWNX_GetReturnValueString(NWNX_Effect, sFunc); +} + +object NWNX_Effect_GetEffectExpiredCreator() +{ + string sFunc = "GetEffectExpiredCreator"; + + NWNX_CallFunction(NWNX_Effect, sFunc); + + return NWNX_GetReturnValueObject(NWNX_Effect, sFunc); +} + +int NWNX_Effect_ReplaceEffect(object obj, effect eOld, effect eNew) +{ + string sFunc = "ReplaceEffect"; + + NWNX_PushArgumentEffect(NWNX_Effect, sFunc, eNew); + NWNX_PushArgumentEffect(NWNX_Effect, sFunc, eOld); + NWNX_PushArgumentObject(NWNX_Effect, sFunc, obj); + + NWNX_CallFunction(NWNX_Effect, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Effect, sFunc); +} diff --git a/gamma_age_v2/nwnx_elc.nss b/gamma_age_v2/nwnx_elc.nss new file mode 100644 index 00000000..05049633 --- /dev/null +++ b/gamma_age_v2/nwnx_elc.nss @@ -0,0 +1,244 @@ +/// @addtogroup elc ELC +/// @brief Replacement for ValidateCharacter: ELC & ILR +/// @{ +/// @file nwnx_elc.nss +#include "nwnx" + +const string NWNX_ELC = "NWNX_ELC"; ///< @private + + +/// @anchor elc_fail_type +/// @name ELC Failure Types +/// @{ +const int NWNX_ELC_VALIDATION_FAILURE_TYPE_NONE = 0; +const int NWNX_ELC_VALIDATION_FAILURE_TYPE_CHARACTER = 1; +const int NWNX_ELC_VALIDATION_FAILURE_TYPE_ITEM = 2; +const int NWNX_ELC_VALIDATION_FAILURE_TYPE_SKILL = 3; +const int NWNX_ELC_VALIDATION_FAILURE_TYPE_FEAT = 4; +const int NWNX_ELC_VALIDATION_FAILURE_TYPE_SPELL = 5; +const int NWNX_ELC_VALIDATION_FAILURE_TYPE_CUSTOM = 6; +/// @} + +/// @anchor elc_fail_subtype +/// @name ELC Failure Subtypes +/// @note By default these constants are commented out to avoid a +/// limitation on constants. Uncomment them as needed. +/// @{ +const int NWNX_ELC_SUBTYPE_NONE = 0; +/* +const int NWNX_ELC_SUBTYPE_SERVER_LEVEL_RESTRICTION = 1; +const int NWNX_ELC_SUBTYPE_LEVEL_HACK = 2; +const int NWNX_ELC_SUBTYPE_COLORED_NAME = 3; +const int NWNX_ELC_SUBTYPE_UNIDENTIFIED_EQUIPPED_ITEM = 4; +const int NWNX_ELC_SUBTYPE_MIN_EQUIP_LEVEL = 5; +const int NWNX_ELC_SUBTYPE_NON_PC_CHARACTER = 6; +const int NWNX_ELC_SUBTYPE_DM_CHARACTER = 7; +const int NWNX_ELC_SUBTYPE_NON_PLAYER_RACE = 8; +const int NWNX_ELC_SUBTYPE_NON_PLAYER_CLASS = 9; +const int NWNX_ELC_SUBTYPE_CLASS_LEVEL_RESTRICTION = 10; +const int NWNX_ELC_SUBTYPE_PRESTIGE_CLASS_REQUIREMENTS = 11; +const int NWNX_ELC_SUBTYPE_CLASS_ALIGNMENT_RESTRICTION = 12; +const int NWNX_ELC_SUBTYPE_STARTING_ABILITY_VALUE_MAX = 13; +const int NWNX_ELC_SUBTYPE_ABILITY_POINT_BUY_SYSTEM_CALCULATION = 14; +const int NWNX_ELC_SUBTYPE_CLASS_SPELLCASTER_INVALID_PRIMARY_STAT = 15; +const int NWNX_ELC_SUBTYPE_EPIC_LEVEL_FLAG = 16; +const int NWNX_ELC_SUBTYPE_TOO_MANY_HITPOINTS = 17; +const int NWNX_ELC_SUBTYPE_UNUSABLE_SKILL = 18; +const int NWNX_ELC_SUBTYPE_NOT_ENOUGH_SKILLPOINTS = 19; +const int NWNX_ELC_SUBTYPE_INVALID_NUM_RANKS_IN_CLASS_SKILL = 20; +const int NWNX_ELC_SUBTYPE_INVALID_NUM_RANKS_IN_NON_CLASS_SKILL = 21; +const int NWNX_ELC_SUBTYPE_INVALID_NUM_REMAINING_SKILL_POINTS = 22; +const int NWNX_ELC_SUBTYPE_INVALID_FEAT = 23; +const int NWNX_ELC_SUBTYPE_FEAT_REQUIRED_SPELL_LEVEL_NOT_MET = 24; +const int NWNX_ELC_SUBTYPE_FEAT_REQUIRED_BASE_ATTACK_BONUS_NOT_MET = 25; +const int NWNX_ELC_SUBTYPE_FEAT_REQUIRED_ABILITY_VALUE_NOT_MET = 26; +const int NWNX_ELC_SUBTYPE_FEAT_REQUIRED_SKILL_NOT_MET = 27; +const int NWNX_ELC_SUBTYPE_FEAT_REQUIRED_FEAT_NOT_MET = 28; +const int NWNX_ELC_SUBTYPE_TOO_MANY_FEATS_THIS_LEVEL = 29; +const int NWNX_ELC_SUBTYPE_FEAT_NOT_AVAILABLE_TO_CLASS = 30; +const int NWNX_ELC_SUBTYPE_FEAT_IS_NORMAL_FEAT_ONLY = 31; +const int NWNX_ELC_SUBTYPE_FEAT_IS_BONUS_FEAT_ONLY = 32; +const int NWNX_ELC_SUBTYPE_SPELL_INVALID_SPELL_GAIN_WIZARD = 33; +const int NWNX_ELC_SUBTYPE_SPELL_INVALID_SPELL_GAIN_BARD_SORCERER = 34; +const int NWNX_ELC_SUBTYPE_SPELL_INVALID_SPELL_GAIN_OTHER_CLASSES = 35; +const int NWNX_ELC_SUBTYPE_INVALID_SPELL = 36; +const int NWNX_ELC_SUBTYPE_SPELL_INVALID_SPELL_LEVEL = 37; +const int NWNX_ELC_SUBTYPE_SPELL_MINIMUM_ABILITY = 40; +const int NWNX_ELC_SUBTYPE_SPELL_RESTRICTED_SPELL_SCHOOL = 41; +const int NWNX_ELC_SUBTYPE_SPELL_ALREADY_KNOWN = 42; +const int NWNX_ELC_SUBTYPE_SPELL_WIZARD_EXCEEDS_NUMSPELLS_TO_ADD = 43; +const int NWNX_ELC_SUBTYPE_ILLEGAL_REMOVED_SPELL = 44; +const int NWNX_ELC_SUBTYPE_REMOVED_NOT_KNOWN_SPELL = 45; +const int NWNX_ELC_SUBTYPE_INVALID_NUM_SPELLS = 46; +const int NWNX_ELC_SUBTYPE_SPELL_LIST_COMPARISON = 47; +const int NWNX_ELC_SUBTYPE_SKILL_LIST_COMPARISON = 48; +const int NWNX_ELC_SUBTYPE_FEAT_LIST_COMPARISON = 49; +const int NWNX_ELC_SUBTYPE_MISC_SAVING_THROW = 50; +const int NWNX_ELC_SUBTYPE_NUM_FEAT_COMPARISON = 51; + */ +/// @} + +/// @brief Sets the script that runs whenever an ELC validation failure happens +/// @param sScript The script name. +void NWNX_ELC_SetELCScript(string sScript); + +/// @brief Enables a custom ELC Check that will call the ELC Script with the +/// NWNX_ELC_VALIDATION_FAILURE_TYPE_CUSTOM type. +/// @param bEnabled TRUE to use this check. +/// @note Only runs if you have an ELC script set, be sure to skip this check +/// if a player doesn't fail your custom check otherwise they won't be able to log in +void NWNX_ELC_EnableCustomELCCheck(int bEnabled); + +/// @brief Skip an ELC Validation Failure Event +/// @note Only to be called in the ELC Script +void NWNX_ELC_SkipValidationFailure(); + +/// @brief Get the validation failure type +/// @return A @ref elc_fail_type "Validation Failure Type" +/// @note Only to be called in the ELC Script +int NWNX_ELC_GetValidationFailureType(); + +/// @brief Get the validation failure subtype +/// @return A @ref elc_fail_subtype "Validation Failure Subtype" +/// @note Only to be called in the ELC Script +int NWNX_ELC_GetValidationFailureSubType(); + +/// @brief Get the failure message +/// @return The talk table strref the player receives. +/// @note Only to be called in the ELC Script +int NWNX_ELC_GetValidationFailureMessageStrRef(); + +/// @brief Set the failure message +/// @param nStrRef The talk table strref the player receives, must be > 0. +/// @note Only to be called in the ELC Script +void NWNX_ELC_SetValidationFailureMessageStrRef(int nStrRef); + +/// @brief Get the item that failed ILR validation +/// @return The object that caused the ILR validation failure. Returns OBJECT_INVALID on error. +/// @note Only to be called in the ELC Script during a +/// NWNX_ELC_VALIDATION_FAILURE_TYPE_ITEM validation failure. +object NWNX_ELC_GetValidationFailureItem(); + +/// @brief Get the character level at which the validation failure occurred +/// @return The character level or -1 on error. +/// @remark May not always return a level, depending on where the failure occurred. +/// @note Only to be called in the ELC Script +int NWNX_ELC_GetValidationFailureLevel(); + +/// @brief Get the ID of the skill that failed ELC validation +/// @return The skill ID or -1 on error. +/// @remark May not always return a skill id, depending on the validation failure subtype. +/// @note Only to be called in the ELC Script during a +/// NWNX_ELC_VALIDATION_FAILURE_TYPE_SKILL validation failure. +int NWNX_ELC_GetValidationFailureSkillID(); + +/// @brief Get the ID of the feat that failed ELC validation +/// @return The feat ID or -1 on error +/// @remark May not always return a feat id, depending on the validation failure subtype. +/// @note Only to be called in the ELC Script during a +/// NWNX_ELC_VALIDATION_FAILURE_TYPE_FEAT validation failure. +int NWNX_ELC_GetValidationFailureFeatID(); + +/// @brief Get the ID of the spell that failed ELC validation +/// @return The spell ID or -1 on error +/// @remark May not always return a spell id, depending on the validation failure subtype. +/// @note Only to be called in the ELC Script during a +/// NWNX_ELC_VALIDATION_FAILURE_TYPE_SPELL validation failure. +int NWNX_ELC_GetValidationFailureSpellID(); + +/// @} + +void NWNX_ELC_SetELCScript(string sScript) +{ + string sFunc = "SetELCScript"; + + NWNX_PushArgumentString(NWNX_ELC, sFunc, sScript); + NWNX_CallFunction(NWNX_ELC, sFunc); +} + +void NWNX_ELC_EnableCustomELCCheck(int bEnabled) +{ + string sFunc = "EnableCustomELCCheck"; + + NWNX_PushArgumentInt(NWNX_ELC, sFunc, bEnabled); + NWNX_CallFunction(NWNX_ELC, sFunc); +} + +void NWNX_ELC_SkipValidationFailure() +{ + string sFunc = "SkipValidationFailure"; + + NWNX_CallFunction(NWNX_ELC, sFunc); +} + +int NWNX_ELC_GetValidationFailureType() +{ + string sFunc = "GetValidationFailureType"; + + NWNX_CallFunction(NWNX_ELC, sFunc); + return NWNX_GetReturnValueInt(NWNX_ELC, sFunc); +} + +int NWNX_ELC_GetValidationFailureSubType() +{ + string sFunc = "GetValidationFailureSubType"; + + NWNX_CallFunction(NWNX_ELC, sFunc); + return NWNX_GetReturnValueInt(NWNX_ELC, sFunc); +} + +int NWNX_ELC_GetValidationFailureMessageStrRef() +{ + string sFunc = "GetValidationFailureMessageStrRef"; + + NWNX_CallFunction(NWNX_ELC, sFunc); + return NWNX_GetReturnValueInt(NWNX_ELC, sFunc); +} + +void NWNX_ELC_SetValidationFailureMessageStrRef(int nStrRef) +{ + string sFunc = "SetValidationFailureMessageStrRef"; + + NWNX_PushArgumentInt(NWNX_ELC, sFunc, nStrRef); + NWNX_CallFunction(NWNX_ELC, sFunc); +} + +object NWNX_ELC_GetValidationFailureItem() +{ + string sFunc = "GetValidationFailureItem"; + + NWNX_CallFunction(NWNX_ELC, sFunc); + return NWNX_GetReturnValueObject(NWNX_ELC, sFunc); +} + +int NWNX_ELC_GetValidationFailureLevel() +{ + string sFunc = "GetValidationFailureLevel"; + + NWNX_CallFunction(NWNX_ELC, sFunc); + return NWNX_GetReturnValueInt(NWNX_ELC, sFunc); +} + +int NWNX_ELC_GetValidationFailureSkillID() +{ + string sFunc = "GetValidationFailureSkillID"; + + NWNX_CallFunction(NWNX_ELC, sFunc); + return NWNX_GetReturnValueInt(NWNX_ELC, sFunc); +} + +int NWNX_ELC_GetValidationFailureFeatID() +{ + string sFunc = "GetValidationFailureFeatID"; + + NWNX_CallFunction(NWNX_ELC, sFunc); + return NWNX_GetReturnValueInt(NWNX_ELC, sFunc); +} + +int NWNX_ELC_GetValidationFailureSpellID() +{ + string sFunc = "GetValidationFailureSpellID"; + + NWNX_CallFunction(NWNX_ELC, sFunc); + return NWNX_GetReturnValueInt(NWNX_ELC, sFunc); +} diff --git a/gamma_age_v2/nwnx_encounter.nss b/gamma_age_v2/nwnx_encounter.nss new file mode 100644 index 00000000..8857184f --- /dev/null +++ b/gamma_age_v2/nwnx_encounter.nss @@ -0,0 +1,285 @@ +/// @addtogroup encounter Encounter +/// @brief Functions exposing additional encounter properties. +/// @{ +/// @file nwnx_encounter.nss +#include "nwnx" + +const string NWNX_Encounter = "NWNX_Encounter"; ///< @private + +/// @brief A creature list entry for an encounter. +struct NWNX_Encounter_CreatureListEntry +{ + string resref; ///< The resref. + float challengeRating; ///< The challenge rating. + int unique; ///< Creature will be unique to the encounter. + int alreadyUsed; //< Creature has already been used. +}; + + +/// @brief Get the number of creatures in the encounter list +/// @param encounter The encounter object. +/// @return The number of creatures in the encounter list. +int NWNX_Encounter_GetNumberOfCreaturesInEncounterList(object encounter); + +/// @brief Gets the encounter creature list entry at the specified index +/// @param encounter The encounter object. +/// @param index The index of the creature in the encounter list. +/// @return An NWNX_Encounter_CreatureListEntry. +struct NWNX_Encounter_CreatureListEntry NWNX_Encounter_GetEncounterCreatureByIndex(object encounter, int index); + +/// @brief Set the encounter creature list entry at the specified index +/// @param encounter The encounter object. +/// @param index The index of the creature in the encounter list. +/// @param creatureEntry The NWNX_Encounter_CreatureListEntry. +void NWNX_Encounter_SetEncounterCreatureByIndex(object encounter, int index, struct NWNX_Encounter_CreatureListEntry creatureEntry); + +/// @brief Get the faction id of encounter +/// @param encounter The encounter object. +/// @return The faction id. +int NWNX_Encounter_GetFactionId(object encounter); + +/// @brief Set the faction id of encounter. +/// @param encounter The encounter object. +/// @param factionId The faction id. +void NWNX_Encounter_SetFactionId(object encounter, int factionId); + +/// @brief Get if encounter is player triggered only. +/// @param encounter The encounter object. +/// @return TRUE if encounter is player triggered only. +int NWNX_Encounter_GetPlayerTriggeredOnly(object encounter); + +/// @brief Set if encounter is player triggered only. +/// @param encounter The encounter object. +/// @param playerTriggeredOnly TRUE/FALSE +void NWNX_Encounter_SetPlayerTriggeredOnly(object encounter, int playerTriggeredOnly); + +/// @brief Get the reset time of encounter. +/// @param encounter The encounter object. +/// @return The seconds the encounter is defined to reset. +int NWNX_Encounter_GetResetTime(object encounter); + +/// @brief Set the reset time of encounter. +/// @param encounter The encounter object. +/// @param resetTime The seconds the encounter will reset. +void NWNX_Encounter_SetResetTime(object encounter, int resetTime); + +/// @brief Get the number of spawn points of encounter. +/// @param encounter The encounter object. +/// @return The count of the spawn points for the encounter. +int NWNX_Encounter_GetNumberOfSpawnPoints(object encounter); + +/// @brief Gets the spawn point list entry at the specified index +/// @param encounter The encounter object. +/// @param index The index of the spawn point in the encounter list. +/// @return Location of spawn point. +location NWNX_Encounter_GetSpawnPointByIndex(object encounter, int index); + +/// @brief Get the minimum amount of creatures that encounter will spawn. +/// @param encounter The encounter object. +/// @return the minimal amount. +int NWNX_Encounter_GetMinNumSpawned(object encounter); + +/// @brief Get the maximum amount of creatures that encounter will spawn. +/// @param encounter The encounter object. +/// @return the maximal amount. +int NWNX_Encounter_GetMaxNumSpawned(object encounter); + +/// @brief Get the current number of creatures that are spawned and alive +/// @param encounter The encounter object. +/// @return amount of creatures +int NWNX_Encounter_GetCurrentNumSpawned(object encounter); + +/// @brief Get the geometry of an encounter +/// @param oEncounter: The encounter object. +/// @return A string of vertex positions. +string NWNX_Encounter_GetGeometry(object oEncounter); + +/// @brief Set the geometry of an encounter with a list of vertex positions +/// @param oTrigger The encounter object. +/// @param sGeometry Needs to be in the following format -> {x.x, y.y, z.z} or {x.x, y.y} +/// Example Geometry: "{1.0, 1.0, 0.0}{4.0, 1.0, 0.0}{4.0, 4.0, 0.0}{1.0, 4.0, 0.0}" +/// +/// @remark The Z position is optional and will be calculated dynamically based +/// on terrain height if it's not provided. +/// +/// @remark The minimum number of vertices is 3. +void NWNX_Encounter_SetGeometry(object oTrigger, string sGeometry); + +/// @} + +int NWNX_Encounter_GetNumberOfCreaturesInEncounterList(object encounter) +{ + string sFunc = "GetNumberOfCreaturesInEncounterList"; + + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Encounter, sFunc); +} + +struct NWNX_Encounter_CreatureListEntry NWNX_Encounter_GetEncounterCreatureByIndex(object encounter, int index) +{ + string sFunc = "GetEncounterCreatureByIndex"; + struct NWNX_Encounter_CreatureListEntry creatureEntry; + + NWNX_PushArgumentInt(NWNX_Encounter, sFunc, index); + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + + NWNX_CallFunction(NWNX_Encounter, sFunc); + + creatureEntry.alreadyUsed = NWNX_GetReturnValueInt(NWNX_Encounter, sFunc); + creatureEntry.unique = NWNX_GetReturnValueInt(NWNX_Encounter, sFunc); + creatureEntry.challengeRating = NWNX_GetReturnValueFloat(NWNX_Encounter, sFunc); + creatureEntry.resref = NWNX_GetReturnValueString(NWNX_Encounter, sFunc); + + return creatureEntry; +} + +void NWNX_Encounter_SetEncounterCreatureByIndex(object encounter, int index, struct NWNX_Encounter_CreatureListEntry creatureEntry) +{ + string sFunc = "SetEncounterCreatureByIndex"; + + NWNX_PushArgumentInt(NWNX_Encounter, sFunc, creatureEntry.alreadyUsed); + NWNX_PushArgumentInt(NWNX_Encounter, sFunc, creatureEntry.unique); + NWNX_PushArgumentFloat(NWNX_Encounter, sFunc, creatureEntry.challengeRating); + NWNX_PushArgumentString(NWNX_Encounter, sFunc, creatureEntry.resref); + NWNX_PushArgumentInt(NWNX_Encounter, sFunc, index); + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + + NWNX_CallFunction(NWNX_Encounter, sFunc); +} + +int NWNX_Encounter_GetFactionId(object encounter) +{ + string sFunc = "GetFactionId"; + + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Encounter, sFunc); +} + +void NWNX_Encounter_SetFactionId(object encounter, int factionId) +{ + string sFunc = "SetFactionId"; + + NWNX_PushArgumentInt(NWNX_Encounter, sFunc, factionId); + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + + NWNX_CallFunction(NWNX_Encounter, sFunc); +} + +int NWNX_Encounter_GetPlayerTriggeredOnly(object encounter) +{ + string sFunc = "GetPlayerTriggeredOnly"; + + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Encounter, sFunc); +} + +void NWNX_Encounter_SetPlayerTriggeredOnly(object encounter, int playerTriggeredOnly) +{ + string sFunc = "SetPlayerTriggeredOnly"; + + NWNX_PushArgumentInt(NWNX_Encounter, sFunc, playerTriggeredOnly); + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + + NWNX_CallFunction(NWNX_Encounter, sFunc); +} + +int NWNX_Encounter_GetResetTime(object encounter) +{ + string sFunc = "GetResetTime"; + + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Encounter, sFunc); +} + +void NWNX_Encounter_SetResetTime(object encounter, int resetTime) +{ + string sFunc = "SetResetTime"; + + NWNX_PushArgumentInt(NWNX_Encounter, sFunc, resetTime); + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + + NWNX_CallFunction(NWNX_Encounter, sFunc); +} + +int NWNX_Encounter_GetNumberOfSpawnPoints(object encounter) +{ + string sFunc = "GetNumberOfSpawnPoints"; + + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Encounter, sFunc); +} + +location NWNX_Encounter_GetSpawnPointByIndex(object encounter, int index) +{ + string sFunc = "GetSpawnPointByIndex"; + + NWNX_PushArgumentInt(NWNX_Encounter, sFunc, index); + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); + + float o = NWNX_GetReturnValueFloat(NWNX_Encounter, sFunc); + float z = NWNX_GetReturnValueFloat(NWNX_Encounter, sFunc); + float y = NWNX_GetReturnValueFloat(NWNX_Encounter, sFunc); + float x = NWNX_GetReturnValueFloat(NWNX_Encounter, sFunc); + + return Location(GetArea(encounter), Vector(x, y, z), o); +} + +int NWNX_Encounter_GetMinNumSpawned(object encounter) +{ + string sFunc = "GetMinNumSpawned"; + + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Encounter, sFunc); +} + +int NWNX_Encounter_GetMaxNumSpawned(object encounter) +{ + string sFunc = "GetMaxNumSpawned"; + + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Encounter, sFunc); +} + +int NWNX_Encounter_GetCurrentNumSpawned(object encounter) +{ + string sFunc = "GetCurrentNumSpawned"; + + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, encounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Encounter, sFunc); +} + +string NWNX_Encounter_GetGeometry(object oEncounter) +{ + string sFunc = "GetGeometry"; + + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, oEncounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); + + return NWNX_GetReturnValueString(NWNX_Encounter, sFunc); +} + +void NWNX_Encounter_SetGeometry(object oEncounter, string sGeometry) +{ + string sFunc = "SetGeometry"; + + NWNX_PushArgumentString(NWNX_Encounter, sFunc, sGeometry); + NWNX_PushArgumentObject(NWNX_Encounter, sFunc, oEncounter); + NWNX_CallFunction(NWNX_Encounter, sFunc); +} diff --git a/gamma_age_v2/nwnx_events.nss b/gamma_age_v2/nwnx_events.nss new file mode 100644 index 00000000..cd22c034 --- /dev/null +++ b/gamma_age_v2/nwnx_events.nss @@ -0,0 +1,1590 @@ +/// @addtogroup events Events +/// @brief Provides an interface for plugins to create event-based systems, and exposes some events through that interface. +/// @{ +/// @file nwnx_events.nss +#include "nwnx" + +const string NWNX_Events = "NWNX_Events"; ///< @private + +/** + # Events +__________________________________________ + ## Associate Events + - NWNX_ON_ADD_ASSOCIATE_BEFORE + - NWNX_ON_ADD_ASSOCIATE_AFTER + - NWNX_ON_REMOVE_ASSOCIATE_BEFORE + - NWNX_ON_REMOVE_ASSOCIATE_AFTER + + `OBJECT_SELF` = The owner of the associate. + + Event Data Tag | Type | Notes + ----------------------|--------|------- + ASSOCIATE_OBJECT_ID | object | Convert to object with StringToObject() + +_______________________________________ + ## Stealth Events + - NWNX_ON_STEALTH_ENTER_BEFORE + - NWNX_ON_STEALTH_ENTER_AFTER + - NWNX_ON_STEALTH_EXIT_BEFORE + - NWNX_ON_STEALTH_EXIT_AFTER + + `OBJECT_SELF` = The creature entering or exiting stealth. + + @note NWNX_ON_{ENTER|EXIT}_STEALTH_{BEFORE|AFTER} has been deprecated. Please use these new event names. +_______________________________________ + ## Detect Events + - NWNX_ON_DETECT_ENTER_BEFORE + - NWNX_ON_DETECT_ENTER_AFTER + - NWNX_ON_DETECT_EXIT_BEFORE + - NWNX_ON_DETECT_EXIT_AFTER + + `OBJECT_SELF` = The creature entering or exiting detect mode. + +_______________________________________ + ## Examine Events + - NWNX_ON_EXAMINE_OBJECT_BEFORE + - NWNX_ON_EXAMINE_OBJECT_AFTER + + `OBJECT_SELF` = The player examining the object + + Event Data Tag | Type | Notes + ----------------------|--------|------- + EXAMINEE_OBJECT_ID | object | Convert to object with StringToObject() + TRAP_EXAMINE_SUCCESS | int | For trap examine only, whether the examine succeeded + +_______________________________________ + ## Faction Events + - NWNX_ON_SET_NPC_FACTION_REPUTATION_BEFORE + - NWNX_ON_SET_NPC_FACTION_REPUTATION_AFTER + + `OBJECT_SELF` = The module + + Event Data Tag | Type | Notes + ----------------------|--------|------- + FACTION_ID | int | Not the STANDARD_FACTION_* constants. See nwnx_creature->GetFaction(). + SUBJECT_FACTION_ID | int | Not the STANDARD_FACTION_* constants. See nwnx_creature->GetFaction(). + PREVIOUS_REPUTATION | int | + NEW_REPUTATION | int | Not yet clamped between 0-100. In the AFTER event, this will equal the EventResult set in the BEFORE event. + +_______________________________________ + ## Validate Use Item Events + - NWNX_ON_VALIDATE_USE_ITEM_BEFORE + - NWNX_ON_VALIDATE_USE_ITEM_AFTER + + `OBJECT_SELF` = The creature using the item + + Event Data Tag | Type | Notes | + ------------------------|--------|-------| + ITEM_OBJECT_ID | object | Convert to object with StringToObject()| + BEFORE_RESULT | int | TRUE/FALSE, only in _AFTER events| + + @note The event result should be one of: + "0" - Equip denied + "1" - Equip okay + "2" - Swap currently equipped item + "3" - Unequip items in both hands before equipping + @note Setting the result of this event will NOT prevent the item from being equipped, only used (e.g. scrolls/wands). See the "NWNX_ON_VALIDATE_ITEM_EQUIP_*" events to control equip behaviour. + @note If the BEFORE event is not skipped, BEFORE_RESULT is the value of running the function normally. Otherwise, this is the set result value. + +_______________________________________ + ## Use Item Events + - NWNX_ON_USE_ITEM_BEFORE + - NWNX_ON_USE_ITEM_AFTER + + `OBJECT_SELF` = The creature using the item + + Event Data Tag | Type | Notes | + ------------------------|--------|-------| + ITEM_OBJECT_ID | object | Convert to object with StringToObject()| + TARGET_OBJECT_ID | object | Convert to object with StringToObject()| + ITEM_PROPERTY_INDEX | int | | + ITEM_SUB_PROPERTY_INDEX | int | | + TARGET_POSITION_X | float | | + TARGET_POSITION_Y | float | | + TARGET_POSITION_Z | float | | + USE_CHARGES | int | | + + @note You can set the event result to "0" (send feedback to the client that the item cannot be used, default) + or "1" to suppress that feedback. + +_______________________________________ + ## Item Container Events + - NWNX_ON_ITEM_INVENTORY_OPEN_BEFORE + - NWNX_ON_ITEM_INVENTORY_OPEN_AFTER + - NWNX_ON_ITEM_INVENTORY_CLOSE_BEFORE + - NWNX_ON_ITEM_INVENTORY_CLOSE_AFTER + + `OBJECT_SELF` = The container + + Event Data Tag | Type | Notes + ----------------------|--------|------- + OWNER | object |Convert to object with StringToObject() + +_______________________________________ + ## Ammunition Reload Events + - NWNX_ON_ITEM_AMMO_RELOAD_BEFORE + - NWNX_ON_ITEM_AMMO_RELOAD_AFTER + + `OBJECT_SELF` = The creature whose inventory we're searching for the item type + + Event Data Tag | Type | Notes + ----------------------|------|------- + BASE_ITEM_ID | int | The base item type being sought (arrow, bolt, bullet) + BASE_ITEM_NTH | int | Find the Nth instance of this item + ACTION_RESULT | int | The object that was determined in BEFORE (only in after) + +_______________________________________ + ## Scroll Learn Events + - NWNX_ON_ITEM_SCROLL_LEARN_BEFORE + - NWNX_ON_ITEM_SCROLL_LEARN_AFTER + + `OBJECT_SELF` = The creature learning the scroll + + Event Data Tag | Type | Notes + ----------------------|--------|------- + SCROLL | object | Convert to object with StringToObject() + RESULT | int | Returns TRUE in the _AFTER if the learning was successful, FALSE otherwise + +_______________________________________ + ## Validate Item Equip Events + - NWNX_ON_VALIDATE_ITEM_EQUIP_BEFORE + - NWNX_ON_VALIDATE_ITEM_EQUIP_AFTER + + `OBJECT_SELF` = The creature trying to equip the item + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + ITEM_OBJECT_ID | object | Convert to object with StringToObject()| + SLOT | int | INVENTORY_SLOT_* Constant| + BEFORE_RESULT | int | TRUE/FALSE, only in _AFTER events| + + @note Manually setting the result of this event will skip all game checks for item slot validity. The client will block incompatible types (weapons into armor slots) in the GUI, but this will work using ActionEquipItem(). + @note To show this item as unusable to the PC (red in the inventory), use in combination with the "NWNX_ON_VALIDATE_USE_ITEM_*" events. + @note If the BEFORE event is not skipped, BEFORE_RESULT is the value of running the function normally. Otherwise, this is the set result value. + +_______________________________________ + ## Item Equip Events + - NWNX_ON_ITEM_EQUIP_BEFORE + - NWNX_ON_ITEM_EQUIP_AFTER + + `OBJECT_SELF` = The creature equipping the item + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + ITEM | object | Convert to object with StringToObject()| + SLOT | int | | + +_______________________________________ + ## Item Unequip Events + - NWNX_ON_ITEM_UNEQUIP_BEFORE + - NWNX_ON_ITEM_UNEQUIP_AFTER + + `OBJECT_SELF` = The creature unequipping the item + + Event Data Tag | Type | Notes + ----------------------|--------|------- + ITEM | object | Convert to object with StringToObject() + + @note These events do not trigger when equipment is replaced by equipping another item. +_______________________________________ + ## Item Destroy Events + - NWNX_ON_ITEM_DESTROY_OBJECT_BEFORE + - NWNX_ON_ITEM_DESTROY_OBJECT_AFTER + - NWNX_ON_ITEM_DECREMENT_STACKSIZE_BEFORE + - NWNX_ON_ITEM_DECREMENT_STACKSIZE_AFTER + + `OBJECT_SELF` = The item triggering the event + + @note Use of `NWNX_ON_ITEM_(DESTROY_OBJECT|DECREMENT_STACKSIZE)_*` conflicts with object event handler profiling + +_______________________________________ + ## Item Use Lore To Identify Events + - NWNX_ON_ITEM_USE_LORE_BEFORE + - NWNX_ON_ITEM_USE_LORE_AFTER + + `OBJECT_SELF` = The player attempting to identify an item with their lore skill + + Event Data Tag | Type | Notes + ----------------------|--------|------- + ITEM | object |Convert to object with StringToObject() + +_______________________________________ + ## Item Pay To Identify Events + - NWNX_ON_ITEM_PAY_TO_IDENTIFY_BEFORE + - NWNX_ON_ITEM_PAY_TO_IDENTIFY_AFTER + + `OBJECT_SELF` = The player attempting to pay to identify an item + + Event Data Tag | Type | Notes + ----------------------|--------|------- + ITEM | object | Convert to object with StringToObject() + STORE | object | Convert to object with StringToObject() + +_______________________________________ + ## Item Split Events + - NWNX_ON_ITEM_SPLIT_BEFORE + - NWNX_ON_ITEM_SPLIT_AFTER + + `OBJECT_SELF` = The player attempting to split an item + + Event Data Tag | Type | Notes| + ----------------------|--------|-------| + ITEM | object | Convert to object with StringToObject()| + NUMBER_SPLIT_OFF | int | | + +_______________________________________ + ## Acquire Item Events + - NWNX_ON_ITEM_ACQUIRE_BEFORE + - NWNX_ON_ITEM_ACQUIRE_AFTER + + `OBJECT_SELF` = The creature trying to acquire the item + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + ITEM | object | Convert to object with StringToObject() (May be OBJECT_INVALID in the AFTER event) | + GIVER | object | Convert to object with StringToObject() (will be INVALID if picked up from ground)| + RESULT | int | Returns TRUE in the _AFTER if the acquisition was successful, FALSE otherwise + + @note This event currently only works with creatures + +_______________________________________ + ## Feat Use Events + - NWNX_ON_USE_FEAT_BEFORE + - NWNX_ON_USE_FEAT_AFTER + + `OBJECT_SELF` = The object using the feat + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + FEAT_ID | int | | + SUBFEAT_ID | int | | + TARGET_OBJECT_ID | object | Convert to object with StringToObject() | + AREA_OBJECT_ID | object | Convert to object with StringToObject() | + TARGET_POSITION_X | float | | + TARGET_POSITION_Y | float | | + TARGET_POSITION_Z | float | | + ACTION_RESULT | int | TRUE/FALSE, only in _AFTER events + +_______________________________________ + ## Has Feat Events + - NWNX_ON_HASFEAT_BEFORE + - NWNX_ON_HAS_FEAT_AFTER + + `OBJECT_SELF` = The player being checked for the feat + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + FEAT_ID | int | | + HAS_FEAT | int | Whether they truly have the feat or not | + + @note This event should definitely be used with the Event ID Whitelist, which is turned on by default + for this event. Until you add your Feat ID to the whitelist on module load this event will not function. + For example if you wish an event to fire when nwn is checking if the creature has Epic Dodge you would perform + the following functions on_module_load. + ```c + NWNX_Events_SubscribeEvent("NWNX_ON_HAS_FEAT_BEFORE", "event_has_feat"); + NWNX_Events_AddIDToWhitelist("NWNX_ON_HAS_FEAT", FEAT_EPIC_DODGE); + ``` + @warning Toggling the Whitelist to be off for this event will degrade performance. +_______________________________________ + ## DM Give Events + - NWNX_ON_DM_GIVE_GOLD_BEFORE + - NWNX_ON_DM_GIVE_GOLD_AFTER + - NWNX_ON_DM_GIVE_XP_BEFORE + - NWNX_ON_DM_GIVE_XP_AFTER + - NWNX_ON_DM_GIVE_LEVEL_BEFORE + - NWNX_ON_DM_GIVE_LEVEL_AFTER + - NWNX_ON_DM_GIVE_ALIGNMENT_BEFORE + - NWNX_ON_DM_GIVE_ALIGNMENT_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + AMOUNT | int | | + OBJECT | object | Convert to object with StringToObject() | + ALIGNMENT_TYPE | int | Only valid for `NWNX_ON_DM_GIVE_ALIGNMENT_*` | + +_______________________________________ + ## DM Spawn Object Events + - NWNX_ON_DM_SPAWN_OBJECT_BEFORE + - NWNX_ON_DM_SPAWN_OBJECT_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + AREA | object | Convert to object with StringToObject() | + OBJECT | object | Only returns a valid object in *_AFTER | + OBJECT_TYPE | int | Returns `NWNX_EVENTS_OBJECT_TYPE_*` | + POS_X | float | | + POS_Y | float | | + POS_Z | float | | + RESREF | string | The resref of the object that's being spawned. | + + @note When spawning a standard trap, the resref will be an index into traps.2da. + +_______________________________________ + ## DM Give Item Events + - NWNX_ON_DM_GIVE_ITEM_BEFORE + - NWNX_ON_DM_GIVE_ITEM_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TARGET | object | Convert to object with StringToObject() + ITEM | object | Only returns a valid object in *_AFTER + +_______________________________________ + ## DM Multiple Object Action Events + - NWNX_ON_DM_HEAL_BEFORE + - NWNX_ON_DM_HEAL_AFTER + - NWNX_ON_DM_KILL_BEFORE + - NWNX_ON_DM_KILL_AFTER + - NWNX_ON_DM_TOGGLE_INVULNERABLE_BEFORE + - NWNX_ON_DM_TOGGLE_INVULNERABLE_AFTER + - NWNX_ON_DM_FORCE_REST_BEFORE + - NWNX_ON_DM_FORCE_REST_AFTER + - NWNX_ON_DM_LIMBO_BEFORE + - NWNX_ON_DM_LIMBO_AFTER + - NWNX_ON_DM_TOGGLE_AI_BEFORE + - NWNX_ON_DM_TOGGLE_AI_AFTER + - NWNX_ON_DM_TOGGLE_IMMORTAL_BEFORE + - NWNX_ON_DM_TOGGLE_IMMORTAL_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes + ----------------------|--------|------- + NUM_TARGETS | int | The number of targets affected + TARGET_* | object | * = 1 <= NUM_TARGETS + +_______________________________________ + ## DM Single Object Action Events + - NWNX_ON_DM_GOTO_BEFORE + - NWNX_ON_DM_GOTO_AFTER + - NWNX_ON_DM_POSSESS_BEFORE + - NWNX_ON_DM_POSSESS_AFTER + - NWNX_ON_DM_POSSESS_FULL_POWER_BEFORE + - NWNX_ON_DM_POSSESS_FULL_POWER_AFTER + - NWNX_ON_DM_TOGGLE_LOCK_BEFORE + - NWNX_ON_DM_TOGGLE_LOCK_AFTER + - NWNX_ON_DM_DISABLE_TRAP_BEFORE + - NWNX_ON_DM_DISABLE_TRAP_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TARGET | object | Convert to object with StringToObject() + + @note If `TARGET` is `OBJECT_INVALID` for `NWNX_ON_DM_POSSESS_*`, the DM is unpossessing. + +_______________________________________ + ## DM Jump Events + - NWNX_ON_DM_JUMP_TO_POINT_BEFORE + - NWNX_ON_DM_JUMP_TO_POINT_AFTER + - NWNX_ON_DM_JUMP_TARGET_TO_POINT_BEFORE + - NWNX_ON_DM_JUMP_TARGET_TO_POINT_AFTER + - NWNX_ON_DM_JUMP_ALL_PLAYERS_TO_POINT_BEFORE + - NWNX_ON_DM_JUMP_ALL_PLAYERS_TO_POINT_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + TARGET_AREA | object | Convert to object with StringToObject() | + POS_X | float | | + POS_Y | float | | + POS_Z | float | | + NUM_TARGETS | int | Only valid for NWNX_ON_DM_JUMP_TARGET_TO_POINT_* | + TARGET_* | object | * = 1 <= NUM_TARGETS, Only valid for NWNX_ON_DM_JUMP_TARGET_TO_POINT_* | + +_______________________________________ + ## DM Change Difficulty Events + - NWNX_ON_DM_CHANGE_DIFFICULTY_BEFORE + - NWNX_ON_DM_CHANGE_DIFFICULTY_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + DIFFICULTY_SETTING | int | | + +_______________________________________ + ## DM View Inventory Events + - NWNX_ON_DM_VIEW_INVENTORY_BEFORE + - NWNX_ON_DM_VIEW_INVENTORY_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes + ----------------------|--------|------- + OPEN_INVENTORY | int | TRUE if opening an inventory, FALSE if closing + TARGET | object | Convert to object with StringToObject() + +_______________________________________ + ## DM Spawn Trap Events + - NWNX_ON_DM_SPAWN_TRAP_ON_OBJECT_BEFORE + - NWNX_ON_DM_SPAWN_TRAP_ON_OBJECT_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes + ----------------------|--------|------- + AREA | object | Convert to object with StringToObject() + TARGET | object | Convert to object with StringToObject() + +_______________________________________ + ## DM Dump Locals Events + - NWNX_ON_DM_DUMP_LOCALS_BEFORE + - NWNX_ON_DM_DUMP_LOCALS_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TYPE | int | 0 = dm_dumplocals, 1 = dm_dumparealocals, 3 = dm_dumpmodulelocals + TARGET | object | Convert to object with StringToObject() + + Note: For TYPE 1/2, use GetArea(TARGET) or GetModule() + +_______________________________________ + ## DM PlayerDM Login/Logout Events + - NWNX_ON_DM_PLAYERDM_LOGIN_BEFORE + - NWNX_ON_DM_PLAYERDM_LOGIN_AFTER + - NWNX_ON_DM_PLAYERDM_LOGOUT_BEFORE + - NWNX_ON_DM_PLAYERDM_LOGOUT_AFTER + + `OBJECT_SELF` = The DM + + Event Data Tag | Type | Notes + ----------------------|--------|------- + PASSWORD | string | The password the DM provided, only valid for NWNX_ON_DM_PLAYERDM_LOGIN_* + +_______________________________________ + ## DM Other Events + - NWNX_ON_DM_APPEAR_BEFORE + - NWNX_ON_DM_APPEAR_AFTER + - NWNX_ON_DM_DISAPPEAR_BEFORE + - NWNX_ON_DM_DISAPPEAR_AFTER + - NWNX_ON_DM_SET_FACTION_BEFORE + - NWNX_ON_DM_SET_FACTION_AFTER + - NWNX_ON_DM_TAKE_ITEM_BEFORE + - NWNX_ON_DM_TAKE_ITEM_AFTER + - NWNX_ON_DM_SET_STAT_BEFORE + - NWNX_ON_DM_SET_STAT_AFTER + - NWNX_ON_DM_GET_VARIABLE_BEFORE + - NWNX_ON_DM_GET_VARIABLE_AFTER + - NWNX_ON_DM_SET_VARIABLE_BEFORE + - NWNX_ON_DM_SET_VARIABLE_AFTER + - NWNX_ON_DM_SET_TIME_BEFORE + - NWNX_ON_DM_SET_TIME_AFTER + - NWNX_ON_DM_SET_DATE_BEFORE + - NWNX_ON_DM_SET_DATE_AFTER + - NWNX_ON_DM_SET_FACTION_REPUTATION_BEFORE + - NWNX_ON_DM_SET_FACTION_REPUTATION_AFTER + - NWNX_ON_DM_GET_FACTION_REPUTATION_BEFORE + - NWNX_ON_DM_GET_FACTION_REPUTATION_AFTER + + `OBJECT_SELF` = The DM + +_______________________________________ + ## Client Disconnect Events + - NWNX_ON_CLIENT_DISCONNECT_BEFORE + - NWNX_ON_CLIENT_DISCONNECT_AFTER + + `OBJECT_SELF` = The player disconnecting from the server + + @note This event also runs when a player connects to the server but cancels out of character select. + OBJECT_SELF will be OBJECT_INVALID in this case. + +_______________________________________ + ## Client Connect Events + - NWNX_ON_CLIENT_CONNECT_BEFORE + - NWNX_ON_CLIENT_CONNECT_AFTER + + `OBJECT_SELF` = The module + + Event Data Tag | Type | Notes + ----------------------|--------|------- + PLAYER_NAME | string | Player name of the connecting client + CDKEY | string | Public cdkey of the connecting client + IS_DM | int | Whether the client is connect as DM (1/0) + IP_ADDRESS | string | The IP address of the connecting client + + @note Skipping the _BEFORE event will cause the client's connection to be denied. + You can optionally pass a reason for this in the event result. + +_______________________________________ + ## CombatEnter/Exit Events + - NWNX_ON_COMBAT_ENTER_BEFORE + - NWNX_ON_COMBAT_ENTER_AFTER + - NWNX_ON_COMBAT_EXIT_BEFORE + - NWNX_ON_COMBAT_EXIT_AFTER + + `OBJECT_SELF` = The player entering/exiting combat. + + @note Only works for PCs. + +_______________________________________ + ## Combat Round Start Events + - NWNX_ON_START_COMBAT_ROUND_BEFORE + - NWNX_ON_START_COMBAT_ROUND_AFTER + + `OBJECT_SELF` = The creature starting the combat round + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TARGET_OBJECT_ID | object | Convert to object with StringToObject() + +_______________________________________ + ## Disarm Events + - NWNX_ON_DISARM_BEFORE + - NWNX_ON_DISARM_AFTER + + `OBJECT_SELF` = The creature who is being disarmed + + Event Data Tag | Type | Notes + ----------------------|--------|------- + DISARMER_OBJECT_ID | object | The object disarming the creature + FEAT_ID | int | The feat used to perform the disarming (Normal vs Improved Disarm) + ACTION_RESULT | int | TRUE/FALSE, only in _AFTER events + +_______________________________________ + ## Cast Spell Events + - NWNX_ON_CAST_SPELL_BEFORE + - NWNX_ON_CAST_SPELL_AFTER + + `OBJECT_SELF` = The creature casting the spell + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + SPELL_ID | int | | + TARGET_POSITION_X | float | | + TARGET_POSITION_Y | float | | + TARGET_POSITION_Z | float | | + TARGET_OBJECT_ID | object | Convert to object with StringToObject() | + ITEM_OBJECT_ID | object | Convert to object with StringToObject() | + MULTI_CLASS | int | | + SPELL_COUNTERED | int | Returns TRUE if spell was countered else FALSE | + COUNTERING_SPELL | int | Returns TRUE if cast as counter else FALSE | + PROJECTILE_PATH_TYPE | int | | + IS_INSTANT_SPELL | int | Returns TRUE if spell was instant else FALSE | + +@note the stock nwscript GetMetaMagicFeat() function will return any metamagic used. + +_______________________________________ + ## Set Memorized Spell Slot Events + - NWNX_SET_MEMORIZED_SPELL_SLOT_BEFORE + - NWNX_SET_MEMORIZED_SPELL_SLOT_AFTER + + `OBJECT_SELF` = The creature who's memorizing the spell + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + SPELL_MULTICLASS | int | Index of the spell casting class (0-2) | + SPELL_SLOT | int | | + SPELL_ID | int | | + SPELL_DOMAIN | int | | + SPELL_METAMAGIC | int | | + SPELL_FROMCLIENT | int | | + ACTION_RESULT | int | | + +_______________________________________ + ## Clear Memorized Spell Slot Events + - NWNX_CLEAR_MEMORIZED_SPELL_SLOT_BEFORE + - NWNX_CLEAR_MEMORIZED_SPELL_SLOT_AFTER + + `OBJECT_SELF` = The creature whose spellbook is being changed + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + SPELL_MULTICLASS | int | Index of the spell casting class (0-2) | + SPELL_LEVEL | int | | + SPELL_SLOT | int | | + +_______________________________________ + ## Spell Interrupted Events + - NWNX_ON_SPELL_INTERRUPTED_BEFORE + - NWNX_ON_SPELL_INTERRUPTED_AFTER + + `OBJECT_SELF` = The creature whose spell was interrupted + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + SPELL_ID | int | | + SPELL_CLASS | int | Index of the spell casting class (0-2) | + SPELL_DOMAIN | int | | + SPELL_METAMAGIC | int | | + SPELL_FEAT | int | | + SPELL_SPONTANEOUS | int | | + +_______________________________________ + ## Healer Kit Use Events + - NWNX_ON_HEALER_KIT_BEFORE + - NWNX_ON_HEALER_KIT_AFTER + + `OBJECT_SELF` = The creature using the Healer's Kit + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + TARGET_OBJECT_ID | object | Convert to object with StringToObject() | + ITEM_OBJECT_ID | object | Convert to object with StringToObject() | + ITEM_PROPERTY_INDEX | int | | + MOVE_TO_TARGET | int | | + ACTION_RESULT | int | | + +_______________________________________ + ## Healing Events + - NWNX_ON_HEAL_BEFORE + - NWNX_ON_HEAL_AFTER + + `OBJECT_SELF` = The creature performing the heal + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + TARGET_OBJECT_ID | object | Convert to object with StringToObject() | + HEAL_AMOUNT | int | How many HP the heal will provide | + +_______________________________________ + ## Party Action Events + - NWNX_ON_PARTY_*_BEFORE + - NWNX_ON_PARTY_*_AFTER + + `OBJECT_SELF` = The player doing the action + + Replace * with an event listed below + + Event | Event Data Tag | Type | Notes | + ----------------|-----------------------|--------|-------| + LEAVE | LEAVING | object | Convert to object with StringToObject() | + KICK | KICKED | object | Convert to object with StringToObject() | + TRANSFER_LEADERSHIP | NEW_LEADER | object | Convert to object with StringToObject() | + INVITE | INVITED | object | Convert to object with StringToObject() | + IGNORE_INVITATION | INVITED_BY | object | Convert to object with StringToObject() | + ACCEPT_INVITATION | INVITED_BY | object | Convert to object with StringToObject() | + REJECT_INVITATION | INVITED_BY | object | Convert to object with StringToObject() | + KICK_HENCHMAN | INVITED_BY | object | Convert to object with StringToObject() | + +_______________________________________ + ## Combat Mode Toggle Events + - NWNX_ON_COMBAT_MODE_ON + - NWNX_ON_COMBAT_MODE_OFF + + `OBJECT_SELF` = The Player Character toggling the mode + + Event Data Tag | Type | Notes + ----------------------|--------|------- + COMBAT_MODE_ID | int | See below + + The `COMBAT_MODE_ID` returned does not match the `COMBAT_MODE_*` NWScript constants. Use the following: + Combat Mode | ID + ----------------------|---- + NONE | 0 + PARRY | 1 + POWER_ATTACK | 2 + IMPROVED_POWER_ATTACK | 3 + COUNTERSPELL | 4 + FLURRY_OF_BLOWS | 5 + RAPID_SHOT | 6 + EXPERTISE | 7 + IMPROVED_EXPERTISE | 8 + DEFENSIVE_CASTING | 9 + DIRTY_FIGHTING | 10 + DEFENSIVE_STANCE | 11 + + @note Requires @ref combatmodes "NWNX_CombatModes" plugin to work. + +_______________________________________ + ## Use Skill Events + - NWNX_ON_USE_SKILL_BEFORE + - NWNX_ON_USE_SKILL_AFTER + + `OBJECT_SELF` = The creature using the skill + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + USED_ITEM_OBJECT_ID | object | Convert to object with StringToObject() | + TARGET_OBJECT_ID | object | Convert to object with StringToObject() | + SKILL_ID | int | | + SUB_SKILL_ID | int | | + TARGET_POSITION_X | float | | + TARGET_POSITION_Y | float | | + TARGET_POSITION_Z | float | | + ACTION_RESULT | int | TRUE/FALSE, only in _AFTER events + + @note Probably only really works with the following activated skills: + `SKILL_ANIMAL_EMPATHY`, `SKILL_DISABLE_TRAP`, `SKILL_HEAL`, `SKILL_OPEN_LOCK`, + `SKILL_PICK_POCKET`, `SKILL_TAUNT` + +_______________________________________ + ## Map Pin Events + - NWNX_ON_MAP_PIN_ADD_PIN_BEFORE + - NWNX_ON_MAP_PIN_ADD_PIN_AFTER + - NWNX_ON_MAP_PIN_CHANGE_PIN_BEFORE + - NWNX_ON_MAP_PIN_CHANGE_PIN_AFTER + - NWNX_ON_MAP_PIN_DESTROY_PIN_BEFORE + - NWNX_ON_MAP_PIN_DESTROY_PIN_AFTER + + `OBJECT_SELF` = The player performing the map pin action + + Event Data Tag | Type | Notes + ----------------------|--------|------- + PIN_X | float | Not available in DESTROY event + PIN_Y | float | Not available in DESTROY event + PIN_ID | int | Not available in ADD events. Use `GetLocalInt(oPC, "NW_TOTAL_MAP_PINS")` + PIN_NOTE | string | Not available in DESTROY event + +_______________________________________ + ## Spot/Listen Detection Events + - NWNX_ON_DO_LISTEN_DETECTION_BEFORE + - NWNX_ON_DO_LISTEN_DETECTION_AFTER + - NWNX_ON_DO_SPOT_DETECTION_BEFORE + - NWNX_ON_DO_SPOT_DETECTION_AFTER + + `OBJECT_SELF` = The creature doing the detecting + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TARGET | object | Convert to object with StringToObject() + TARGET_INVISIBLE | int | TRUE/FALSE + BEFORE_RESULT | int | TRUE/FALSE, only in _AFTER events + +_______________________________________ + ## Polymorph Events + - NWNX_ON_POLYMORPH_BEFORE + - NWNX_ON_POLYMORPH_AFTER + - NWNX_ON_UNPOLYMORPH_BEFORE + - NWNX_ON_UNPOLYMORPH_AFTER + + `OBJECT_SELF` = The creature doing the un/polymorphing + + Event Data Tag | Type | Notes + ----------------------|--------|------- + POLYMORPH_TYPE | int | Appearance polymorphing into. Only for ON_POLYMORPH + + @warning If skipping the ON_POLYMORPH event, in some cases bioware scripts will enter an endless loop + trying to merge item properties.\n + This can be seen in `x2_s2_gwildshp` with the minotaur form with the following line: + `IPWildShapeCopyItemProperties(oWeaponOld,oWeaponNew, TRUE);` + If you want to skip this, you need to make sure oWeaponOld != oWeaponNew + +_______________________________________ + ## Effect Applied/Removed Events + - NWNX_ON_EFFECT_APPLIED_BEFORE + - NWNX_ON_EFFECT_APPLIED_AFTER + - NWNX_ON_EFFECT_REMOVED_BEFORE + - NWNX_ON_EFFECT_REMOVED_AFTER + + `OBJECT_SELF` = The target of the effect + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + UNIQUE_ID | int | | + CREATOR | object | Convert to object with StringToObject() | + TYPE | int | The effect type, does not match NWScript constants See: https://github.com/nwnxee/unified/blob/master/NWNXLib/API/Constants/Effect.hpp#L8 | + SUB_TYPE | int | SUBTYPE_* | + DURATION_TYPE | int | DURATION_TYPE_* | + DURATION | float | | + SPELL_ID | int | | + CASTER_LEVEL | int | | + CUSTOM_TAG | string | | + INT_PARAM_* | int | * = 1-8 | + FLOAT_PARAM_* | float | * = 1-4 | + STRING_PARAM_* | string | * = 1-6 | + OBJECT_PARAM_* | object | * = 1-4, Convert to object with StringToObject() | + + @note Only fires for Temporary or Permanent effects, does not include VisualEffects or ItemProperty effects. + +_______________________________________ + ## Quickchat Events + - NWNX_ON_QUICKCHAT_BEFORE + - NWNX_ON_QUICKCHAT_AFTER + + `OBJECT_SELF` = The player using the quick chat command + + Event Data Tag | Type | Notes + ----------------------|--------|------- + QUICKCHAT_COMMAND | int | `VOICE_CHAT_*` constants + +_______________________________________ + ## Inventory Open Events + - NWNX_ON_INVENTORY_OPEN_BEFORE + - NWNX_ON_INVENTORY_OPEN_AFTER + + `OBJECT_SELF` = The player opening the inventory + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TARGET_INVENTORY | object | Pretty sure this is always the player + +_______________________________________ + ## Inventory Select Panel Events + - NWNX_ON_INVENTORY_SELECT_PANEL_BEFORE + - NWNX_ON_INVENTORY_SELECT_PANEL_AFTER + + `OBJECT_SELF` = The player changing inventory panels + + Event Data Tag | Type | Notes + ----------------------|--------|------- + CURRENT_PANEL | int | The current panel, index starts at 0 + SELECTED_PANEL | int | The selected panel, index starts at 0 + +_______________________________________ + ## Barter Start Events + - NWNX_ON_BARTER_START_BEFORE + - NWNX_ON_BARTER_START_AFTER + + `OBJECT_SELF` = The player who initiated the barter + + Event Data Tag | Type | Notes + ----------------------|--------|------- + BARTER_TARGET | object | The other player involved in the barter + +_______________________________________ + ## Barter End Events + - NWNX_ON_BARTER_END_BEFORE + - NWNX_ON_BARTER_END_AFTER + + `OBJECT_SELF` = The player who initiated the barter + + Event Data Tag | Type | Notes + ------------------------------|--------|------- + BARTER_TARGET | object | The other player involved in the barter + BARTER_COMPLETE | int | TRUE/FALSE - whether the barter completed successfully + BARTER_INITIATOR_ITEM_COUNT | int | How many items the initiator traded away, only in _BEFORE events + BARTER_TARGET_ITEM_COUNT | int | How many items the target traded away, only in _BEFORE events + BARTER_INITIATOR_ITEM_* | object | Convert to object with StringToObject(), only in _BEFORE events + BARTER_TARGET_ITEM_* | object | Convert to object with StringToObject(), only in _BEFORE events + +_______________________________________ + ## Trap Events + - NWNX_ON_TRAP_DISARM_BEFORE + - NWNX_ON_TRAP_DISARM_AFTER + - NWNX_ON_TRAP_ENTER_BEFORE + - NWNX_ON_TRAP_ENTER_AFTER + - NWNX_ON_TRAP_EXAMINE_BEFORE + - NWNX_ON_TRAP_EXAMINE_AFTER + - NWNX_ON_TRAP_FLAG_BEFORE + - NWNX_ON_TRAP_FLAG_AFTER + - NWNX_ON_TRAP_RECOVER_BEFORE + - NWNX_ON_TRAP_RECOVER_AFTER + - NWNX_ON_TRAP_SET_BEFORE + - NWNX_ON_TRAP_SET_AFTER + + `OBJECT_SELF` = The creature performing the trap action + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TRAP_OBJECT_ID | object | Convert to object with StringToObject() + TRAP_FORCE_SET | int | TRUE/FALSE, only in ENTER events + ACTION_RESULT | int | TRUE/FALSE, only in _AFTER events (not ENTER) + +_______________________________________ + ## Timing Bar Events + - NWNX_ON_TIMING_BAR_START_BEFORE + - NWNX_ON_TIMING_BAR_START_AFTER + - NWNX_ON_TIMING_BAR_STOP_BEFORE + - NWNX_ON_TIMING_BAR_STOP_AFTER + - NWNX_ON_TIMING_BAR_CANCEL_BEFORE + - NWNX_ON_TIMING_BAR_CANCEL_AFTER + + `OBJECT_SELF` = The player the timing bar is for + + Event Data Tag | Type | Notes + ----------------------|--------|------- + EVENT_ID | int | The type of timing bar, see constants below, only in _START_ events + DURATION | int | Length of time (in milliseconds) the bar is set to last, only in _START_ events + +_______________________________________ + ## Webhook Events + - NWNX_ON_WEBHOOK_SUCCESS + - NWNX_ON_WEBHOOK_FAILURE + + `OBJECT_SELF` = The module object + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + STATUS | int | The return code after posting to the server | + MESSAGE | string | The full constructed message sent | + HOST | string | | + PATH | string | | + RATELIMIT_LIMIT | int | Discord: The number of requests that can be made in a limited period | + RATELIMIT_REMAINING | int | Discord: The number of remaining requests that can be made before rate limited | + RATELIMIT_RESET | int | Discord: Timestamp when the rate limit resets | + RETRY_AFTER | float | Milliseconds until another webhook is allowed when rate limited | + FAIL_INFO | string | The reason the hook failed aside from rate limits | + + @note Requires @ref webhook "NWNX_WebHook" plugin to work. + +_______________________________________ + ## Servervault Events + - NWNX_ON_CHECK_STICKY_PLAYER_NAME_RESERVED_BEFORE + - NWNX_ON_CHECK_STICKY_PLAYER_NAME_RESERVED_AFTER + + `OBJECT_SELF` = The module + + Event Data Tag | Type | Notes + ----------------------|--------|------- + PLAYER_NAME | string | Player name of the connecting client + CDKEY | string | Public cdkey of the connecting client + LEGACY_CDKEY | string | Public cdkey from earlier versions of NWN + IS_DM | int | Whether the client is connecting as DM (1/0) + + @note Skipping the _BEFORE event will cause no player names to be accepted unless you SetEventResult("1") + +_______________________________________ + ## Server Character Save Events + - NWNX_ON_SERVER_CHARACTER_SAVE_BEFORE + - NWNX_ON_SERVER_CHARACTER_SAVE_AFTER + + `OBJECT_SELF` = The player character being saved. + + @note This is called once for every character when the server is exiting and when the server is saved, or when ExportSingleCharacter() & ExportAllCharacters() is called. + +_______________________________________ + ## Export Character Events + - NWNX_ON_CLIENT_EXPORT_CHARACTER_BEFORE + - NWNX_ON_CLIENT_EXPORT_CHARACTER_AFTER + + `OBJECT_SELF` = The player + + Note: This event runs when the player clicks the "Save Character" button in the options menu to export their character to their localvault. + +_______________________________________ + ## Levelling Events + - NWNX_ON_LEVEL_UP_BEFORE + - NWNX_ON_LEVEL_UP_AFTER + - NWNX_ON_LEVEL_UP_AUTOMATIC_BEFORE + - NWNX_ON_LEVEL_UP_AUTOMATIC_AFTER + - NWNX_ON_LEVEL_DOWN_BEFORE + - NWNX_ON_LEVEL_DOWN_AFTER + + `OBJECT_SELF` = The creature levelling up or down, automatic is for henchmen levelling + +_______________________________________ + ## Container Change Events + - NWNX_ON_INVENTORY_ADD_ITEM_BEFORE + - NWNX_ON_INVENTORY_ADD_ITEM_AFTER + - NWNX_ON_INVENTORY_REMOVE_ITEM_BEFORE + - NWNX_ON_INVENTORY_REMOVE_ITEM_AFTER + + @note NWNX_ON_INVENTORY_REMOVE_ITEM_* is not skippable + + `OBJECT_SELF` = The container + + Event Data Tag | Type | Notes + ----------------------|--------|------- + ITEM | object | Convert to object with StringToObject() + +_______________________________________ + ## Gold Events + - NWNX_ON_INVENTORY_ADD_GOLD_BEFORE + - NWNX_ON_INVENTORY_ADD_GOLD_AFTER + - NWNX_ON_INVENTORY_REMOVE_GOLD_BEFORE + - NWNX_ON_INVENTORY_REMOVE_GOLD_AFTER + + `OBJECT_SELF` = The creature gaining or losing gold + + Event Data Tag | Type | Notes + ----------------------|--------|------- + GOLD | int | The amount of gold added or removed + + @warning While these events are skippable, you should be very careful about doing so. + It's very easy to create situations where players can dupe their gold or worse. + +_______________________________________ + ## PVP Attitude Change Events + - NWNX_ON_PVP_ATTITUDE_CHANGE_BEFORE + - NWNX_ON_PVP_ATTITUDE_CHANGE_AFTER + + `OBJECT_SELF` = The player performing the attitude change + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TARGET_OBJECT_ID | object | Convert to object with StringToObject() + ATTITUDE | int | 0 = Dislike, 1 = Like + +_______________________________________ + ## Input Walk To Events + - NWNX_ON_INPUT_WALK_TO_WAYPOINT_BEFORE + - NWNX_ON_INPUT_WALK_TO_WAYPOINT_AFTER + + `OBJECT_SELF` = The player clicking somewhere to move + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + AREA | object | Convert to object with StringToObject() | + POS_X | float | | + POS_Y | float | | + POS_Z | float | | + RUN_TO_POINT | int | TRUE if player is running, FALSE if player is walking (eg when shift clicking) | + +_______________________________________ + ## Material Change Events + - NWNX_ON_MATERIALCHANGE_BEFORE + - NWNX_ON_MATERIALCHANGE_AFTER + + `OBJECT_SELF` = The creature walking on a different surface material + + Event Data Tag | Type | Notes + ----------------------|--------|------- + MATERIAL_TYPE | int | See surfacemat.2da for values + + @note: After a PC transitions to a new area, a surface material change event + won't fire until after the PC moves. + +_______________________________________ + ## Input Attack Events + - NWNX_ON_INPUT_ATTACK_OBJECT_BEFORE + - NWNX_ON_INPUT_ATTACK_OBJECT_AFTER + + `OBJECT_SELF` = The creature attacking + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TARGET | object | Convert to object with StringToObject() + PASSIVE | int | TRUE / FALSE + CLEAR_ALL_ACTIONS | int | TRUE / FALSE + ADD_TO_FRONT | int | TRUE / FALSE + +_______________________________________ + ## Input Force Move To Events + - NWNX_ON_INPUT_FORCE_MOVE_TO_OBJECT_BEFORE + - NWNX_ON_INPUT_FORCE_MOVE_TO_OBJECT_AFTER + + `OBJECT_SELF` = The creature forcibly moving + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TARGET | object | Convert to object with StringToObject() + + _______________________________________ + ## Input Cast Spell Events + - NWNX_ON_INPUT_CAST_SPELL_BEFORE + - NWNX_ON_INPUT_CAST_SPELL_AFTER + + `OBJECT_SELF` = The creature casting a spell + + Event Data Tag | Type | Notes + ----------------------|--------|------- + TARGET | object | Convert to object with StringToObject() + SPELL_ID | int | + MULTICLASS | int | + DOMAIN_LEVEL | int | + META_TYPE | int | + INSTANT | int | TRUE / FALSE + PROJECTILE_PATH | int | + SPONTANEOUS | int | TRUE / FALSE + FAKE | int | TRUE / FALSE + FEAT | int | -1 when not cast from a feat + CASTER_LEVEL | int | + IS_AREA_TARGET | int | TRUE / FALSE + POS_X | float | + POS_Y | float | + POS_Z | float | + + @note This event runs the moment a creature starts casting + +_______________________________________ + ## Input Keyboard Events + - NWNX_ON_INPUT_KEYBOARD_BEFORE + - NWNX_ON_INPUT_KEYBOARD_AFTER + + `OBJECT_SELF` = The player + + Event Data Tag | Type | Notes + ----------------------|--------|------- + KEY | string | The key pressed by the player, one of the following: W A S D Q E + + @note To stop the player from moving you can do something like below, since normal immobilizing effects stop the client + from sending input. + + location locPlayer = GetLocation(oPlayer); + object oBoulder = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_boulder", locPlayer, FALSE, "TESTPLC"); + NWNX_Object_SetPosition(oPlayer, GetPositionFromLocation(locPlayer)); + ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY), oBoulder); + +_______________________________________ + ## Input Keyboard Events + - NWNX_ON_INPUT_TOGGLE_PAUSE_BEFORE + - NWNX_ON_INPUT_TOGGLE_PAUSE_AFTER + + `OBJECT_SELF` = The player or DM + + Event Data Tag | Type | Notes + ----------------------|--------|------- + PAUSE_STATE | int | TRUE = Pausing, FALSE = Unpausing + + @note This event also fires when a non-dm player presses the spacebar. + +_______________________________________ + ## Object Lock Events + - NWNX_ON_OBJECT_LOCK_BEFORE + - NWNX_ON_OBJECT_LOCK_AFTER + + `OBJECT_SELF` = The object doing the locking + + Event Data Tag | Type | Notes + ----------------------|--------|------- + DOOR | object | Convert to object with StringToObject() + ACTION_RESULT | int | TRUE/FALSE, only in _AFTER events + +_______________________________________ + ## Object Unlock Events + - NWNX_ON_OBJECT_UNLOCK_BEFORE + - NWNX_ON_OBJECT_UNLOCK_AFTER + + `OBJECT_SELF` = The object doing the unlocking + + Event Data Tag | Type | Notes + ----------------------|--------|------- + DOOR | object | Convert to object with StringToObject() + THIEVES_TOOL | object | Convert to object with StringToObject() + ACTIVE_PROPERTY_INDEX | int | + ACTION_RESULT | int | TRUE/FALSE, only in _AFTER events + +_______________________________________ + ## UUID Collision Events + - NWNX_ON_UUID_COLLISION_BEFORE + - NWNX_ON_UUID_COLLISION_AFTER + + `OBJECT_SELF` = The object that caused the UUID collision + + Event Data Tag | Type | Notes + ----------------------|--------|------- + UUID | string | The UUID + + Note: To get the existing object with `UUID` you can use GetObjectByUUID(), be aware that this event runs before the + object is added to the world which means many functions (for example `GetArea(OBJECT_SELF)`) will not work. + +_______________________________________ + ## Resource Events + - NWNX_ON_RESOURCE_ADDED + - NWNX_ON_RESOURCE_REMOVED + - NWNX_ON_RESOURCE_MODIFIED + + `OBJECT_SELF` = The module + + Event Data Tag | Type | Notes + ----------------------|--------|------- + ALIAS | string | NWNX for /nwnx, DEVELOPMENT for /development. Also supports valid aliases from the Custom Resman Definition File + RESREF | string | The ResRef of the file + TYPE | int | The type of the file, see NWNX_UTIL_RESREF_TYPE_* + + Note: These events fire when a file gets added/removed/modified in resource folders like /nwnx, /development and those defined in the Custom Resman Definition File + +_______________________________________ + ## ELC Events + - NWNX_ON_ELC_VALIDATE_CHARACTER_BEFORE + - NWNX_ON_ELC_VALIDATE_CHARACTER_AFTER + + `OBJECT_SELF` = The player + + Note: NWNX_ELC must be loaded for these events to work. The `_AFTER` event only fires if the character successfully + completes validation. + +_______________________________________ + ## Quickbar Events + - NWNX_ON_QUICKBAR_SET_BUTTON_BEFORE + - NWNX_ON_QUICKBAR_SET_BUTTON_AFTER + + `OBJECT_SELF` = The player + + Event Data Tag | Type | Notes + ----------------------|--------|------- + BUTTON | int | The quickbar button slot, 0-35 + TYPE | int | The type of quickbar button set, see NWNX_PLAYER_QBS_TYPE_* in nwnx_player_qbs.nss + + Note: Skipping the event does not prevent the client from changing the button clientside, the change won't however + be saved to the bic file. + +_______________________________________ + ## Calendar Events + - NWNX_ON_CALENDAR_HOUR + - NWNX_ON_CALENDAR_DAY + - NWNX_ON_CALENDAR_MONTH + - NWNX_ON_CALENDAR_YEAR + - NWNX_ON_CALENDAR_DAWN + - NWNX_ON_CALENDAR_DUSK + + `OBJECT_SELF` = The module + + Event Data Tag | Type | Notes + ----------------------|--------|------- + OLD | int | The (Hour/Day/Month/Year) before the change. Not available in DAWN/DUSK. + NEW | int | The (Hour/Day/Month/Year) after the change. Not available in DAWN/DUSK. + +_______________________________________ + ## Broadcast Spell Cast Events + - NWNX_ON_BROADCAST_CAST_SPELL_BEFORE + - NWNX_ON_BROADCAST_CAST_SPELL_AFTER + + `OBJECT_SELF` = The creature casting the spell + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + SPELL_ID | int | | + MULTI_CLASS | int | | + FEAT | int | 65535 if a feat wasn't used, otherwise the feat ID | + +_______________________________________ + ## RunScript Debug Event + - NWNX_ON_DEBUG_RUN_SCRIPT_BEFORE + - NWNX_ON_DEBUG_RUN_SCRIPT_AFTER + + `OBJECT_SELF` = The player executing the RunScript debug command + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + SCRIPT_NAME | string | The script to execute | + TARGET | object | The target to run the script on. Convert to object with StringToObject() | + + @note This event also runs for players that do not have permission to execute the command. + +_______________________________________ + ## RunScriptChunk Debug Event + - NWNX_ON_DEBUG_RUN_SCRIPT_CHUNK_BEFORE + - NWNX_ON_DEBUG_RUN_SCRIPT_CHUNK_AFTER + + `OBJECT_SELF` = The player executing the RunScriptChunk debug command + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + SCRIPT_CHUNK | string | The script chunk | + TARGET | object | The target to run the script chunk on. Convert to object with StringToObject() | + WRAP_INTO_MAIN | int | TRUE if the WrapIntoMain checkbox is checked, otherwise FALSE | + + @note This event also runs for players that do not have permission to execute the command. + +_______________________________________ + ## Buy/Sell Store Events + - NWNX_ON_STORE_REQUEST_BUY_BEFORE + - NWNX_ON_STORE_REQUEST_BUY_AFTER + - NWNX_ON_STORE_REQUEST_SELL_BEFORE + - NWNX_ON_STORE_REQUEST_SELL_AFTER + + `OBJECT_SELF` = The creature buying or selling an item + + Event Data Tag | Type | Notes | + ----------------------|--------|-------| + ITEM | object | The item being bought or sold. Convert to object with StringToObject() | + STORE | object | The store the item is being sold to or bought from. Convert to object with StringToObject() | + PRICE | int | The buy or sell price | + RESULT | int | TRUE/FALSE whether the request was successful. Only in *_AFTER events. + +_______________________________________ + ## Server Send Area Events + - NWNX_ON_SERVER_SEND_AREA_BEFORE + - NWNX_ON_SERVER_SEND_AREA_AFTER + + `OBJECT_SELF` = The player + + Event Data Tag | Type | Notes + ----------------------|--------|------- + AREA | object | The area the server is sending. Convert to object with StringToObject() | + PLAYER_NEW_TO_MODULE | int | TRUE if it's the player's first time logging into the server since a restart | + +_______________________________________ + ## Journal Open/Close Events + - NWNX_ON_JOURNAL_OPEN_BEFORE + - NWNX_ON_JOURNAL_OPEN_AFTER + - NWNX_ON_JOURNAL_CLOSE_BEFORE + - NWNX_ON_JOURNAL_CLOSE_AFTER + + `OBJECT_SELF` = The player + + Event Data Tag | Type | Notes + ----------------------|--------|------- + +_______________________________________ + ## Input Emote Event + - NWNX_ON_INPUT_EMOTE_BEFORE + - NWNX_ON_INPUT_EMOTE_AFTER + + `OBJECT_SELF` = The creature using a radial menu emote + + Event Data Tag | Type | Notes + ----------------------|--------|------- + ANIMATION | int | An engine animation constant, convent to NWScript animation constant with NWNX_Consts_TranslateEngineAnimation() | + + @note Some emotes have a voiceline that will still play when the event is skipped. These voicelines can be skipped in the NWNX_ON_QUICKCHAT_* event. + +_______________________________________ +*/ +/* +const int NWNX_EVENTS_OBJECT_TYPE_CREATURE = 5; +const int NWNX_EVENTS_OBJECT_TYPE_ITEM = 6; +const int NWNX_EVENTS_OBJECT_TYPE_TRIGGER = 7; +const int NWNX_EVENTS_OBJECT_TYPE_PLACEABLE = 9; +const int NWNX_EVENTS_OBJECT_TYPE_WAYPOINT = 12; +const int NWNX_EVENTS_OBJECT_TYPE_ENCOUNTER = 13; +const int NWNX_EVENTS_OBJECT_TYPE_PORTAL = 15; +*/ + +/* +const int NWNX_EVENTS_TIMING_BAR_TRAP_FLAG = 1; +const int NWNX_EVENTS_TIMING_BAR_TRAP_RECOVER = 2; +const int NWNX_EVENTS_TIMING_BAR_TRAP_DISARM = 3; +const int NWNX_EVENTS_TIMING_BAR_TRAP_EXAMINE = 4; +const int NWNX_EVENTS_TIMING_BAR_TRAP_SET = 5; +const int NWNX_EVENTS_TIMING_BAR_REST = 6; +const int NWNX_EVENTS_TIMING_BAR_UNLOCK = 7; +const int NWNX_EVENTS_TIMING_BAR_LOCK = 8; +const int NWNX_EVENTS_TIMING_BAR_CUSTOM = 10; +*/ + +/// @brief Scripts can subscribe to events. +/// +/// Some events are dispatched via the NWNX plugin (see NWNX_EVENTS_EVENT_* constants). +/// Others can be signalled via script code via NWNX_Events_SignalEvent(). +/// @param evt The event name. +/// @param script The script to call when the event fires. +void NWNX_Events_SubscribeEvent(string evt, string script); + +/// @brief Unsubscribe a script from an event +/// @param evt The event name. +/// @param script The script. +void NWNX_Events_UnsubscribeEvent(string evt, string script); + +/// Pushes event data at the provided tag, which subscribers can access with GetEventData. +/// This should be called BEFORE SignalEvent. +void NWNX_Events_PushEventData(string tag, string data); + +/// Signals an event. This will dispatch a notification to all subscribed handlers. +/// Returns TRUE if anyone was subscribed to the event, FALSE otherwise. +/// @remark target will be available as OBJECT_SELF in subscribed event scripts. +int NWNX_Events_SignalEvent(string evt, object target); + +/// Retrieves the event data for the currently executing script. +/// THIS SHOULD ONLY BE CALLED FROM WITHIN AN EVENT HANDLER. +string NWNX_Events_GetEventData(string tag); + +/// Skips execution of the currently executing event. +/// If this is a NWNX event, that means that the base function call won't be called. +/// This won't impact any other subscribers, nor dispatch for before / after functions. +/// For example, if you are subscribing to NWNX_ON_EXAMINE_OBJECT_BEFORE, and you skip ... +/// - The other subscribers will still be called. +/// - The original function in the base game will be skipped. +/// - The matching after event (NWNX_ON_EXAMINE_OBJECT_AFTER) will also be executed. +/// +/// THIS SHOULD ONLY BE CALLED FROM WITHIN AN EVENT HANDLER. +/// ONLY WORKS WITH THE FOLLOWING EVENTS: +/// - Feat events +/// - Item events +/// - Healing events +/// - CombatMode events +/// - Party events +/// - Skill events +/// - Map events +/// - Listen/Spot Detection events +/// - Polymorph events +/// - DMAction events +/// - Client connect event +/// - Client Export Character event +/// - Spell events +/// - QuickChat events +/// - Barter event (START only) +/// - Trap events +/// - Sticky Player Name event +/// - Server Character Save Events +/// - Add/RemoveGold events +/// - PVP Attitude Change events +/// - {Enter|Exit}Stealth events +/// - Object {Lock|Unlock} events +/// - Quickbar Events +/// - Input Pause Event +/// - Input Emote Event +/// - Debug events +/// - Store events +/// - Disarm event +/// - {Enter|Exit}Detect events +/// - Faction events +void NWNX_Events_SkipEvent(); + +/// Set the return value of the event. +/// +/// THIS SHOULD ONLY BE CALLED FROM WITHIN AN EVENT HANDLER. +/// ONLY WORKS WITH THE FOLLOWING EVENTS: +/// - Use Item event - "1" or "0" to send feedback whether item use is allowed +/// - Validate Use Item Event - "1" or "0" to show the item is unusable (red) in the player inventory. +/// - Healer's Kit event +/// - Listen/Spot Detection events -> "1" or "0" +/// - OnClientConnectBefore -> Reason for disconnect if skipped +/// - Ammo Reload event -> Forced ammunition returned +/// - Trap events -> "1" or "0" +/// - Sticky Player Name event -> "1" or "0" +/// - Heal event -> Amount of HP to heal +/// - Has Feat event -> "1" or "0" +/// - Stealth event -> "1" to perform HiPS (without the feat), "0" to bypass HiPS +/// - Faction set reputation event -> The new reputation to apply instead. ("0" - "100") +void NWNX_Events_SetEventResult(string data); + +/// Returns the current event name +/// +/// Returns "" on error +string NWNX_Events_GetCurrentEvent(); + +/// Toggles DispatchListMode for sEvent+sScript +/// If enabled, sEvent for sScript will only be signalled if the target object is on its dispatch list. +void NWNX_Events_ToggleDispatchListMode(string sEvent, string sScript, int bEnable); + +/// Add oObject to the dispatch list for sEvent+sScript. +void NWNX_Events_AddObjectToDispatchList(string sEvent, string sScript, object oObject); + +/// Remove oObject from the dispatch list for sEvent+sScript. +void NWNX_Events_RemoveObjectFromDispatchList(string sEvent, string sScript, object oObject); + +/// @brief Toggle the whitelisting of IDs for sEvent. If whitelisting is enabled, the event will only fire for IDs that are +/// on its whitelist. +/// +/// ONLY WORKS WITH THE FOLLOWING EVENTS -> ID TYPES: +/// - NWNX_ON_CAST_SPELL -> SpellID +/// - NWNX_ON_HAS_FEAT -> FeatID (default enabled) +/// +/// @note This enables the whitelist for ALL scripts subscribed to sEvent. +/// @param sEvent The event name without _BEFORE / _AFTER. +/// @param bEnable TRUE to enable the whitelist, FALSE to disable +void NWNX_Events_ToggleIDWhitelist(string sEvent, int bEnable); + +/// @brief Add nID to the whitelist of sEvent. +/// @note See NWNX_Events_ToggleIDWhitelist for valid events and ID types. +/// @param sEvent The event name without _BEFORE / _AFTER. +/// @param nID The ID. +void NWNX_Events_AddIDToWhitelist(string sEvent, int nID); + +/// @brief Remove nID from the whitelist of sEvent. +/// @note See NWNX_Events_ToggleIDWhitelist for valid events and ID types. +/// @param sEvent The event name without _BEFORE / _AFTER. +/// @param nID The ID. +void NWNX_Events_RemoveIDFromWhitelist(string sEvent, int nID); + +/// @} + +void NWNX_Events_SubscribeEvent(string evt, string script) +{ + string sFunc = "SubscribeEvent"; + + NWNX_PushArgumentString(NWNX_Events, sFunc, script); + NWNX_PushArgumentString(NWNX_Events, sFunc, evt); + NWNX_CallFunction(NWNX_Events, sFunc); +} + +void NWNX_Events_UnsubscribeEvent(string evt, string script) +{ + string sFunc = "UnsubscribeEvent"; + + NWNX_PushArgumentString(NWNX_Events, sFunc, script); + NWNX_PushArgumentString(NWNX_Events, sFunc, evt); + NWNX_CallFunction(NWNX_Events, sFunc); +} + +void NWNX_Events_PushEventData(string tag, string data) +{ + string sFunc = "PushEventData"; + + NWNX_PushArgumentString(NWNX_Events, sFunc, data); + NWNX_PushArgumentString(NWNX_Events, sFunc, tag); + NWNX_CallFunction(NWNX_Events, sFunc); +} + +int NWNX_Events_SignalEvent(string evt, object target) +{ + string sFunc = "SignalEvent"; + + NWNX_PushArgumentObject(NWNX_Events, sFunc, target); + NWNX_PushArgumentString(NWNX_Events, sFunc, evt); + NWNX_CallFunction(NWNX_Events, sFunc); + return NWNX_GetReturnValueInt(NWNX_Events, sFunc); +} + +string NWNX_Events_GetEventData(string tag) +{ + string sFunc = "GetEventData"; + + NWNX_PushArgumentString(NWNX_Events, sFunc, tag); + NWNX_CallFunction(NWNX_Events, sFunc); + return NWNX_GetReturnValueString(NWNX_Events, sFunc); +} + +void NWNX_Events_SkipEvent() +{ + string sFunc = "SkipEvent"; + + NWNX_CallFunction(NWNX_Events, sFunc); +} + +void NWNX_Events_SetEventResult(string data) +{ + string sFunc = "SetEventResult"; + + NWNX_PushArgumentString(NWNX_Events, sFunc, data); + NWNX_CallFunction(NWNX_Events, sFunc); +} + +string NWNX_Events_GetCurrentEvent() +{ + string sFunc = "GetCurrentEvent"; + + NWNX_CallFunction(NWNX_Events, sFunc); + return NWNX_GetReturnValueString(NWNX_Events, sFunc); +} + +void NWNX_Events_ToggleDispatchListMode(string sEvent, string sScript, int bEnable) +{ + string sFunc = "ToggleDispatchListMode"; + + NWNX_PushArgumentInt(NWNX_Events, sFunc, bEnable); + NWNX_PushArgumentString(NWNX_Events, sFunc, sScript); + NWNX_PushArgumentString(NWNX_Events, sFunc, sEvent); + NWNX_CallFunction(NWNX_Events, sFunc); +} + +void NWNX_Events_AddObjectToDispatchList(string sEvent, string sScript, object oObject) +{ + string sFunc = "AddObjectToDispatchList"; + + NWNX_PushArgumentObject(NWNX_Events, sFunc, oObject); + NWNX_PushArgumentString(NWNX_Events, sFunc, sScript); + NWNX_PushArgumentString(NWNX_Events, sFunc, sEvent); + NWNX_CallFunction(NWNX_Events, sFunc); +} + +void NWNX_Events_RemoveObjectFromDispatchList(string sEvent, string sScript, object oObject) +{ + string sFunc = "RemoveObjectFromDispatchList"; + + NWNX_PushArgumentObject(NWNX_Events, sFunc, oObject); + NWNX_PushArgumentString(NWNX_Events, sFunc, sScript); + NWNX_PushArgumentString(NWNX_Events, sFunc, sEvent); + NWNX_CallFunction(NWNX_Events, sFunc); +} + +void NWNX_Events_ToggleIDWhitelist(string sEvent, int bEnable) +{ + string sFunc = "ToggleIDWhitelist"; + + NWNX_PushArgumentInt(NWNX_Events, sFunc, bEnable); + NWNX_PushArgumentString(NWNX_Events, sFunc, sEvent); + NWNX_CallFunction(NWNX_Events, sFunc); +} + +void NWNX_Events_AddIDToWhitelist(string sEvent, int nID) +{ + string sFunc = "AddIDToWhitelist"; + + NWNX_PushArgumentInt(NWNX_Events, sFunc, nID); + NWNX_PushArgumentString(NWNX_Events, sFunc, sEvent); + NWNX_CallFunction(NWNX_Events, sFunc); +} + +void NWNX_Events_RemoveIDFromWhitelist(string sEvent, int nID) +{ + string sFunc = "RemoveIDFromWhitelist"; + + NWNX_PushArgumentInt(NWNX_Events, sFunc, nID); + NWNX_PushArgumentString(NWNX_Events, sFunc, sEvent); + NWNX_CallFunction(NWNX_Events, sFunc); +} diff --git a/gamma_age_v2/nwnx_feat.nss b/gamma_age_v2/nwnx_feat.nss new file mode 100644 index 00000000..3ee797ce --- /dev/null +++ b/gamma_age_v2/nwnx_feat.nss @@ -0,0 +1,63 @@ +/// @addtogroup feat Feat +/// @brief Define feat bonuses/penalties +/// @{ +/// @file nwnx_feat.nss +#include "nwnx" + +const string NWNX_Feat = "NWNX_Feat"; ///< @private + +/// @name Feat Modifiers +/// @anchor feat_modifiers +/// +/// @{ +const int NWNX_FEAT_MODIFIER_INVALID = 0; +const int NWNX_FEAT_MODIFIER_AB = 1; +const int NWNX_FEAT_MODIFIER_ABILITY = 2; +const int NWNX_FEAT_MODIFIER_ABVSRACE = 3; +const int NWNX_FEAT_MODIFIER_AC = 4; +const int NWNX_FEAT_MODIFIER_ACVSRACE = 5; +const int NWNX_FEAT_MODIFIER_ARCANESPELLFAILURE = 6; +const int NWNX_FEAT_MODIFIER_CONCEALMENT = 7; +const int NWNX_FEAT_MODIFIER_DMGIMMUNITY = 8; +const int NWNX_FEAT_MODIFIER_DMGREDUCTION = 9; +const int NWNX_FEAT_MODIFIER_DMGRESIST = 10; +const int NWNX_FEAT_MODIFIER_IMMUNITY = 11; +const int NWNX_FEAT_MODIFIER_MOVEMENTSPEED = 12; +const int NWNX_FEAT_MODIFIER_REGENERATION = 13; +const int NWNX_FEAT_MODIFIER_SAVE = 14; +const int NWNX_FEAT_MODIFIER_SAVEVSRACE = 15; +const int NWNX_FEAT_MODIFIER_SAVEVSTYPE = 16; +const int NWNX_FEAT_MODIFIER_SAVEVSTYPERACE = 17; +const int NWNX_FEAT_MODIFIER_SPELLIMMUNITY = 18; +const int NWNX_FEAT_MODIFIER_SRCHARGEN = 19; +const int NWNX_FEAT_MODIFIER_SRINCLEVEL = 20; +const int NWNX_FEAT_MODIFIER_SPELLSAVEDC = 21; +const int NWNX_FEAT_MODIFIER_BONUSSPELL = 22; +const int NWNX_FEAT_MODIFIER_TRUESEEING = 23; +const int NWNX_FEAT_MODIFIER_SEEINVISIBLE = 24; +const int NWNX_FEAT_MODIFIER_ULTRAVISION = 25; +const int NWNX_FEAT_MODIFIER_HASTE = 26; +const int NWNX_FEAT_MODIFIER_VISUALEFFECT = 27; +///@} + +/// @brief Sets a feat modifier. +/// @param iFeat The Feat constant or value in feat.2da. +/// @param iMod The @ref feat_modifiers "feat modifier" to set. +/// @param iParam1, iParam2, iParam3, iParam4 The parameters for this feat modifier. +void NWNX_Feat_SetFeatModifier(int iFeat, int iMod, int iParam1 = 0xDEADBEEF, int iParam2 = 0xDEADBEEF, int iParam3 = 0xDEADBEEF, int iParam4 = 0xDEADBEEF); + +/// @} + +void NWNX_Feat_SetFeatModifier(int iFeat, int iMod, int iParam1 = 0xDEADBEEF, int iParam2 = 0xDEADBEEF, int iParam3 = 0xDEADBEEF, int iParam4 = 0xDEADBEEF) +{ + string sFunc = "SetFeatModifier"; + + NWNX_PushArgumentInt(NWNX_Feat, sFunc, iParam4); + NWNX_PushArgumentInt(NWNX_Feat, sFunc, iParam3); + NWNX_PushArgumentInt(NWNX_Feat, sFunc, iParam2); + NWNX_PushArgumentInt(NWNX_Feat, sFunc, iParam1); + NWNX_PushArgumentInt(NWNX_Feat, sFunc, iMod); + NWNX_PushArgumentInt(NWNX_Feat, sFunc, iFeat); + + NWNX_CallFunction(NWNX_Feat, sFunc); +} diff --git a/gamma_age_v2/nwnx_feedback.nss b/gamma_age_v2/nwnx_feedback.nss new file mode 100644 index 00000000..19aa0df9 --- /dev/null +++ b/gamma_age_v2/nwnx_feedback.nss @@ -0,0 +1,519 @@ +/// @addtogroup feedback Feedback +/// @brief Allows combatlog, feedback and journal updated messages to be hidden globally or per player. +/// @note +/// * If oPC == OBJECT_INVALID it will get/set the global state: +/// * TRUE = Message is globally hidden +/// * FALSE = Message is not globally hidden +/// * If oPC is a valid player it will get/set the personal state: +/// * TRUE = Message is hidden for oPC +/// * FALSE = Message is not hidden for oPC +/// * -1 = Personal state is not set for Message +/// @{ +/// @file nwnx_feedback.nss +#include "nwnx" + +const string NWNX_Feedback = "NWNX_Feedback"; ///< @private + +/// @name Combat Log Message Types +/// @anchor combat_log_msgs +/// @{ +const int NWNX_FEEDBACK_COMBATLOG_SIMPLE_ADJECTIVE = 1; +/* +const int NWNX_FEEDBACK_COMBATLOG_SIMPLE_DAMAGE = 2; +const int NWNX_FEEDBACK_COMBATLOG_COMPLEX_DAMAGE = 3; +const int NWNX_FEEDBACK_COMBATLOG_COMPLEX_DEATH = 4; +const int NWNX_FEEDBACK_COMBATLOG_COMPLEX_ATTACK = 5; +const int NWNX_FEEDBACK_COMBATLOG_SPECIAL_ATTACK = 6; +const int NWNX_FEEDBACK_COMBATLOG_SAVING_THROW = 7; +const int NWNX_FEEDBACK_COMBATLOG_CAST_SPELL = 8; +const int NWNX_FEEDBACK_COMBATLOG_USE_SKILL = 9; +const int NWNX_FEEDBACK_COMBATLOG_SPELL_RESISTANCE = 10; +const int NWNX_FEEDBACK_COMBATLOG_FEEDBACK = 11; // NOTE: This hides ALL feedback messages, to hide individual messages use NWNX_Feedback_SetFeedbackMessageHidden() +const int NWNX_FEEDBACK_COMBATLOG_COUNTERSPELL = 12; +const int NWNX_FEEDBACK_COMBATLOG_TOUCHATTACK = 13; +const int NWNX_FEEDBACK_COMBATLOG_INITIATIVE = 14; +const int NWNX_FEEDBACK_COMBATLOG_DISPEL_MAGIC = 15; +const int NWNX_FEEDBACK_COMBATLOG_POLYMORPH = 17; +const int NWNX_FEEDBACK_COMBATLOG_FEEDBACKSTRING = 18; +const int NWNX_FEEDBACK_COMBATLOG_VIBRATE = 19; +const int NWNX_FEEDBACK_COMBATLOG_UNLOCKACHIEVEMENT = 20; + +// 1 -> Simple_Adjective: : +// 2 -> Simple_Damage: damaged : +// 3 -> Complex_Damage: damages : +// 4 -> Complex_Death: killed +// 5 -> Complex_Attack: attacks : *hit* / *miss* / *parried* : ( + = ) +// 6 -> Special_Attack: attempts on : *success* / *failure* : ( + = ) +// 7 -> Saving_Throw: : : *success* / *failure* : ( + = ) +// 8 -> Cast_Spell: casts : Spellcraft check *failure* / *success* +// 9 -> Use_Skill: : : *success* / *failure* : ( + = vs ) +// 10 -> Spell_Resistance: : Spell Resistance : *success* / *failure* +// 11 -> Feedback: Reason skill/feat/ability failed. +// 12 -> Counterspel: casts : *spell countered by* : casting +// 13 -> TouchAttack: attempts on : *hit/miss/critical* : ( + = ) +// 14 -> Initiative: : Initiative Roll : : ( + = ) +// 15 -> Dispel_Magic: Dispel Magic : : , , ... +// 17 -> Unused, probably +// 18 -> Same as 11, maybe. Might be unused too +// 19 -> Unused +// 20 -> Unused +*/ + +/// @} + +/// @name Feedback Message Types +/// @anchor feedback_msgs +/// @{ + +const int NWNX_FEEDBACK_SKILL_CANT_USE = 0; +/* +/// Skill Feedback Messages +const int NWNX_FEEDBACK_SKILL_CANT_USE_TIMER = 1; +const int NWNX_FEEDBACK_SKILL_ANIMALEMPATHY_VALID_TARGETS = 2; +const int NWNX_FEEDBACK_SKILL_TAUNT_VALID_TARGETS = 3; +const int NWNX_FEEDBACK_SKILL_TAUNT_TARGET_IMMUNE = 223; +const int NWNX_FEEDBACK_SKILL_PICKPOCKET_STOLE_ITEM = 4; +const int NWNX_FEEDBACK_SKILL_PICKPOCKET_STOLE_GOLD = 5; +const int NWNX_FEEDBACK_SKILL_PICKPOCKET_ATTEMPTING_TO_STEAL = 46; +const int NWNX_FEEDBACK_SKILL_PICKPOCKET_ATTEMPT_DETECTED = 150; +const int NWNX_FEEDBACK_SKILL_PICKPOCKET_STOLE_ITEM_TARGET = 47; +const int NWNX_FEEDBACK_SKILL_PICKPOCKET_STOLE_GOLD_TARGET = 48; +const int NWNX_FEEDBACK_SKILL_PICKPOCKET_TARGET_BROKE = 57; +const int NWNX_FEEDBACK_SKILL_HEAL_TARGET_NOT_DISPSND = 55; +const int NWNX_FEEDBACK_SKILL_HEAL_VALID_TARGETS = 56; +const int NWNX_FEEDBACK_SKILL_STEALTH_IN_COMBAT = 60; + +/// Miscellaneous Targetting Messages +const int NWNX_FEEDBACK_TARGET_UNAWARE = 6; +const int NWNX_FEEDBACK_ACTION_NOT_POSSIBLE_STATUS = 7; +const int NWNX_FEEDBACK_ACTION_NOT_POSSIBLE_PVP = 187; +const int NWNX_FEEDBACK_ACTION_CANT_REACH_TARGET = 218; +const int NWNX_FEEDBACK_ACTION_NO_LOOT = 247; + +/// Miscellaneous Feedback Messages +const int NWNX_FEEDBACK_WEIGHT_TOO_ENCUMBERED_TO_RUN = 8; +const int NWNX_FEEDBACK_WEIGHT_TOO_ENCUMBERED_WALK_SLOW = 9; +const int NWNX_FEEDBACK_WEIGHT_TOO_ENCUMBERED_CANT_PICKUP = 10; +const int NWNX_FEEDBACK_STATS_LEVELUP = 11; +const int NWNX_FEEDBACK_INVENTORY_FULL = 12; +const int NWNX_FEEDBACK_CONTAINER_FULL = 212; +const int NWNX_FEEDBACK_TRAP_TRIGGERED = 82; +const int NWNX_FEEDBACK_DAMAGE_HEALED = 151; +const int NWNX_FEEDBACK_EXPERIENCE_GAINNED = 182; +const int NWNX_FEEDBACK_EXPERIENCE_LOST = 183; +const int NWNX_FEEDBACK_JOURNALUPDATED = 184; // Doesn't actually work, use: + // NWNX_Feedback_{Get/Set}JournalUpdatedMessageHidden() +const int NWNX_FEEDBACK_BARTER_CANCELLED = 185; + +/// Mode activation/deactivation Messages +const int NWNX_FEEDBACK_DETECT_MODE_ACTIVATED = 83; +const int NWNX_FEEDBACK_DETECT_MODE_DEACTIVATED = 84; +const int NWNX_FEEDBACK_STEALTH_MODE_ACTIVATED = 85; +const int NWNX_FEEDBACK_STEALTH_MODE_DEACTIVATED = 86; +const int NWNX_FEEDBACK_PARRY_MODE_ACTIVATED = 87; +const int NWNX_FEEDBACK_PARRY_MODE_DEACTIVATED = 88; +const int NWNX_FEEDBACK_POWER_ATTACK_MODE_ACTIVATED = 89; +const int NWNX_FEEDBACK_POWER_ATTACK_MODE_DEACTIVATED = 90; +const int NWNX_FEEDBACK_IMPROVED_POWER_ATTACK_MODE_ACTIVATED = 91; +const int NWNX_FEEDBACK_IMPROVED_POWER_ATTACK_MODE_DEACTIVATED = 92; +const int NWNX_FEEDBACK_RAPID_SHOT_MODE_ACTIVATED = 166; +const int NWNX_FEEDBACK_RAPID_SHOT_MODE_DEACTIVATED = 167; +const int NWNX_FEEDBACK_FLURRY_OF_BLOWS_MODE_ACTIVATED = 168; +const int NWNX_FEEDBACK_FLURRY_OF_BLOWS_MODE_DEACTIVATED = 169; +const int NWNX_FEEDBACK_EXPERTISE_MODE_ACTIVATED = 227; +const int NWNX_FEEDBACK_EXPERTISE_MODE_DEACTIVATED = 228; +const int NWNX_FEEDBACK_IMPROVED_EXPERTISE_MODE_ACTIVATED = 229; +const int NWNX_FEEDBACK_IMPROVED_EXPERTISE_MODE_DEACTIVATED = 230; +const int NWNX_FEEDBACK_DEFENSIVE_CAST_MODE_ACTIVATED = 231; +const int NWNX_FEEDBACK_DEFENSIVE_CAST_MODE_DEACTIVATED = 232; +const int NWNX_FEEDBACK_MODE_CANNOT_USE_WEAPONS = 188; +const int NWNX_FEEDBACK_DIRTY_FIGHTING_MODE_ACTIVATED = 237; +const int NWNX_FEEDBACK_DIRTY_FIGHTING_MODE_DEACTIVATED = 238; + +const int NWNX_FEEDBACK_DEFENSIVE_STANCE_MODE_ACTIVATED = 252; +const int NWNX_FEEDBACK_DEFENSIVE_STANCE_MODE_DEACTIVATED = 253; + +/// Equipping Feedback Messages +const int NWNX_FEEDBACK_EQUIP_SKILL_SPELL_MODIFIERS = 71; +const int NWNX_FEEDBACK_EQUIP_UNIDENTIFIED = 76; +const int NWNX_FEEDBACK_EQUIP_MONK_ABILITIES = 77; +const int NWNX_FEEDBACK_EQUIP_INSUFFICIENT_LEVEL = 98; +const int NWNX_FEEDBACK_EQUIP_PROFICIENCIES = 119; +const int NWNX_FEEDBACK_EQUIP_WEAPON_TOO_LARGE = 120; +const int NWNX_FEEDBACK_EQUIP_WEAPON_TOO_SMALL = 260; +const int NWNX_FEEDBACK_EQUIP_ONE_HANDED_WEAPON = 121; +const int NWNX_FEEDBACK_EQUIP_TWO_HANDED_WEAPON = 122; +const int NWNX_FEEDBACK_EQUIP_WEAPON_SWAPPED_OUT = 123; +const int NWNX_FEEDBACK_EQUIP_ONE_CHAIN_WEAPON = 124; +const int NWNX_FEEDBACK_EQUIP_NATURAL_AC_NO_STACK = 189; +const int NWNX_FEEDBACK_EQUIP_ARMOUR_AC_NO_STACK = 190; +const int NWNX_FEEDBACK_EQUIP_SHIELD_AC_NO_STACK = 191; +const int NWNX_FEEDBACK_EQUIP_DEFLECTION_AC_NO_STACK = 192; +const int NWNX_FEEDBACK_EQUIP_NO_ARMOR_COMBAT = 193; +const int NWNX_FEEDBACK_EQUIP_RANGER_ABILITIES = 200; +const int NWNX_FEEDBACK_EQUIP_ALIGNMENT = 207; +const int NWNX_FEEDBACK_EQUIP_CLASS = 208; +const int NWNX_FEEDBACK_EQUIP_RACE = 209; +const int NWNX_FEEDBACK_UNEQUIP_NO_ARMOR_COMBAT = 194; + +/// Action Feedback Messages +const int NWNX_FEEDBACK_OBJECT_LOCKED = 13; +const int NWNX_FEEDBACK_OBJECT_NOT_LOCKED = 14; +const int NWNX_FEEDBACK_OBJECT_SPECIAL_KEY = 15; +const int NWNX_FEEDBACK_OBJECT_USED_KEY = 16; +const int NWNX_FEEDBACK_REST_EXCITED_CANT_REST = 17; +const int NWNX_FEEDBACK_REST_BEGINNING_REST = 18; +const int NWNX_FEEDBACK_REST_FINISHED_REST = 19; +const int NWNX_FEEDBACK_REST_CANCEL_REST = 20; +const int NWNX_FEEDBACK_REST_NOT_ALLOWED_IN_AREA = 54; +const int NWNX_FEEDBACK_REST_NOT_ALLOWED_BY_POSSESSED_FAMILIAR = 153; +const int NWNX_FEEDBACK_REST_NOT_ALLOWED_ENEMIES = 186; +const int NWNX_FEEDBACK_REST_CANT_UNDER_THIS_EFFECT = 213; +const int NWNX_FEEDBACK_CAST_LOST_TARGET = 21; +const int NWNX_FEEDBACK_CAST_CANT_CAST = 22; +const int NWNX_FEEDBACK_CAST_CNTRSPELL_TARGET_LOST_TARGET = 52; +const int NWNX_FEEDBACK_CAST_ARCANE_SPELL_FAILURE = 61; +const int NWNX_FEEDBACK_CAST_CNTRSPELL_TARGET_ARCANE_SPELL_FAILURE = 118; +const int NWNX_FEEDBACK_CAST_ENTANGLE_CONCENTRATION_FAILURE = 65; +const int NWNX_FEEDBACK_CAST_CNTRSPELL_TARGET_ENTANGLE_CONCENTRATION_FAILURE = 147; +const int NWNX_FEEDBACK_CAST_SPELL_INTERRUPTED = 72; +const int NWNX_FEEDBACK_CAST_EFFECT_SPELL_FAILURE = 236; +const int NWNX_FEEDBACK_CAST_CANT_CAST_WHILE_POLYMORPHED = 107; +const int NWNX_FEEDBACK_CAST_USE_HANDS = 210; +const int NWNX_FEEDBACK_CAST_USE_MOUTH = 211; +const int NWNX_FEEDBACK_CAST_DEFCAST_CONCENTRATION_FAILURE = 233; +const int NWNX_FEEDBACK_CAST_DEFCAST_CONCENTRATION_SUCCESS = 240; +const int NWNX_FEEDBACK_USEITEM_CANT_USE = 23; +const int NWNX_FEEDBACK_CONVERSATION_TOOFAR = 58; +const int NWNX_FEEDBACK_CONVERSATION_BUSY = 59; +const int NWNX_FEEDBACK_CONVERSATION_IN_COMBAT = 152; +const int NWNX_FEEDBACK_CHARACTER_INTRANSIT = 74; +const int NWNX_FEEDBACK_CHARACTER_OUTTRANSIT = 75; +const int NWNX_FEEDBACK_USEITEM_NOT_EQUIPPED = 244; +const int NWNX_FEEDBACK_DROPITEM_CANT_DROP = 245; +const int NWNX_FEEDBACK_DROPITEM_CANT_GIVE = 246; +const int NWNX_FEEDBACK_CLIENT_SERVER_SPELL_MISMATCH = 259; + +/// Combat feedback messages +const int NWNX_FEEDBACK_COMBAT_RUNNING_OUT_OF_AMMO = 24; +const int NWNX_FEEDBACK_COMBAT_OUT_OF_AMMO = 25; +const int NWNX_FEEDBACK_COMBAT_HENCHMAN_OUT_OF_AMMO = 241; +const int NWNX_FEEDBACK_COMBAT_DAMAGE_IMMUNITY = 62; +const int NWNX_FEEDBACK_COMBAT_SPELL_IMMUNITY = 68; +const int NWNX_FEEDBACK_COMBAT_DAMAGE_RESISTANCE = 63; +const int NWNX_FEEDBACK_COMBAT_DAMAGE_RESISTANCE_REMAINING = 66; +const int NWNX_FEEDBACK_COMBAT_DAMAGE_REDUCTION = 64; +const int NWNX_FEEDBACK_COMBAT_DAMAGE_REDUCTION_REMAINING = 67; +const int NWNX_FEEDBACK_COMBAT_SPELL_LEVEL_ABSORPTION = 69; +const int NWNX_FEEDBACK_COMBAT_SPELL_LEVEL_ABSORPTION_REMAINING = 70; +const int NWNX_FEEDBACK_COMBAT_WEAPON_NOT_EFFECTIVE = 117; +const int NWNX_FEEDBACK_COMBAT_EPIC_DODGE_ATTACK_EVADED = 234; +const int NWNX_FEEDBACK_COMBAT_MASSIVE_DAMAGE = 235; +const int NWNX_FEEDBACK_COMBAT_SAVED_VS_MASSIVE_DAMAGE = 254; +const int NWNX_FEEDBACK_COMBAT_SAVED_VS_DEVASTATING_CRITICAL = 257; + +/// Feat Feedback Messages +const int NWNX_FEEDBACK_FEAT_SAP_VALID_TARGETS = 26; +const int NWNX_FEEDBACK_FEAT_KNOCKDOWN_VALID_TARGETS = 27; +const int NWNX_FEEDBACK_FEAT_IMPKNOCKDOWN_VALID_TARGETS = 28; +const int NWNX_FEEDBACK_FEAT_CALLED_SHOT_NO_LEGS = 29; +const int NWNX_FEEDBACK_FEAT_CALLED_SHOT_NO_ARMS = 30; +const int NWNX_FEEDBACK_FEAT_SMITE_GOOD_TARGET_NOT_GOOD = 239; +const int NWNX_FEEDBACK_FEAT_SMITE_EVIL_TARGET_NOT_EVIL = 53; +const int NWNX_FEEDBACK_FEAT_QUIVERING_PALM_HIGHER_LEVEL = 73; +const int NWNX_FEEDBACK_FEAT_KEEN_SENSE_DETECT = 195; +const int NWNX_FEEDBACK_FEAT_USE_UNARMED = 198; +const int NWNX_FEEDBACK_FEAT_USES = 199; +const int NWNX_FEEDBACK_FEAT_USE_WEAPON_OF_CHOICE = 243; + +/// Party Feedback Messages +const int NWNX_FEEDBACK_PARTY_NEW_LEADER = 31; +const int NWNX_FEEDBACK_PARTY_MEMBER_KICKED = 32; +const int NWNX_FEEDBACK_PARTY_KICKED_YOU = 33; +const int NWNX_FEEDBACK_PARTY_ALREADY_CONSIDERING = 34; +const int NWNX_FEEDBACK_PARTY_ALREADY_INVOLVED = 35; +const int NWNX_FEEDBACK_PARTY_SENT_INVITATION = 36; +const int NWNX_FEEDBACK_PARTY_RECEIVED_INVITATION = 37; +const int NWNX_FEEDBACK_PARTY_JOINED = 38; +const int NWNX_FEEDBACK_PARTY_INVITATION_IGNORED = 39; +const int NWNX_FEEDBACK_PARTY_YOU_IGNORED_INVITATION = 40; +const int NWNX_FEEDBACK_PARTY_INVITATION_REJECTED = 41; +const int NWNX_FEEDBACK_PARTY_YOU_REJECTED_INVITATION = 42; +const int NWNX_FEEDBACK_PARTY_INVITATION_EXPIRED = 43; +const int NWNX_FEEDBACK_PARTY_LEFT_PARTY = 44; +const int NWNX_FEEDBACK_PARTY_YOU_LEFT = 45; +const int NWNX_FEEDBACK_PARTY_HENCHMAN_LIMIT = 49; +const int NWNX_FEEDBACK_PARTY_CANNOT_LEAVE_THE_ONE_PARTY = 196; +const int NWNX_FEEDBACK_PARTY_CANNOT_KICK_FROM_THE_ONE_PARTY = 197; +const int NWNX_FEEDBACK_PARTY_YOU_INVITED_NON_SINGLETON = 202; +const int NWNX_FEEDBACK_PVP_REACTION_DISLIKESYOU = 203; + +/// Item Feedback Messages +const int NWNX_FEEDBACK_ITEM_RECEIVED = 50; +const int NWNX_FEEDBACK_ITEM_LOST = 51; +const int NWNX_FEEDBACK_ITEM_EJECTED = 96; +const int NWNX_FEEDBACK_ITEM_USE_UNIDENTIFIED = 97; +const int NWNX_FEEDBACK_ITEM_GOLD_GAINED = 148; +const int NWNX_FEEDBACK_ITEM_GOLD_LOST = 149; + +/// Spell Scroll Learning +const int NWNX_FEEDBACK_LEARN_SCROLL_NOT_SCROLL = 78; +const int NWNX_FEEDBACK_LEARN_SCROLL_CANT_LEARN_CLASS = 79; +const int NWNX_FEEDBACK_LEARN_SCROLL_CANT_LEARN_LEVEL = 80; +const int NWNX_FEEDBACK_LEARN_SCROLL_CANT_LEARN_ABILITY = 81; +const int NWNX_FEEDBACK_LEARN_SCROLL_CANT_LEARN_OPPOSITION = 219; +const int NWNX_FEEDBACK_LEARN_SCROLL_CANT_LEARN_POSSESS = 220; +const int NWNX_FEEDBACK_LEARN_SCROLL_CANT_LEARN_KNOWN = 221; +const int NWNX_FEEDBACK_LEARN_SCROLL_CANT_LEARN_DIVINE = 224; +const int NWNX_FEEDBACK_LEARN_SCROLL_SUCCESS = 222; + +/// Floaty text feedback +const int NWNX_FEEDBACK_FLOATY_TEXT_STRREF = 93; +const int NWNX_FEEDBACK_FLOATY_TEXT_STRING = 94; + +/// Store feedback +const int NWNX_FEEDBACK_CANNOT_SELL_PLOT_ITEM = 99; +const int NWNX_FEEDBACK_CANNOT_SELL_CONTAINER = 100; +const int NWNX_FEEDBACK_CANNOT_SELL_ITEM = 101; +const int NWNX_FEEDBACK_NOT_ENOUGH_GOLD = 102; +const int NWNX_FEEDBACK_TRANSACTION_SUCCEEDED = 103; +const int NWNX_FEEDBACK_PRICE_TOO_HIGH = 248; +const int NWNX_FEEDBACK_STORE_NOT_ENOUGH_GOLD = 249; +const int NWNX_FEEDBACK_CANNOT_SELL_STOLEN_ITEM = 250; +const int NWNX_FEEDBACK_CANNOT_SELL_RESTRICTED_ITEM = 251; + +/// Portal control feedback +const int NWNX_FEEDBACK_PORTAL_TIMEDOUT = 104; +const int NWNX_FEEDBACK_PORTAL_INVALID = 105; + +/// Chat feedback +const int NWNX_FEEDBACK_CHAT_TELL_PLAYER_NOT_FOUND = 106; + +/// Alignment Feedback +const int NWNX_FEEDBACK_ALIGNMENT_SHIFT = 108; +const int NWNX_FEEDBACK_ALIGNMENT_PARTY_SHIFT = 111; +const int NWNX_FEEDBACK_ALIGNMENT_CHANGE = 109; +const int NWNX_FEEDBACK_ALIGNMENT_RESTRICTED_BY_CLASS_LOST = 110; +const int NWNX_FEEDBACK_ALIGNMENT_RESTRICTED_BY_CLASS_GAIN = 115; +const int NWNX_FEEDBACK_ALIGNMENT_RESTRICTED_WARNING_LOSS = 116; +const int NWNX_FEEDBACK_ALIGNMENT_RESTRICTED_WARNING_GAIN = 112; +const int NWNX_FEEDBACK_ALIGNMENT_EPITOME_GAINED = 113; +const int NWNX_FEEDBACK_ALIGNMENT_EPITOME_LOST = 114; + +/// Immunity Feedback +const int NWNX_FEEDBACK_IMMUNITY_DISEASE = 125; +const int NWNX_FEEDBACK_IMMUNITY_CRITICAL_HIT = 126; +const int NWNX_FEEDBACK_IMMUNITY_DEATH_MAGIC = 127; +const int NWNX_FEEDBACK_IMMUNITY_FEAR = 128; +const int NWNX_FEEDBACK_IMMUNITY_KNOCKDOWN = 129; +const int NWNX_FEEDBACK_IMMUNITY_PARALYSIS = 130; +const int NWNX_FEEDBACK_IMMUNITY_NEGATIVE_LEVEL = 131; +const int NWNX_FEEDBACK_IMMUNITY_MIND_SPELLS = 132; +const int NWNX_FEEDBACK_IMMUNITY_POISON = 133; +const int NWNX_FEEDBACK_IMMUNITY_SNEAK_ATTACK = 134; +const int NWNX_FEEDBACK_IMMUNITY_SLEEP = 135; +const int NWNX_FEEDBACK_IMMUNITY_DAZE = 136; +const int NWNX_FEEDBACK_IMMUNITY_CONFUSION = 137; +const int NWNX_FEEDBACK_IMMUNITY_STUN = 138; +const int NWNX_FEEDBACK_IMMUNITY_BLINDNESS = 139; +const int NWNX_FEEDBACK_IMMUNITY_DEAFNESS = 140; +const int NWNX_FEEDBACK_IMMUNITY_CURSE = 141; +const int NWNX_FEEDBACK_IMMUNITY_CHARM = 142; +const int NWNX_FEEDBACK_IMMUNITY_DOMINATE = 143; +const int NWNX_FEEDBACK_IMMUNITY_ENTANGLE = 144; +const int NWNX_FEEDBACK_IMMUNITY_SILENCE = 145; +const int NWNX_FEEDBACK_IMMUNITY_SLOW = 146; + +/// Associates +const int NWNX_FEEDBACK_ASSOCIATE_SUMMONED = 154; +const int NWNX_FEEDBACK_ASSOCIATE_UNSUMMONING = 155; +const int NWNX_FEEDBACK_ASSOCIATE_UNSUMMONING_BECAUSE_REST = 156; +const int NWNX_FEEDBACK_ASSOCIATE_UNSUMMONING_BECAUSE_DIED = 157; +const int NWNX_FEEDBACK_ASSOCIATE_DOMINATED = 158; +const int NWNX_FEEDBACK_ASSOCIATE_DOMINATION_ENDED = 159; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_RECOVER_TRAP = 170; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_BARTER = 171; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_EQUIP = 172; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_REPOSITORY_MOVE = 173; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_PICK_UP = 174; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_DROP = 175; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_UNEQUIP = 176; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_REST = 177; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_DIALOGUE = 178; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_GIVE_ITEM = 179; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_TAKE_ITEM = 180; +const int NWNX_FEEDBACK_ASSOCIATE_POSSESSED_CANNOT_USE_CONTAINER = 181; + +/// Miscellaneous Feedback +const int NWNX_FEEDBACK_SCRIPT_ERROR = 160; +const int NWNX_FEEDBACK_ACTION_LIST_OVERFLOW = 161; +const int NWNX_FEEDBACK_EFFECT_LIST_OVERFLOW = 162; +const int NWNX_FEEDBACK_AI_UPDATE_TIME_OVERFLOW = 163; +const int NWNX_FEEDBACK_ACTION_LIST_WIPE_OVERFLOW = 164; +const int NWNX_FEEDBACK_EFFECT_LIST_WIPE_OVERFLOW = 165; +const int NWNX_FEEDBACK_SEND_MESSAGE_TO_PC = 204; +const int NWNX_FEEDBACK_SEND_MESSAGE_TO_PC_STRREF = 242; + +/// Misc GUI feedback +const int NWNX_FEEDBACK_GUI_ONLY_PARTY_LEADER_MAY_CLICK = 201; +const int NWNX_FEEDBACK_PAUSED = 205; +const int NWNX_FEEDBACK_UNPAUSED = 206; +const int NWNX_FEEDBACK_REST_YOU_MAY_NOT_AT_THIS_TIME = 214; +const int NWNX_FEEDBACK_GUI_CHAR_EXPORT_REQUEST_SENT = 215; +const int NWNX_FEEDBACK_GUI_CHAR_EXPORTED_SUCCESSFULLY = 216; +const int NWNX_FEEDBACK_GUI_ERROR_CHAR_NOT_EXPORTED = 217; +const int NWNX_FEEDBACK_CAMERA_BG = 255; +const int NWNX_FEEDBACK_CAMERA_EQ = 256; +const int NWNX_FEEDBACK_CAMERA_CHASECAM = 258; + +const int NWNX_FEEDBACK_SAVING = 225; +const int NWNX_FEEDBACK_SAVE_COMPLETE = 226; +*/ +/// @} + +/// @brief Gets if feedback message is hidden. +/// @param nMessage The message identifier from @ref feedback_msgs "Feedback Messages". +/// @param oPC The PC or OBJECT_INVALID for a global setting. +/// @return TRUE if the message is hidden. +int NWNX_Feedback_GetFeedbackMessageHidden(int nMessage, object oPC = OBJECT_INVALID); + +/// @brief Sets if feedback message is hidden. +/// @param nMessage The message identifier. +/// @param isHidden TRUE/FALSE +/// @param oPC The PC or OBJECT_INVALID for a global setting. +/// @note Personal state overrides the global state which means if a global state is set +/// to TRUE but the personal state is set to FALSE, the message will be shown to the PC. +void NWNX_Feedback_SetFeedbackMessageHidden(int nMessage, int isHidden, object oPC = OBJECT_INVALID); + +/// @brief Gets if combat log message is hidden. +/// @param nMessage The message identifier from @ref combat_log_msgs "Combat Log Messages". +/// @param oPC The PC or OBJECT_INVALID for a global setting. +/// @return TRUE if the message is hidden. +int NWNX_Feedback_GetCombatLogMessageHidden(int nMessage, object oPC = OBJECT_INVALID); + +/// @brief Sets if combat log message is hidden. +/// @param nMessage The message identifier. +/// @param isHidden TRUE/FALSE +/// @param oPC The PC or OBJECT_INVALID for a global setting. +/// @note Personal state overrides the global state which means if a global state is set +/// to TRUE but the personal state is set to FALSE, the message will be shown to the PC. +void NWNX_Feedback_SetCombatLogMessageHidden(int nMessage, int isHidden, object oPC = OBJECT_INVALID); + +/// @brief Gets if the journal update message is hidden. +/// @param oPC The PC or OBJECT_INVALID for a global setting. +/// @return TRUE if the message is hidden. +int NWNX_Feedback_GetJournalUpdatedMessageHidden(object oPC = OBJECT_INVALID); + +/// @brief Sets if journal update message is hidden. +/// @param isHidden TRUE/FALSE +/// @param oPC The PC or OBJECT_INVALID for a global setting. +/// @note Personal state overrides the global state which means if a global state is set +/// to TRUE but the personal state is set to FALSE, the message will be shown to the PC. +void NWNX_Feedback_SetJournalUpdatedMessageHidden(int isHidden, object oPC = OBJECT_INVALID); + +/// @brief Set whether to use a blacklist or whitelist mode for feedback messages +/// @param bWhitelist TRUE for all messages to be hidden by default, default FALSE. +void NWNX_Feedback_SetFeedbackMessageMode(int bWhitelist); + + +/// @brief Set whether to use a blacklist or whitelist mode for combat log messages +/// @param bWhitelist TRUE for all messages to be hidden by default, default FALSE. +/// @note If using Whitelist, be sure to whitelist NWNX_FEEDBACK_COMBATLOG_FEEDBACK for feedback messages to work. +void NWNX_Feedback_SetCombatLogMessageMode(int bWhitelist); + +/// @} + +int NWNX_Feedback_GetFeedbackMessageHidden(int nMessage, object oPC = OBJECT_INVALID) +{ + string sFunc = "GetMessageHidden"; + int nMessageType = 0; + + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessage); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessageType); + NWNX_PushArgumentObject(NWNX_Feedback, sFunc, oPC); + NWNX_CallFunction(NWNX_Feedback, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Feedback, sFunc); +} + +void NWNX_Feedback_SetFeedbackMessageHidden(int nMessage, int isHidden, object oPC = OBJECT_INVALID) +{ + string sFunc = "SetMessageHidden"; + int nMessageType = 0; + + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, isHidden); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessage); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessageType); + NWNX_PushArgumentObject(NWNX_Feedback, sFunc, oPC); + NWNX_CallFunction(NWNX_Feedback, sFunc); +} + +int NWNX_Feedback_GetCombatLogMessageHidden(int nMessage, object oPC = OBJECT_INVALID) +{ + string sFunc = "GetMessageHidden"; + int nMessageType = 1; + + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessage); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessageType); + NWNX_PushArgumentObject(NWNX_Feedback, sFunc, oPC); + NWNX_CallFunction(NWNX_Feedback, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Feedback, sFunc); +} + +void NWNX_Feedback_SetCombatLogMessageHidden(int nMessage, int isHidden, object oPC = OBJECT_INVALID) +{ + string sFunc = "SetMessageHidden"; + int nMessageType = 1; + + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, isHidden); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessage); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessageType); + NWNX_PushArgumentObject(NWNX_Feedback, sFunc, oPC); + NWNX_CallFunction(NWNX_Feedback, sFunc); +} + +int NWNX_Feedback_GetJournalUpdatedMessageHidden(object oPC = OBJECT_INVALID) +{ + string sFunc = "GetMessageHidden"; + int nMessageType = 2; + + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, 0); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessageType); + NWNX_PushArgumentObject(NWNX_Feedback, sFunc, oPC); + NWNX_CallFunction(NWNX_Feedback, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Feedback, sFunc); +} + +void NWNX_Feedback_SetJournalUpdatedMessageHidden(int isHidden, object oPC = OBJECT_INVALID) +{ + string sFunc = "SetMessageHidden"; + int nMessageType = 2; + + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, isHidden); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, 0); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessageType); + NWNX_PushArgumentObject(NWNX_Feedback, sFunc, oPC); + NWNX_CallFunction(NWNX_Feedback, sFunc); +} + +void NWNX_Feedback_SetFeedbackMessageMode(int bWhitelist) +{ + string sFunc = "SetFeedbackMode"; + int nMessageType = 0; + + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, bWhitelist); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessageType); + NWNX_CallFunction(NWNX_Feedback, sFunc); +} + +void NWNX_Feedback_SetCombatLogMessageMode(int bWhitelist) +{ + string sFunc = "SetFeedbackMode"; + int nMessageType = 1; + + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, bWhitelist); + NWNX_PushArgumentInt(NWNX_Feedback, sFunc, nMessageType); + NWNX_CallFunction(NWNX_Feedback, sFunc); +} diff --git a/gamma_age_v2/nwnx_item.nss b/gamma_age_v2/nwnx_item.nss new file mode 100644 index 00000000..ce83ef86 --- /dev/null +++ b/gamma_age_v2/nwnx_item.nss @@ -0,0 +1,207 @@ +/// @addtogroup item Item +/// @brief Functions exposing additional item properties. +/// @{ +/// @file nwnx_item.nss +#include "nwnx" + +const string NWNX_Item = "NWNX_Item"; ///< @private + +/// @brief Set an item's weight. +/// @note Will not persist through saving. +/// @param oItem The item object. +/// @param weight The weight, note this is in tenths of pounds. +void NWNX_Item_SetWeight(object oItem, int weight); + +/// @brief Set an item's base value in gold pieces. +/// @remark Total cost = base_value + additional_value. +/// @remark Equivalent to SetGoldPieceValue NWNX2 function. +/// @note Will not persist through saving. +/// @param oItem The item object. +/// @param gold The base gold value. +void NWNX_Item_SetBaseGoldPieceValue(object oItem, int gold); + +/// @brief Set an item's additional value in gold pieces. +/// @remark Total cost = base_value + additional_value. +/// @note Will persist through saving. +/// @param oItem The item object. +/// @param gold The additional gold value. +void NWNX_Item_SetAddGoldPieceValue(object oItem, int gold); + +/// @brief Get an item's base value in gold pieces. +/// @param oItem The item object. +/// @return The base gold piece value for the item. +int NWNX_Item_GetBaseGoldPieceValue(object oItem); + +/// @brief Get an item's additional value in gold pieces. +/// @param oItem The item object. +/// @return The additional gold piece value for the item. +int NWNX_Item_GetAddGoldPieceValue(object oItem); + +/// @brief Set an item's base item type. +/// @warning This will not be visible until the item is refreshed (e.g. drop and take the item, +/// or logging out and back in). +/// @param oItem The item object. +/// @param nBaseItem The new base item. +void NWNX_Item_SetBaseItemType(object oItem, int nBaseItem); + +/// @brief Make a single change to the appearance of an item. +/// @warning This will not be visible to PCs until the item is refreshed for them (e.g. by logging out and back in). +/// +/// Helmet models and simple items ignore nIndex. +/// ``` +/// nType nIndex nValue +/// ITEM_APPR_TYPE_SIMPLE_MODEL [Ignored] Model # +/// ITEM_APPR_TYPE_WEAPON_COLOR ITEM_APPR_WEAPON_COLOR_* 0-255 +/// ITEM_APPR_TYPE_WEAPON_MODEL ITEM_APPR_WEAPON_MODEL_* Model # +/// ITEM_APPR_TYPE_ARMOR_MODEL ITEM_APPR_ARMOR_MODEL_* Model # +/// ITEM_APPR_TYPE_ARMOR_COLOR ITEM_APPR_ARMOR_COLOR_* [0] 0-255 [1] +/// ``` +/// +/// [0] Where ITEM_APPR_TYPE_ARMOR_COLOR is specified, if per-part coloring is +/// desired, the following equation can be used for nIndex to achieve that: +/// +/// ITEM_APPR_ARMOR_NUM_COLORS + (ITEM_APPR_ARMOR_MODEL_ * ITEM_APPR_ARMOR_NUM_COLORS) + ITEM_APPR_ARMOR_COLOR_ +/// +/// For example, to change the CLOTH1 channel of the torso, nIndex would be: +/// +/// 6 + (7 * 6) + 2 = 50 +/// +/// [1] When specifying per-part coloring, the value 255 corresponds with the logical +/// function 'clear colour override', which clears the per-part override for that part. +void NWNX_Item_SetItemAppearance(object oItem, int nType, int nIndex, int nValue); + +/// @brief Return a string containing the entire appearance for an item. +/// @sa NWNX_Item_RestoreItemAppearance +/// @param oItem The item object. +/// @return A string representing the item's appearance. +string NWNX_Item_GetEntireItemAppearance(object oItem); + +/// @brief Restores an item's appearance using the value retrieved through NWNX_Item_GetEntireItemAppearance(). +/// @param oItem The item object. +/// @param sApp A string representing the item's appearance. +void NWNX_Item_RestoreItemAppearance(object oItem, string sApp); + +/// @brief Get an item's base armor class +/// @param oItem The item object. +/// @return The base armor class. +int NWNX_Item_GetBaseArmorClass(object oItem); + +/// @brief Get an item's minimum level required to equip. +/// @param oItem The item object. +/// @return The minimum level required to equip the item. +int NWNX_Item_GetMinEquipLevel(object oItem); + +/// @} + +void NWNX_Item_SetWeight(object oItem, int w) +{ + string sFunc = "SetWeight"; + + NWNX_PushArgumentInt(NWNX_Item, sFunc, w); + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); +} + +void NWNX_Item_SetBaseGoldPieceValue(object oItem, int g) +{ + string sFunc = "SetBaseGoldPieceValue"; + + NWNX_PushArgumentInt(NWNX_Item, sFunc, g); + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); +} + +void NWNX_Item_SetAddGoldPieceValue(object oItem, int g) +{ + string sFunc = "SetAddGoldPieceValue"; + + NWNX_PushArgumentInt(NWNX_Item, sFunc, g); + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); +} + +int NWNX_Item_GetBaseGoldPieceValue(object oItem) +{ + string sFunc = "GetBaseGoldPieceValue"; + + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); + return NWNX_GetReturnValueInt(NWNX_Item, sFunc); +} + +int NWNX_Item_GetAddGoldPieceValue(object oItem) +{ + string sFunc = "GetAddGoldPieceValue"; + + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); + return NWNX_GetReturnValueInt(NWNX_Item, sFunc); +} + +void NWNX_Item_SetBaseItemType(object oItem, int nBaseItem) +{ + string sFunc = "SetBaseItemType"; + + NWNX_PushArgumentInt(NWNX_Item, sFunc, nBaseItem); + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); +} + +void NWNX_Item_SetItemAppearance(object oItem, int nType, int nIndex, int nValue) +{ + string sFunc = "SetItemAppearance"; + + NWNX_PushArgumentInt(NWNX_Item, sFunc, nValue); + NWNX_PushArgumentInt(NWNX_Item, sFunc, nIndex); + NWNX_PushArgumentInt(NWNX_Item, sFunc, nType); + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); + +} + +string NWNX_Item_GetEntireItemAppearance(object oItem) +{ + string sFunc = "GetEntireItemAppearance"; + + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); + return NWNX_GetReturnValueString(NWNX_Item, sFunc); +} + +void NWNX_Item_RestoreItemAppearance(object oItem, string sApp) +{ + string sFunc = "RestoreItemAppearance"; + + NWNX_PushArgumentString(NWNX_Item, sFunc, sApp); + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); +} + +int NWNX_Item_GetBaseArmorClass(object oItem) +{ + string sFunc = "GetBaseArmorClass"; + + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); + return NWNX_GetReturnValueInt(NWNX_Item, sFunc); +} + +int NWNX_Item_GetMinEquipLevel(object oItem) +{ + string sFunc = "GetMinEquipLevel"; + + NWNX_PushArgumentObject(NWNX_Item, sFunc, oItem); + + NWNX_CallFunction(NWNX_Item, sFunc); + return NWNX_GetReturnValueInt(NWNX_Item, sFunc); +} diff --git a/gamma_age_v2/nwnx_itemprop.nss b/gamma_age_v2/nwnx_itemprop.nss new file mode 100644 index 00000000..5385c350 --- /dev/null +++ b/gamma_age_v2/nwnx_itemprop.nss @@ -0,0 +1,110 @@ +/// @addtogroup itemproperty ItemProperty +/// @brief Utility functions to manipulate the builtin itemproperty type. +/// @{ +/// @file nwnx_itemprop.nss +#include "nwnx" + +const string NWNX_ItemProperty = "NWNX_ItemProperty"; ///< @private + +/// @brief An unpacked itemproperty. +struct NWNX_IPUnpacked +{ + int nProperty; ///< @todo Describe + int nSubType; ///< @todo Describe + int nCostTable; ///< @todo Describe + int nCostTableValue; ///< @todo Describe + int nParam1; ///< @todo Describe + int nParam1Value; ///< @todo Describe + int nUsesPerDay; ///< @todo Describe + int nChanceToAppear; ///< @todo Describe + int bUsable; ///< @todo Describe + int nSpellId; ///< @todo Describe + object oCreator; ///< @todo Describe + string sTag; ///< @todo Describe +}; + +/// @brief Convert native itemproperty type to unpacked structure. +/// @param ip The itemproperty to convert. +/// @return A constructed NWNX_IPUnpacked. +struct NWNX_IPUnpacked NWNX_ItemProperty_UnpackIP(itemproperty ip); + +/// @brief Convert unpacked itemproperty structure to native type. +/// @param ip The NWNX_IPUnpacked structure to convert. +/// @return The itemproperty. +itemproperty NWNX_ItemProperty_PackIP(struct NWNX_IPUnpacked ip); + +/// @brief Gets the active item property at the index +/// @param oItem - the item with the property +/// @param nIndex - the index such as returned by some Item Events +/// @return A constructed NWNX_IPUnpacked, except for creator, and spell id. +struct NWNX_IPUnpacked NWNX_ItemProperty_GetActiveProperty(object oItem, int nIndex); + +/// @} + +struct NWNX_IPUnpacked NWNX_ItemProperty_UnpackIP(itemproperty ip) +{ + string sFunc = "UnpackIP"; + + NWNX_PushArgumentItemProperty(NWNX_ItemProperty, sFunc, ip); + NWNX_CallFunction(NWNX_ItemProperty, sFunc); + + struct NWNX_IPUnpacked n; + + n.nProperty = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nSubType = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nCostTable = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nCostTableValue = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nParam1 = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nParam1Value = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nUsesPerDay = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nChanceToAppear = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.bUsable = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nSpellId = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.oCreator = NWNX_GetReturnValueObject(NWNX_ItemProperty, sFunc); + n.sTag = NWNX_GetReturnValueString(NWNX_ItemProperty, sFunc); + + return n; +} +itemproperty NWNX_ItemProperty_PackIP(struct NWNX_IPUnpacked n) +{ + string sFunc = "PackIP"; + + NWNX_PushArgumentString(NWNX_ItemProperty, sFunc, n.sTag); + NWNX_PushArgumentObject(NWNX_ItemProperty, sFunc, n.oCreator); + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nSpellId); + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.bUsable); + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nChanceToAppear); + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nUsesPerDay); + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nParam1Value); + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nParam1); + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nCostTableValue); + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nCostTable); + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nSubType); + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nProperty); + + NWNX_CallFunction(NWNX_ItemProperty, sFunc); + return NWNX_GetReturnValueItemProperty(NWNX_ItemProperty, sFunc); +} + +struct NWNX_IPUnpacked NWNX_ItemProperty_GetActiveProperty(object oItem, int nIndex) +{ + string sFunc = "GetActiveProperty"; + NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, nIndex); + NWNX_PushArgumentObject(NWNX_ItemProperty, sFunc, oItem); + NWNX_CallFunction(NWNX_ItemProperty, sFunc); + + struct NWNX_IPUnpacked n; + + n.nProperty = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nSubType = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nCostTable = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nCostTableValue = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nParam1 = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nParam1Value = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nUsesPerDay = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.nChanceToAppear = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.bUsable = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc); + n.sTag = NWNX_GetReturnValueString(NWNX_ItemProperty, sFunc); + + return n; +} \ No newline at end of file diff --git a/gamma_age_v2/nwnx_lua.nss b/gamma_age_v2/nwnx_lua.nss new file mode 100644 index 00000000..70eb707e --- /dev/null +++ b/gamma_age_v2/nwnx_lua.nss @@ -0,0 +1,51 @@ +/// @addtogroup lua LUA +/// @brief Execute Lua code and generate events in NWScript +/// @{ +/// @file nwnx_lua.nss +#include "nwnx" + +const string NWNX_Lua = "NWNX_Lua"; ///< @private + +/// @brief Evaluate LUA code. +/// @param sCode The code to evaluate. +void NWNX_Lua_EvalVoid(string sCode); + +/// @brief Evaluate LUA code and return the output. +/// @param sCode The code to evaluate. +/// @return The result of the Lua code execution. +string NWNX_Lua_Eval(string sCode); + +/// @brief Generate events in NWScript to receive on the Lua side. +/// +/// Executes all the Lua functions registered to listen to that event in order of priority. +/// For details on events just look at the three *Event() functions in preload.lua. +void NWNX_Lua_RunEvent(string sEvent, object oObject, string sExtra=""); + +/// @} + +void NWNX_Lua_EvalVoid(string sCode) +{ + string sFunc = "EvalVoid"; + + NWNX_PushArgumentString(NWNX_Lua, sFunc, sCode); + NWNX_CallFunction(NWNX_Lua, sFunc); +} + +string NWNX_Lua_Eval(string sCode) +{ + string sFunc = "Eval"; + + NWNX_PushArgumentString(NWNX_Lua, sFunc, sCode); + NWNX_CallFunction(NWNX_Lua, sFunc); + return NWNX_GetReturnValueString(NWNX_Lua, sFunc); +} + +void NWNX_Lua_RunEvent(string sEvent, object oObject, string sExtra="") +{ + string sFunc = "RunEvent"; + + NWNX_PushArgumentString(NWNX_Lua, sFunc, sExtra); + NWNX_PushArgumentObject(NWNX_Lua, sFunc, oObject); + NWNX_PushArgumentString(NWNX_Lua, sFunc, sEvent); + NWNX_CallFunction(NWNX_Lua, sFunc); +} diff --git a/gamma_age_v2/nwnx_object.nss b/gamma_age_v2/nwnx_object.nss new file mode 100644 index 00000000..e6f4eeac --- /dev/null +++ b/gamma_age_v2/nwnx_object.nss @@ -0,0 +1,834 @@ +/// @addtogroup object Object +/// @brief Functions exposing additional object properties. +/// @{ +/// @file nwnx_object.nss +#include "nwnx" + +const string NWNX_Object = "NWNX_Object"; ///< @private + +/// @anchor object_localvar_types +/// @name Local Variable Types +/// @{ +const int NWNX_OBJECT_LOCALVAR_TYPE_UNKNOWN = 0; +const int NWNX_OBJECT_LOCALVAR_TYPE_INT = 1; +const int NWNX_OBJECT_LOCALVAR_TYPE_FLOAT = 2; +const int NWNX_OBJECT_LOCALVAR_TYPE_STRING = 3; +const int NWNX_OBJECT_LOCALVAR_TYPE_OBJECT = 4; +const int NWNX_OBJECT_LOCALVAR_TYPE_LOCATION = 5; +/// @} + +/// @anchor object_internal_types +/// @name Internal Object Types +/// @{ +const int NWNX_OBJECT_TYPE_INTERNAL_INVALID = -1; +const int NWNX_OBJECT_TYPE_INTERNAL_GUI = 1; +const int NWNX_OBJECT_TYPE_INTERNAL_TILE = 2; +const int NWNX_OBJECT_TYPE_INTERNAL_MODULE = 3; +const int NWNX_OBJECT_TYPE_INTERNAL_AREA = 4; +const int NWNX_OBJECT_TYPE_INTERNAL_CREATURE = 5; +const int NWNX_OBJECT_TYPE_INTERNAL_ITEM = 6; +const int NWNX_OBJECT_TYPE_INTERNAL_TRIGGER = 7; +const int NWNX_OBJECT_TYPE_INTERNAL_PROJECTILE = 8; +const int NWNX_OBJECT_TYPE_INTERNAL_PLACEABLE = 9; +const int NWNX_OBJECT_TYPE_INTERNAL_DOOR = 10; +const int NWNX_OBJECT_TYPE_INTERNAL_AREAOFEFFECT = 11; +const int NWNX_OBJECT_TYPE_INTERNAL_WAYPOINT = 12; +const int NWNX_OBJECT_TYPE_INTERNAL_ENCOUNTER = 13; +const int NWNX_OBJECT_TYPE_INTERNAL_STORE = 14; +const int NWNX_OBJECT_TYPE_INTERNAL_PORTAL = 15; +const int NWNX_OBJECT_TYPE_INTERNAL_SOUND = 16; +/// @} + +/// A local variable structure. +struct NWNX_Object_LocalVariable +{ + int type; ///< Int, String, Float, Object + string key; ///< Name of the variable +}; + +/// @brief Gets the count of all local variables. +/// @param obj The object. +/// @return The count. +int NWNX_Object_GetLocalVariableCount(object obj); + +/// @brief Gets the local variable at the provided index of the provided object. +/// @param obj The object. +/// @param index The index. +/// @note Index bounds: 0 >= index < NWNX_Object_GetLocalVariableCount(). +/// @note As of build 8193.14 local variables no longer have strict ordering. +/// this means that any change to the variables can result in drastically +/// different order when iterating. +/// @note As of build 8193.14, this function takes O(n) time, where n is the number +/// of locals on the object. Individual variable access with GetLocalXxx() +/// is now O(1) though. +/// @note As of build 8193.14, this function may return variable type UNKNOWN +/// if the value is the default (0/0.0/""/OBJECT_INVALID) for the type. +/// @return An NWNX_Object_LocalVariable struct. +struct NWNX_Object_LocalVariable NWNX_Object_GetLocalVariable(object obj, int index); + +/// @brief Convert an object id to the actual object. +/// @param id The object id. +/// @return An object from the provided object ID. +/// @remark This is the counterpart to ObjectToString. +/// @deprecated Use the basegame StringToObject() function. This will be removed in a future NWNX release. +object NWNX_Object_StringToObject(string id); + +/// @brief Set oObject's position. +/// @param oObject The object. +/// @param vPosition A vector position. +/// @param bUpdateSubareas If TRUE and oObject is a creature, any triggers/traps at vPosition will fire their events. +void NWNX_Object_SetPosition(object oObject, vector vPosition, int bUpdateSubareas = TRUE); + +/// @brief Get an object's hit points. +/// @note Unlike the native GetCurrentHitpoints function, this excludes temporary hitpoints. +/// @param obj The object. +/// @return The hit points. +int NWNX_Object_GetCurrentHitPoints(object obj); + +/// @brief Set an object's hit points. +/// @param obj The object. +/// @param hp The hit points. +void NWNX_Object_SetCurrentHitPoints(object obj, int hp); + +/// @brief Adjust an object's maximum hit points +/// @note Will not work on PCs. +/// @param obj The object. +/// @param hp The maximum hit points. +void NWNX_Object_SetMaxHitPoints(object obj, int hp); + +/// @brief Serialize a full object to a base64 string +/// @param obj The object. +/// @return A base64 string representation of the object. +/// @note includes locals, inventory, etc +string NWNX_Object_Serialize(object obj); + +/// @brief Deserialize the object. +/// @note The object will be created outside of the world and needs to be manually positioned at a location/inventory. +/// @param serialized The base64 string. +/// @return The object. +object NWNX_Object_Deserialize(string serialized); + +/// @brief Gets the dialog resref. +/// @param obj The object. +/// @return The name of the dialog resref. +string NWNX_Object_GetDialogResref(object obj); + +/// @brief Sets the dialog resref. +/// @param obj The object. +/// @param dialog The name of the dialog resref. +void NWNX_Object_SetDialogResref(object obj, string dialog); + +/// @brief Set oPlaceable's appearance. +/// @note Will not update for PCs until they re-enter the area. +/// @param oPlaceable The placeable. +/// @param nAppearance The appearance id. +void NWNX_Object_SetAppearance(object oPlaceable, int nAppearance); + +/// @brief Get oPlaceable's appearance. +/// @param oPlaceable The placeable. +/// @return The appearance id. +int NWNX_Object_GetAppearance(object oPlaceable); + +/// @brief Determine if an object has a visual effect. +/// @param obj The object. +/// @param nVFX The visual effect id. +/// @return TRUE if the object has the visual effect applied to it +int NWNX_Object_GetHasVisualEffect(object obj, int nVFX); + +/// @brief Check if an item can fit in an object's inventory. +/// @param obj The object with an inventory. +/// @param baseitem The base item id to check for a fit. +/// @return TRUE if an item of base item type can fit in object's inventory +int NWNX_Object_CheckFit(object obj, int baseitem); + +/// @brief Get an object's damage immunity. +/// @param obj The object. +/// @param damageType The damage type to check for immunity. Use DAMAGE_TYPE_* constants. +/// @return Damage immunity as a percentage. +int NWNX_Object_GetDamageImmunity(object obj, int damageType); + +/// @brief Add or move an object. +/// @param obj The object. +/// @param area The area. +/// @param pos The position. +void NWNX_Object_AddToArea(object obj, object area, vector pos); + +/// @brief Get placeable's static setting +/// @param obj The object. +/// @return TRUE if placeable is static. +int NWNX_Object_GetPlaceableIsStatic(object obj); + +/// @brief Set placeable as static or not. +/// @note Will not update for PCs until they re-enter the area. +/// @param obj The object. +/// @param isStatic TRUE/FALSE +void NWNX_Object_SetPlaceableIsStatic(object obj, int isStatic); + +/// @brief Gets if a door/placeable auto-removes the key after use. +/// @param obj The object. +/// @return TRUE/FALSE or -1 on error. +int NWNX_Object_GetAutoRemoveKey(object obj); + +/// @brief Sets if a door/placeable auto-removes the key after use. +/// @param obj The object. +/// @param bRemoveKey TRUE/FALSE +void NWNX_Object_SetAutoRemoveKey(object obj, int bRemoveKey); + +/// @brief Get the geometry of a trigger +/// @param oTrigger The trigger object. +/// @return A string of vertex positions. +string NWNX_Object_GetTriggerGeometry(object oTrigger); + +/// @brief Set the geometry of a trigger with a list of vertex positions +/// @param oTrigger The trigger object. +/// @param sGeometry Needs to be in the following format -> {x.x, y.y, z.z} or {x.x, y.y} +/// Example Geometry: "{1.0, 1.0, 0.0}{4.0, 1.0, 0.0}{4.0, 4.0, 0.0}{1.0, 4.0, 0.0}" +/// +/// @remark The Z position is optional and will be calculated dynamically based +/// on terrain height if it's not provided. +/// +/// @remark The minimum number of vertices is 3. +void NWNX_Object_SetTriggerGeometry(object oTrigger, string sGeometry); + +/// @brief Add an effect to an object that displays an icon and has no other effect. +/// @remark See effecticons.2da for a list of possible effect icons. +/// @param obj The object to apply the effect. +/// @param nIcon The icon id. +/// @param fDuration If specified the effect will be temporary and last this length in seconds, otherwise the effect +/// will be permanent. +void NWNX_Object_AddIconEffect(object obj, int nIcon, float fDuration=0.0); + +/// @brief Remove an icon effect from an object that was added by the NWNX_Object_AddIconEffect() function. +/// @param obj The object. +/// @param nIcon The icon id. +void NWNX_Object_RemoveIconEffect(object obj, int nIcon); + +/// @brief Export an object to the UserDirectory/nwnx folder. +/// @param sFileName The filename without extension, 16 or less characters. +/// @param oObject The object to export. Valid object types: Creature, Item, Placeable, Waypoint, Door, Store, Trigger +void NWNX_Object_Export(string sFileName, object oObject); + +/// @brief Get oObject's integer variable sVarName. +/// @param oObject The object to get the variable from. +/// @param sVarName The variable name. +/// @return The value or 0 on error. +int NWNX_Object_GetInt(object oObject, string sVarName); + +/// @brief Set oObject's integer variable sVarName to nValue. +/// @param oObject The object to set the variable on. +/// @param sVarName The variable name. +/// @param nValue The integer value to to set +/// @param bPersist When TRUE, the value is persisted to GFF, this means that it'll be saved in the .bic file of a player's character or when an object is serialized. +void NWNX_Object_SetInt(object oObject, string sVarName, int nValue, int bPersist); + +/// @brief Delete oObject's integer variable sVarName. +/// @param oObject The object to delete the variable from. +/// @param sVarName The variable name. +void NWNX_Object_DeleteInt(object oObject, string sVarName); + +/// @brief Get oObject's string variable sVarName. +/// @param oObject The object to get the variable from. +/// @param sVarName The variable name. +/// @return The value or "" on error. +string NWNX_Object_GetString(object oObject, string sVarName); + +/// @brief Set oObject's string variable sVarName to sValue. +/// @param oObject The object to set the variable on. +/// @param sVarName The variable name. +/// @param sValue The string value to to set +/// @param bPersist When TRUE, the value is persisted to GFF, this means that it'll be saved in the .bic file of a player's character or when an object is serialized. +void NWNX_Object_SetString(object oObject, string sVarName, string sValue, int bPersist); + +/// @brief Delete oObject's string variable sVarName. +/// @param oObject The object to delete the variable from. +/// @param sVarName The variable name. +void NWNX_Object_DeleteString(object oObject, string sVarName); + +/// @brief Get oObject's float variable sVarName. +/// @param oObject The object to get the variable from. +/// @param sVarName The variable name. +/// @return The value or 0.0f on error. +float NWNX_Object_GetFloat(object oObject, string sVarName); + +/// @brief Set oObject's float variable sVarName to fValue. +/// @param oObject The object to set the variable on. +/// @param sVarName The variable name. +/// @param fValue The float value to to set +/// @param bPersist When TRUE, the value is persisted to GFF, this means that it'll be saved in the .bic file of a player's character or when an object is serialized. +void NWNX_Object_SetFloat(object oObject, string sVarName, float fValue, int bPersist); + +/// @brief Delete oObject's persistent float variable sVarName. +/// @param oObject The object to delete the variable from. +/// @param sVarName The variable name. +void NWNX_Object_DeleteFloat(object oObject, string sVarName); + +/// @brief Delete any variables that match sRegex +/// @note It will only remove variables set by NWNX_Object_Set{Int|String|Float}() +/// @param oObject The object to delete the variables from. +/// @param sRegex The regular expression, for example .*Test.* removes every variable that has Test in it. +void NWNX_Object_DeleteVarRegex(object oObject, string sRegex); + +/// @brief Get if vPosition is inside oTrigger's geometry. +/// @note The Z value of vPosition is ignored. +/// @param oTrigger The trigger. +/// @param vPosition The position. +/// @return TRUE if vPosition is inside oTrigger's geometry. +int NWNX_Object_GetPositionIsInTrigger(object oTrigger, vector vPosition); + +/// @brief Gets the given object's internal type (NWNX_OBJECT_TYPE_INTERNAL_*) +/// @param oObject The object. +/// @return The object's type (NWNX_OBJECT_TYPE_INTERNAL_*) +int NWNX_Object_GetInternalObjectType(object oObject); + +/// @brief Have oObject acquire oItem. +/// @note Useful to give deserialized items to an object, may not work if oItem is already possessed by an object. +/// @param oObject The object receiving oItem, must be a Creature, Placeable, Store or Item +/// @param oItem The item. +/// @return TRUE on success. +int NWNX_Object_AcquireItem(object oObject, object oItem); + +/// @brief Cause oObject to face fDirection. +/// @note This function is almost identical to SetFacing(), the only difference being that it allows you to specify +/// the target object without the use of AssignCommand(). This is useful when you want to change the facing of an object +/// in an ExecuteScriptChunk() call where AssignCommand() does not work. +/// @param oObject The object to change its facing of +/// @param fDirection The direction the object should face +void NWNX_Object_SetFacing(object oObject, float fDirection); + +/// @brief Clear all spell effects oObject has applied to others. +/// @param oObject The object that applied the spell effects. +void NWNX_Object_ClearSpellEffectsOnOthers(object oObject); + +/// @brief Peek at the UUID of oObject without assigning one if it does not have one +/// @param oObject The object +/// @return The UUID or "" when the object does not have or cannot have an UUID +string NWNX_Object_PeekUUID(object oObject); + +/// @brief Get if oDoor has a visible model. +/// @param oDoor The door +/// @return TRUE if oDoor has a visible model +int NWNX_Object_GetDoorHasVisibleModel(object oDoor); + +/// @brief Get if oObject is destroyable. +/// @param oObject The object +/// @return TRUE if oObject is destroyable. +int NWNX_Object_GetIsDestroyable(object oObject); + +/// @brief Checks for specific spell immunity. Should only be called in spellscripts +/// @param oDefender The object defending against the spell. +/// @param oCaster The object casting the spell. +/// @return -1 if defender has no immunity, 2 if the defender is immune +int NWNX_Object_DoSpellImmunity(object oDefender, object oCaster); + +/// @brief Checks for spell school/level immunities and mantles. Should only be called in spellscripts +/// @param oDefender The object defending against the spell. +/// @param oCaster The object casting the spell. +/// @return -1 defender no immunity. 2 if immune. 3 if immune, but the immunity has a limit (example: mantles) +int NWNX_Object_DoSpellLevelAbsorption(object oDefender, object oCaster); + +/// @brief Sets if a placeable has an inventory. +/// @param obj The placeable. +/// @param bHasInventory TRUE/FALSE +/// @note Only works on placeables. +void NWNX_Object_SetHasInventory(object obj, int bHasInventory); + +/// @brief Get the current animation of oObject +/// @note The returned value will be an engine animation constant, not a NWScript ANIMATION_ constant. +/// See: https://github.com/nwnxee/unified/blob/master/NWNXLib/API/Constants/Animation.hpp +/// @param oObject The object +/// @return -1 on error or the engine animation constant +int NWNX_Object_GetCurrentAnimation(object oObject); + +/// @} + +int NWNX_Object_GetLocalVariableCount(object obj) +{ + string sFunc = "GetLocalVariableCount"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +struct NWNX_Object_LocalVariable NWNX_Object_GetLocalVariable(object obj, int index) +{ + string sFunc = "GetLocalVariable"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, index); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + NWNX_CallFunction(NWNX_Object, sFunc); + + struct NWNX_Object_LocalVariable var; + var.key = NWNX_GetReturnValueString(NWNX_Object, sFunc); + var.type = NWNX_GetReturnValueInt(NWNX_Object, sFunc); + return var; +} + +object NWNX_Object_StringToObject(string id) +{ + WriteTimestampedLogEntry("WARNING: NWNX_Object_StringToObject() is deprecated, please use the basegame's StringToObject()"); + + return StringToObject(id); +} + +void NWNX_Object_SetPosition(object oObject, vector vPosition, int bUpdateSubareas = TRUE) +{ + string sFunc = "SetPosition"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, bUpdateSubareas); + NWNX_PushArgumentFloat(NWNX_Object, sFunc, vPosition.x); + NWNX_PushArgumentFloat(NWNX_Object, sFunc, vPosition.y); + NWNX_PushArgumentFloat(NWNX_Object, sFunc, vPosition.z); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + + NWNX_CallFunction(NWNX_Object, sFunc); +} + +int NWNX_Object_GetCurrentHitPoints(object creature) +{ + string sFunc = "GetCurrentHitPoints"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, creature); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +void NWNX_Object_SetCurrentHitPoints(object creature, int hp) +{ + string sFunc = "SetCurrentHitPoints"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, hp); + NWNX_PushArgumentObject(NWNX_Object, sFunc, creature); + + NWNX_CallFunction(NWNX_Object, sFunc); +} + +void NWNX_Object_SetMaxHitPoints(object creature, int hp) +{ + string sFunc = "SetMaxHitPoints"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, hp); + NWNX_PushArgumentObject(NWNX_Object, sFunc, creature); + + NWNX_CallFunction(NWNX_Object, sFunc); +} + +string NWNX_Object_Serialize(object obj) +{ + string sFunc = "Serialize"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + + NWNX_CallFunction(NWNX_Object, sFunc); + return NWNX_GetReturnValueString(NWNX_Object, sFunc); +} + +object NWNX_Object_Deserialize(string serialized) +{ + string sFunc = "Deserialize"; + + NWNX_PushArgumentString(NWNX_Object, sFunc, serialized); + + NWNX_CallFunction(NWNX_Object, sFunc); + return NWNX_GetReturnValueObject(NWNX_Object, sFunc); +} + +string NWNX_Object_GetDialogResref(object obj) +{ + string sFunc = "GetDialogResref"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + + NWNX_CallFunction(NWNX_Object, sFunc); + return NWNX_GetReturnValueString(NWNX_Object, sFunc); +} + +void NWNX_Object_SetDialogResref(object obj, string dialog) +{ + string sFunc = "SetDialogResref"; + + NWNX_PushArgumentString(NWNX_Object, sFunc, dialog); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + + NWNX_CallFunction(NWNX_Object, sFunc); +} + +void NWNX_Object_SetAppearance(object oPlaceable, int nAppearance) +{ + string sFunc = "SetAppearance"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, nAppearance); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oPlaceable); + + NWNX_CallFunction(NWNX_Object, sFunc); +} + +int NWNX_Object_GetAppearance(object oPlaceable) +{ + string sFunc = "GetAppearance"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, oPlaceable); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +int NWNX_Object_GetHasVisualEffect(object obj, int nVFX) +{ + string sFunc = "GetHasVisualEffect"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, nVFX); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +int NWNX_Object_CheckFit(object obj, int baseitem) +{ + string sFunc = "CheckFit"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, baseitem); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +int NWNX_Object_GetDamageImmunity(object obj, int damageType) +{ + string sFunc = "GetDamageImmunity"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, damageType); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +void NWNX_Object_AddToArea(object obj, object area, vector pos) +{ + string sFunc = "AddToArea"; + + NWNX_PushArgumentFloat(NWNX_Object, sFunc, pos.z); + NWNX_PushArgumentFloat(NWNX_Object, sFunc, pos.y); + NWNX_PushArgumentFloat(NWNX_Object, sFunc, pos.x); + NWNX_PushArgumentObject(NWNX_Object, sFunc, area); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +int NWNX_Object_GetPlaceableIsStatic(object obj) +{ + string sFunc = "GetPlaceableIsStatic"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + + NWNX_CallFunction(NWNX_Object, sFunc); + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +void NWNX_Object_SetPlaceableIsStatic(object obj, int isStatic) +{ + string sFunc = "SetPlaceableIsStatic"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, isStatic); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + + NWNX_CallFunction(NWNX_Object, sFunc); +} + +int NWNX_Object_GetAutoRemoveKey(object obj) +{ + string sFunc = "GetAutoRemoveKey"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +void NWNX_Object_SetAutoRemoveKey(object obj, int bRemoveKey) +{ + string sFunc = "SetAutoRemoveKey"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, bRemoveKey); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + + NWNX_CallFunction(NWNX_Object, sFunc); +} + +string NWNX_Object_GetTriggerGeometry(object oTrigger) +{ + string sFunc = "GetTriggerGeometry"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, oTrigger); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueString(NWNX_Object, sFunc); +} + +void NWNX_Object_SetTriggerGeometry(object oTrigger, string sGeometry) +{ + string sFunc = "SetTriggerGeometry"; + + NWNX_PushArgumentString(NWNX_Object, sFunc, sGeometry); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oTrigger); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +void NWNX_Object_AddIconEffect(object obj, int nIcon, float fDuration=0.0) +{ + string sFunc = "AddIconEffect"; + + NWNX_PushArgumentFloat(NWNX_Object, sFunc, fDuration); + NWNX_PushArgumentInt(NWNX_Object, sFunc, nIcon); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +void NWNX_Object_RemoveIconEffect(object obj, int nIcon) +{ + string sFunc = "RemoveIconEffect"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, nIcon); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +void NWNX_Object_Export(string sFileName, object oObject) +{ + string sFunc = "Export"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_PushArgumentString(NWNX_Object, sFunc, sFileName); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +int NWNX_Object_GetInt(object oObject, string sVarName) +{ + string sFunc = "GetInt"; + + NWNX_PushArgumentString(NWNX_Object, sFunc, sVarName); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +void NWNX_Object_SetInt(object oObject, string sVarName, int nValue, int bPersist) +{ + string sFunc = "SetInt"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, bPersist); + NWNX_PushArgumentInt(NWNX_Object, sFunc, nValue); + NWNX_PushArgumentString(NWNX_Object, sFunc, sVarName); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +void NWNX_Object_DeleteInt(object oObject, string sVarName) +{ + string sFunc = "DeleteInt"; + + NWNX_PushArgumentString(NWNX_Object, sFunc, sVarName); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +string NWNX_Object_GetString(object oObject, string sVarName) +{ + string sFunc = "GetString"; + + NWNX_PushArgumentString(NWNX_Object, sFunc, sVarName); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueString(NWNX_Object, sFunc); +} + +void NWNX_Object_SetString(object oObject, string sVarName, string sValue, int bPersist) +{ + string sFunc = "SetString"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, bPersist); + NWNX_PushArgumentString(NWNX_Object, sFunc, sValue); + NWNX_PushArgumentString(NWNX_Object, sFunc, sVarName); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +void NWNX_Object_DeleteString(object oObject, string sVarName) +{ + string sFunc = "DeleteString"; + + NWNX_PushArgumentString(NWNX_Object, sFunc, sVarName); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +float NWNX_Object_GetFloat(object oObject, string sVarName) +{ + string sFunc = "GetFloat"; + + NWNX_PushArgumentString(NWNX_Object, sFunc, sVarName); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueFloat(NWNX_Object, sFunc); +} + +void NWNX_Object_SetFloat(object oObject, string sVarName, float fValue, int bPersist) +{ + string sFunc = "SetFloat"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, bPersist); + NWNX_PushArgumentFloat(NWNX_Object, sFunc, fValue); + NWNX_PushArgumentString(NWNX_Object, sFunc, sVarName); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +void NWNX_Object_DeleteFloat(object oObject, string sVarName) +{ + string sFunc = "DeleteFloat"; + + NWNX_PushArgumentString(NWNX_Object, sFunc, sVarName); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +void NWNX_Object_DeleteVarRegex(object oObject, string sRegex) +{ + string sFunc = "DeleteVarRegex"; + + NWNX_PushArgumentString(NWNX_Object, sFunc, sRegex); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +int NWNX_Object_GetPositionIsInTrigger(object oTrigger, vector vPosition) +{ + string sFunc = "GetPositionIsInTrigger"; + + NWNX_PushArgumentFloat(NWNX_Object, sFunc, vPosition.z); + NWNX_PushArgumentFloat(NWNX_Object, sFunc, vPosition.y); + NWNX_PushArgumentFloat(NWNX_Object, sFunc, vPosition.x); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oTrigger); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +int NWNX_Object_GetInternalObjectType(object oObject) +{ + string sFunc = "GetInternalObjectType"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +int NWNX_Object_AcquireItem(object oObject, object oItem) +{ + string sFunc = "AcquireItem"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, oItem); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +void NWNX_Object_SetFacing(object oObject, float fDirection) +{ + string sFunc = "SetFacing"; + + NWNX_PushArgumentFloat(NWNX_Object, sFunc, fDirection); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +void NWNX_Object_ClearSpellEffectsOnOthers(object oObject) +{ + string sFunc = "ClearSpellEffectsOnOthers"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); +} + +string NWNX_Object_PeekUUID(object oObject) +{ + string sFunc = "PeekUUID"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueString(NWNX_Object, sFunc); +} + +int NWNX_Object_GetDoorHasVisibleModel(object oDoor) +{ + string sFunc = "GetDoorHasVisibleModel"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, oDoor); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +int NWNX_Object_GetIsDestroyable(object oObject) +{ + string sFunc = "GetIsDestroyable"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} + +int NWNX_Object_DoSpellImmunity(object oDefender, object oCaster) +{ + string sFunc = "DoSpellImmunity"; + NWNX_PushArgumentObject(NWNX_Object, sFunc, oCaster); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oDefender); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object,sFunc); +} + +int NWNX_Object_DoSpellLevelAbsorption(object oDefender, object oCaster) +{ + string sFunc = "DoSpellLevelAbsorption"; + NWNX_PushArgumentObject(NWNX_Object, sFunc, oCaster); + NWNX_PushArgumentObject(NWNX_Object, sFunc, oDefender); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object,sFunc); +} + +void NWNX_Object_SetHasInventory(object obj, int bHasInventory) +{ + string sFunc = "SetHasInventory"; + + NWNX_PushArgumentInt(NWNX_Object, sFunc, bHasInventory); + NWNX_PushArgumentObject(NWNX_Object, sFunc, obj); + + NWNX_CallFunction(NWNX_Object, sFunc); +} + +int NWNX_Object_GetCurrentAnimation(object oObject) +{ + string sFunc = "GetCurrentAnimation"; + + NWNX_PushArgumentObject(NWNX_Object, sFunc, oObject); + NWNX_CallFunction(NWNX_Object, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Object, sFunc); +} diff --git a/gamma_age_v2/nwnx_player.nss b/gamma_age_v2/nwnx_player.nss new file mode 100644 index 00000000..60c4a1c1 --- /dev/null +++ b/gamma_age_v2/nwnx_player.nss @@ -0,0 +1,963 @@ +/// @addtogroup player +/// @brief Functions exposing additional player properties. +/// @{ +/// @file nwnx_player.nss +#include "nwnx" + +const string NWNX_Player = "NWNX_Player"; ///< @private + +/// @brief A quickbar slot. +struct NWNX_Player_QuickBarSlot +{ + object oItem; ///< @todo Describe + object oSecondaryItem; ///< @todo Describe + int nObjectType; ///< @todo Describe + int nMultiClass; ///< @todo Describe + string sResRef; ///< @todo Describe + string sCommandLabel; ///< @todo Describe + string sCommandLine; ///< @todo Describe + string sToolTip; ///< @todo Describe + int nINTParam1; ///< @todo Describe + int nMetaType; ///< @todo Describe + int nDomainLevel; ///< @todo Describe + int nAssociateType; ///< @todo Describe + object oAssociate; ///< @todo Describe +}; + +/// @brief A journal entry. +struct NWNX_Player_JournalEntry +{ + string sName;///< @todo Describe + string sText;///< @todo Describe + string sTag;///< @todo Describe + int nState;///< @todo Describe + int nPriority;///< @todo Describe + int nQuestCompleted;///< @todo Describe + int nQuestDisplayed;///< @todo Describe + int nUpdated;///< @todo Describe + int nCalendarDay;///< @todo Describe + int nTimeOfDay;///< @todo Describe +}; + + +/// @name Timing Bar Types +/// @anchor timing_bar_types +/// +/// The various types of timing bars. +/// @{ +const int NWNX_PLAYER_TIMING_BAR_TRAP_FLAG = 1; +const int NWNX_PLAYER_TIMING_BAR_TRAP_RECOVER = 2; +const int NWNX_PLAYER_TIMING_BAR_TRAP_DISARM = 3; +const int NWNX_PLAYER_TIMING_BAR_TRAP_EXAMINE = 4; +const int NWNX_PLAYER_TIMING_BAR_TRAP_SET = 5; +const int NWNX_PLAYER_TIMING_BAR_REST = 6; +const int NWNX_PLAYER_TIMING_BAR_UNLOCK = 7; +const int NWNX_PLAYER_TIMING_BAR_LOCK = 8; +const int NWNX_PLAYER_TIMING_BAR_CUSTOM = 10; +/// @} + +/// @name Platform IDs +/// @anchor platform_ids +/// @{ +const int NWNX_PLAYER_PLATFORM_INVALID = 0; +const int NWNX_PLAYER_PLATFORM_WINDOWS_X86 = 1; +const int NWNX_PLAYER_PLATFORM_WINDOWS_X64 = 2; +const int NWNX_PLAYER_PLATFORM_LINUX_X86 = 10; +const int NWNX_PLAYER_PLATFORM_LINUX_X64 = 11; +const int NWNX_PLAYER_PLATFORM_LINUX_ARM32 = 12; +const int NWNX_PLAYER_PLATFORM_LINUX_ARM64 = 13; +const int NWNX_PLAYER_PLATFORM_MAC_X86 = 20; +const int NWNX_PLAYER_PLATFORM_MAC_X64 = 21; +const int NWNX_PLAYER_PLATFORM_IOS = 30; +const int NWNX_PLAYER_PLATFORM_ANDROID_ARM32 = 40; +const int NWNX_PLAYER_PLATFORM_ANDROID_ARM64 = 41; +const int NWNX_PLAYER_PLATFORM_ANDROID_X64 = 42; +const int NWNX_PLAYER_PLATFORM_NINTENDO_SWITCH = 50; +const int NWNX_PLAYER_PLATFORM_MICROSOFT_XBOXONE = 60; +const int NWNX_PLAYER_PLATFORM_SONY_PS4 = 70; +/// @} + +/// @brief Force display placeable examine window for player +/// @note If used on a placeable in a different area than the player, the portait will not be shown. +/// @param player The player object. +/// @param placeable The placeable object. +void NWNX_Player_ForcePlaceableExamineWindow(object player, object placeable); + +/// @brief Force opens the target object's inventory for the player. +/// @note +/// * If the placeable is in a different area than the player, the portrait will not be shown +/// * The placeable's open/close animations will be played +/// * Clicking the 'close' button will cause the player to walk to the placeable If the placeable is in a +/// different area, the player will just walk to the edge of the current area and stop. +/// This action can be cancelled manually. +/// * Walking will close the placeable automatically. +/// @param player The player object. +/// @param placeable The placeable object. +void NWNX_Player_ForcePlaceableInventoryWindow(object player, object placeable); + +/// @brief Starts displaying a timing bar. +/// @param player The player object. +/// @param seconds The length of time the timing bar will complete. +/// @param script The script to run at the bar's completion. +/// @param type The @ref timing_bar_types "Timing Bar Type" +/// @remark Only one timing bar can be ran at the same time. +void NWNX_Player_StartGuiTimingBar(object player, float seconds, string script = "", int type = NWNX_PLAYER_TIMING_BAR_CUSTOM); + +/// @brief Stop displaying a timing bar. +/// @param player The player object. +/// @param script The script to run when stopped. +void NWNX_Player_StopGuiTimingBar(object player, string script = ""); + +/// @brief Sets whether the player should always walk when given movement commands. +/// @param player The player object. +/// @param bWalk TRUE to set the player to always walk. +/// @remark Clicking on the ground or using WASD will trigger walking instead of running. +void NWNX_Player_SetAlwaysWalk(object player, int bWalk=TRUE); + +/// @brief Gets the player's quickbar slot info +/// @param player The player object. +/// @param slot Slot ID 0-35 +/// @return An NWNX_Player_QuickBarSlot struct. +struct NWNX_Player_QuickBarSlot NWNX_Player_GetQuickBarSlot(object player, int slot); + +/// @brief Sets the player's quickbar slot info +/// @param player The player object. +/// @param slot Slot ID 0-35 +/// @param qbs An NWNX_Player_QuickBarSlot struct. +void NWNX_Player_SetQuickBarSlot(object player, int slot, struct NWNX_Player_QuickBarSlot qbs); + +/// @brief Get the name of the .bic file associated with the player's character. +/// @param player The player object. +/// @return The filename for this player's bic. (Not including the ".bic") +string NWNX_Player_GetBicFileName(object player); + +/// @brief Plays the VFX at the target position in current area for the given player only +/// @param player The player object. +/// @param effectId The effect id. +/// @param position The position to play the visual effect. +void NWNX_Player_ShowVisualEffect(object player, int effectId, vector position); + +/// @brief Changes the daytime music track for the given player only +/// @param player The player object. +/// @param track The track id to play. +void NWNX_Player_MusicBackgroundChangeDay(object player, int track); + +/// @brief Changes the nighttime music track for the given player only +/// @param player The player object. +/// @param track The track id to play. +void NWNX_Player_MusicBackgroundChangeNight(object player, int track); + +/// @brief Starts the background music for the given player only +/// @param player The player object. +void NWNX_Player_MusicBackgroundStart(object player); + +/// @brief Stops the background music for the given player only +/// @param player The player object. +void NWNX_Player_MusicBackgroundStop(object player); + +/// @brief Changes the battle music track for the given player only +/// @param player The player object. +/// @param track The track id to play. +void NWNX_Player_MusicBattleChange(object player, int track); + +/// @brief Starts the battle music for the given player only +/// @param player The player object. +void NWNX_Player_MusicBattleStart(object player); + +/// @brief Stops the battle music for the given player only +/// @param player The player object. +void NWNX_Player_MusicBattleStop(object player); + +/// @brief Play a sound at the location of target for the given player only +/// @param player The player object. +/// @param sound The sound resref. +/// @param target The target object for the sound to originate. If target OBJECT_INVALID the sound +/// will play at the location of the player. +void NWNX_Player_PlaySound(object player, string sound, object target = OBJECT_INVALID); + +/// @brief Toggle a placeable's usable flag for the given player only +/// @param player The player object. +/// @param placeable The placeable object. +/// @param usable TRUE for usable. +void NWNX_Player_SetPlaceableUsable(object player, object placeable, int usable); + +/// @brief Override player's rest duration +/// @param player The player object. +/// @param duration The duration of rest in milliseconds, 1000 = 1 second. Minimum duration of 10ms. -1 clears the override. +void NWNX_Player_SetRestDuration(object player, int duration); + +/// @brief Apply visualeffect to target that only player can see +/// @param player The player object. +/// @param target The target object to play the effect upon. +/// @param visualeffect The visual effect id. +/// @note Only works with instant effects: VFX_COM_*, VFX_FNF_*, VFX_IMP_* +void NWNX_Player_ApplyInstantVisualEffectToObject(object player, object target, int visualeffect); + +/// @brief Refreshes the players character sheet +/// @param player The player object. +/// @note You may need to use DelayCommand if you're manipulating values +/// through nwnx and forcing a UI refresh, 0.5s seemed to be fine +void NWNX_Player_UpdateCharacterSheet(object player); + +/// @brief Allows player to open target's inventory +/// @param player The player object. +/// @param target The target object, must be a creature or another player. +/// @param open TRUE to open. +/// @remark Only works if player and target are in the same area. +void NWNX_Player_OpenInventory(object player, object target, int open = TRUE); + +/// @brief Get player's area exploration state +/// @param player The player object. +/// @param area The area object. +/// @return A string representation of the tiles explored for that area. +string NWNX_Player_GetAreaExplorationState(object player, object area); + +/// @brief Set player's area exploration state. +/// @param player The player object. +/// @param area The area object. +/// @param str An encoded string obtained with NWNX_Player_GetAreaExplorationState() +void NWNX_Player_SetAreaExplorationState(object player, object area, string str); + +/// @brief Override player's rest animation. +/// @param oPlayer The player object. +/// @param nAnimation The NWNX animation id. This does not take ANIMATION_LOOPING_* or +/// ANIMATION_FIREFORGET_* constants. Instead use NWNX_Consts_TranslateNWScriptAnimation() to get +/// the NWNX equivalent. -1 to clear the override. +void NWNX_Player_SetRestAnimation(object oPlayer, int nAnimation); + +/// @brief Override a visual transform on the given object that only player will see. +/// @param oPlayer The player object. +/// @param oObject The target object. Can be any valid Creature, Placeable, Item or Door. +/// @param nTransform One of OBJECT_VISUAL_TRANSFORM_* or -1 to remove the override. +/// @param fValue Depends on the transformation to apply. +void NWNX_Player_SetObjectVisualTransformOverride(object oPlayer, object oObject, int nTransform, float fValue); + +/// @brief Apply a looping visualeffect to a target that only player can see +/// @param player The player object. +/// @param target The target object. +/// @param visualeffect A VFX_DUR_*. Calling again will remove an applied effect. -1 to remove all effects +/// @note Only really works with looping effects: VFX_DUR_*. Other types *kind* of work, they'll play when +/// reentering the area and the object is in view or when they come back in view range. +void NWNX_Player_ApplyLoopingVisualEffectToObject(object player, object target, int visualeffect); + +/// @brief Override the name of placeable for player only +/// @param player The player object. +/// @param placeable The placeable object. +/// @param name The name for the placeable for this player, "" to clear the override. +void NWNX_Player_SetPlaceableNameOverride(object player, object placeable, string name); + +/// @brief Gets whether a quest has been completed by a player +/// @param player The player object. +/// @param sQuestName The name identifier of the quest from the Journal Editor. +/// @return TRUE if the quest has been completed. -1 if the player does not have the journal entry. +int NWNX_Player_GetQuestCompleted(object player, string sQuestName); + +/// @brief Place waypoints on module load representing where a PC should start +/// +/// This will require storing the PC's cd key or community name (depending on how you store in your vault) +/// and bic_filename along with routinely updating their location in some persistent method like OnRest, +/// OnAreaEnter and OnClentExit. +/// +/// @param sCDKeyOrCommunityName The Public CD Key or Community Name of the player, this will depend on your vault type. +/// @param sBicFileName The filename for the character. Retrieved with NWNX_Player_GetBicFileName(). +/// @param oWP The waypoint object to place where the PC should start. +/// @param bFirstConnectOnly Set to FALSE if you would like the PC to go to this location every time they login instead +/// of just every server restart. +void NWNX_Player_SetPersistentLocation(string sCDKeyOrCommunityName, string sBicFileName, object oWP, int bFirstConnectOnly = TRUE); + +/// @brief Force an item name to be updated. +/// @note This is a workaround for bug that occurs when updating item names in open containers. +/// @param oPlayer The player object. +/// @param oItem The item object. +void NWNX_Player_UpdateItemName(object oPlayer, object oItem); + +/// @brief Possesses a creature by temporarily making them a familiar +/// @details This command allows a PC to possess an NPC by temporarily adding them as a familiar. It will work +/// if the player already has an existing familiar. The creatures must be in the same area. Unpossession can be +/// done with the regular @nwn{UnpossessFamiliar} commands. +/// @note The possessed creature will send automap data back to the possessor. +/// If you wish to prevent this you may wish to use NWNX_Player_GetAreaExplorationState() and +/// NWNX_Player_SetAreaExplorationState() before and after the possession. +/// @note The possessing creature will be left wherever they were when beginning the possession. You may wish +/// to use @nwn{EffectCutsceneImmobilize} and @nwn{EffectCutsceneGhost} to hide them. +/// @param oPossessor The possessor player object. +/// @param oPossessed The possessed creature object. Only works on NPCs. +/// @param bMindImmune If FALSE will remove the mind immunity effect on the possessor. +/// @param bCreateDefaultQB If TRUE will populate the quick bar with default buttons. +/// @return TRUE if possession succeeded. +int NWNX_Player_PossessCreature(object oPossessor, object oPossessed, int bMindImmune = TRUE, int bCreateDefaultQB = FALSE); + +/// @brief Returns the platform ID of the given player (NWNX_PLAYER_PLATFORM_*) +/// @param oPlayer The player object. +int NWNX_Player_GetPlatformId(object oPlayer); + +/// @brief Returns the game language of the given player (uses NWNX_DIALOG_LANGUAGE_*) +/// @details This function returns the ID of the game language displayed to the player. +/// Uses the same constants as nwnx_dialog. +/// @param oPlayer The player object. +int NWNX_Player_GetLanguage(object oPlayer); + +/// @brief Override sOldResName with sNewResName of nResType for oPlayer. +/// @warning If sNewResName does not exist on oPlayer's client it will crash their game. +/// @param oPlayer The player object. +/// @param nResType The res type, see nwnx_util.nss for constants. +/// @param sOldResName The old res name, 16 characters or less. +/// @param sNewResName The new res name or "" to clear a previous override, 16 characters or less. +void NWNX_Player_SetResManOverride(object oPlayer, int nResType, string sOldResName, string sNewResName); + +/// @brief Set nCustomTokenNumber to sTokenValue for oPlayer only. +/// @note The basegame SetCustomToken() will override any personal tokens. +/// @param oPlayer The player object. +/// @param nCustomTokenNumber The token number. +/// @param sTokenValue The token text. +void NWNX_Player_SetCustomToken(object oPlayer, int nCustomTokenNumber, string sTokenValue); + +/// @brief Override the name of creature for player only +/// @param oPlayer The player object. +/// @param oCreature The creature object. +/// @param sName The name for the creature for this player, "" to clear the override. +void NWNX_Player_SetCreatureNameOverride(object oPlayer, object oCreature, string sName); + +/// @brief Display floaty text above oCreature for oPlayer only. +/// @note This will also display the floaty text above creatures that are not part of oPlayer's faction. +/// @param oPlayer The player to display the text to. +/// @param oCreature The creature to display the text above. +/// @param sText The text to display. +void NWNX_Player_FloatingTextStringOnCreature(object oPlayer, object oCreature, string sText); + +/// @brief Toggle oPlayer's PlayerDM status. +/// @note This function does nothing for actual DMClient DMs or players with a client version < 8193.14 +/// @param oPlayer The player. +/// @param bIsDM TRUE to toggle dm mode on, FALSE for off. +void NWNX_Player_ToggleDM(object oPlayer, int bIsDM); + +/// @brief Override the mouse cursor of oObject for oPlayer only +/// @param oPlayer The player object. +/// @param oObject The object. +/// @param nCursor The cursor, one of MOUSECURSOR_*. -1 to clear the override. +void NWNX_Player_SetObjectMouseCursorOverride(object oPlayer, object oObject, int nCursor); + +/// @brief Override the hilite color of oObject for oPlayer only +/// @param oPlayer The player object. +/// @param oObject The object. +/// @param nColor The color in 0xRRGGBB format, -1 to clear the override. +void NWNX_Player_SetObjectHiliteColorOverride(object oPlayer, object oObject, int nColor); + +/// @brief Remove effects with sEffectTag from oPlayer's TURD +/// @note This function should be called in the NWNX_ON_CLIENT_DISCONNECT_AFTER event, OnClientLeave is too early for the TURD to exist. +/// @param oPlayer The player object. +/// @param sEffectTag The effect tag. +void NWNX_Player_RemoveEffectFromTURD(object oPlayer, string sEffectTag); + +/// @brief Set the location oPlayer will spawn when logging in to the server. +/// @note This function is best called in the NWNX_ON_ELC_VALIDATE_CHARACTER_BEFORE event, OnClientEnter will be too late. +/// @param oPlayer The player object. +/// @param locSpawn The location. +void NWNX_Player_SetSpawnLocation(object oPlayer, location locSpawn); + +/// @brief Resends palettes to a DM. +/// @param oPlayer - the DM to send them to. +void NWNX_Player_SendDMAllCreatorLists(object oPlayer); + +/// @brief Give a custom journal entry to oPlayer. +/// @warning Custom entries are wiped on client enter - they must be reapplied. +/// @param oPlayer The player object. +/// @param journalEntry The journal entry in the form of a struct. +/// @param nSilentUpdate 0 = Notify player via sound effects and feedback message, 1 = Suppress sound effects and feedback message +/// @return a positive number to indicate the new amount of journal entries on the player. +/// @note In contrast to conventional nwn journal entries - this method will overwrite entries with the same tag, so the index / count of entries +/// will only increase if you add new entries with unique tags +int NWNX_Player_AddCustomJournalEntry(object oPlayer, struct NWNX_Player_JournalEntry journalEntry, int nSilentUpdate = 0); + +/// @brief Returns a struct containing a journal entry that can then be modified. +/// @param oPlayer The player object. +/// @param questTag The quest tag you wish to get the journal entry for. +/// @return a struct containing the journal entry data. +/// @note This method will return -1 for the Updated field in the event that no matching journal entry was found, +/// only the last matching quest tag will be returned. Eg: If you add 3 journal updates to a player, only the 3rd one will be returned as +/// that is the active one that the player currently sees. +struct NWNX_Player_JournalEntry NWNX_Player_GetJournalEntry(object oPlayer, string questTag); + +/// @brief Closes any store oPlayer may have open. +/// @param oPlayer The player object. +void NWNX_Player_CloseStore(object oPlayer); + +/// @} + +void NWNX_Player_ForcePlaceableExamineWindow(object player, object placeable) +{ + string sFunc = "ForcePlaceableExamineWindow"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, placeable); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_ForcePlaceableInventoryWindow(object player, object placeable) +{ + string sFunc = "ForcePlaceableInventoryWindow"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, placeable); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_INTERNAL_StopGuiTimingBar(object player, string script = "", int id = -1) ///< @private +{ + int activeId = GetLocalInt(player, "NWNX_PLAYER_GUI_TIMING_ACTIVE"); + // Either the timing event was never started, or it already finished. + if (activeId == 0) + return; + + // If id != -1, we ended up here through DelayCommand. Make sure it's for the right ID + if (id != -1 && id != activeId) + return; + + DeleteLocalInt(player, "NWNX_PLAYER_GUI_TIMING_ACTIVE"); + + string sFunc = "StopGuiTimingBar"; + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + NWNX_CallFunction(NWNX_Player, sFunc); + + if(script != "") + { + ExecuteScript(script, player); + } +} + +void NWNX_Player_StartGuiTimingBar(object player, float seconds, string script = "", int type = NWNX_PLAYER_TIMING_BAR_CUSTOM) +{ + if (GetLocalInt(player, "NWNX_PLAYER_GUI_TIMING_ACTIVE")) + return; + + string sFunc = "StartGuiTimingBar"; + NWNX_PushArgumentInt(NWNX_Player, sFunc, type); + NWNX_PushArgumentFloat(NWNX_Player, sFunc, seconds); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); + + int id = GetLocalInt(player, "NWNX_PLAYER_GUI_TIMING_ID") + 1; + SetLocalInt(player, "NWNX_PLAYER_GUI_TIMING_ACTIVE", id); + SetLocalInt(player, "NWNX_PLAYER_GUI_TIMING_ID", id); + + DelayCommand(seconds, NWNX_Player_INTERNAL_StopGuiTimingBar(player, script, id)); +} + +void NWNX_Player_StopGuiTimingBar(object player, string script = "") +{ + NWNX_Player_INTERNAL_StopGuiTimingBar(player, script, -1); +} + +void NWNX_Player_SetAlwaysWalk(object player, int bWalk=TRUE) +{ + string sFunc = "SetAlwaysWalk"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, bWalk); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_GetQuickBarSlot(object player, int slot) +{ + string sFunc = "GetQuickBarSlot"; + struct NWNX_Player_QuickBarSlot qbs; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, slot); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + NWNX_CallFunction(NWNX_Player, sFunc); + + qbs.oAssociate = NWNX_GetReturnValueObject(NWNX_Player, sFunc); + qbs.nAssociateType = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + qbs.nDomainLevel = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + qbs.nMetaType = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + qbs.nINTParam1 = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + qbs.sToolTip = NWNX_GetReturnValueString(NWNX_Player, sFunc); + qbs.sCommandLine = NWNX_GetReturnValueString(NWNX_Player, sFunc); + qbs.sCommandLabel = NWNX_GetReturnValueString(NWNX_Player, sFunc); + qbs.sResRef = NWNX_GetReturnValueString(NWNX_Player, sFunc); + qbs.nMultiClass = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + qbs.nObjectType = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + qbs.oSecondaryItem = NWNX_GetReturnValueObject(NWNX_Player, sFunc); + qbs.oItem = NWNX_GetReturnValueObject(NWNX_Player, sFunc); + + return qbs; +} + +void NWNX_Player_SetQuickBarSlot(object player, int slot, struct NWNX_Player_QuickBarSlot qbs) +{ + string sFunc = "SetQuickBarSlot"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, qbs.oItem); + NWNX_PushArgumentObject(NWNX_Player, sFunc, qbs.oSecondaryItem); + NWNX_PushArgumentInt(NWNX_Player, sFunc, qbs.nObjectType); + NWNX_PushArgumentInt(NWNX_Player, sFunc, qbs.nMultiClass); + NWNX_PushArgumentString(NWNX_Player, sFunc, qbs.sResRef); + NWNX_PushArgumentString(NWNX_Player, sFunc, qbs.sCommandLabel); + NWNX_PushArgumentString(NWNX_Player, sFunc, qbs.sCommandLine); + NWNX_PushArgumentString(NWNX_Player, sFunc, qbs.sToolTip); + NWNX_PushArgumentInt(NWNX_Player, sFunc, qbs.nINTParam1); + NWNX_PushArgumentInt(NWNX_Player, sFunc, qbs.nMetaType); + NWNX_PushArgumentInt(NWNX_Player, sFunc, qbs.nDomainLevel); + NWNX_PushArgumentInt(NWNX_Player, sFunc, qbs.nAssociateType); + NWNX_PushArgumentObject(NWNX_Player, sFunc, qbs.oAssociate); + + NWNX_PushArgumentInt(NWNX_Player, sFunc, slot); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + NWNX_CallFunction(NWNX_Player, sFunc); +} + +string NWNX_Player_GetBicFileName(object player) +{ + string sFunc = "GetBicFileName"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + NWNX_CallFunction(NWNX_Player, sFunc); + return NWNX_GetReturnValueString(NWNX_Player, sFunc); +} + +void NWNX_Player_ShowVisualEffect(object player, int effectId, vector position) +{ + string sFunc = "ShowVisualEffect"; + + NWNX_PushArgumentFloat(NWNX_Player, sFunc, position.x); + NWNX_PushArgumentFloat(NWNX_Player, sFunc, position.y); + NWNX_PushArgumentFloat(NWNX_Player, sFunc, position.z); + NWNX_PushArgumentInt(NWNX_Player, sFunc, effectId); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_MusicBackgroundChangeDay(object player, int track) +{ + string sFunc = "ChangeBackgroundMusic"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, track); + NWNX_PushArgumentInt(NWNX_Player, sFunc, TRUE); // bool day = TRUE + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_MusicBackgroundChangeNight(object player, int track) +{ + string sFunc = "ChangeBackgroundMusic"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, track); + NWNX_PushArgumentInt(NWNX_Player, sFunc, FALSE); // bool day = FALSE + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_MusicBackgroundStart(object player) +{ + string sFunc = "PlayBackgroundMusic"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, TRUE); // bool play = TRUE + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_MusicBackgroundStop(object player) +{ + string sFunc = "PlayBackgroundMusic"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, FALSE); // bool play = FALSE + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_MusicBattleChange(object player, int track) +{ + string sFunc = "ChangeBattleMusic"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, track); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_MusicBattleStart(object player) +{ + string sFunc = "PlayBattleMusic"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, TRUE); // bool play = TRUE + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_MusicBattleStop(object player) +{ + string sFunc = "PlayBattleMusic"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, FALSE); // bool play = FALSE + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_PlaySound(object player, string sound, object target = OBJECT_INVALID) +{ + string sFunc = "PlaySound"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, target); + NWNX_PushArgumentString(NWNX_Player, sFunc, sound); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SetPlaceableUsable(object player, object placeable, int usable) +{ + string sFunc = "SetPlaceableUsable"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, usable); + NWNX_PushArgumentObject(NWNX_Player, sFunc, placeable); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SetRestDuration(object player, int duration) +{ + string sFunc = "SetRestDuration"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, duration); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_ApplyInstantVisualEffectToObject(object player, object target, int visualeffect) +{ + string sFunc = "ApplyInstantVisualEffectToObject"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, visualeffect); + NWNX_PushArgumentObject(NWNX_Player, sFunc, target); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_UpdateCharacterSheet(object player) +{ + string sFunc = "UpdateCharacterSheet"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_OpenInventory(object player, object target, int open = TRUE) +{ + string sFunc = "OpenInventory"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, open); + NWNX_PushArgumentObject(NWNX_Player, sFunc, target); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +string NWNX_Player_GetAreaExplorationState(object player, object area) +{ + string sFunc = "GetAreaExplorationState"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, area); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); + return NWNX_GetReturnValueString(NWNX_Player, sFunc); +} + +void NWNX_Player_SetAreaExplorationState(object player, object area, string str) +{ + string sFunc = "SetAreaExplorationState"; + + NWNX_PushArgumentString(NWNX_Player, sFunc, str); + NWNX_PushArgumentObject(NWNX_Player, sFunc, area); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SetRestAnimation(object oPlayer, int nAnimation) +{ + string sFunc = "SetRestAnimation"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, nAnimation); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SetObjectVisualTransformOverride(object oPlayer, object oObject, int nTransform, float fValue) +{ + string sFunc = "SetObjectVisualTransformOverride"; + + NWNX_PushArgumentFloat(NWNX_Player, sFunc, fValue); + NWNX_PushArgumentInt(NWNX_Player, sFunc, nTransform); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oObject); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_ApplyLoopingVisualEffectToObject(object player, object target, int visualeffect) +{ + string sFunc = "ApplyLoopingVisualEffectToObject"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, visualeffect); + NWNX_PushArgumentObject(NWNX_Player, sFunc, target); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SetPlaceableNameOverride(object player, object placeable, string name) +{ + string sFunc = "SetPlaceableNameOverride"; + + NWNX_PushArgumentString(NWNX_Player, sFunc, name); + NWNX_PushArgumentObject(NWNX_Player, sFunc, placeable); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +int NWNX_Player_GetQuestCompleted(object player, string sQuestName) +{ + string sFunc = "GetQuestCompleted"; + + NWNX_PushArgumentString(NWNX_Player, sFunc, sQuestName); + NWNX_PushArgumentObject(NWNX_Player, sFunc, player); + + NWNX_CallFunction(NWNX_Player, sFunc); + return NWNX_GetReturnValueInt(NWNX_Player, sFunc); +} + +void NWNX_Player_SetPersistentLocation(string sCDKeyOrCommunityName, string sBicFileName, object oWP, int bFirstConnectOnly = TRUE) +{ + string sFunc = "SetPersistentLocation"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, bFirstConnectOnly); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oWP); + NWNX_PushArgumentString(NWNX_Player, sFunc, sBicFileName); + NWNX_PushArgumentString(NWNX_Player, sFunc, sCDKeyOrCommunityName); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_UpdateItemName(object oPlayer, object oItem) +{ + string sFunc = "UpdateItemName"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, oItem); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +int NWNX_Player_PossessCreature(object oPossessor, object oPossessed, int bMindImmune = TRUE, int bCreateDefaultQB = FALSE) +{ + string sFunc = "PossessCreature"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, bCreateDefaultQB); + NWNX_PushArgumentInt(NWNX_Player, sFunc, bMindImmune); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPossessed); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPossessor); + + NWNX_CallFunction(NWNX_Player, sFunc); + return NWNX_GetReturnValueInt(NWNX_Player, sFunc); +} + +int NWNX_Player_GetPlatformId(object oPlayer) +{ + string sFunc = "GetPlatformId"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); + return NWNX_GetReturnValueInt(NWNX_Player, sFunc); +} + +int NWNX_Player_GetLanguage(object oPlayer) +{ + string sFunc = "GetLanguage"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); + return NWNX_GetReturnValueInt(NWNX_Player, sFunc); +} + +void NWNX_Player_SetResManOverride(object oPlayer, int nResType, string sOldResName, string sNewResName) +{ + string sFunc = "SetResManOverride"; + + NWNX_PushArgumentString(NWNX_Player, sFunc, sNewResName); + NWNX_PushArgumentString(NWNX_Player, sFunc, sOldResName); + NWNX_PushArgumentInt(NWNX_Player, sFunc, nResType); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SetCustomToken(object oPlayer, int nCustomTokenNumber, string sTokenValue) +{ + string sFunc = "SetCustomToken"; + + NWNX_PushArgumentString(NWNX_Player, sFunc, sTokenValue); + NWNX_PushArgumentInt(NWNX_Player, sFunc, nCustomTokenNumber); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SetCreatureNameOverride(object oPlayer, object oCreature, string sName) +{ + string sFunc = "SetCreatureNameOverride"; + + NWNX_PushArgumentString(NWNX_Player, sFunc, sName); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oCreature); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_FloatingTextStringOnCreature(object oPlayer, object oCreature, string sText) +{ + string sFunc = "FloatingTextStringOnCreature"; + + NWNX_PushArgumentString(NWNX_Player, sFunc, sText); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oCreature); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_ToggleDM(object oPlayer, int bIsDM) +{ + string sFunc = "ToggleDM"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, bIsDM); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SetObjectMouseCursorOverride(object oPlayer, object oObject, int nCursor) +{ + string sFunc = "SetObjectMouseCursorOverride"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, nCursor); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oObject); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SetObjectHiliteColorOverride(object oPlayer, object oObject, int nColor) +{ + string sFunc = "SetObjectHiliteColorOverride"; + + NWNX_PushArgumentInt(NWNX_Player, sFunc, nColor); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oObject); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_RemoveEffectFromTURD(object oPlayer, string sEffectTag) +{ + string sFunc = "RemoveEffectFromTURD"; + + NWNX_PushArgumentString(NWNX_Player, sFunc, sEffectTag); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SetSpawnLocation(object oPlayer, location locSpawn) +{ + string sFunc = "SetSpawnLocation"; + + vector vPosition = GetPositionFromLocation(locSpawn); + + NWNX_PushArgumentFloat(NWNX_Player, sFunc, GetFacingFromLocation(locSpawn)); + NWNX_PushArgumentFloat(NWNX_Player, sFunc, vPosition.z); + NWNX_PushArgumentFloat(NWNX_Player, sFunc, vPosition.y); + NWNX_PushArgumentFloat(NWNX_Player, sFunc, vPosition.x); + NWNX_PushArgumentObject(NWNX_Player, sFunc, GetAreaFromLocation(locSpawn)); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + + NWNX_CallFunction(NWNX_Player, sFunc); +} + +void NWNX_Player_SendDMAllCreatorLists(object oPlayer) +{ + string sFunc = "SendDMAllCreatorLists"; + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + NWNX_CallFunction(NWNX_Player, sFunc); +} + +int NWNX_Player_AddCustomJournalEntry(object oPlayer, struct NWNX_Player_JournalEntry journalEntry, int nSilentUpdate = 0) +{ + string sFunc = "AddCustomJournalEntry"; + NWNX_PushArgumentInt(NWNX_Player, sFunc, nSilentUpdate); + NWNX_PushArgumentInt(NWNX_Player, sFunc, journalEntry.nTimeOfDay); + NWNX_PushArgumentInt(NWNX_Player, sFunc, journalEntry.nCalendarDay); + NWNX_PushArgumentInt(NWNX_Player, sFunc, journalEntry.nUpdated); + NWNX_PushArgumentInt(NWNX_Player, sFunc, journalEntry.nQuestDisplayed); + NWNX_PushArgumentInt(NWNX_Player, sFunc, journalEntry.nQuestCompleted); + NWNX_PushArgumentInt(NWNX_Player, sFunc, journalEntry.nPriority); + NWNX_PushArgumentInt(NWNX_Player, sFunc, journalEntry.nState); + NWNX_PushArgumentString(NWNX_Player, sFunc, journalEntry.sTag); + NWNX_PushArgumentString(NWNX_Player, sFunc, journalEntry.sText); + NWNX_PushArgumentString(NWNX_Player, sFunc, journalEntry.sName); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + NWNX_CallFunction(NWNX_Player, sFunc); + return NWNX_GetReturnValueInt(NWNX_Player, sFunc); +} + +struct NWNX_Player_JournalEntry NWNX_Player_GetJournalEntry(object oPlayer, string questTag) +{ + string sFunc = "GetJournalEntry"; + struct NWNX_Player_JournalEntry entry; + + NWNX_PushArgumentString(NWNX_Player, sFunc, questTag); + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + NWNX_CallFunction(NWNX_Player, sFunc); + + entry.nUpdated = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + if(entry.nUpdated == -1) // -1 set as an indicator to say that the entry was not found + { + return entry; + } + entry.nQuestDisplayed = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + entry.nQuestCompleted = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + entry.nPriority = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + entry.nState = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + entry.nTimeOfDay = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + entry.nCalendarDay = NWNX_GetReturnValueInt(NWNX_Player, sFunc); + entry.sName = NWNX_GetReturnValueString(NWNX_Player, sFunc); + entry.sText = NWNX_GetReturnValueString(NWNX_Player, sFunc); + entry.sTag = questTag; + return entry; +} + +void NWNX_Player_CloseStore(object oPlayer) +{ + string sFunc = "CloseStore"; + + NWNX_PushArgumentObject(NWNX_Player, sFunc, oPlayer); + NWNX_CallFunction(NWNX_Player, sFunc); +} diff --git a/gamma_age_v2/nwnx_player_qbs.nss b/gamma_age_v2/nwnx_player_qbs.nss new file mode 100644 index 00000000..0649c97a --- /dev/null +++ b/gamma_age_v2/nwnx_player_qbs.nss @@ -0,0 +1,207 @@ +/// @addtogroup player +/// @{ +/// @file nwnx_player_qbs.nss +/// @brief Helper script for quickbar management. +#include "nwnx_player" + +/// @name Quickbar Slot Types +/// @anchor qbs_types +/// @{ +const int NWNX_PLAYER_QBS_TYPE_EMPTY = 0; +const int NWNX_PLAYER_QBS_TYPE_ITEM = 1; +const int NWNX_PLAYER_QBS_TYPE_SPELL = 2; +const int NWNX_PLAYER_QBS_TYPE_SKILL = 3; +const int NWNX_PLAYER_QBS_TYPE_FEAT = 4; +const int NWNX_PLAYER_QBS_TYPE_DIALOG = 6; +const int NWNX_PLAYER_QBS_TYPE_ATTACK = 7; +const int NWNX_PLAYER_QBS_TYPE_EMOTE = 8; +const int NWNX_PLAYER_QBS_TYPE_ITEM_PROPERTY_CASTSPELL = 9; +const int NWNX_PLAYER_QBS_TYPE_MODE_TOGGLE = 10; +const int NWNX_PLAYER_QBS_TYPE_COMMAND = 18; +const int NWNX_PLAYER_QBS_TYPE_POSSESS_FAMILIAR = 38; +const int NWNX_PLAYER_QBS_TYPE_ASSOCIATE_COMMAND = 39; +const int NWNX_PLAYER_QBS_TYPE_EXAMINE = 40; +const int NWNX_PLAYER_QBS_TYPE_BARTER = 41; +const int NWNX_PLAYER_QBS_TYPE_QUICK_CHAT = 42; +const int NWNX_PLAYER_QBS_TYPE_CANCELPOLYMORPH = 43; +const int NWNX_PLAYER_QBS_TYPE_SPELLLIKEABILITY = 44; +/// @} + +/// Create an empty QBS of given type +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Empty(int type = NWNX_PLAYER_QBS_TYPE_EMPTY); +/// Create a QBS for using an item +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_UseItem(object oItem, int nPropertyID = 0); +/// Create a QBS for equipping an item +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_EquipItem(object oItem, object oSecondaryItem = OBJECT_INVALID); +/// Create a QBS for casting a spell +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_CastSpell(int nSpell, int nClassIndex = 0, int nMetamagic = METAMAGIC_NONE, int nDomainLevel = -1); +/// Create a QBS for using a skill +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_UseSkill(int nSkill); +/// Create a QBS for using a feat +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_UseFeat(int nFeat); +/// Create a QBS for starting a dialog +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_StartDialog(); +/// Create a QBS for attacking +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Attack(); +/// Create a QBS for emoting +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Emote(int nEmote); +/// Create a QBS for toggling a mode +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_ToggleMode(int nMode); +/// Create a QBS for examining +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Examine(); +/// Create a QBS for bartering +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Barter(); +/// Create a QBS for quickchat command +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_QuickChat(int nCommand); +/// Create a QBS for examining +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_PossessFamiliar(); +/// Create a QBS for casting a spell +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_UseSpecialAbility(int nSpell, int nCasterLevel); +/// Create a QBS for running a command +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Command(string sCommandLabel, string sCommandLine); + +/// @} + + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Empty(int type = NWNX_PLAYER_QBS_TYPE_EMPTY) +{ + struct NWNX_Player_QuickBarSlot qbs; + + qbs.nObjectType = type; + + qbs.oItem = OBJECT_INVALID; + qbs.oSecondaryItem = OBJECT_INVALID; + qbs.nMultiClass = 0; + qbs.sResRef = ""; + qbs.sCommandLabel = ""; + qbs.sCommandLine = ""; + qbs.sToolTip = ""; + qbs.nINTParam1 = 0; + qbs.nMetaType = 0; + qbs.nDomainLevel = 0; + qbs.nAssociateType = 0; + qbs.oAssociate = OBJECT_INVALID; + + return qbs; +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_UseItem(object oItem, int nPropertyID = 0) +{ + struct NWNX_Player_QuickBarSlot qbs = NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_ITEM); + + qbs.oItem = oItem; + qbs.nINTParam1 = nPropertyID; + + return qbs; +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_EquipItem(object oItem, object oSecondaryItem = OBJECT_INVALID) +{ + struct NWNX_Player_QuickBarSlot qbs = NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_ITEM); + + qbs.oItem = oItem; + qbs.oSecondaryItem = oSecondaryItem; + + return qbs; +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_CastSpell(int nSpell, int nClassIndex = 0, int nMetamagic = METAMAGIC_NONE, int nDomainLevel = -1) +{ + struct NWNX_Player_QuickBarSlot qbs = NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_SPELL); + + qbs.nINTParam1 = nSpell; + qbs.nMultiClass = nClassIndex; + qbs.nMetaType = nMetamagic; + qbs.nDomainLevel = nDomainLevel; + + return qbs; +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_UseSkill(int nSkill) +{ + struct NWNX_Player_QuickBarSlot qbs = NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_SKILL); + + qbs.nINTParam1 = nSkill; + + return qbs; +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_UseFeat(int nFeat) +{ + struct NWNX_Player_QuickBarSlot qbs = NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_FEAT); + + qbs.nINTParam1 = nFeat; + + return qbs; +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_StartDialog() +{ + return NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_DIALOG); +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Attack() +{ + return NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_ATTACK); +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Emote(int nEmote) +{ + struct NWNX_Player_QuickBarSlot qbs = NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_EMOTE); + + qbs.nINTParam1 = nEmote; + + return qbs; +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_ToggleMode(int nMode) +{ + struct NWNX_Player_QuickBarSlot qbs = NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_MODE_TOGGLE); + + qbs.nINTParam1 = nMode; + + return qbs; +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Examine() +{ + return NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_EXAMINE); +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Barter() +{ + return NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_BARTER); +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_QuickChat(int nCommand) +{ + struct NWNX_Player_QuickBarSlot qbs = NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_QUICK_CHAT); + + qbs.nINTParam1 = nCommand; + + return qbs; +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_PossessFamiliar() +{ + return NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_POSSESS_FAMILIAR); +} + +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_UseSpecialAbility(int nSpell, int nCasterLevel) +{ + struct NWNX_Player_QuickBarSlot qbs = NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_SPELL); + + qbs.nINTParam1 = nSpell; + qbs.nDomainLevel = nCasterLevel; + + return qbs; +} +struct NWNX_Player_QuickBarSlot NWNX_Player_QBS_Command(string sCommandLabel, string sCommandLine) +{ + struct NWNX_Player_QuickBarSlot qbs = NWNX_Player_QBS_Empty(NWNX_PLAYER_QBS_TYPE_COMMAND); + + qbs.sCommandLabel = sCommandLabel; + qbs.sCommandLine = sCommandLine; + + return qbs; +} diff --git a/gamma_age_v2/nwnx_profiler.nss b/gamma_age_v2/nwnx_profiler.nss new file mode 100644 index 00000000..4c7393e8 --- /dev/null +++ b/gamma_age_v2/nwnx_profiler.nss @@ -0,0 +1,60 @@ +/// @addtogroup profiler Profiler +/// @brief Functions to instrument nwscript code. +/// @remark These functions are for advanced users. +/// @{ +/// @file nwnx_profiler.nss +#include "nwnx" + +const string NWNX_Profiler = "NWNX_Profiler"; ///< @private + +/// @brief Push a timing metric scope - note that every push must be matched by a corresponding pop. +/// +/// A timing metric contains the following information. +/// ```c +/// { +/// metricName: [name], // Mandatory, from user code +/// metricFields: { time, nanoseconds }, // Automatically captured by the push/pop pair +/// metricTags: { [tag0_tag], [tag0_value] } // Optional, from user code, can be used to +/// filter metrics based on some category or, +/// constant e.g. objectType or area +/// } +/// ``` +/// +/// If you don't understand how this works and you wish to use it, you should research +/// the Metrics system (see Metrics.hpp) as well as googling about how InfluxDB stores metrics. +/// +/// @note It's possible to have more than one tag pair per metric, It is just limited +/// to one arbitrarily here. You can edit the prototype to include more and the C++ +/// code will cope with it correctly. +/// @param name The name to use for your metric. +/// @param tag0_tag An optional tag to filter your metrics. +/// @param tag0_value The tag's value for which to filter. +void NWNX_Profiler_PushPerfScope(string name, string tag0_tag = "", string tag0_value = ""); + +/// @brief Pops a timing metric. +/// @remark A metric must already be pushed. +void NWNX_Profiler_PopPerfScope(); + +/// @} + +void NWNX_Profiler_PushPerfScope(string name, string tag0_tag = "", string tag0_value = "") +{ + string sFunc = "PushPerfScope"; + + NWNX_PushArgumentString(NWNX_Profiler, sFunc, name); + + if (tag0_value != "" && tag0_tag != "") + { + NWNX_PushArgumentString(NWNX_Profiler, sFunc, tag0_value); + NWNX_PushArgumentString(NWNX_Profiler, sFunc, tag0_tag); + } + + NWNX_CallFunction(NWNX_Profiler, sFunc); +} + +void NWNX_Profiler_PopPerfScope() +{ + string sFunc = "PopPerfScope"; + + NWNX_CallFunction(NWNX_Profiler, sFunc); +} \ No newline at end of file diff --git a/gamma_age_v2/nwnx_race.nss b/gamma_age_v2/nwnx_race.nss new file mode 100644 index 00000000..48360c30 --- /dev/null +++ b/gamma_age_v2/nwnx_race.nss @@ -0,0 +1,90 @@ +/// @addtogroup race Race +/// @brief Define racial and subrace characteristics. +/// @{ +/// @file nwnx_race.nss +#include "nwnx" + +const string NWNX_Race = "NWNX_Race"; ///< @private + +/// @name Racial Modifiers +/// @anchor racial_modifiers +/// +/// @{ +const int NWNX_RACE_MODIFIER_INVALID = 0; +const int NWNX_RACE_MODIFIER_AB = 1; +const int NWNX_RACE_MODIFIER_ABVSRACE = 2; +const int NWNX_RACE_MODIFIER_AC = 3; +const int NWNX_RACE_MODIFIER_ACVSRACE = 4; +const int NWNX_RACE_MODIFIER_CONCEALMENT = 5; +const int NWNX_RACE_MODIFIER_DMGIMMUNITY = 6; +const int NWNX_RACE_MODIFIER_DMGREDUCTION = 7; +const int NWNX_RACE_MODIFIER_DMGRESIST = 8; +const int NWNX_RACE_MODIFIER_FEAT = 9; +const int NWNX_RACE_MODIFIER_FEATUSAGE = 10; +const int NWNX_RACE_MODIFIER_IMMUNITY = 11; +const int NWNX_RACE_MODIFIER_INITIATIVE = 12; +const int NWNX_RACE_MODIFIER_MOVEMENTSPEED = 13; +const int NWNX_RACE_MODIFIER_RACE = 14; +const int NWNX_RACE_MODIFIER_REGENERATION = 15; +const int NWNX_RACE_MODIFIER_SAVE = 16; +const int NWNX_RACE_MODIFIER_SAVEVSRACE = 17; +const int NWNX_RACE_MODIFIER_SAVEVSTYPE = 18; +const int NWNX_RACE_MODIFIER_SKILL = 19; +const int NWNX_RACE_MODIFIER_SPELLIMMUNITY = 20; +const int NWNX_RACE_MODIFIER_SRCHARGEN = 21; +const int NWNX_RACE_MODIFIER_SRINCLEVEL = 22; +///@} + +/// @brief Sets a racial modifier. +/// @param iRace The RACIALTYPE_ constant or value in racialtypes.2da. +/// @param iMod The @ref racial_modifiers "racial modifier" to set. +/// @param iParam1, iParam2, iParam3 The parameters for this racial modifier. +void NWNX_Race_SetRacialModifier(int iRace, int iMod, int iParam1, int iParam2 = 0xDEADBEEF, int iParam3 = 0xDEADBEEF); + +/// @brief Gets the parent race for a race. +/// @param iRace The race to check for a parent. +/// @return The parent race if applicable, if not it just returns the race passed in. +int NWNX_Race_GetParentRace(int iRace); + +/// @brief Associates the race with its favored enemy feat. +/// @param iRace The race +/// @param iFeat The feat +/// @note If a creature has a race that has a parent race then favored enemy bonuses will work for either race against that creature. +/// For example a creature is a Wild Elf which has a parent race of Elf, an attacker would benefit if they had either Favored Enemy: Elf +/// or Favored Enemy: Wild Elf +void NWNX_Race_SetFavoredEnemyFeat(int iRace, int iFeat); + +/// @} + +void NWNX_Race_SetRacialModifier(int iRace, int iMod, int iParam1, int iParam2 = 0xDEADBEEF, int iParam3 = 0xDEADBEEF) +{ + string sFunc = "SetRacialModifier"; + + NWNX_PushArgumentInt(NWNX_Race, sFunc, iParam3); + NWNX_PushArgumentInt(NWNX_Race, sFunc, iParam2); + NWNX_PushArgumentInt(NWNX_Race, sFunc, iParam1); + NWNX_PushArgumentInt(NWNX_Race, sFunc, iMod); + NWNX_PushArgumentInt(NWNX_Race, sFunc, iRace); + + NWNX_CallFunction(NWNX_Race, sFunc); +} + +int NWNX_Race_GetParentRace(int iRace) +{ + string sFunc = "GetParentRace"; + + NWNX_PushArgumentInt(NWNX_Race, sFunc, iRace); + + NWNX_CallFunction(NWNX_Race, sFunc); + return NWNX_GetReturnValueInt(NWNX_Race, sFunc); +} + +void NWNX_Race_SetFavoredEnemyFeat(int iRace, int iFeat) +{ + string sFunc = "SetFavoredEnemyFeat"; + + NWNX_PushArgumentInt(NWNX_Race, sFunc, iFeat); + NWNX_PushArgumentInt(NWNX_Race, sFunc, iRace); + + NWNX_CallFunction(NWNX_Race, sFunc); +} diff --git a/gamma_age_v2/nwnx_race_2da.nss b/gamma_age_v2/nwnx_race_2da.nss new file mode 100644 index 00000000..5b6f8021 --- /dev/null +++ b/gamma_age_v2/nwnx_race_2da.nss @@ -0,0 +1,70 @@ +/// @ingroup race +/// @file nwnx_race_2da.nss +/// @brief Parse a column in the racialtypes.2da to load the modifiers. +#include "nwnx_race" +#include "nwnx_util" + +/// @ingroup race +/// @brief Translate a modifier type from a string to its constant. +/// @param raceMod The string representation of the constant. +/// @return The constant for the race modifier. +int NWNX_Race_GetModifierConstant(string raceMod); + +/// @ingroup race +/// @brief Loops through racialtypes.2da and checks for the column for racial modifications and sets them. +/// @note Requires NWNX_Util_Get2DARowCount() +/// @param sColumnName The column name in the racialtypes.2da that defines the 2da for the racial mods. +void NWNX_Race_LoadRacialModifiers(string sColumnName = "RacialModsTable"); + +int NWNX_Race_GetModifierConstant(string raceMod) +{ + if (raceMod == "AB") return NWNX_RACE_MODIFIER_AB; + else if (raceMod == "ABVSRACE") return NWNX_RACE_MODIFIER_ABVSRACE; + else if (raceMod == "AC") return NWNX_RACE_MODIFIER_AC; + else if (raceMod == "ACVSRACE") return NWNX_RACE_MODIFIER_ACVSRACE; + else if (raceMod == "CONCEALMENT") return NWNX_RACE_MODIFIER_CONCEALMENT; + else if (raceMod == "DMGIMMUNITY") return NWNX_RACE_MODIFIER_DMGIMMUNITY; + else if (raceMod == "DMGREDUCTION") return NWNX_RACE_MODIFIER_DMGREDUCTION; + else if (raceMod == "DMGRESIST") return NWNX_RACE_MODIFIER_DMGRESIST; + else if (raceMod == "FEAT") return NWNX_RACE_MODIFIER_FEAT; + else if (raceMod == "FEATUSAGE") return NWNX_RACE_MODIFIER_FEATUSAGE; + else if (raceMod == "IMMUNITY") return NWNX_RACE_MODIFIER_IMMUNITY; + else if (raceMod == "INITIATIVE") return NWNX_RACE_MODIFIER_INITIATIVE; + else if (raceMod == "MOVEMENTSPEED") return NWNX_RACE_MODIFIER_MOVEMENTSPEED; + else if (raceMod == "RACE") return NWNX_RACE_MODIFIER_RACE; + else if (raceMod == "REGENERATION") return NWNX_RACE_MODIFIER_REGENERATION; + else if (raceMod == "SAVE") return NWNX_RACE_MODIFIER_SAVE; + else if (raceMod == "SAVEVSRACE") return NWNX_RACE_MODIFIER_SAVEVSRACE; + else if (raceMod == "SAVEVSTYPE") return NWNX_RACE_MODIFIER_SAVEVSTYPE; + else if (raceMod == "SKILL") return NWNX_RACE_MODIFIER_SKILL; + else if (raceMod == "SPELLIMMUNITY") return NWNX_RACE_MODIFIER_SPELLIMMUNITY; + else if (raceMod == "SRCHARGEN") return NWNX_RACE_MODIFIER_SRCHARGEN; + else if (raceMod == "SRINCLEVEL") return NWNX_RACE_MODIFIER_SRINCLEVEL; + return NWNX_RACE_MODIFIER_INVALID; +} + +void NWNX_Race_LoadRacialModifiers(string sColumnName = "RacialModsTable") +{ + int iRaceRows = NWNX_Util_Get2DARowCount("racialtypes"); + int iRace; + for (iRace = 0; iRace < iRaceRows; iRace++) + { + string sRaceModTable = Get2DAString("racialtypes", sColumnName, iRace); + if(sRaceModTable != "") + { + int iRaceModRows = NWNX_Util_Get2DARowCount(sRaceModTable); + int iRaceMod; + for (iRaceMod = 0; iRaceMod < iRaceModRows; iRaceMod++) + { + string sType = Get2DAString(sRaceModTable, "Type", iRaceMod); + string sParam1 = Get2DAString(sRaceModTable, "Param1", iRaceMod); + string sParam2 = Get2DAString(sRaceModTable, "Param2", iRaceMod); + string sParam3 = Get2DAString(sRaceModTable, "Param3", iRaceMod); + int iParam1 = sParam1 == "" ? 0xDEADBEEF : StringToInt(sParam1); + int iParam2 = sParam2 == "" ? 0xDEADBEEF : StringToInt(sParam2); + int iParam3 = sParam3 == "" ? 0xDEADBEEF : StringToInt(sParam3); + NWNX_Race_SetRacialModifier(iRace, NWNX_Race_GetModifierConstant(sType), iParam1, iParam2, iParam3); + } + } + } +} diff --git a/gamma_age_v2/nwnx_redis.nss b/gamma_age_v2/nwnx_redis.nss new file mode 100644 index 00000000..56d00967 --- /dev/null +++ b/gamma_age_v2/nwnx_redis.nss @@ -0,0 +1,5906 @@ +/// @ingroup redis +/// @brief Autogenerated redis commands for NWNX usage. Autogenerated on: 2019-10-01 20:51:53 -0400 +/// @{ +/// @file nwnx_redis.nss +/// @name Redis Commands +#include "nwnx" +#include "nwnx_redis_lib" + + +// Skipping sub-command: BITFIELD/{"command"=>"OVERFLOW", "type"=>"enum", "enum"=>["WRAP", "SAT", "FAIL"], "optional"=>true} - not supported yet. +// Skipping sub-command: CLIENT_KILL/{"command"=>"TYPE", "type"=>"enum", "enum"=>["normal", "master", "slave", "pubsub"], "optional"=>true} - not supported yet. +// Skipping sub-command: CLIENT_LIST/{"command"=>"TYPE", "type"=>"enum", "enum"=>["normal", "master", "replica", "pubsub"], "optional"=>true} - not supported yet. +// Skipping sub-command: SET/{"command"=>"expiration", "type"=>"enum", "enum"=>["EX seconds", "PX milliseconds"], "optional"=>true} - not supported yet. +// Skipping XCLAIM, cannot parse argument: {"name"=>"force", "enum"=>["FORCE"], "optional"=>true} - not supported yet. +// Skipping XCLAIM, cannot parse argument: {"name"=>"justid", "enum"=>["JUSTID"], "optional"=>true} - not supported yet. +/** + * APPEND + * + * Append a value to a key + * + * Time complexity: O(1). The amortized time complexity is O(1) assuming the appended value is + * small and the already present value is of any size, since the dynamic string + * library used by Redis will double the free space available on every + * reallocation. + * Annotated return value: integer + */ +int NWNX_Redis_APPEND( + string key, + string value +); + +/** + * AUTH + * + * Authenticate to the server + * Annotated return value: simple-string + */ +int NWNX_Redis_AUTH( + string password +); + +/** + * BGREWRITEAOF + * + * Asynchronously rewrite the append-only file + * Annotated return value: simple-string + */ +int NWNX_Redis_BGREWRITEAOF(); + +/** + * BGSAVE + * + * Asynchronously save the dataset to disk + * Annotated return value: simple-string + */ +int NWNX_Redis_BGSAVE(); + +/** + * BITCOUNT + * + * Count set bits in a string + * + * Time complexity: O(N) + * Annotated return value: integer + */ +int NWNX_Redis_BITCOUNT( + string key, + // Redis type: integer + int start = 0, + // Redis type: integer + int end = 0 +); + +/** + * BITFIELD + * + * Perform arbitrary bitfield integer operations on strings + * + * Time complexity: O(1) for each subcommand specified + * Annotated return value: + */ +int NWNX_Redis_BITFIELD( + string key, + // Redis type: type + string get_type = "", + // Redis type: integer + int get_offset = 0, + // Redis type: type + string set_type = "", + // Redis type: integer + int set_offset = 0, + // Redis type: integer + int set_value = 0, + // Redis type: type + string incrby_type = "", + // Redis type: integer + int incrby_offset = 0, + // Redis type: integer + int incrby_increment = 0 +); + +/** + * BITOP + * + * Perform bitwise operations between strings + * + * Time complexity: O(N) + * Annotated return value: integer + */ +int NWNX_Redis_BITOP( + string operation, + // Redis type: key + string destkey, + string key +); + +/** + * BITPOS + * + * Find first bit set or clear in a string + * + * Time complexity: O(N) + * Annotated return value: integer + */ +int NWNX_Redis_BITPOS( + string key, + // Redis type: integer + int bit, + // Redis type: integer + int start = 0, + // Redis type: integer + int end = 0 +); + +/** + * BLPOP + * + * Remove and get the first element in a list, or block until one is available + * + * Time complexity: O(1) + * Annotated return value: array + */ +int NWNX_Redis_BLPOP( + string key, + // Redis type: integer + int timeout +); + +/** + * BRPOP + * + * Remove and get the last element in a list, or block until one is available + * + * Time complexity: O(1) + * Annotated return value: array + */ +int NWNX_Redis_BRPOP( + string key, + // Redis type: integer + int timeout +); + +/** + * BRPOPLPUSH + * + * Pop a value from a list, push it to another list and return it; or block until one is available + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_BRPOPLPUSH( + // Redis type: key + string source, + // Redis type: key + string destination, + // Redis type: integer + int timeout +); + +/** + * BZPOPMIN + * + * Remove and return the member with the lowest score from one or more sorted sets, or block until one is available + * + * Time complexity: O(log(N)) with N being the number of elements in the sorted set. + * Annotated return value: array + */ +int NWNX_Redis_BZPOPMIN( + string key, + // Redis type: integer + int timeout +); + +/** + * BZPOPMAX + * + * Remove and return the member with the highest score from one or more sorted sets, or block until one is available + * + * Time complexity: O(log(N)) with N being the number of elements in the sorted set. + * Annotated return value: array + */ +int NWNX_Redis_BZPOPMAX( + string key, + // Redis type: integer + int timeout +); + +/** + * CLIENT_ID + * + * Returns the client ID for the current connection + * + * Time complexity: O(1) + * Annotated return value: + */ +int NWNX_Redis_CLIENT_ID(); + +/** + * CLIENT_KILL + * + * Kill the connection of a client + * + * Time complexity: O(N) where N is the number of client connections + * Annotated return value: simple-string + */ +int NWNX_Redis_CLIENT_KILL( + string ip_port = "", + // Redis type: integer + int id_client_id = 0, + string addr_ip_port = "", + string skipme_yes_no = "" +); + +/** + * CLIENT_LIST + * + * Get the list of client connections + * + * Time complexity: O(N) where N is the number of client connections + * Annotated return value: bulk-string + */ +int NWNX_Redis_CLIENT_LIST(); + +/** + * CLIENT_GETNAME + * + * Get the current connection name + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_CLIENT_GETNAME(); + +/** + * CLIENT_PAUSE + * + * Stop processing commands from clients for some time + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_CLIENT_PAUSE( + // Redis type: integer + int timeout +); + +/** + * CLIENT_REPLY + * + * Instruct the server whether to reply to commands + * + * Time complexity: O(1) + + * - Valid values for reply_mode: "ON", "OFF", "SKIP" + * Annotated return value: simple-string + */ +int NWNX_Redis_CLIENT_REPLY( + // Redis type: enum + string reply_mode +); + +/** + * CLIENT_SETNAME + * + * Set the current connection name + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_CLIENT_SETNAME( + string connection_name +); + +/** + * CLIENT_UNBLOCK + * + * Unblock a client blocked in a blocking command from a different connection + * + * Time complexity: O(log N) where N is the number of client connections + + * - Valid values for unblock_type: "TIMEOUT", "ERROR" + * Annotated return value: + */ +int NWNX_Redis_CLIENT_UNBLOCK( + string client_id, + // Redis type: enum + string unblock_type = "" +); + +/** + * CLUSTER_ADDSLOTS + * + * Assign new hash slots to receiving node + * + * Time complexity: O(N) where N is the total number of hash slot arguments + * Annotated return value: simple-string + */ +int NWNX_Redis_CLUSTER_ADDSLOTS( + // Redis type: integer + int slot +); + +/** + * CLUSTER_COUNT_FAILURE_REPORTS + * + * Return the number of failure reports active for a given node + * + * Time complexity: O(N) where N is the number of failure reports + * Annotated return value: integer + */ +int NWNX_Redis_CLUSTER_COUNT_FAILURE_REPORTS( + string node_id +); + +/** + * CLUSTER_COUNTKEYSINSLOT + * + * Return the number of local keys in the specified hash slot + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_CLUSTER_COUNTKEYSINSLOT( + // Redis type: integer + int slot +); + +/** + * CLUSTER_DELSLOTS + * + * Set hash slots as unbound in receiving node + * + * Time complexity: O(N) where N is the total number of hash slot arguments + * Annotated return value: simple-string + */ +int NWNX_Redis_CLUSTER_DELSLOTS( + // Redis type: integer + int slot +); + +/** + * CLUSTER_FAILOVER + * + * Forces a replica to perform a manual failover of its master. + * + * Time complexity: O(1) + + * - Valid values for options: "FORCE", "TAKEOVER" + * Annotated return value: simple-string + */ +int NWNX_Redis_CLUSTER_FAILOVER( + // Redis type: enum + string options = "" +); + +/** + * CLUSTER_FORGET + * + * Remove a node from the nodes table + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_CLUSTER_FORGET( + string node_id +); + +/** + * CLUSTER_GETKEYSINSLOT + * + * Return local key names in the specified hash slot + * + * Time complexity: O(log(N)) where N is the number of requested keys + * Annotated return value: array + */ +int NWNX_Redis_CLUSTER_GETKEYSINSLOT( + // Redis type: integer + int slot, + // Redis type: integer + int count +); + +/** + * CLUSTER_INFO + * + * Provides info about Redis Cluster node state + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_CLUSTER_INFO(); + +/** + * CLUSTER_KEYSLOT + * + * Returns the hash slot of the specified key + * + * Time complexity: O(N) where N is the number of bytes in the key + * Annotated return value: integer + */ +int NWNX_Redis_CLUSTER_KEYSLOT( + string key +); + +/** + * CLUSTER_MEET + * + * Force a node cluster to handshake with another node + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_CLUSTER_MEET( + string ip, + // Redis type: integer + int port +); + +/** + * CLUSTER_NODES + * + * Get Cluster config for the node + * + * Time complexity: O(N) where N is the total number of Cluster nodes + * Annotated return value: bulk-string + */ +int NWNX_Redis_CLUSTER_NODES(); + +/** + * CLUSTER_REPLICATE + * + * Reconfigure a node as a replica of the specified master node + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_CLUSTER_REPLICATE( + string node_id +); + +/** + * CLUSTER_RESET + * + * Reset a Redis Cluster node + * + * Time complexity: O(N) where N is the number of known nodes. The command may execute a + * FLUSHALL as a side effect. + + * - Valid values for reset_type: "HARD", "SOFT" + * Annotated return value: simple-string + */ +int NWNX_Redis_CLUSTER_RESET( + // Redis type: enum + string reset_type = "" +); + +/** + * CLUSTER_SAVECONFIG + * + * Forces the node to save cluster state on disk + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_CLUSTER_SAVECONFIG(); + +/** + * CLUSTER_SET_CONFIG_EPOCH + * + * Set the configuration epoch in a new node + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_CLUSTER_SET_CONFIG_EPOCH( + // Redis type: integer + int config_epoch +); + +/** + * CLUSTER_SETSLOT + * + * Bind a hash slot to a specific node + * + * Time complexity: O(1) + + * - Valid values for subcommand: "IMPORTING", "MIGRATING", "STABLE", "NODE" + * Annotated return value: simple-string + */ +int NWNX_Redis_CLUSTER_SETSLOT( + // Redis type: integer + int slot, + // Redis type: enum + string subcommand, + string node_id = "" +); + +/** + * CLUSTER_SLAVES + * + * List replica nodes of the specified master node + * + * Time complexity: O(1) + * Annotated return value: + */ +int NWNX_Redis_CLUSTER_SLAVES( + string node_id +); + +/** + * CLUSTER_REPLICAS + * + * List replica nodes of the specified master node + * + * Time complexity: O(1) + * Annotated return value: + */ +int NWNX_Redis_CLUSTER_REPLICAS( + string node_id +); + +/** + * CLUSTER_SLOTS + * + * Get array of Cluster slot to node mappings + * + * Time complexity: O(N) where N is the total number of Cluster nodes + * Annotated return value: array + */ +int NWNX_Redis_CLUSTER_SLOTS(); + +/** + * COMMAND + * + * Get array of Redis command details + * + * Time complexity: O(N) where N is the total number of Redis commands + * Annotated return value: array + */ +int NWNX_Redis_COMMAND(); + +/** + * COMMAND_COUNT + * + * Get total number of Redis commands + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_COMMAND_COUNT(); + +/** + * COMMAND_GETKEYS + * + * Extract keys given a full Redis command + * + * Time complexity: O(N) where N is the number of arguments to the command + * Annotated return value: array + */ +int NWNX_Redis_COMMAND_GETKEYS(); + +/** + * COMMAND_INFO + * + * Get array of specific Redis command details + * + * Time complexity: O(N) when N is number of commands to look up + * Annotated return value: array + */ +int NWNX_Redis_COMMAND_INFO( + string command_name +); + +/** + * CONFIG_GET + * + * Get the value of a configuration parameter + * Annotated return value: array + */ +int NWNX_Redis_CONFIG_GET( + string parameter +); + +/** + * CONFIG_REWRITE + * + * Rewrite the configuration file with the in memory configuration + * Annotated return value: simple-string + */ +int NWNX_Redis_CONFIG_REWRITE(); + +/** + * CONFIG_SET + * + * Set a configuration parameter to the given value + * Annotated return value: simple-string + */ +int NWNX_Redis_CONFIG_SET( + string parameter, + string value +); + +/** + * CONFIG_RESETSTAT + * + * Reset the stats returned by INFO + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_CONFIG_RESETSTAT(); + +/** + * DBSIZE + * + * Return the number of keys in the selected database + * Annotated return value: integer + */ +int NWNX_Redis_DBSIZE(); + +/** + * DEBUG_OBJECT + * + * Get debugging information about a key + * Annotated return value: simple-string + */ +int NWNX_Redis_DEBUG_OBJECT( + string key +); + +/** + * DEBUG_SEGFAULT + * + * Make the server crash + * Annotated return value: simple-string + */ +int NWNX_Redis_DEBUG_SEGFAULT(); + +/** + * DECR + * + * Decrement the integer value of a key by one + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_DECR( + string key +); + +/** + * DECRBY + * + * Decrement the integer value of a key by the given number + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_DECRBY( + string key, + // Redis type: integer + int decrement +); + +/** + * DEL + * + * Delete a key + * + * Time complexity: O(N) where N is the number of keys that will be removed. When a key to + * remove holds a value other than a string, the individual complexity for this + * key is O(M) where M is the number of elements in the list, set, sorted set + * or hash. Removing a single key that holds a string value is O(1). + * Annotated return value: integer + */ +int NWNX_Redis_DEL( + string key +); + +/** + * DISCARD + * + * Discard all commands issued after MULTI + * Annotated return value: simple-string + */ +int NWNX_Redis_DISCARD(); + +/** + * DUMP + * + * Return a serialized version of the value stored at the specified key. + * + * Time complexity: O(1) to access the key and additional O(N*M) to serialized it, where N is + * the number of Redis objects composing the value and M their average size. + * For small string values the time complexity is thus O(1)+O(1*M) where M is + * small, so simply O(1). + * Annotated return value: bulk-string + */ +int NWNX_Redis_DUMP( + string key +); + +/** + * ECHO + * + * Echo the given string + * Annotated return value: bulk-string + */ +int NWNX_Redis_ECHO( + string message +); + +/** + * EVAL + * + * Execute a Lua script server side + * + * Time complexity: Depends on the script that is executed. + * Annotated return value: + */ +int NWNX_Redis_EVAL( + string script, + // Redis type: integer + int numkeys, + string key, + string arg +); + +/** + * EVALSHA + * + * Execute a Lua script server side + * + * Time complexity: Depends on the script that is executed. + * Annotated return value: + */ +int NWNX_Redis_EVALSHA( + string sha1, + // Redis type: integer + int numkeys, + string key, + string arg +); + +/** + * EXEC + * + * Execute all commands issued after MULTI + * Annotated return value: array + */ +int NWNX_Redis_EXEC(); + +/** + * EXISTS + * + * Determine if a key exists + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_EXISTS( + string key +); + +/** + * EXPIRE + * + * Set a key's time to live in seconds + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_EXPIRE( + string key, + // Redis type: integer + int seconds +); + +/** + * EXPIREAT + * + * Set the expiration for a key as a UNIX timestamp + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_EXPIREAT( + string key, + // Redis type: posix time + string timestamp +); + +/** + * FLUSHALL + * + * Remove all keys from all databases + + * - Valid values for async: "ASYNC" + * Annotated return value: simple-string + */ +int NWNX_Redis_FLUSHALL( + // Redis type: enum + string async = "" +); + +/** + * FLUSHDB + * + * Remove all keys from the current database + + * - Valid values for async: "ASYNC" + * Annotated return value: simple-string + */ +int NWNX_Redis_FLUSHDB( + // Redis type: enum + string async = "" +); + +/** + * GEOADD + * + * Add one or more geospatial items in the geospatial index represented using a sorted set + * + * Time complexity: O(log(N)) for each item added, where N is the number of elements in the + * sorted set. + * Annotated return value: integer + */ +int NWNX_Redis_GEOADD( + string key, + // Redis type: double + float longitude, + // Redis type: double + float latitude, + string member +); + +/** + * GEOHASH + * + * Returns members of a geospatial index as standard geohash strings + * + * Time complexity: O(log(N)) for each member requested, where N is the number of elements in + * the sorted set. + * Annotated return value: array + */ +int NWNX_Redis_GEOHASH( + string key, + string member +); + +/** + * GEOPOS + * + * Returns longitude and latitude of members of a geospatial index + * + * Time complexity: O(log(N)) for each member requested, where N is the number of elements in + * the sorted set. + * Annotated return value: array + */ +int NWNX_Redis_GEOPOS( + string key, + string member +); + +/** + * GEODIST + * + * Returns the distance between two members of a geospatial index + * + * Time complexity: O(log(N)) + * Annotated return value: bulk-string + */ +int NWNX_Redis_GEODIST( + string key, + string member1, + string member2, + string unit = "" +); + +/** + * GEORADIUS + * + * Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a point + * + * Time complexity: O(N+log(M)) where N is the number of elements inside the bounding box of the + * circular area delimited by center and radius and M is the number of items + * inside the index. + + * - Valid values for unit: "m", "km", "ft", "mi" + + * - Valid values for withcoord: "WITHCOORD" + + * - Valid values for withdist: "WITHDIST" + + * - Valid values for withhash: "WITHHASH" + + * - Valid values for order: "ASC", "DESC" + * Annotated return value: array + */ +int NWNX_Redis_GEORADIUS( + string key, + // Redis type: double + float longitude, + // Redis type: double + float latitude, + // Redis type: double + float radius, + // Redis type: enum + string unit, + // Redis type: enum + string withcoord = "", + // Redis type: enum + string withdist = "", + // Redis type: enum + string withhash = "", + // Redis type: integer + int count_count = 0, + // Redis type: enum + string order = "", + // Redis type: key + string store_key = "", + // Redis type: key + string storedist_key = "" +); + +/** + * GEORADIUSBYMEMBER + * + * Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a member + * + * Time complexity: O(N+log(M)) where N is the number of elements inside the bounding box of the + * circular area delimited by center and radius and M is the number of items + * inside the index. + + * - Valid values for unit: "m", "km", "ft", "mi" + + * - Valid values for withcoord: "WITHCOORD" + + * - Valid values for withdist: "WITHDIST" + + * - Valid values for withhash: "WITHHASH" + + * - Valid values for order: "ASC", "DESC" + * Annotated return value: + */ +int NWNX_Redis_GEORADIUSBYMEMBER( + string key, + string member, + // Redis type: double + float radius, + // Redis type: enum + string unit, + // Redis type: enum + string withcoord = "", + // Redis type: enum + string withdist = "", + // Redis type: enum + string withhash = "", + // Redis type: integer + int count_count = 0, + // Redis type: enum + string order = "", + // Redis type: key + string store_key = "", + // Redis type: key + string storedist_key = "" +); + +/** + * GET + * + * Get the value of a key + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_GET( + string key +); + +/** + * GETBIT + * + * Returns the bit value at offset in the string value stored at key + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_GETBIT( + string key, + // Redis type: integer + int offset +); + +/** + * GETRANGE + * + * Get a substring of the string stored at a key + * + * Time complexity: O(N) where N is the length of the returned string. The complexity is + * ultimately determined by the returned length, but because creating a + * substring from an existing string is very cheap, it can be considered O(1) + * for small strings. + * Annotated return value: bulk-string + */ +int NWNX_Redis_GETRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int end +); + +/** + * GETSET + * + * Set the string value of a key and return its old value + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_GETSET( + string key, + string value +); + +/** + * HDEL + * + * Delete one or more hash fields + * + * Time complexity: O(N) where N is the number of fields to be removed. + * Annotated return value: integer + */ +int NWNX_Redis_HDEL( + string key, + string field +); + +/** + * HEXISTS + * + * Determine if a hash field exists + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_HEXISTS( + string key, + string field +); + +/** + * HGET + * + * Get the value of a hash field + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_HGET( + string key, + string field +); + +/** + * HGETALL + * + * Get all the fields and values in a hash + * + * Time complexity: O(N) where N is the size of the hash. + * Annotated return value: array + */ +int NWNX_Redis_HGETALL( + string key +); + +/** + * HINCRBY + * + * Increment the integer value of a hash field by the given number + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_HINCRBY( + string key, + string field, + // Redis type: integer + int increment +); + +/** + * HINCRBYFLOAT + * + * Increment the float value of a hash field by the given amount + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_HINCRBYFLOAT( + string key, + string field, + // Redis type: double + float increment +); + +/** + * HKEYS + * + * Get all the fields in a hash + * + * Time complexity: O(N) where N is the size of the hash. + * Annotated return value: array + */ +int NWNX_Redis_HKEYS( + string key +); + +/** + * HLEN + * + * Get the number of fields in a hash + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_HLEN( + string key +); + +/** + * HMGET + * + * Get the values of all the given hash fields + * + * Time complexity: O(N) where N is the number of fields being requested. + * Annotated return value: array + */ +int NWNX_Redis_HMGET( + string key, + string field +); + +/** + * HMSET + * + * Set multiple hash fields to multiple values + * + * Time complexity: O(N) where N is the number of fields being set. + * Annotated return value: simple-string + */ +int NWNX_Redis_HMSET( + string key, + string field, + string value +); + +/** + * HSET + * + * Set the string value of a hash field + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_HSET( + string key, + string field, + string value +); + +/** + * HSETNX + * + * Set the value of a hash field, only if the field does not exist + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_HSETNX( + string key, + string field, + string value +); + +/** + * HSTRLEN + * + * Get the length of the value of a hash field + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_HSTRLEN( + string key, + string field +); + +/** + * HVALS + * + * Get all the values in a hash + * + * Time complexity: O(N) where N is the size of the hash. + * Annotated return value: array + */ +int NWNX_Redis_HVALS( + string key +); + +/** + * INCR + * + * Increment the integer value of a key by one + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_INCR( + string key +); + +/** + * INCRBY + * + * Increment the integer value of a key by the given amount + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_INCRBY( + string key, + // Redis type: integer + int increment +); + +/** + * INCRBYFLOAT + * + * Increment the float value of a key by the given amount + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_INCRBYFLOAT( + string key, + // Redis type: double + float increment +); + +/** + * INFO + * + * Get information and statistics about the server + * Annotated return value: bulk-string + */ +int NWNX_Redis_INFO( + string section = "" +); + +/** + * KEYS + * + * Find all keys matching the given pattern + * + * Time complexity: O(N) with N being the number of keys in the database, under the assumption + * that the key names in the database and the given pattern have limited + * length. + * Annotated return value: array + */ +int NWNX_Redis_KEYS( + string pattern +); + +/** + * LASTSAVE + * + * Get the UNIX time stamp of the last successful save to disk + * Annotated return value: integer + */ +int NWNX_Redis_LASTSAVE(); + +/** + * LINDEX + * + * Get an element from a list by its index + * + * Time complexity: O(N) where N is the number of elements to traverse to get to the element at + * index. This makes asking for the first or the last element of the list O(1). + * Annotated return value: bulk-string + */ +int NWNX_Redis_LINDEX( + string key, + // Redis type: integer + int index +); + +/** + * LINSERT + * + * Insert an element before or after another element in a list + * + * Time complexity: O(N) where N is the number of elements to traverse before seeing the value + * pivot. This means that inserting somewhere on the left end on the list + * (head) can be considered O(1) and inserting somewhere on the right end + * (tail) is O(N). + + * - Valid values for where: "BEFORE", "AFTER" + * Annotated return value: integer + */ +int NWNX_Redis_LINSERT( + string key, + // Redis type: enum + string where, + string pivot, + string value +); + +/** + * LLEN + * + * Get the length of a list + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_LLEN( + string key +); + +/** + * LPOP + * + * Remove and get the first element in a list + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_LPOP( + string key +); + +/** + * LPUSH + * + * Prepend one or multiple values to a list + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_LPUSH( + string key, + string value +); + +/** + * LPUSHX + * + * Prepend a value to a list, only if the list exists + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_LPUSHX( + string key, + string value +); + +/** + * LRANGE + * + * Get a range of elements from a list + * + * Time complexity: O(S+N) where S is the distance of start offset from HEAD for small lists, + * from nearest end (HEAD or TAIL) for large lists; and N is the number of + * elements in the specified range. + * Annotated return value: array + */ +int NWNX_Redis_LRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +); + +/** + * LREM + * + * Remove elements from a list + * + * Time complexity: O(N) where N is the length of the list. + * Annotated return value: integer + */ +int NWNX_Redis_LREM( + string key, + // Redis type: integer + int count, + string value +); + +/** + * LSET + * + * Set the value of an element in a list by its index + * + * Time complexity: O(N) where N is the length of the list. Setting either the first or the last + * element of the list is O(1). + * Annotated return value: simple-string + */ +int NWNX_Redis_LSET( + string key, + // Redis type: integer + int index, + string value +); + +/** + * LTRIM + * + * Trim a list to the specified range + * + * Time complexity: O(N) where N is the number of elements to be removed by the operation. + * Annotated return value: simple-string + */ +int NWNX_Redis_LTRIM( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +); + +/** + * MEMORY_DOCTOR + * + * Outputs memory problems report + * Annotated return value: bulk-string + */ +int NWNX_Redis_MEMORY_DOCTOR(); + +/** + * MEMORY_HELP + * + * Show helpful text about the different subcommands + * Annotated return value: array + */ +int NWNX_Redis_MEMORY_HELP(); + +/** + * MEMORY_MALLOC_STATS + * + * Show allocator internal stats + * Annotated return value: bulk-string + */ +int NWNX_Redis_MEMORY_MALLOC_STATS(); + +/** + * MEMORY_PURGE + * + * Ask the allocator to release memory + * Annotated return value: simple-string + */ +int NWNX_Redis_MEMORY_PURGE(); + +/** + * MEMORY_STATS + * + * Show memory usage details + * Annotated return value: array + */ +int NWNX_Redis_MEMORY_STATS(); + +/** + * MEMORY_USAGE + * + * Estimate the memory usage of a key + * + * Time complexity: O(N) where N is the number of samples. + * Annotated return value: integer + */ +int NWNX_Redis_MEMORY_USAGE( + string key, + // Redis type: integer + int samples_count = 0 +); + +/** + * MGET + * + * Get the values of all the given keys + * + * Time complexity: O(N) where N is the number of keys to retrieve. + * Annotated return value: array + */ +int NWNX_Redis_MGET( + string key +); + +/** + * MIGRATE + * + * Atomically transfer a key from a Redis instance to another one. + * + * Time complexity: This command actually executes a DUMP+DEL in the source instance, and a + * RESTORE in the target instance. See the pages of these commands for time + * complexity. Also an O(N) data transfer between the two instances is + * performed. + + * - Valid values for key: "key", "\"\"" + + * - Valid values for copy: "COPY" + + * - Valid values for replace: "REPLACE" + * Annotated return value: simple-string + */ +int NWNX_Redis_MIGRATE( + string host, + string port, + // Redis type: enum + string key, + // Redis type: integer + int destination_db, + // Redis type: integer + int timeout, + // Redis type: enum + string copy = "", + // Redis type: enum + string replace = "", + string auth_password = "", + // Redis type: key + string keys_key = "" +); + +/** + * MONITOR + * + * Listen for all requests received by the server in real time + * Annotated return value: + */ +int NWNX_Redis_MONITOR(); + +/** + * MOVE + * + * Move a key to another database + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_MOVE( + string key, + // Redis type: integer + int db +); + +/** + * MSET + * + * Set multiple keys to multiple values + * + * Time complexity: O(N) where N is the number of keys to set. + * Annotated return value: simple-string + */ +int NWNX_Redis_MSET( + string key, + string value +); + +/** + * MSETNX + * + * Set multiple keys to multiple values, only if none of the keys exist + * + * Time complexity: O(N) where N is the number of keys to set. + * Annotated return value: integer + */ +int NWNX_Redis_MSETNX( + string key, + string value +); + +/** + * MULTI + * + * Mark the start of a transaction block + * Annotated return value: simple-string + */ +int NWNX_Redis_MULTI(); + +/** + * OBJECT + * + * Inspect the internals of Redis objects + * + * Time complexity: O(1) for all the currently implemented subcommands. + * Annotated return value: + */ +int NWNX_Redis_OBJECT( + string subcommand, + string arguments = "" +); + +/** + * PERSIST + * + * Remove the expiration from a key + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_PERSIST( + string key +); + +/** + * PEXPIRE + * + * Set a key's time to live in milliseconds + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_PEXPIRE( + string key, + // Redis type: integer + int milliseconds +); + +/** + * PEXPIREAT + * + * Set the expiration for a key as a UNIX timestamp specified in milliseconds + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_PEXPIREAT( + string key, + // Redis type: posix time + string milliseconds_timestamp +); + +/** + * PFADD + * + * Adds the specified elements to the specified HyperLogLog. + * + * Time complexity: O(1) to add every element. + * Annotated return value: integer + */ +int NWNX_Redis_PFADD( + string key, + string element +); + +/** + * PFCOUNT + * + * Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s). + * + * Time complexity: O(1) with a very small average constant time when called with a single key. + * O(N) with N being the number of keys, and much bigger constant times, when + * called with multiple keys. + * Annotated return value: integer + */ +int NWNX_Redis_PFCOUNT( + string key +); + +/** + * PFMERGE + * + * Merge N different HyperLogLogs into a single one. + * + * Time complexity: O(N) to merge N HyperLogLogs, but with high constant times. + * Annotated return value: simple-string + */ +int NWNX_Redis_PFMERGE( + // Redis type: key + string destkey, + // Redis type: key + string sourcekey +); + +/** + * PING + * + * Ping the server + * Annotated return value: simple-string + */ +int NWNX_Redis_PING( + string message = "" +); + +/** + * PSETEX + * + * Set the value and expiration in milliseconds of a key + * + * Time complexity: O(1) + * Annotated return value: + */ +int NWNX_Redis_PSETEX( + string key, + // Redis type: integer + int milliseconds, + string value +); + +/** + * PUBSUB + * + * Inspect the state of the Pub/Sub subsystem + * + * Time complexity: O(N) for the CHANNELS subcommand, where N is the number of active channels, + * and assuming constant time pattern matching (relatively short channels and + * patterns). O(N) for the NUMSUB subcommand, where N is the number of + * requested channels. O(1) for the NUMPAT subcommand. + * Annotated return value: array + */ +int NWNX_Redis_PUBSUB( + string subcommand, + string argument = "" +); + +/** + * PTTL + * + * Get the time to live for a key in milliseconds + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_PTTL( + string key +); + +/** + * PUBLISH + * + * Post a message to a channel + * + * Time complexity: O(N+M) where N is the number of clients subscribed to the receiving channel + * and M is the total number of subscribed patterns (by any client). + * Annotated return value: integer + */ +int NWNX_Redis_PUBLISH( + string channel, + string message +); + +/** + * QUIT + * + * Close the connection + * Annotated return value: simple-string + */ +int NWNX_Redis_QUIT(); + +/** + * RANDOMKEY + * + * Return a random key from the keyspace + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_RANDOMKEY(); + +/** + * READONLY + * + * Enables read queries for a connection to a cluster replica node + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_READONLY(); + +/** + * READWRITE + * + * Disables read queries for a connection to a cluster replica node + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_READWRITE(); + +/** + * RENAME + * + * Rename a key + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_RENAME( + string key, + // Redis type: key + string newkey +); + +/** + * RENAMENX + * + * Rename a key, only if the new key does not exist + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_RENAMENX( + string key, + // Redis type: key + string newkey +); + +/** + * RESTORE + * + * Create a key using the provided serialized value, previously obtained using DUMP. + * + * Time complexity: O(1) to create the new key and additional O(N*M) to reconstruct the + * serialized value, where N is the number of Redis objects composing the value + * and M their average size. For small string values the time complexity is + * thus O(1)+O(1*M) where M is small, so simply O(1). However for sorted set + * values the complexity is O(N*M*log(N)) because inserting values into sorted + * sets is O(log(N)). + + * - Valid values for replace: "REPLACE" + + * - Valid values for absttl: "ABSTTL" + * Annotated return value: simple-string + */ +int NWNX_Redis_RESTORE( + string key, + // Redis type: integer + int ttl, + string serialized_value, + // Redis type: enum + string replace = "", + // Redis type: enum + string absttl = "", + // Redis type: integer + int idletime_seconds = 0, + // Redis type: integer + int freq_frequency = 0 +); + +/** + * ROLE + * + * Return the role of the instance in the context of replication + * Annotated return value: array + */ +int NWNX_Redis_ROLE(); + +/** + * RPOP + * + * Remove and get the last element in a list + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_RPOP( + string key +); + +/** + * RPOPLPUSH + * + * Remove the last element in a list, prepend it to another list and return it + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_RPOPLPUSH( + // Redis type: key + string source, + // Redis type: key + string destination +); + +/** + * RPUSH + * + * Append one or multiple values to a list + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_RPUSH( + string key, + string value +); + +/** + * RPUSHX + * + * Append a value to a list, only if the list exists + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_RPUSHX( + string key, + string value +); + +/** + * SADD + * + * Add one or more members to a set + * + * Time complexity: O(1) for each element added, so O(N) to add N elements when the command is + * called with multiple arguments. + * Annotated return value: integer + */ +int NWNX_Redis_SADD( + string key, + string member +); + +/** + * SAVE + * + * Synchronously save the dataset to disk + * Annotated return value: simple-string + */ +int NWNX_Redis_SAVE(); + +/** + * SCARD + * + * Get the number of members in a set + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_SCARD( + string key +); + +/** + * SCRIPT_DEBUG + * + * Set the debug mode for executed scripts. + * + * Time complexity: O(1) + + * - Valid values for mode: "YES", "SYNC", "NO" + * Annotated return value: simple-string + */ +int NWNX_Redis_SCRIPT_DEBUG( + // Redis type: enum + string mode +); + +/** + * SCRIPT_EXISTS + * + * Check existence of scripts in the script cache. + * + * Time complexity: O(N) with N being the number of scripts to check (so checking a single + * script is an O(1) operation). + * Annotated return value: array + */ +int NWNX_Redis_SCRIPT_EXISTS( + string sha1 +); + +/** + * SCRIPT_FLUSH + * + * Remove all the scripts from the script cache. + * + * Time complexity: O(N) with N being the number of scripts in cache + * Annotated return value: simple-string + */ +int NWNX_Redis_SCRIPT_FLUSH(); + +/** + * SCRIPT_KILL + * + * Kill the script currently in execution. + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_SCRIPT_KILL(); + +/** + * SCRIPT_LOAD + * + * Load the specified Lua script into the script cache. + * + * Time complexity: O(N) with N being the length in bytes of the script body. + * Annotated return value: bulk-string + */ +int NWNX_Redis_SCRIPT_LOAD( + string script +); + +/** + * SDIFF + * + * Subtract multiple sets + * + * Time complexity: O(N) where N is the total number of elements in all given sets. + * Annotated return value: array + */ +int NWNX_Redis_SDIFF( + string key +); + +/** + * SDIFFSTORE + * + * Subtract multiple sets and store the resulting set in a key + * + * Time complexity: O(N) where N is the total number of elements in all given sets. + * Annotated return value: integer + */ +int NWNX_Redis_SDIFFSTORE( + // Redis type: key + string destination, + string key +); + +/** + * SELECT + * + * Change the selected database for the current connection + * Annotated return value: simple-string + */ +int NWNX_Redis_SELECT( + // Redis type: integer + int index +); + +/** + * SET + * + * Set the string value of a key + * + * Time complexity: O(1) + + * - Valid values for condition: "NX", "XX" + * Annotated return value: simple-string + */ +int NWNX_Redis_SET( + string key, + string value, + // Redis type: enum + string condition = "" +); + +/** + * SETBIT + * + * Sets or clears the bit at offset in the string value stored at key + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_SETBIT( + string key, + // Redis type: integer + int offset, + string value +); + +/** + * SETEX + * + * Set the value and expiration of a key + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_SETEX( + string key, + // Redis type: integer + int seconds, + string value +); + +/** + * SETNX + * + * Set the value of a key, only if the key does not exist + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_SETNX( + string key, + string value +); + +/** + * SETRANGE + * + * Overwrite part of a string at key starting at the specified offset + * + * Time complexity: O(1), not counting the time taken to copy the new string in place. Usually, + * this string is very small so the amortized complexity is O(1). Otherwise, + * complexity is O(M) with M being the length of the value argument. + * Annotated return value: integer + */ +int NWNX_Redis_SETRANGE( + string key, + // Redis type: integer + int offset, + string value +); + +/** + * SHUTDOWN + * + * Synchronously save the dataset to disk and then shut down the server + + * - Valid values for save_mode: "NOSAVE", "SAVE" + * Annotated return value: simple-string + */ +int NWNX_Redis_SHUTDOWN( + // Redis type: enum + string save_mode = "" +); + +/** + * SINTER + * + * Intersect multiple sets + * + * Time complexity: O(N*M) worst case where N is the cardinality of the smallest set and M is + * the number of sets. + * Annotated return value: array + */ +int NWNX_Redis_SINTER( + string key +); + +/** + * SINTERSTORE + * + * Intersect multiple sets and store the resulting set in a key + * + * Time complexity: O(N*M) worst case where N is the cardinality of the smallest set and M is + * the number of sets. + * Annotated return value: integer + */ +int NWNX_Redis_SINTERSTORE( + // Redis type: key + string destination, + string key +); + +/** + * SISMEMBER + * + * Determine if a given value is a member of a set + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_SISMEMBER( + string key, + string member +); + +/** + * SLAVEOF + * + * Make the server a replica of another instance, or promote it as master. Deprecated starting with Redis 5. Use REPLICAOF instead. + * Annotated return value: simple-string + */ +int NWNX_Redis_SLAVEOF( + string host, + string port +); + +/** + * REPLICAOF + * + * Make the server a replica of another instance, or promote it as master. + * Annotated return value: simple-string + */ +int NWNX_Redis_REPLICAOF( + string host, + string port +); + +/** + * SLOWLOG + * + * Manages the Redis slow queries log + * Annotated return value: + */ +int NWNX_Redis_SLOWLOG( + string subcommand, + string argument = "" +); + +/** + * SMEMBERS + * + * Get all the members in a set + * + * Time complexity: O(N) where N is the set cardinality. + * Annotated return value: array + */ +int NWNX_Redis_SMEMBERS( + string key +); + +/** + * SMOVE + * + * Move a member from one set to another + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_SMOVE( + // Redis type: key + string source, + // Redis type: key + string destination, + string member +); + +/** + * SORT + * + * Sort the elements in a list, set or sorted set + * + * Time complexity: O(N+M*log(M)) where N is the number of elements in the list or set to sort, + * and M the number of returned elements. When the elements are not sorted, + * complexity is currently O(N) as there is a copy step that will be avoided in + * next releases. + + * - Valid values for order: "ASC", "DESC" + + * - Valid values for sorting: "ALPHA" + * Annotated return value: array + */ +int NWNX_Redis_SORT( + string key, + // Redis type: pattern + string by_pattern = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0, + string get_pattern = "", + // Redis type: enum + string order = "", + // Redis type: enum + string sorting = "", + // Redis type: key + string store_destination = "" +); + +/** + * SPOP + * + * Remove and return one or multiple random members from a set + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_SPOP( + string key, + // Redis type: integer + int count = 0 +); + +/** + * SRANDMEMBER + * + * Get one or multiple random members from a set + * + * Time complexity: Without the count argument O(1), otherwise O(N) where N is the absolute + * value of the passed count. + * Annotated return value: bulk-string + */ +int NWNX_Redis_SRANDMEMBER( + string key, + // Redis type: integer + int count = 0 +); + +/** + * SREM + * + * Remove one or more members from a set + * + * Time complexity: O(N) where N is the number of members to be removed. + * Annotated return value: integer + */ +int NWNX_Redis_SREM( + string key, + string member +); + +/** + * STRLEN + * + * Get the length of the value stored in a key + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_STRLEN( + string key +); + +/** + * SUNION + * + * Add multiple sets + * + * Time complexity: O(N) where N is the total number of elements in all given sets. + * Annotated return value: array + */ +int NWNX_Redis_SUNION( + string key +); + +/** + * SUNIONSTORE + * + * Add multiple sets and store the resulting set in a key + * + * Time complexity: O(N) where N is the total number of elements in all given sets. + * Annotated return value: integer + */ +int NWNX_Redis_SUNIONSTORE( + // Redis type: key + string destination, + string key +); + +/** + * SWAPDB + * + * Swaps two Redis databases + * Annotated return value: simple-string + */ +int NWNX_Redis_SWAPDB( + // Redis type: integer + int index, + // Redis type: integer + int index_1 +); + +/** + * SYNC + * + * Internal command used for replication + * Annotated return value: + */ +int NWNX_Redis_SYNC(); + +/** + * TIME + * + * Return the current server time + * + * Time complexity: O(1) + * Annotated return value: array + */ +int NWNX_Redis_TIME(); + +/** + * TOUCH + * + * Alters the last access time of a key(s). Returns the number of existing keys specified. + * + * Time complexity: O(N) where N is the number of keys that will be touched. + * Annotated return value: integer + */ +int NWNX_Redis_TOUCH( + string key +); + +/** + * TTL + * + * Get the time to live for a key + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_TTL( + string key +); + +/** + * TYPE + * + * Determine the type stored at key + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_TYPE( + string key +); + +/** + * UNLINK + * + * Delete a key asynchronously in another thread. Otherwise it is just as DEL, but non blocking. + * + * Time complexity: O(1) for each key removed regardless of its size. Then the command does O(N) + * work in a different thread in order to reclaim memory, where N is the number + * of allocations the deleted objects where composed of. + * Annotated return value: integer + */ +int NWNX_Redis_UNLINK( + string key +); + +/** + * UNWATCH + * + * Forget about all watched keys + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int NWNX_Redis_UNWATCH(); + +/** + * WAIT + * + * Wait for the synchronous replication of all the write commands sent in the context of the current connection + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_WAIT( + // Redis type: integer + int numreplicas, + // Redis type: integer + int timeout +); + +/** + * WATCH + * + * Watch the given keys to determine execution of the MULTI/EXEC block + * + * Time complexity: O(1) for every key. + * Annotated return value: simple-string + */ +int NWNX_Redis_WATCH( + string key +); + +/** + * ZADD + * + * Add one or more members to a sorted set, or update its score if it already exists + * + * Time complexity: O(log(N)) for each item added, where N is the number of elements in the + * sorted set. + + * - Valid values for condition: "NX", "XX" + + * - Valid values for change: "CH" + + * - Valid values for increment: "INCR" + * Annotated return value: integer + */ +int NWNX_Redis_ZADD( + string key, + // Redis type: enum + string condition = "", + // Redis type: enum + string change = "", + // Redis type: enum + string increment = "", + // Redis type: double + float score = 0.0, + string member = "" +); + +/** + * ZCARD + * + * Get the number of members in a sorted set + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_ZCARD( + string key +); + +/** + * ZCOUNT + * + * Count the members in a sorted set with scores within the given values + * + * Time complexity: O(log(N)) with N being the number of elements in the sorted set. + * Annotated return value: integer + */ +int NWNX_Redis_ZCOUNT( + string key, + // Redis type: double + float min, + // Redis type: double + float max +); + +/** + * ZINCRBY + * + * Increment the score of a member in a sorted set + * + * Time complexity: O(log(N)) where N is the number of elements in the sorted set. + * Annotated return value: bulk-string + */ +int NWNX_Redis_ZINCRBY( + string key, + // Redis type: integer + int increment, + string member +); + +/** + * ZINTERSTORE + * + * Intersect multiple sorted sets and store the resulting sorted set in a new key + * + * Time complexity: O(N*K)+O(M*log(M)) worst case with N being the smallest input sorted set, K + * being the number of input sorted sets and M being the number of elements in + * the resulting sorted set. + + * - Valid values for aggregate_aggregate: "SUM", "MIN", "MAX" + * Annotated return value: integer + */ +int NWNX_Redis_ZINTERSTORE( + // Redis type: key + string destination, + // Redis type: integer + int numkeys, + string key, + // Redis type: integer + int weights_weight = 0, + // Redis type: enum + string aggregate_aggregate = "" +); + +/** + * ZLEXCOUNT + * + * Count the number of members in a sorted set between a given lexicographical range + * + * Time complexity: O(log(N)) with N being the number of elements in the sorted set. + * Annotated return value: integer + */ +int NWNX_Redis_ZLEXCOUNT( + string key, + string min, + string max +); + +/** + * ZPOPMAX + * + * Remove and return members with the highest scores in a sorted set + * + * Time complexity: O(log(N)*M) with N being the number of elements in the sorted set, and M + * being the number of elements popped. + * Annotated return value: array + */ +int NWNX_Redis_ZPOPMAX( + string key, + // Redis type: integer + int count = 0 +); + +/** + * ZPOPMIN + * + * Remove and return members with the lowest scores in a sorted set + * + * Time complexity: O(log(N)*M) with N being the number of elements in the sorted set, and M + * being the number of elements popped. + * Annotated return value: array + */ +int NWNX_Redis_ZPOPMIN( + string key, + // Redis type: integer + int count = 0 +); + +/** + * ZRANGE + * + * Return a range of members in a sorted set, by index + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements returned. + + * - Valid values for withscores: "WITHSCORES" + * Annotated return value: array + */ +int NWNX_Redis_ZRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop, + // Redis type: enum + string withscores = "" +); + +/** + * ZRANGEBYLEX + * + * Return a range of members in a sorted set, by lexicographical range + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements being returned. If M is constant (e.g. always asking for + * the first 10 elements with LIMIT), you can consider it O(log(N)). + * Annotated return value: array + */ +int NWNX_Redis_ZRANGEBYLEX( + string key, + string min, + string max, + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +); + +/** + * ZREVRANGEBYLEX + * + * Return a range of members in a sorted set, by lexicographical range, ordered from higher to lower strings. + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements being returned. If M is constant (e.g. always asking for + * the first 10 elements with LIMIT), you can consider it O(log(N)). + * Annotated return value: array + */ +int NWNX_Redis_ZREVRANGEBYLEX( + string key, + string max, + string min, + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +); + +/** + * ZRANGEBYSCORE + * + * Return a range of members in a sorted set, by score + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements being returned. If M is constant (e.g. always asking for + * the first 10 elements with LIMIT), you can consider it O(log(N)). + + * - Valid values for withscores: "WITHSCORES" + * Annotated return value: array + */ +int NWNX_Redis_ZRANGEBYSCORE( + string key, + // Redis type: double + float min, + // Redis type: double + float max, + // Redis type: enum + string withscores = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +); + +/** + * ZRANK + * + * Determine the index of a member in a sorted set + * + * Time complexity: O(log(N)) + * Annotated return value: integer + */ +int NWNX_Redis_ZRANK( + string key, + string member +); + +/** + * ZREM + * + * Remove one or more members from a sorted set + * + * Time complexity: O(M*log(N)) with N being the number of elements in the sorted set and M the + * number of elements to be removed. + * Annotated return value: integer + */ +int NWNX_Redis_ZREM( + string key, + string member +); + +/** + * ZREMRANGEBYLEX + * + * Remove all members in a sorted set between the given lexicographical range + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements removed by the operation. + * Annotated return value: integer + */ +int NWNX_Redis_ZREMRANGEBYLEX( + string key, + string min, + string max +); + +/** + * ZREMRANGEBYRANK + * + * Remove all members in a sorted set within the given indexes + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements removed by the operation. + * Annotated return value: integer + */ +int NWNX_Redis_ZREMRANGEBYRANK( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +); + +/** + * ZREMRANGEBYSCORE + * + * Remove all members in a sorted set within the given scores + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements removed by the operation. + * Annotated return value: integer + */ +int NWNX_Redis_ZREMRANGEBYSCORE( + string key, + // Redis type: double + float min, + // Redis type: double + float max +); + +/** + * ZREVRANGE + * + * Return a range of members in a sorted set, by index, with scores ordered from high to low + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements returned. + + * - Valid values for withscores: "WITHSCORES" + * Annotated return value: array + */ +int NWNX_Redis_ZREVRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop, + // Redis type: enum + string withscores = "" +); + +/** + * ZREVRANGEBYSCORE + * + * Return a range of members in a sorted set, by score, with scores ordered from high to low + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements being returned. If M is constant (e.g. always asking for + * the first 10 elements with LIMIT), you can consider it O(log(N)). + + * - Valid values for withscores: "WITHSCORES" + * Annotated return value: array + */ +int NWNX_Redis_ZREVRANGEBYSCORE( + string key, + // Redis type: double + float max, + // Redis type: double + float min, + // Redis type: enum + string withscores = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +); + +/** + * ZREVRANK + * + * Determine the index of a member in a sorted set, with scores ordered from high to low + * + * Time complexity: O(log(N)) + * Annotated return value: integer + */ +int NWNX_Redis_ZREVRANK( + string key, + string member +); + +/** + * ZSCORE + * + * Get the score associated with the given member in a sorted set + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_ZSCORE( + string key, + string member +); + +/** + * ZUNIONSTORE + * + * Add multiple sorted sets and store the resulting sorted set in a new key + * + * Time complexity: O(N)+O(M log(M)) with N being the sum of the sizes of the input sorted sets, + * and M being the number of elements in the resulting sorted set. + + * - Valid values for aggregate_aggregate: "SUM", "MIN", "MAX" + * Annotated return value: integer + */ +int NWNX_Redis_ZUNIONSTORE( + // Redis type: key + string destination, + // Redis type: integer + int numkeys, + string key, + // Redis type: integer + int weights_weight = 0, + // Redis type: enum + string aggregate_aggregate = "" +); + +/** + * SCAN + * + * Incrementally iterate the keys space + * + * Time complexity: O(1) for every call. O(N) for a complete iteration, including enough command + * calls for the cursor to return back to 0. N is the number of elements inside + * the collection. + * Annotated return value: + */ +int NWNX_Redis_SCAN( + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0, + string type_type = "" +); + +/** + * SSCAN + * + * Incrementally iterate Set elements + * + * Time complexity: O(1) for every call. O(N) for a complete iteration, including enough command + * calls for the cursor to return back to 0. N is the number of elements inside + * the collection.. + * Annotated return value: + */ +int NWNX_Redis_SSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +); + +/** + * HSCAN + * + * Incrementally iterate hash fields and associated values + * + * Time complexity: O(1) for every call. O(N) for a complete iteration, including enough command + * calls for the cursor to return back to 0. N is the number of elements inside + * the collection.. + * Annotated return value: + */ +int NWNX_Redis_HSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +); + +/** + * ZSCAN + * + * Incrementally iterate sorted sets elements and associated scores + * + * Time complexity: O(1) for every call. O(N) for a complete iteration, including enough command + * calls for the cursor to return back to 0. N is the number of elements inside + * the collection.. + * Annotated return value: + */ +int NWNX_Redis_ZSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +); + +/** + * XINFO + * + * Get information on streams and consumer groups + * + * Time complexity: O(N) with N being the number of returned items for the subcommands CONSUMERS + * and GROUPS. The STREAM subcommand is O(log N) with N being the number of + * items in the stream. + + * - Valid values for help: "HELP" + * Annotated return value: + */ +int NWNX_Redis_XINFO( + // Redis type: key + string consumers_key = "", + string consumers_groupname = "", + // Redis type: key + string groups_key = "", + // Redis type: key + string stream_key = "", + // Redis type: enum + string help = "" +); + +/** + * XADD + * + * Appends a new entry to a stream + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int NWNX_Redis_XADD( + string key, + string ID, + // Redis type: value + string field, + string str +); + +/** + * XTRIM + * + * Trims the stream to (approximately if '~' is passed) a certain size + * + * Time complexity: O(N), with N being the number of evicted entries. Constant times are very + * small however, since entries are organized in macro nodes containing + * multiple entries that can be released with a single deallocation. + + * - Valid values for strategy: "MAXLEN" + + * - Valid values for approx: "~" + * Annotated return value: integer + */ +int NWNX_Redis_XTRIM( + string key, + // Redis type: enum + string strategy, + // Redis type: enum + string approx = "", + // Redis type: integer + int count = 0 +); + +/** + * XDEL + * + * Removes the specified entries from the stream. Returns the number of items actually deleted, that may be different from the number of IDs passed in case certain IDs do not exist. + * + * Time complexity: O(1) for each single item to delete in the stream, regardless of the stream + * size. + * Annotated return value: integer + */ +int NWNX_Redis_XDEL( + string key, + string ID +); + +/** + * XRANGE + * + * Return a range of elements in a stream, with IDs matching the specified IDs interval + * + * Time complexity: O(N) with N being the number of elements being returned. If N is constant + * (e.g. always asking for the first 10 elements with COUNT), you can consider + * it O(1). + * Annotated return value: array + */ +int NWNX_Redis_XRANGE( + string key, + string start, + string end, + // Redis type: integer + int count_count = 0 +); + +/** + * XREVRANGE + * + * Return a range of elements in a stream, with IDs matching the specified IDs interval, in reverse order (from greater to smaller IDs) compared to XRANGE + * + * Time complexity: O(N) with N being the number of elements returned. If N is constant (e.g. + * always asking for the first 10 elements with COUNT), you can consider it + * O(1). + * Annotated return value: array + */ +int NWNX_Redis_XREVRANGE( + string key, + string end, + string start, + // Redis type: integer + int count_count = 0 +); + +/** + * XLEN + * + * Return the number of entires in a stream + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int NWNX_Redis_XLEN( + string key +); + +/** + * XREAD + * + * Return never seen elements in multiple streams, with IDs greater than the ones reported by the caller for each stream. Can block. + * + * Time complexity: For each stream mentioned: O(N) with N being the number of elements being + * returned, it menas that XREAD-ing with a fixed COUNT is O(1). Note that when + * the BLOCK option is used, XADD will pay O(M) time in order to serve the M + * clients blocked on the stream getting new data. + + * - Valid values for streams: "STREAMS" + * Annotated return value: array + */ +int NWNX_Redis_XREAD( + // Redis type: integer + int count_count = 0, + // Redis type: integer + int block_milliseconds = 0, + // Redis type: enum + string streams = "", + string key = "", + string ID = "" +); + +/** + * XGROUP + * + * Create, destroy, and manage consumer groups. + * + * Time complexity: O(1) for all the subcommands, with the exception of the DESTROY subcommand + * which takes an additional O(M) time in order to delete the M entries inside + * the consumer group pending entries list (PEL). + * Annotated return value: + */ +int NWNX_Redis_XGROUP( + // Redis type: key + string create_key = "", + string create_groupname = "", + string create_id_or__ = "", + // Redis type: key + string setid_key = "", + string setid_groupname = "", + string setid_id_or__ = "", + // Redis type: key + string destroy_key = "", + string destroy_groupname = "", + // Redis type: key + string delconsumer_key = "", + string delconsumer_groupname = "", + string delconsumer_consumername = "" +); + +/** + * XREADGROUP + * + * Return new entries from a stream using a consumer group, or access the history of the pending entries for a given consumer. Can block. + * + * Time complexity: For each stream mentioned: O(M) with M being the number of elements + * returned. If M is constant (e.g. always asking for the first 10 elements + * with COUNT), you can consider it O(1). On the other side when XREADGROUP + * blocks, XADD will pay the O(N) time in order to serve the N clients blocked + * on the stream getting new data. + + * - Valid values for noack: "NOACK" + + * - Valid values for streams: "STREAMS" + * Annotated return value: + */ +int NWNX_Redis_XREADGROUP( + string group_group, + string group_consumer, + // Redis type: integer + int count_count = 0, + // Redis type: integer + int block_milliseconds = 0, + // Redis type: enum + string noack = "", + // Redis type: enum + string streams = "", + string key = "", + string ID = "" +); + +/** + * XACK + * + * Marks a pending message as correctly processed, effectively removing it from the pending entries list of the consumer group. Return value of the command is the number of messages successfully acknowledged, that is, the IDs we were actually able to resolve in the PEL. + * + * Time complexity: O(1) for each message ID processed. + * Annotated return value: integer + */ +int NWNX_Redis_XACK( + string key, + string group, + string ID +); + +/** + * XCLAIM + * + * Changes (or acquires) ownership of a message in a consumer group, as if the message was delivered to the specified consumer. + * + * Time complexity: O(log N) with N being the number of messages in the PEL of the consumer + * group. + * Annotated return value: array + */ +int NWNX_Redis_XCLAIM( + string key, + string group, + string consumer, + string min_idle_time, + string ID, + // Redis type: integer + int idle_ms = 0, + // Redis type: integer + int time_ms_unix_time = 0, + // Redis type: integer + int retrycount_count = 0 +); + +/** + * XPENDING + * + * Return information and entries from a stream consumer group pending entries list, that are messages fetched but never acknowledged. + * + * Time complexity: O(N) with N being the number of elements returned, so asking for a small + * fixed number of entries per call is O(1). When the command returns just the + * summary it runs in O(1) time assuming the list of consumers is small, + * otherwise there is additional O(N) time needed to iterate every consumer. + * Annotated return value: array + */ +int NWNX_Redis_XPENDING( + string key, + string group, + string start = "", + string end = "", + // Redis type: integer + int count = 0, + string consumer = "" +); + + + +// Implementation below +int NWNX_Redis_APPEND( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "APPEND"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_AUTH( + string password +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "AUTH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", password); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BGREWRITEAOF() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BGREWRITEAOF"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BGSAVE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BGSAVE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BITCOUNT( + string key, + // Redis type: integer + int start = 0, + // Redis type: integer + int end = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BITCOUNT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (start != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + if (end != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(end)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BITFIELD( + string key, + // Redis type: type + string get_type = "", + // Redis type: integer + int get_offset = 0, + // Redis type: type + string set_type = "", + // Redis type: integer + int set_offset = 0, + // Redis type: integer + int set_value = 0, + // Redis type: type + string incrby_type = "", + // Redis type: integer + int incrby_offset = 0, + // Redis type: integer + int incrby_increment = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BITFIELD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (get_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", get_type); + if (get_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(get_offset)); + if (set_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", set_type); + if (set_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(set_offset)); + if (set_value != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(set_value)); + if (incrby_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", incrby_type); + if (incrby_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(incrby_offset)); + if (incrby_increment != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(incrby_increment)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BITOP( + string operation, + // Redis type: key + string destkey, + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BITOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", operation); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destkey); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BITPOS( + string key, + // Redis type: integer + int bit, + // Redis type: integer + int start = 0, + // Redis type: integer + int end = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BITPOS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(bit)); + if (start != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + if (end != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(end)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BLPOP( + string key, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BLPOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BRPOP( + string key, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BRPOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BRPOPLPUSH( + // Redis type: key + string source, + // Redis type: key + string destination, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BRPOPLPUSH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", source); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BZPOPMIN( + string key, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BZPOPMIN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_BZPOPMAX( + string key, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BZPOPMAX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLIENT_ID() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_ID"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLIENT_KILL( + string ip_port = "", + // Redis type: integer + int id_client_id = 0, + string addr_ip_port = "", + string skipme_yes_no = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_KILL"); + if (ip_port != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", ip_port); + if (id_client_id != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(id_client_id)); + if (addr_ip_port != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", addr_ip_port); + if (skipme_yes_no != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", skipme_yes_no); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLIENT_LIST() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_LIST"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLIENT_GETNAME() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_GETNAME"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLIENT_PAUSE( + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_PAUSE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLIENT_REPLY( + // Redis type: enum + string reply_mode +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_REPLY"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", reply_mode); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLIENT_SETNAME( + string connection_name +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_SETNAME"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", connection_name); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLIENT_UNBLOCK( + string client_id, + // Redis type: enum + string unblock_type = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_UNBLOCK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", client_id); + if (unblock_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", unblock_type); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_ADDSLOTS( + // Redis type: integer + int slot +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_ADDSLOTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(slot)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_COUNT_FAILURE_REPORTS( + string node_id +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_COUNT_FAILURE_REPORTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_COUNTKEYSINSLOT( + // Redis type: integer + int slot +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_COUNTKEYSINSLOT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(slot)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_DELSLOTS( + // Redis type: integer + int slot +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_DELSLOTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(slot)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_FAILOVER( + // Redis type: enum + string options = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_FAILOVER"); + if (options != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", options); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_FORGET( + string node_id +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_FORGET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_GETKEYSINSLOT( + // Redis type: integer + int slot, + // Redis type: integer + int count +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_GETKEYSINSLOT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(slot)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_INFO() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_INFO"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_KEYSLOT( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_KEYSLOT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_MEET( + string ip, + // Redis type: integer + int port +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_MEET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ip); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(port)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_NODES() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_NODES"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_REPLICATE( + string node_id +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_REPLICATE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_RESET( + // Redis type: enum + string reset_type = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_RESET"); + if (reset_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", reset_type); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_SAVECONFIG() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_SAVECONFIG"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_SET_CONFIG_EPOCH( + // Redis type: integer + int config_epoch +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_SET_CONFIG_EPOCH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(config_epoch)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_SETSLOT( + // Redis type: integer + int slot, + // Redis type: enum + string subcommand, + string node_id = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_SETSLOT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(slot)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", subcommand); + if (node_id != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_SLAVES( + string node_id +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_SLAVES"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_REPLICAS( + string node_id +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_REPLICAS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CLUSTER_SLOTS() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_SLOTS"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_COMMAND() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "COMMAND"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_COMMAND_COUNT() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "COMMAND_COUNT"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_COMMAND_GETKEYS() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "COMMAND_GETKEYS"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_COMMAND_INFO( + string command_name +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "COMMAND_INFO"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", command_name); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CONFIG_GET( + string parameter +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CONFIG_GET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", parameter); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CONFIG_REWRITE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CONFIG_REWRITE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CONFIG_SET( + string parameter, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CONFIG_SET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", parameter); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_CONFIG_RESETSTAT() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CONFIG_RESETSTAT"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_DBSIZE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DBSIZE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_DEBUG_OBJECT( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DEBUG_OBJECT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_DEBUG_SEGFAULT() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DEBUG_SEGFAULT"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_DECR( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DECR"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_DECRBY( + string key, + // Redis type: integer + int decrement +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DECRBY"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(decrement)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_DEL( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DEL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_DISCARD() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DISCARD"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_DUMP( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DUMP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ECHO( + string message +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ECHO"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", message); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_EVAL( + string script, + // Redis type: integer + int numkeys, + string key, + string arg +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EVAL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", script); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(numkeys)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", arg); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_EVALSHA( + string sha1, + // Redis type: integer + int numkeys, + string key, + string arg +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EVALSHA"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", sha1); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(numkeys)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", arg); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_EXEC() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EXEC"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_EXISTS( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EXISTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_EXPIRE( + string key, + // Redis type: integer + int seconds +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EXPIRE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(seconds)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_EXPIREAT( + string key, + // Redis type: posix time + string timestamp +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EXPIREAT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", timestamp); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_FLUSHALL( + // Redis type: enum + string async = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "FLUSHALL"); + if (async != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", async); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_FLUSHDB( + // Redis type: enum + string async = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "FLUSHDB"); + if (async != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", async); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_GEOADD( + string key, + // Redis type: double + float longitude, + // Redis type: double + float latitude, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEOADD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(longitude, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(latitude, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_GEOHASH( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEOHASH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_GEOPOS( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEOPOS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_GEODIST( + string key, + string member1, + string member2, + string unit = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEODIST"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member1); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member2); + if (unit != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", unit); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_GEORADIUS( + string key, + // Redis type: double + float longitude, + // Redis type: double + float latitude, + // Redis type: double + float radius, + // Redis type: enum + string unit, + // Redis type: enum + string withcoord = "", + // Redis type: enum + string withdist = "", + // Redis type: enum + string withhash = "", + // Redis type: integer + int count_count = 0, + // Redis type: enum + string order = "", + // Redis type: key + string store_key = "", + // Redis type: key + string storedist_key = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEORADIUS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(longitude, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(latitude, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(radius, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", unit); + if (withcoord != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withcoord); + if (withdist != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withdist); + if (withhash != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withhash); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + if (order != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", order); + if (store_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", store_key); + if (storedist_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", storedist_key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_GEORADIUSBYMEMBER( + string key, + string member, + // Redis type: double + float radius, + // Redis type: enum + string unit, + // Redis type: enum + string withcoord = "", + // Redis type: enum + string withdist = "", + // Redis type: enum + string withhash = "", + // Redis type: integer + int count_count = 0, + // Redis type: enum + string order = "", + // Redis type: key + string store_key = "", + // Redis type: key + string storedist_key = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEORADIUSBYMEMBER"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(radius, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", unit); + if (withcoord != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withcoord); + if (withdist != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withdist); + if (withhash != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withhash); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + if (order != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", order); + if (store_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", store_key); + if (storedist_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", storedist_key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_GET( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_GETBIT( + string key, + // Redis type: integer + int offset +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GETBIT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(offset)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_GETRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int end +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GETRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(end)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_GETSET( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GETSET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HDEL( + string key, + string field +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HDEL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HEXISTS( + string key, + string field +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HEXISTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HGET( + string key, + string field +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HGET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HGETALL( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HGETALL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HINCRBY( + string key, + string field, + // Redis type: integer + int increment +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HINCRBY"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(increment)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HINCRBYFLOAT( + string key, + string field, + // Redis type: double + float increment +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HINCRBYFLOAT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(increment, 0)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HKEYS( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HKEYS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HLEN( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HLEN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HMGET( + string key, + string field +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HMGET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HMSET( + string key, + string field, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HMSET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HSET( + string key, + string field, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HSET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HSETNX( + string key, + string field, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HSETNX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HSTRLEN( + string key, + string field +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HSTRLEN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HVALS( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HVALS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_INCR( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "INCR"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_INCRBY( + string key, + // Redis type: integer + int increment +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "INCRBY"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(increment)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_INCRBYFLOAT( + string key, + // Redis type: double + float increment +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "INCRBYFLOAT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(increment, 0)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_INFO( + string section = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "INFO"); + if (section != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", section); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_KEYS( + string pattern +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "KEYS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", pattern); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LASTSAVE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LASTSAVE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LINDEX( + string key, + // Redis type: integer + int index +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LINDEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(index)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LINSERT( + string key, + // Redis type: enum + string where, + string pivot, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LINSERT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", where); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", pivot); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LLEN( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LLEN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LPOP( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LPOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LPUSH( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LPUSH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LPUSHX( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LPUSHX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(stop)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LREM( + string key, + // Redis type: integer + int count, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LREM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LSET( + string key, + // Redis type: integer + int index, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LSET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(index)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_LTRIM( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LTRIM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(stop)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MEMORY_DOCTOR() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_DOCTOR"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MEMORY_HELP() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_HELP"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MEMORY_MALLOC_STATS() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_MALLOC_STATS"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MEMORY_PURGE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_PURGE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MEMORY_STATS() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_STATS"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MEMORY_USAGE( + string key, + // Redis type: integer + int samples_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_USAGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (samples_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(samples_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MGET( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MGET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MIGRATE( + string host, + string port, + // Redis type: enum + string key, + // Redis type: integer + int destination_db, + // Redis type: integer + int timeout, + // Redis type: enum + string copy = "", + // Redis type: enum + string replace = "", + string auth_password = "", + // Redis type: key + string keys_key = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MIGRATE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", host); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", port); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(destination_db)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + if (copy != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", copy); + if (replace != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", replace); + if (auth_password != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", auth_password); + if (keys_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", keys_key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MONITOR() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MONITOR"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MOVE( + string key, + // Redis type: integer + int db +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MOVE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(db)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MSET( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MSET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MSETNX( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MSETNX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_MULTI() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MULTI"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_OBJECT( + string subcommand, + string arguments = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "OBJECT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", subcommand); + if (arguments != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", arguments); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PERSIST( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PERSIST"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PEXPIRE( + string key, + // Redis type: integer + int milliseconds +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PEXPIRE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(milliseconds)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PEXPIREAT( + string key, + // Redis type: posix time + string milliseconds_timestamp +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PEXPIREAT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", milliseconds_timestamp); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PFADD( + string key, + string element +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PFADD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", element); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PFCOUNT( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PFCOUNT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PFMERGE( + // Redis type: key + string destkey, + // Redis type: key + string sourcekey +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PFMERGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destkey); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", sourcekey); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PING( + string message = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PING"); + if (message != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", message); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PSETEX( + string key, + // Redis type: integer + int milliseconds, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PSETEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(milliseconds)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PUBSUB( + string subcommand, + string argument = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PUBSUB"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", subcommand); + if (argument != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", argument); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PTTL( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PTTL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_PUBLISH( + string channel, + string message +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PUBLISH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", channel); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", message); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_QUIT() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "QUIT"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_RANDOMKEY() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RANDOMKEY"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_READONLY() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "READONLY"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_READWRITE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "READWRITE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_RENAME( + string key, + // Redis type: key + string newkey +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RENAME"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", newkey); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_RENAMENX( + string key, + // Redis type: key + string newkey +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RENAMENX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", newkey); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_RESTORE( + string key, + // Redis type: integer + int ttl, + string serialized_value, + // Redis type: enum + string replace = "", + // Redis type: enum + string absttl = "", + // Redis type: integer + int idletime_seconds = 0, + // Redis type: integer + int freq_frequency = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RESTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(ttl)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", serialized_value); + if (replace != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", replace); + if (absttl != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", absttl); + if (idletime_seconds != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(idletime_seconds)); + if (freq_frequency != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(freq_frequency)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ROLE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ROLE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_RPOP( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RPOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_RPOPLPUSH( + // Redis type: key + string source, + // Redis type: key + string destination +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RPOPLPUSH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", source); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_RPUSH( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RPUSH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_RPUSHX( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RPUSHX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SADD( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SADD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SAVE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SAVE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SCARD( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCARD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SCRIPT_DEBUG( + // Redis type: enum + string mode +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCRIPT_DEBUG"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", mode); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SCRIPT_EXISTS( + string sha1 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCRIPT_EXISTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", sha1); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SCRIPT_FLUSH() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCRIPT_FLUSH"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SCRIPT_KILL() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCRIPT_KILL"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SCRIPT_LOAD( + string script +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCRIPT_LOAD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", script); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SDIFF( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SDIFF"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SDIFFSTORE( + // Redis type: key + string destination, + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SDIFFSTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SELECT( + // Redis type: integer + int index +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SELECT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(index)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SET( + string key, + string value, + // Redis type: enum + string condition = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + if (condition != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", condition); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SETBIT( + string key, + // Redis type: integer + int offset, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SETBIT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(offset)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SETEX( + string key, + // Redis type: integer + int seconds, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SETEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(seconds)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SETNX( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SETNX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SETRANGE( + string key, + // Redis type: integer + int offset, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SETRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(offset)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SHUTDOWN( + // Redis type: enum + string save_mode = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SHUTDOWN"); + if (save_mode != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", save_mode); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SINTER( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SINTER"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SINTERSTORE( + // Redis type: key + string destination, + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SINTERSTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SISMEMBER( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SISMEMBER"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SLAVEOF( + string host, + string port +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SLAVEOF"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", host); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", port); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_REPLICAOF( + string host, + string port +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "REPLICAOF"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", host); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", port); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SLOWLOG( + string subcommand, + string argument = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SLOWLOG"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", subcommand); + if (argument != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", argument); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SMEMBERS( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SMEMBERS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SMOVE( + // Redis type: key + string source, + // Redis type: key + string destination, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SMOVE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", source); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SORT( + string key, + // Redis type: pattern + string by_pattern = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0, + string get_pattern = "", + // Redis type: enum + string order = "", + // Redis type: enum + string sorting = "", + // Redis type: key + string store_destination = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SORT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (by_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", by_pattern); + if (limit_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_offset)); + if (limit_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_count)); + if (get_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", get_pattern); + if (order != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", order); + if (sorting != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", sorting); + if (store_destination != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", store_destination); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SPOP( + string key, + // Redis type: integer + int count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SPOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SRANDMEMBER( + string key, + // Redis type: integer + int count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SRANDMEMBER"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SREM( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SREM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_STRLEN( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "STRLEN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SUNION( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SUNION"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SUNIONSTORE( + // Redis type: key + string destination, + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SUNIONSTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SWAPDB( + // Redis type: integer + int index, + // Redis type: integer + int index_1 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SWAPDB"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(index)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(index_1)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SYNC() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SYNC"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_TIME() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "TIME"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_TOUCH( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "TOUCH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_TTL( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "TTL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_TYPE( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "TYPE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_UNLINK( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "UNLINK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_UNWATCH() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "UNWATCH"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_WAIT( + // Redis type: integer + int numreplicas, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "WAIT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(numreplicas)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_WATCH( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "WATCH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZADD( + string key, + // Redis type: enum + string condition = "", + // Redis type: enum + string change = "", + // Redis type: enum + string increment = "", + // Redis type: double + float score = 0.0, + string member = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZADD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (condition != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", condition); + if (change != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", change); + if (increment != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", increment); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(score, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZCARD( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZCARD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZCOUNT( + string key, + // Redis type: double + float min, + // Redis type: double + float max +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZCOUNT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(min, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(max, 0)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZINCRBY( + string key, + // Redis type: integer + int increment, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZINCRBY"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(increment)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZINTERSTORE( + // Redis type: key + string destination, + // Redis type: integer + int numkeys, + string key, + // Redis type: integer + int weights_weight = 0, + // Redis type: enum + string aggregate_aggregate = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZINTERSTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(numkeys)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (weights_weight != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(weights_weight)); + if (aggregate_aggregate != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", aggregate_aggregate); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZLEXCOUNT( + string key, + string min, + string max +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZLEXCOUNT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", min); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", max); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZPOPMAX( + string key, + // Redis type: integer + int count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZPOPMAX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZPOPMIN( + string key, + // Redis type: integer + int count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZPOPMIN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop, + // Redis type: enum + string withscores = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(stop)); + if (withscores != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withscores); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZRANGEBYLEX( + string key, + string min, + string max, + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZRANGEBYLEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", min); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", max); + if (limit_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_offset)); + if (limit_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZREVRANGEBYLEX( + string key, + string max, + string min, + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREVRANGEBYLEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", max); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", min); + if (limit_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_offset)); + if (limit_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZRANGEBYSCORE( + string key, + // Redis type: double + float min, + // Redis type: double + float max, + // Redis type: enum + string withscores = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZRANGEBYSCORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(min, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(max, 0)); + if (withscores != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withscores); + if (limit_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_offset)); + if (limit_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZRANK( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZRANK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZREM( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZREMRANGEBYLEX( + string key, + string min, + string max +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREMRANGEBYLEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", min); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", max); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZREMRANGEBYRANK( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREMRANGEBYRANK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(stop)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZREMRANGEBYSCORE( + string key, + // Redis type: double + float min, + // Redis type: double + float max +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREMRANGEBYSCORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(min, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(max, 0)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZREVRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop, + // Redis type: enum + string withscores = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREVRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(stop)); + if (withscores != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withscores); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZREVRANGEBYSCORE( + string key, + // Redis type: double + float max, + // Redis type: double + float min, + // Redis type: enum + string withscores = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREVRANGEBYSCORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(max, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(min, 0)); + if (withscores != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withscores); + if (limit_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_offset)); + if (limit_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZREVRANK( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREVRANK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZSCORE( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZSCORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZUNIONSTORE( + // Redis type: key + string destination, + // Redis type: integer + int numkeys, + string key, + // Redis type: integer + int weights_weight = 0, + // Redis type: enum + string aggregate_aggregate = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZUNIONSTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(numkeys)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (weights_weight != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(weights_weight)); + if (aggregate_aggregate != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", aggregate_aggregate); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SCAN( + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0, + string type_type = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCAN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(cursor)); + if (match_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", match_pattern); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + if (type_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", type_type); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_SSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SSCAN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(cursor)); + if (match_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", match_pattern); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_HSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HSCAN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(cursor)); + if (match_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", match_pattern); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_ZSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZSCAN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(cursor)); + if (match_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", match_pattern); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XINFO( + // Redis type: key + string consumers_key = "", + string consumers_groupname = "", + // Redis type: key + string groups_key = "", + // Redis type: key + string stream_key = "", + // Redis type: enum + string help = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XINFO"); + if (consumers_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", consumers_key); + if (consumers_groupname != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", consumers_groupname); + if (groups_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", groups_key); + if (stream_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", stream_key); + if (help != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", help); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XADD( + string key, + string ID, + // Redis type: value + string field, + string str +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XADD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", str); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XTRIM( + string key, + // Redis type: enum + string strategy, + // Redis type: enum + string approx = "", + // Redis type: integer + int count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XTRIM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", strategy); + if (approx != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", approx); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XDEL( + string key, + string ID +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XDEL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XRANGE( + string key, + string start, + string end, + // Redis type: integer + int count_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", start); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", end); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XREVRANGE( + string key, + string end, + string start, + // Redis type: integer + int count_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XREVRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", end); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", start); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XLEN( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XLEN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XREAD( + // Redis type: integer + int count_count = 0, + // Redis type: integer + int block_milliseconds = 0, + // Redis type: enum + string streams = "", + string key = "", + string ID = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XREAD"); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + if (block_milliseconds != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(block_milliseconds)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", streams); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XGROUP( + // Redis type: key + string create_key = "", + string create_groupname = "", + string create_id_or__ = "", + // Redis type: key + string setid_key = "", + string setid_groupname = "", + string setid_id_or__ = "", + // Redis type: key + string destroy_key = "", + string destroy_groupname = "", + // Redis type: key + string delconsumer_key = "", + string delconsumer_groupname = "", + string delconsumer_consumername = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XGROUP"); + if (create_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", create_key); + if (create_groupname != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", create_groupname); + if (create_id_or__ != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", create_id_or__); + if (setid_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", setid_key); + if (setid_groupname != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", setid_groupname); + if (setid_id_or__ != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", setid_id_or__); + if (destroy_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", destroy_key); + if (destroy_groupname != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", destroy_groupname); + if (delconsumer_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", delconsumer_key); + if (delconsumer_groupname != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", delconsumer_groupname); + if (delconsumer_consumername != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", delconsumer_consumername); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XREADGROUP( + string group_group, + string group_consumer, + // Redis type: integer + int count_count = 0, + // Redis type: integer + int block_milliseconds = 0, + // Redis type: enum + string noack = "", + // Redis type: enum + string streams = "", + string key = "", + string ID = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XREADGROUP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", group_group); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", group_consumer); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + if (block_milliseconds != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(block_milliseconds)); + if (noack != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", noack); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", streams); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XACK( + string key, + string group, + string ID +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XACK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", group); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XCLAIM( + string key, + string group, + string consumer, + string min_idle_time, + string ID, + // Redis type: integer + int idle_ms = 0, + // Redis type: integer + int time_ms_unix_time = 0, + // Redis type: integer + int retrycount_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XCLAIM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", group); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", consumer); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", min_idle_time); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + if (idle_ms != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(idle_ms)); + if (time_ms_unix_time != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(time_ms_unix_time)); + if (retrycount_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(retrycount_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int NWNX_Redis_XPENDING( + string key, + string group, + string start = "", + string end = "", + // Redis type: integer + int count = 0, + string consumer = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XPENDING"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", group); + if (start != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", start); + if (end != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", end); + if (count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + if (consumer != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", consumer); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +/// @} diff --git a/gamma_age_v2/nwnx_redis_lib.nss b/gamma_age_v2/nwnx_redis_lib.nss new file mode 100644 index 00000000..759c61e1 --- /dev/null +++ b/gamma_age_v2/nwnx_redis_lib.nss @@ -0,0 +1,108 @@ +/// @addtogroup redis Redis +/// @brief Allows connection and interfacing with a redis server. +/// @{ +/// @file nwnx_redis_lib.nss +/// @brief Allows connection and interfacing with a redis server. +#include "nwnx" + +/// @anchor redis_results +/// @name Redis Results +/// @{ + +/// @brief Array result +const int NWNX_REDIS_RESULT_ARRAY = 1; + +/// This never appears: it is rewritten into STRING for simplicity reasons. +/// const int NWNX_REDIS_RESULT_BULK_STRING = 2; + +/// @brief Error result +/// @note You can retrieve errors as strings. +const int NWNX_REDIS_RESULT_ERROR = 3; + +/// @brief Integer result +/// @warning This cannot represent integers above 32bit. +/// @remark Use NWNX_Redis_GetResultAsString() if you need the string representation. +const int NWNX_REDIS_RESULT_INTEGER = 4; + +/// @brief String result +const int NWNX_REDIS_RESULT_STRING = 5; + +/// @brief Null result +const int NWNX_REDIS_RESULT_NULL = 6; +/// @} + +/// Returns the result type as a int. +int NWNX_Redis_GetResultType(int resultId); + +/// @brief Gets the length of the given result. +/// @param resultId The result id. +/// @return The length or 0 if the given result wasn't a list type. +int NWNX_Redis_GetArrayLength(int resultId); + +/// @brief Gets a list entry as a string. +/// @param resultId The result id. +/// @param idx The index in the list. +/// @return The list entry, will return "" if the given result is not a list, +/// or if the requested index is out of bounds. +int NWNX_Redis_GetArrayElement(int resultId, int idx); + +/// @brief Gets the given result as a float. +/// @param resultId The result id. +/// @return The result as a float. +float NWNX_Redis_GetResultAsFloat(int resultId); + +/// @brief Gets the given result as an integer. +/// @param resultId The result id. +/// @return The result as an integer. +int NWNX_Redis_GetResultAsInt(int resultId); + +/// @brief Gets the given result as a string. +/// @param resultId The result id. +/// @return The result as a string. +string NWNX_Redis_GetResultAsString(int resultId); + +/// @} + +int NWNX_Redis_GetResultType(int resultId) +{ + NWNX_PushArgumentInt("NWNX_Redis", "GetResultType", resultId); + NWNX_CallFunction("NWNX_Redis", "GetResultType"); + return NWNX_GetReturnValueInt("NWNX_Redis", "GetResultType"); +} + +int NWNX_Redis_GetArrayLength(int resultId) +{ + NWNX_PushArgumentInt("NWNX_Redis", "GetResultArrayLength", resultId); + NWNX_CallFunction("NWNX_Redis", "GetResultArrayLength"); + return NWNX_GetReturnValueInt("NWNX_Redis", "GetResultArrayLength"); +} + +// Returns the last +int NWNX_Redis_GetArrayElement(int resultId, int idx) +{ + NWNX_PushArgumentInt("NWNX_Redis", "GetResultArrayElement", resultId); + NWNX_PushArgumentInt("NWNX_Redis", "GetResultArrayElement", idx); + NWNX_CallFunction("NWNX_Redis", "GetResultArrayElement"); + return NWNX_GetReturnValueInt("NWNX_Redis", "GetResultArrayElement"); +} + +float NWNX_Redis_GetResultAsFloat(int resultId) +{ + NWNX_PushArgumentInt("NWNX_Redis", "GetResultAsString", resultId); + NWNX_CallFunction("NWNX_Redis", "GetResultAsString"); + return StringToFloat(NWNX_GetReturnValueString("NWNX_Redis", "GetResultAsString")); +} + +int NWNX_Redis_GetResultAsInt(int resultId) +{ + NWNX_PushArgumentInt("NWNX_Redis", "GetResultAsString", resultId); + NWNX_CallFunction("NWNX_Redis", "GetResultAsString"); + return StringToInt(NWNX_GetReturnValueString("NWNX_Redis", "GetResultAsString")); +} + +string NWNX_Redis_GetResultAsString(int resultId) +{ + NWNX_PushArgumentInt("NWNX_Redis", "GetResultAsString", resultId); + NWNX_CallFunction("NWNX_Redis", "GetResultAsString"); + return NWNX_GetReturnValueString("NWNX_Redis", "GetResultAsString"); +} diff --git a/gamma_age_v2/nwnx_redis_ps.nss b/gamma_age_v2/nwnx_redis_ps.nss new file mode 100644 index 00000000..1d59dd15 --- /dev/null +++ b/gamma_age_v2/nwnx_redis_ps.nss @@ -0,0 +1,23 @@ +/// @ingroup redis +/// @brief Interface to Redis PUBSUB +/// @{ +/// @file nwnx_redis_ps.nss +#include "nwnx" + +/// A redis PUBSUB message +struct NWNX_Redis_PubSubMessageData { + string channel; ///< The channel + string message; ///< The message +}; + +/// @brief Get a PUBSUB message +/// @return A NWNX_Redis_PubSubMessageData struct. +struct NWNX_Redis_PubSubMessageData NWNX_Redis_GetPubSubMessageData() +{ + struct NWNX_Redis_PubSubMessageData ret; + NWNX_CallFunction("NWNX_Redis", "GetPubSubData"); + ret.message = NWNX_GetReturnValueString("NWNX_Redis", "GetPubSubData"); + ret.channel = NWNX_GetReturnValueString("NWNX_Redis", "GetPubSubData"); + return ret; +} +/// @} diff --git a/gamma_age_v2/nwnx_redis_short.nss b/gamma_age_v2/nwnx_redis_short.nss new file mode 100644 index 00000000..c8adc656 --- /dev/null +++ b/gamma_age_v2/nwnx_redis_short.nss @@ -0,0 +1,5900 @@ +#include "nwnx" +#include "nwnx_redis_lib" + + +// Skipping sub-command: BITFIELD/{"command"=>"OVERFLOW", "type"=>"enum", "enum"=>["WRAP", "SAT", "FAIL"], "optional"=>true} - not supported yet. +// Skipping sub-command: CLIENT_KILL/{"command"=>"TYPE", "type"=>"enum", "enum"=>["normal", "master", "slave", "pubsub"], "optional"=>true} - not supported yet. +// Skipping sub-command: CLIENT_LIST/{"command"=>"TYPE", "type"=>"enum", "enum"=>["normal", "master", "replica", "pubsub"], "optional"=>true} - not supported yet. +// Skipping sub-command: SET/{"command"=>"expiration", "type"=>"enum", "enum"=>["EX seconds", "PX milliseconds"], "optional"=>true} - not supported yet. +// Skipping XCLAIM, cannot parse argument: {"name"=>"force", "enum"=>["FORCE"], "optional"=>true} - not supported yet. +// Skipping XCLAIM, cannot parse argument: {"name"=>"justid", "enum"=>["JUSTID"], "optional"=>true} - not supported yet. +/** + * APPEND + * + * Append a value to a key + * + * Time complexity: O(1). The amortized time complexity is O(1) assuming the appended value is + * small and the already present value is of any size, since the dynamic string + * library used by Redis will double the free space available on every + * reallocation. + * Annotated return value: integer + */ +int APPEND( + string key, + string value +); + +/** + * AUTH + * + * Authenticate to the server + * Annotated return value: simple-string + */ +int AUTH( + string password +); + +/** + * BGREWRITEAOF + * + * Asynchronously rewrite the append-only file + * Annotated return value: simple-string + */ +int BGREWRITEAOF(); + +/** + * BGSAVE + * + * Asynchronously save the dataset to disk + * Annotated return value: simple-string + */ +int BGSAVE(); + +/** + * BITCOUNT + * + * Count set bits in a string + * + * Time complexity: O(N) + * Annotated return value: integer + */ +int BITCOUNT( + string key, + // Redis type: integer + int start = 0, + // Redis type: integer + int end = 0 +); + +/** + * BITFIELD + * + * Perform arbitrary bitfield integer operations on strings + * + * Time complexity: O(1) for each subcommand specified + * Annotated return value: + */ +int BITFIELD( + string key, + // Redis type: type + string get_type = "", + // Redis type: integer + int get_offset = 0, + // Redis type: type + string set_type = "", + // Redis type: integer + int set_offset = 0, + // Redis type: integer + int set_value = 0, + // Redis type: type + string incrby_type = "", + // Redis type: integer + int incrby_offset = 0, + // Redis type: integer + int incrby_increment = 0 +); + +/** + * BITOP + * + * Perform bitwise operations between strings + * + * Time complexity: O(N) + * Annotated return value: integer + */ +int BITOP( + string operation, + // Redis type: key + string destkey, + string key +); + +/** + * BITPOS + * + * Find first bit set or clear in a string + * + * Time complexity: O(N) + * Annotated return value: integer + */ +int BITPOS( + string key, + // Redis type: integer + int bit, + // Redis type: integer + int start = 0, + // Redis type: integer + int end = 0 +); + +/** + * BLPOP + * + * Remove and get the first element in a list, or block until one is available + * + * Time complexity: O(1) + * Annotated return value: array + */ +int BLPOP( + string key, + // Redis type: integer + int timeout +); + +/** + * BRPOP + * + * Remove and get the last element in a list, or block until one is available + * + * Time complexity: O(1) + * Annotated return value: array + */ +int BRPOP( + string key, + // Redis type: integer + int timeout +); + +/** + * BRPOPLPUSH + * + * Pop a value from a list, push it to another list and return it; or block until one is available + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int BRPOPLPUSH( + // Redis type: key + string source, + // Redis type: key + string destination, + // Redis type: integer + int timeout +); + +/** + * BZPOPMIN + * + * Remove and return the member with the lowest score from one or more sorted sets, or block until one is available + * + * Time complexity: O(log(N)) with N being the number of elements in the sorted set. + * Annotated return value: array + */ +int BZPOPMIN( + string key, + // Redis type: integer + int timeout +); + +/** + * BZPOPMAX + * + * Remove and return the member with the highest score from one or more sorted sets, or block until one is available + * + * Time complexity: O(log(N)) with N being the number of elements in the sorted set. + * Annotated return value: array + */ +int BZPOPMAX( + string key, + // Redis type: integer + int timeout +); + +/** + * CLIENT_ID + * + * Returns the client ID for the current connection + * + * Time complexity: O(1) + * Annotated return value: + */ +int CLIENT_ID(); + +/** + * CLIENT_KILL + * + * Kill the connection of a client + * + * Time complexity: O(N) where N is the number of client connections + * Annotated return value: simple-string + */ +int CLIENT_KILL( + string ip_port = "", + // Redis type: integer + int id_client_id = 0, + string addr_ip_port = "", + string skipme_yes_no = "" +); + +/** + * CLIENT_LIST + * + * Get the list of client connections + * + * Time complexity: O(N) where N is the number of client connections + * Annotated return value: bulk-string + */ +int CLIENT_LIST(); + +/** + * CLIENT_GETNAME + * + * Get the current connection name + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int CLIENT_GETNAME(); + +/** + * CLIENT_PAUSE + * + * Stop processing commands from clients for some time + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int CLIENT_PAUSE( + // Redis type: integer + int timeout +); + +/** + * CLIENT_REPLY + * + * Instruct the server whether to reply to commands + * + * Time complexity: O(1) + + * - Valid values for reply_mode: "ON", "OFF", "SKIP" + * Annotated return value: simple-string + */ +int CLIENT_REPLY( + // Redis type: enum + string reply_mode +); + +/** + * CLIENT_SETNAME + * + * Set the current connection name + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int CLIENT_SETNAME( + string connection_name +); + +/** + * CLIENT_UNBLOCK + * + * Unblock a client blocked in a blocking command from a different connection + * + * Time complexity: O(log N) where N is the number of client connections + + * - Valid values for unblock_type: "TIMEOUT", "ERROR" + * Annotated return value: + */ +int CLIENT_UNBLOCK( + string client_id, + // Redis type: enum + string unblock_type = "" +); + +/** + * CLUSTER_ADDSLOTS + * + * Assign new hash slots to receiving node + * + * Time complexity: O(N) where N is the total number of hash slot arguments + * Annotated return value: simple-string + */ +int CLUSTER_ADDSLOTS( + // Redis type: integer + int slot +); + +/** + * CLUSTER_COUNT_FAILURE_REPORTS + * + * Return the number of failure reports active for a given node + * + * Time complexity: O(N) where N is the number of failure reports + * Annotated return value: integer + */ +int CLUSTER_COUNT_FAILURE_REPORTS( + string node_id +); + +/** + * CLUSTER_COUNTKEYSINSLOT + * + * Return the number of local keys in the specified hash slot + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int CLUSTER_COUNTKEYSINSLOT( + // Redis type: integer + int slot +); + +/** + * CLUSTER_DELSLOTS + * + * Set hash slots as unbound in receiving node + * + * Time complexity: O(N) where N is the total number of hash slot arguments + * Annotated return value: simple-string + */ +int CLUSTER_DELSLOTS( + // Redis type: integer + int slot +); + +/** + * CLUSTER_FAILOVER + * + * Forces a replica to perform a manual failover of its master. + * + * Time complexity: O(1) + + * - Valid values for options: "FORCE", "TAKEOVER" + * Annotated return value: simple-string + */ +int CLUSTER_FAILOVER( + // Redis type: enum + string options = "" +); + +/** + * CLUSTER_FORGET + * + * Remove a node from the nodes table + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int CLUSTER_FORGET( + string node_id +); + +/** + * CLUSTER_GETKEYSINSLOT + * + * Return local key names in the specified hash slot + * + * Time complexity: O(log(N)) where N is the number of requested keys + * Annotated return value: array + */ +int CLUSTER_GETKEYSINSLOT( + // Redis type: integer + int slot, + // Redis type: integer + int count +); + +/** + * CLUSTER_INFO + * + * Provides info about Redis Cluster node state + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int CLUSTER_INFO(); + +/** + * CLUSTER_KEYSLOT + * + * Returns the hash slot of the specified key + * + * Time complexity: O(N) where N is the number of bytes in the key + * Annotated return value: integer + */ +int CLUSTER_KEYSLOT( + string key +); + +/** + * CLUSTER_MEET + * + * Force a node cluster to handshake with another node + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int CLUSTER_MEET( + string ip, + // Redis type: integer + int port +); + +/** + * CLUSTER_NODES + * + * Get Cluster config for the node + * + * Time complexity: O(N) where N is the total number of Cluster nodes + * Annotated return value: bulk-string + */ +int CLUSTER_NODES(); + +/** + * CLUSTER_REPLICATE + * + * Reconfigure a node as a replica of the specified master node + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int CLUSTER_REPLICATE( + string node_id +); + +/** + * CLUSTER_RESET + * + * Reset a Redis Cluster node + * + * Time complexity: O(N) where N is the number of known nodes. The command may execute a + * FLUSHALL as a side effect. + + * - Valid values for reset_type: "HARD", "SOFT" + * Annotated return value: simple-string + */ +int CLUSTER_RESET( + // Redis type: enum + string reset_type = "" +); + +/** + * CLUSTER_SAVECONFIG + * + * Forces the node to save cluster state on disk + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int CLUSTER_SAVECONFIG(); + +/** + * CLUSTER_SET_CONFIG_EPOCH + * + * Set the configuration epoch in a new node + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int CLUSTER_SET_CONFIG_EPOCH( + // Redis type: integer + int config_epoch +); + +/** + * CLUSTER_SETSLOT + * + * Bind a hash slot to a specific node + * + * Time complexity: O(1) + + * - Valid values for subcommand: "IMPORTING", "MIGRATING", "STABLE", "NODE" + * Annotated return value: simple-string + */ +int CLUSTER_SETSLOT( + // Redis type: integer + int slot, + // Redis type: enum + string subcommand, + string node_id = "" +); + +/** + * CLUSTER_SLAVES + * + * List replica nodes of the specified master node + * + * Time complexity: O(1) + * Annotated return value: + */ +int CLUSTER_SLAVES( + string node_id +); + +/** + * CLUSTER_REPLICAS + * + * List replica nodes of the specified master node + * + * Time complexity: O(1) + * Annotated return value: + */ +int CLUSTER_REPLICAS( + string node_id +); + +/** + * CLUSTER_SLOTS + * + * Get array of Cluster slot to node mappings + * + * Time complexity: O(N) where N is the total number of Cluster nodes + * Annotated return value: array + */ +int CLUSTER_SLOTS(); + +/** + * COMMAND + * + * Get array of Redis command details + * + * Time complexity: O(N) where N is the total number of Redis commands + * Annotated return value: array + */ +int COMMAND(); + +/** + * COMMAND_COUNT + * + * Get total number of Redis commands + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int COMMAND_COUNT(); + +/** + * COMMAND_GETKEYS + * + * Extract keys given a full Redis command + * + * Time complexity: O(N) where N is the number of arguments to the command + * Annotated return value: array + */ +int COMMAND_GETKEYS(); + +/** + * COMMAND_INFO + * + * Get array of specific Redis command details + * + * Time complexity: O(N) when N is number of commands to look up + * Annotated return value: array + */ +int COMMAND_INFO( + string command_name +); + +/** + * CONFIG_GET + * + * Get the value of a configuration parameter + * Annotated return value: array + */ +int CONFIG_GET( + string parameter +); + +/** + * CONFIG_REWRITE + * + * Rewrite the configuration file with the in memory configuration + * Annotated return value: simple-string + */ +int CONFIG_REWRITE(); + +/** + * CONFIG_SET + * + * Set a configuration parameter to the given value + * Annotated return value: simple-string + */ +int CONFIG_SET( + string parameter, + string value +); + +/** + * CONFIG_RESETSTAT + * + * Reset the stats returned by INFO + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int CONFIG_RESETSTAT(); + +/** + * DBSIZE + * + * Return the number of keys in the selected database + * Annotated return value: integer + */ +int DBSIZE(); + +/** + * DEBUG_OBJECT + * + * Get debugging information about a key + * Annotated return value: simple-string + */ +int DEBUG_OBJECT( + string key +); + +/** + * DEBUG_SEGFAULT + * + * Make the server crash + * Annotated return value: simple-string + */ +int DEBUG_SEGFAULT(); + +/** + * DECR + * + * Decrement the integer value of a key by one + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int DECR( + string key +); + +/** + * DECRBY + * + * Decrement the integer value of a key by the given number + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int DECRBY( + string key, + // Redis type: integer + int decrement +); + +/** + * DEL + * + * Delete a key + * + * Time complexity: O(N) where N is the number of keys that will be removed. When a key to + * remove holds a value other than a string, the individual complexity for this + * key is O(M) where M is the number of elements in the list, set, sorted set + * or hash. Removing a single key that holds a string value is O(1). + * Annotated return value: integer + */ +int DEL( + string key +); + +/** + * DISCARD + * + * Discard all commands issued after MULTI + * Annotated return value: simple-string + */ +int DISCARD(); + +/** + * DUMP + * + * Return a serialized version of the value stored at the specified key. + * + * Time complexity: O(1) to access the key and additional O(N*M) to serialized it, where N is + * the number of Redis objects composing the value and M their average size. + * For small string values the time complexity is thus O(1)+O(1*M) where M is + * small, so simply O(1). + * Annotated return value: bulk-string + */ +int DUMP( + string key +); + +/** + * ECHO + * + * Echo the given string + * Annotated return value: bulk-string + */ +int ECHO( + string message +); + +/** + * EVAL + * + * Execute a Lua script server side + * + * Time complexity: Depends on the script that is executed. + * Annotated return value: + */ +int EVAL( + string script, + // Redis type: integer + int numkeys, + string key, + string arg +); + +/** + * EVALSHA + * + * Execute a Lua script server side + * + * Time complexity: Depends on the script that is executed. + * Annotated return value: + */ +int EVALSHA( + string sha1, + // Redis type: integer + int numkeys, + string key, + string arg +); + +/** + * EXEC + * + * Execute all commands issued after MULTI + * Annotated return value: array + */ +int EXEC(); + +/** + * EXISTS + * + * Determine if a key exists + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int EXISTS( + string key +); + +/** + * EXPIRE + * + * Set a key's time to live in seconds + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int EXPIRE( + string key, + // Redis type: integer + int seconds +); + +/** + * EXPIREAT + * + * Set the expiration for a key as a UNIX timestamp + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int EXPIREAT( + string key, + // Redis type: posix time + string timestamp +); + +/** + * FLUSHALL + * + * Remove all keys from all databases + + * - Valid values for async: "ASYNC" + * Annotated return value: simple-string + */ +int FLUSHALL( + // Redis type: enum + string async = "" +); + +/** + * FLUSHDB + * + * Remove all keys from the current database + + * - Valid values for async: "ASYNC" + * Annotated return value: simple-string + */ +int FLUSHDB( + // Redis type: enum + string async = "" +); + +/** + * GEOADD + * + * Add one or more geospatial items in the geospatial index represented using a sorted set + * + * Time complexity: O(log(N)) for each item added, where N is the number of elements in the + * sorted set. + * Annotated return value: integer + */ +int GEOADD( + string key, + // Redis type: double + float longitude, + // Redis type: double + float latitude, + string member +); + +/** + * GEOHASH + * + * Returns members of a geospatial index as standard geohash strings + * + * Time complexity: O(log(N)) for each member requested, where N is the number of elements in + * the sorted set. + * Annotated return value: array + */ +int GEOHASH( + string key, + string member +); + +/** + * GEOPOS + * + * Returns longitude and latitude of members of a geospatial index + * + * Time complexity: O(log(N)) for each member requested, where N is the number of elements in + * the sorted set. + * Annotated return value: array + */ +int GEOPOS( + string key, + string member +); + +/** + * GEODIST + * + * Returns the distance between two members of a geospatial index + * + * Time complexity: O(log(N)) + * Annotated return value: bulk-string + */ +int GEODIST( + string key, + string member1, + string member2, + string unit = "" +); + +/** + * GEORADIUS + * + * Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a point + * + * Time complexity: O(N+log(M)) where N is the number of elements inside the bounding box of the + * circular area delimited by center and radius and M is the number of items + * inside the index. + + * - Valid values for unit: "m", "km", "ft", "mi" + + * - Valid values for withcoord: "WITHCOORD" + + * - Valid values for withdist: "WITHDIST" + + * - Valid values for withhash: "WITHHASH" + + * - Valid values for order: "ASC", "DESC" + * Annotated return value: array + */ +int GEORADIUS( + string key, + // Redis type: double + float longitude, + // Redis type: double + float latitude, + // Redis type: double + float radius, + // Redis type: enum + string unit, + // Redis type: enum + string withcoord = "", + // Redis type: enum + string withdist = "", + // Redis type: enum + string withhash = "", + // Redis type: integer + int count_count = 0, + // Redis type: enum + string order = "", + // Redis type: key + string store_key = "", + // Redis type: key + string storedist_key = "" +); + +/** + * GEORADIUSBYMEMBER + * + * Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a member + * + * Time complexity: O(N+log(M)) where N is the number of elements inside the bounding box of the + * circular area delimited by center and radius and M is the number of items + * inside the index. + + * - Valid values for unit: "m", "km", "ft", "mi" + + * - Valid values for withcoord: "WITHCOORD" + + * - Valid values for withdist: "WITHDIST" + + * - Valid values for withhash: "WITHHASH" + + * - Valid values for order: "ASC", "DESC" + * Annotated return value: + */ +int GEORADIUSBYMEMBER( + string key, + string member, + // Redis type: double + float radius, + // Redis type: enum + string unit, + // Redis type: enum + string withcoord = "", + // Redis type: enum + string withdist = "", + // Redis type: enum + string withhash = "", + // Redis type: integer + int count_count = 0, + // Redis type: enum + string order = "", + // Redis type: key + string store_key = "", + // Redis type: key + string storedist_key = "" +); + +/** + * GET + * + * Get the value of a key + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int GET( + string key +); + +/** + * GETBIT + * + * Returns the bit value at offset in the string value stored at key + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int GETBIT( + string key, + // Redis type: integer + int offset +); + +/** + * GETRANGE + * + * Get a substring of the string stored at a key + * + * Time complexity: O(N) where N is the length of the returned string. The complexity is + * ultimately determined by the returned length, but because creating a + * substring from an existing string is very cheap, it can be considered O(1) + * for small strings. + * Annotated return value: bulk-string + */ +int GETRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int end +); + +/** + * GETSET + * + * Set the string value of a key and return its old value + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int GETSET( + string key, + string value +); + +/** + * HDEL + * + * Delete one or more hash fields + * + * Time complexity: O(N) where N is the number of fields to be removed. + * Annotated return value: integer + */ +int HDEL( + string key, + string field +); + +/** + * HEXISTS + * + * Determine if a hash field exists + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int HEXISTS( + string key, + string field +); + +/** + * HGET + * + * Get the value of a hash field + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int HGET( + string key, + string field +); + +/** + * HGETALL + * + * Get all the fields and values in a hash + * + * Time complexity: O(N) where N is the size of the hash. + * Annotated return value: array + */ +int HGETALL( + string key +); + +/** + * HINCRBY + * + * Increment the integer value of a hash field by the given number + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int HINCRBY( + string key, + string field, + // Redis type: integer + int increment +); + +/** + * HINCRBYFLOAT + * + * Increment the float value of a hash field by the given amount + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int HINCRBYFLOAT( + string key, + string field, + // Redis type: double + float increment +); + +/** + * HKEYS + * + * Get all the fields in a hash + * + * Time complexity: O(N) where N is the size of the hash. + * Annotated return value: array + */ +int HKEYS( + string key +); + +/** + * HLEN + * + * Get the number of fields in a hash + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int HLEN( + string key +); + +/** + * HMGET + * + * Get the values of all the given hash fields + * + * Time complexity: O(N) where N is the number of fields being requested. + * Annotated return value: array + */ +int HMGET( + string key, + string field +); + +/** + * HMSET + * + * Set multiple hash fields to multiple values + * + * Time complexity: O(N) where N is the number of fields being set. + * Annotated return value: simple-string + */ +int HMSET( + string key, + string field, + string value +); + +/** + * HSET + * + * Set the string value of a hash field + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int HSET( + string key, + string field, + string value +); + +/** + * HSETNX + * + * Set the value of a hash field, only if the field does not exist + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int HSETNX( + string key, + string field, + string value +); + +/** + * HSTRLEN + * + * Get the length of the value of a hash field + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int HSTRLEN( + string key, + string field +); + +/** + * HVALS + * + * Get all the values in a hash + * + * Time complexity: O(N) where N is the size of the hash. + * Annotated return value: array + */ +int HVALS( + string key +); + +/** + * INCR + * + * Increment the integer value of a key by one + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int INCR( + string key +); + +/** + * INCRBY + * + * Increment the integer value of a key by the given amount + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int INCRBY( + string key, + // Redis type: integer + int increment +); + +/** + * INCRBYFLOAT + * + * Increment the float value of a key by the given amount + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int INCRBYFLOAT( + string key, + // Redis type: double + float increment +); + +/** + * INFO + * + * Get information and statistics about the server + * Annotated return value: bulk-string + */ +int INFO( + string section = "" +); + +/** + * KEYS + * + * Find all keys matching the given pattern + * + * Time complexity: O(N) with N being the number of keys in the database, under the assumption + * that the key names in the database and the given pattern have limited + * length. + * Annotated return value: array + */ +int KEYS( + string pattern +); + +/** + * LASTSAVE + * + * Get the UNIX time stamp of the last successful save to disk + * Annotated return value: integer + */ +int LASTSAVE(); + +/** + * LINDEX + * + * Get an element from a list by its index + * + * Time complexity: O(N) where N is the number of elements to traverse to get to the element at + * index. This makes asking for the first or the last element of the list O(1). + * Annotated return value: bulk-string + */ +int LINDEX( + string key, + // Redis type: integer + int index +); + +/** + * LINSERT + * + * Insert an element before or after another element in a list + * + * Time complexity: O(N) where N is the number of elements to traverse before seeing the value + * pivot. This means that inserting somewhere on the left end on the list + * (head) can be considered O(1) and inserting somewhere on the right end + * (tail) is O(N). + + * - Valid values for where: "BEFORE", "AFTER" + * Annotated return value: integer + */ +int LINSERT( + string key, + // Redis type: enum + string where, + string pivot, + string value +); + +/** + * LLEN + * + * Get the length of a list + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int LLEN( + string key +); + +/** + * LPOP + * + * Remove and get the first element in a list + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int LPOP( + string key +); + +/** + * LPUSH + * + * Prepend one or multiple values to a list + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int LPUSH( + string key, + string value +); + +/** + * LPUSHX + * + * Prepend a value to a list, only if the list exists + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int LPUSHX( + string key, + string value +); + +/** + * LRANGE + * + * Get a range of elements from a list + * + * Time complexity: O(S+N) where S is the distance of start offset from HEAD for small lists, + * from nearest end (HEAD or TAIL) for large lists; and N is the number of + * elements in the specified range. + * Annotated return value: array + */ +int LRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +); + +/** + * LREM + * + * Remove elements from a list + * + * Time complexity: O(N) where N is the length of the list. + * Annotated return value: integer + */ +int LREM( + string key, + // Redis type: integer + int count, + string value +); + +/** + * LSET + * + * Set the value of an element in a list by its index + * + * Time complexity: O(N) where N is the length of the list. Setting either the first or the last + * element of the list is O(1). + * Annotated return value: simple-string + */ +int LSET( + string key, + // Redis type: integer + int index, + string value +); + +/** + * LTRIM + * + * Trim a list to the specified range + * + * Time complexity: O(N) where N is the number of elements to be removed by the operation. + * Annotated return value: simple-string + */ +int LTRIM( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +); + +/** + * MEMORY_DOCTOR + * + * Outputs memory problems report + * Annotated return value: bulk-string + */ +int MEMORY_DOCTOR(); + +/** + * MEMORY_HELP + * + * Show helpful text about the different subcommands + * Annotated return value: array + */ +int MEMORY_HELP(); + +/** + * MEMORY_MALLOC_STATS + * + * Show allocator internal stats + * Annotated return value: bulk-string + */ +int MEMORY_MALLOC_STATS(); + +/** + * MEMORY_PURGE + * + * Ask the allocator to release memory + * Annotated return value: simple-string + */ +int MEMORY_PURGE(); + +/** + * MEMORY_STATS + * + * Show memory usage details + * Annotated return value: array + */ +int MEMORY_STATS(); + +/** + * MEMORY_USAGE + * + * Estimate the memory usage of a key + * + * Time complexity: O(N) where N is the number of samples. + * Annotated return value: integer + */ +int MEMORY_USAGE( + string key, + // Redis type: integer + int samples_count = 0 +); + +/** + * MGET + * + * Get the values of all the given keys + * + * Time complexity: O(N) where N is the number of keys to retrieve. + * Annotated return value: array + */ +int MGET( + string key +); + +/** + * MIGRATE + * + * Atomically transfer a key from a Redis instance to another one. + * + * Time complexity: This command actually executes a DUMP+DEL in the source instance, and a + * RESTORE in the target instance. See the pages of these commands for time + * complexity. Also an O(N) data transfer between the two instances is + * performed. + + * - Valid values for key: "key", "\"\"" + + * - Valid values for copy: "COPY" + + * - Valid values for replace: "REPLACE" + * Annotated return value: simple-string + */ +int MIGRATE( + string host, + string port, + // Redis type: enum + string key, + // Redis type: integer + int destination_db, + // Redis type: integer + int timeout, + // Redis type: enum + string copy = "", + // Redis type: enum + string replace = "", + string auth_password = "", + // Redis type: key + string keys_key = "" +); + +/** + * MONITOR + * + * Listen for all requests received by the server in real time + * Annotated return value: + */ +int MONITOR(); + +/** + * MOVE + * + * Move a key to another database + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int MOVE( + string key, + // Redis type: integer + int db +); + +/** + * MSET + * + * Set multiple keys to multiple values + * + * Time complexity: O(N) where N is the number of keys to set. + * Annotated return value: simple-string + */ +int MSET( + string key, + string value +); + +/** + * MSETNX + * + * Set multiple keys to multiple values, only if none of the keys exist + * + * Time complexity: O(N) where N is the number of keys to set. + * Annotated return value: integer + */ +int MSETNX( + string key, + string value +); + +/** + * MULTI + * + * Mark the start of a transaction block + * Annotated return value: simple-string + */ +int MULTI(); + +/** + * OBJECT + * + * Inspect the internals of Redis objects + * + * Time complexity: O(1) for all the currently implemented subcommands. + * Annotated return value: + */ +int OBJECT( + string subcommand, + string arguments = "" +); + +/** + * PERSIST + * + * Remove the expiration from a key + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int PERSIST( + string key +); + +/** + * PEXPIRE + * + * Set a key's time to live in milliseconds + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int PEXPIRE( + string key, + // Redis type: integer + int milliseconds +); + +/** + * PEXPIREAT + * + * Set the expiration for a key as a UNIX timestamp specified in milliseconds + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int PEXPIREAT( + string key, + // Redis type: posix time + string milliseconds_timestamp +); + +/** + * PFADD + * + * Adds the specified elements to the specified HyperLogLog. + * + * Time complexity: O(1) to add every element. + * Annotated return value: integer + */ +int PFADD( + string key, + string element +); + +/** + * PFCOUNT + * + * Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s). + * + * Time complexity: O(1) with a very small average constant time when called with a single key. + * O(N) with N being the number of keys, and much bigger constant times, when + * called with multiple keys. + * Annotated return value: integer + */ +int PFCOUNT( + string key +); + +/** + * PFMERGE + * + * Merge N different HyperLogLogs into a single one. + * + * Time complexity: O(N) to merge N HyperLogLogs, but with high constant times. + * Annotated return value: simple-string + */ +int PFMERGE( + // Redis type: key + string destkey, + // Redis type: key + string sourcekey +); + +/** + * PING + * + * Ping the server + * Annotated return value: simple-string + */ +int PING( + string message = "" +); + +/** + * PSETEX + * + * Set the value and expiration in milliseconds of a key + * + * Time complexity: O(1) + * Annotated return value: + */ +int PSETEX( + string key, + // Redis type: integer + int milliseconds, + string value +); + +/** + * PUBSUB + * + * Inspect the state of the Pub/Sub subsystem + * + * Time complexity: O(N) for the CHANNELS subcommand, where N is the number of active channels, + * and assuming constant time pattern matching (relatively short channels and + * patterns). O(N) for the NUMSUB subcommand, where N is the number of + * requested channels. O(1) for the NUMPAT subcommand. + * Annotated return value: array + */ +int PUBSUB( + string subcommand, + string argument = "" +); + +/** + * PTTL + * + * Get the time to live for a key in milliseconds + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int PTTL( + string key +); + +/** + * PUBLISH + * + * Post a message to a channel + * + * Time complexity: O(N+M) where N is the number of clients subscribed to the receiving channel + * and M is the total number of subscribed patterns (by any client). + * Annotated return value: integer + */ +int PUBLISH( + string channel, + string message +); + +/** + * QUIT + * + * Close the connection + * Annotated return value: simple-string + */ +int QUIT(); + +/** + * RANDOMKEY + * + * Return a random key from the keyspace + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int RANDOMKEY(); + +/** + * READONLY + * + * Enables read queries for a connection to a cluster replica node + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int READONLY(); + +/** + * READWRITE + * + * Disables read queries for a connection to a cluster replica node + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int READWRITE(); + +/** + * RENAME + * + * Rename a key + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int RENAME( + string key, + // Redis type: key + string newkey +); + +/** + * RENAMENX + * + * Rename a key, only if the new key does not exist + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int RENAMENX( + string key, + // Redis type: key + string newkey +); + +/** + * RESTORE + * + * Create a key using the provided serialized value, previously obtained using DUMP. + * + * Time complexity: O(1) to create the new key and additional O(N*M) to reconstruct the + * serialized value, where N is the number of Redis objects composing the value + * and M their average size. For small string values the time complexity is + * thus O(1)+O(1*M) where M is small, so simply O(1). However for sorted set + * values the complexity is O(N*M*log(N)) because inserting values into sorted + * sets is O(log(N)). + + * - Valid values for replace: "REPLACE" + + * - Valid values for absttl: "ABSTTL" + * Annotated return value: simple-string + */ +int RESTORE( + string key, + // Redis type: integer + int ttl, + string serialized_value, + // Redis type: enum + string replace = "", + // Redis type: enum + string absttl = "", + // Redis type: integer + int idletime_seconds = 0, + // Redis type: integer + int freq_frequency = 0 +); + +/** + * ROLE + * + * Return the role of the instance in the context of replication + * Annotated return value: array + */ +int ROLE(); + +/** + * RPOP + * + * Remove and get the last element in a list + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int RPOP( + string key +); + +/** + * RPOPLPUSH + * + * Remove the last element in a list, prepend it to another list and return it + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int RPOPLPUSH( + // Redis type: key + string source, + // Redis type: key + string destination +); + +/** + * RPUSH + * + * Append one or multiple values to a list + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int RPUSH( + string key, + string value +); + +/** + * RPUSHX + * + * Append a value to a list, only if the list exists + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int RPUSHX( + string key, + string value +); + +/** + * SADD + * + * Add one or more members to a set + * + * Time complexity: O(1) for each element added, so O(N) to add N elements when the command is + * called with multiple arguments. + * Annotated return value: integer + */ +int SADD( + string key, + string member +); + +/** + * SAVE + * + * Synchronously save the dataset to disk + * Annotated return value: simple-string + */ +int SAVE(); + +/** + * SCARD + * + * Get the number of members in a set + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int SCARD( + string key +); + +/** + * SCRIPT_DEBUG + * + * Set the debug mode for executed scripts. + * + * Time complexity: O(1) + + * - Valid values for mode: "YES", "SYNC", "NO" + * Annotated return value: simple-string + */ +int SCRIPT_DEBUG( + // Redis type: enum + string mode +); + +/** + * SCRIPT_EXISTS + * + * Check existence of scripts in the script cache. + * + * Time complexity: O(N) with N being the number of scripts to check (so checking a single + * script is an O(1) operation). + * Annotated return value: array + */ +int SCRIPT_EXISTS( + string sha1 +); + +/** + * SCRIPT_FLUSH + * + * Remove all the scripts from the script cache. + * + * Time complexity: O(N) with N being the number of scripts in cache + * Annotated return value: simple-string + */ +int SCRIPT_FLUSH(); + +/** + * SCRIPT_KILL + * + * Kill the script currently in execution. + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int SCRIPT_KILL(); + +/** + * SCRIPT_LOAD + * + * Load the specified Lua script into the script cache. + * + * Time complexity: O(N) with N being the length in bytes of the script body. + * Annotated return value: bulk-string + */ +int SCRIPT_LOAD( + string script +); + +/** + * SDIFF + * + * Subtract multiple sets + * + * Time complexity: O(N) where N is the total number of elements in all given sets. + * Annotated return value: array + */ +int SDIFF( + string key +); + +/** + * SDIFFSTORE + * + * Subtract multiple sets and store the resulting set in a key + * + * Time complexity: O(N) where N is the total number of elements in all given sets. + * Annotated return value: integer + */ +int SDIFFSTORE( + // Redis type: key + string destination, + string key +); + +/** + * SELECT + * + * Change the selected database for the current connection + * Annotated return value: simple-string + */ +int SELECT( + // Redis type: integer + int index +); + +/** + * SET + * + * Set the string value of a key + * + * Time complexity: O(1) + + * - Valid values for condition: "NX", "XX" + * Annotated return value: simple-string + */ +int SET( + string key, + string value, + // Redis type: enum + string condition = "" +); + +/** + * SETBIT + * + * Sets or clears the bit at offset in the string value stored at key + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int SETBIT( + string key, + // Redis type: integer + int offset, + string value +); + +/** + * SETEX + * + * Set the value and expiration of a key + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int SETEX( + string key, + // Redis type: integer + int seconds, + string value +); + +/** + * SETNX + * + * Set the value of a key, only if the key does not exist + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int SETNX( + string key, + string value +); + +/** + * SETRANGE + * + * Overwrite part of a string at key starting at the specified offset + * + * Time complexity: O(1), not counting the time taken to copy the new string in place. Usually, + * this string is very small so the amortized complexity is O(1). Otherwise, + * complexity is O(M) with M being the length of the value argument. + * Annotated return value: integer + */ +int SETRANGE( + string key, + // Redis type: integer + int offset, + string value +); + +/** + * SHUTDOWN + * + * Synchronously save the dataset to disk and then shut down the server + + * - Valid values for save_mode: "NOSAVE", "SAVE" + * Annotated return value: simple-string + */ +int SHUTDOWN( + // Redis type: enum + string save_mode = "" +); + +/** + * SINTER + * + * Intersect multiple sets + * + * Time complexity: O(N*M) worst case where N is the cardinality of the smallest set and M is + * the number of sets. + * Annotated return value: array + */ +int SINTER( + string key +); + +/** + * SINTERSTORE + * + * Intersect multiple sets and store the resulting set in a key + * + * Time complexity: O(N*M) worst case where N is the cardinality of the smallest set and M is + * the number of sets. + * Annotated return value: integer + */ +int SINTERSTORE( + // Redis type: key + string destination, + string key +); + +/** + * SISMEMBER + * + * Determine if a given value is a member of a set + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int SISMEMBER( + string key, + string member +); + +/** + * SLAVEOF + * + * Make the server a replica of another instance, or promote it as master. Deprecated starting with Redis 5. Use REPLICAOF instead. + * Annotated return value: simple-string + */ +int SLAVEOF( + string host, + string port +); + +/** + * REPLICAOF + * + * Make the server a replica of another instance, or promote it as master. + * Annotated return value: simple-string + */ +int REPLICAOF( + string host, + string port +); + +/** + * SLOWLOG + * + * Manages the Redis slow queries log + * Annotated return value: + */ +int SLOWLOG( + string subcommand, + string argument = "" +); + +/** + * SMEMBERS + * + * Get all the members in a set + * + * Time complexity: O(N) where N is the set cardinality. + * Annotated return value: array + */ +int SMEMBERS( + string key +); + +/** + * SMOVE + * + * Move a member from one set to another + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int SMOVE( + // Redis type: key + string source, + // Redis type: key + string destination, + string member +); + +/** + * SORT + * + * Sort the elements in a list, set or sorted set + * + * Time complexity: O(N+M*log(M)) where N is the number of elements in the list or set to sort, + * and M the number of returned elements. When the elements are not sorted, + * complexity is currently O(N) as there is a copy step that will be avoided in + * next releases. + + * - Valid values for order: "ASC", "DESC" + + * - Valid values for sorting: "ALPHA" + * Annotated return value: array + */ +int SORT( + string key, + // Redis type: pattern + string by_pattern = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0, + string get_pattern = "", + // Redis type: enum + string order = "", + // Redis type: enum + string sorting = "", + // Redis type: key + string store_destination = "" +); + +/** + * SPOP + * + * Remove and return one or multiple random members from a set + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int SPOP( + string key, + // Redis type: integer + int count = 0 +); + +/** + * SRANDMEMBER + * + * Get one or multiple random members from a set + * + * Time complexity: Without the count argument O(1), otherwise O(N) where N is the absolute + * value of the passed count. + * Annotated return value: bulk-string + */ +int SRANDMEMBER( + string key, + // Redis type: integer + int count = 0 +); + +/** + * SREM + * + * Remove one or more members from a set + * + * Time complexity: O(N) where N is the number of members to be removed. + * Annotated return value: integer + */ +int SREM( + string key, + string member +); + +/** + * STRLEN + * + * Get the length of the value stored in a key + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int STRLEN( + string key +); + +/** + * SUNION + * + * Add multiple sets + * + * Time complexity: O(N) where N is the total number of elements in all given sets. + * Annotated return value: array + */ +int SUNION( + string key +); + +/** + * SUNIONSTORE + * + * Add multiple sets and store the resulting set in a key + * + * Time complexity: O(N) where N is the total number of elements in all given sets. + * Annotated return value: integer + */ +int SUNIONSTORE( + // Redis type: key + string destination, + string key +); + +/** + * SWAPDB + * + * Swaps two Redis databases + * Annotated return value: simple-string + */ +int SWAPDB( + // Redis type: integer + int index, + // Redis type: integer + int index_1 +); + +/** + * SYNC + * + * Internal command used for replication + * Annotated return value: + */ +int SYNC(); + +/** + * TIME + * + * Return the current server time + * + * Time complexity: O(1) + * Annotated return value: array + */ +int TIME(); + +/** + * TOUCH + * + * Alters the last access time of a key(s). Returns the number of existing keys specified. + * + * Time complexity: O(N) where N is the number of keys that will be touched. + * Annotated return value: integer + */ +int TOUCH( + string key +); + +/** + * TTL + * + * Get the time to live for a key + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int TTL( + string key +); + +/** + * TYPE + * + * Determine the type stored at key + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int TYPE( + string key +); + +/** + * UNLINK + * + * Delete a key asynchronously in another thread. Otherwise it is just as DEL, but non blocking. + * + * Time complexity: O(1) for each key removed regardless of its size. Then the command does O(N) + * work in a different thread in order to reclaim memory, where N is the number + * of allocations the deleted objects where composed of. + * Annotated return value: integer + */ +int UNLINK( + string key +); + +/** + * UNWATCH + * + * Forget about all watched keys + * + * Time complexity: O(1) + * Annotated return value: simple-string + */ +int UNWATCH(); + +/** + * WAIT + * + * Wait for the synchronous replication of all the write commands sent in the context of the current connection + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int WAIT( + // Redis type: integer + int numreplicas, + // Redis type: integer + int timeout +); + +/** + * WATCH + * + * Watch the given keys to determine execution of the MULTI/EXEC block + * + * Time complexity: O(1) for every key. + * Annotated return value: simple-string + */ +int WATCH( + string key +); + +/** + * ZADD + * + * Add one or more members to a sorted set, or update its score if it already exists + * + * Time complexity: O(log(N)) for each item added, where N is the number of elements in the + * sorted set. + + * - Valid values for condition: "NX", "XX" + + * - Valid values for change: "CH" + + * - Valid values for increment: "INCR" + * Annotated return value: integer + */ +int ZADD( + string key, + // Redis type: enum + string condition = "", + // Redis type: enum + string change = "", + // Redis type: enum + string increment = "", + // Redis type: double + float score = 0.0, + string member = "" +); + +/** + * ZCARD + * + * Get the number of members in a sorted set + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int ZCARD( + string key +); + +/** + * ZCOUNT + * + * Count the members in a sorted set with scores within the given values + * + * Time complexity: O(log(N)) with N being the number of elements in the sorted set. + * Annotated return value: integer + */ +int ZCOUNT( + string key, + // Redis type: double + float min, + // Redis type: double + float max +); + +/** + * ZINCRBY + * + * Increment the score of a member in a sorted set + * + * Time complexity: O(log(N)) where N is the number of elements in the sorted set. + * Annotated return value: bulk-string + */ +int ZINCRBY( + string key, + // Redis type: integer + int increment, + string member +); + +/** + * ZINTERSTORE + * + * Intersect multiple sorted sets and store the resulting sorted set in a new key + * + * Time complexity: O(N*K)+O(M*log(M)) worst case with N being the smallest input sorted set, K + * being the number of input sorted sets and M being the number of elements in + * the resulting sorted set. + + * - Valid values for aggregate_aggregate: "SUM", "MIN", "MAX" + * Annotated return value: integer + */ +int ZINTERSTORE( + // Redis type: key + string destination, + // Redis type: integer + int numkeys, + string key, + // Redis type: integer + int weights_weight = 0, + // Redis type: enum + string aggregate_aggregate = "" +); + +/** + * ZLEXCOUNT + * + * Count the number of members in a sorted set between a given lexicographical range + * + * Time complexity: O(log(N)) with N being the number of elements in the sorted set. + * Annotated return value: integer + */ +int ZLEXCOUNT( + string key, + string min, + string max +); + +/** + * ZPOPMAX + * + * Remove and return members with the highest scores in a sorted set + * + * Time complexity: O(log(N)*M) with N being the number of elements in the sorted set, and M + * being the number of elements popped. + * Annotated return value: array + */ +int ZPOPMAX( + string key, + // Redis type: integer + int count = 0 +); + +/** + * ZPOPMIN + * + * Remove and return members with the lowest scores in a sorted set + * + * Time complexity: O(log(N)*M) with N being the number of elements in the sorted set, and M + * being the number of elements popped. + * Annotated return value: array + */ +int ZPOPMIN( + string key, + // Redis type: integer + int count = 0 +); + +/** + * ZRANGE + * + * Return a range of members in a sorted set, by index + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements returned. + + * - Valid values for withscores: "WITHSCORES" + * Annotated return value: array + */ +int ZRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop, + // Redis type: enum + string withscores = "" +); + +/** + * ZRANGEBYLEX + * + * Return a range of members in a sorted set, by lexicographical range + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements being returned. If M is constant (e.g. always asking for + * the first 10 elements with LIMIT), you can consider it O(log(N)). + * Annotated return value: array + */ +int ZRANGEBYLEX( + string key, + string min, + string max, + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +); + +/** + * ZREVRANGEBYLEX + * + * Return a range of members in a sorted set, by lexicographical range, ordered from higher to lower strings. + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements being returned. If M is constant (e.g. always asking for + * the first 10 elements with LIMIT), you can consider it O(log(N)). + * Annotated return value: array + */ +int ZREVRANGEBYLEX( + string key, + string max, + string min, + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +); + +/** + * ZRANGEBYSCORE + * + * Return a range of members in a sorted set, by score + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements being returned. If M is constant (e.g. always asking for + * the first 10 elements with LIMIT), you can consider it O(log(N)). + + * - Valid values for withscores: "WITHSCORES" + * Annotated return value: array + */ +int ZRANGEBYSCORE( + string key, + // Redis type: double + float min, + // Redis type: double + float max, + // Redis type: enum + string withscores = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +); + +/** + * ZRANK + * + * Determine the index of a member in a sorted set + * + * Time complexity: O(log(N)) + * Annotated return value: integer + */ +int ZRANK( + string key, + string member +); + +/** + * ZREM + * + * Remove one or more members from a sorted set + * + * Time complexity: O(M*log(N)) with N being the number of elements in the sorted set and M the + * number of elements to be removed. + * Annotated return value: integer + */ +int ZREM( + string key, + string member +); + +/** + * ZREMRANGEBYLEX + * + * Remove all members in a sorted set between the given lexicographical range + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements removed by the operation. + * Annotated return value: integer + */ +int ZREMRANGEBYLEX( + string key, + string min, + string max +); + +/** + * ZREMRANGEBYRANK + * + * Remove all members in a sorted set within the given indexes + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements removed by the operation. + * Annotated return value: integer + */ +int ZREMRANGEBYRANK( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +); + +/** + * ZREMRANGEBYSCORE + * + * Remove all members in a sorted set within the given scores + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements removed by the operation. + * Annotated return value: integer + */ +int ZREMRANGEBYSCORE( + string key, + // Redis type: double + float min, + // Redis type: double + float max +); + +/** + * ZREVRANGE + * + * Return a range of members in a sorted set, by index, with scores ordered from high to low + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements returned. + + * - Valid values for withscores: "WITHSCORES" + * Annotated return value: array + */ +int ZREVRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop, + // Redis type: enum + string withscores = "" +); + +/** + * ZREVRANGEBYSCORE + * + * Return a range of members in a sorted set, by score, with scores ordered from high to low + * + * Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the + * number of elements being returned. If M is constant (e.g. always asking for + * the first 10 elements with LIMIT), you can consider it O(log(N)). + + * - Valid values for withscores: "WITHSCORES" + * Annotated return value: array + */ +int ZREVRANGEBYSCORE( + string key, + // Redis type: double + float max, + // Redis type: double + float min, + // Redis type: enum + string withscores = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +); + +/** + * ZREVRANK + * + * Determine the index of a member in a sorted set, with scores ordered from high to low + * + * Time complexity: O(log(N)) + * Annotated return value: integer + */ +int ZREVRANK( + string key, + string member +); + +/** + * ZSCORE + * + * Get the score associated with the given member in a sorted set + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int ZSCORE( + string key, + string member +); + +/** + * ZUNIONSTORE + * + * Add multiple sorted sets and store the resulting sorted set in a new key + * + * Time complexity: O(N)+O(M log(M)) with N being the sum of the sizes of the input sorted sets, + * and M being the number of elements in the resulting sorted set. + + * - Valid values for aggregate_aggregate: "SUM", "MIN", "MAX" + * Annotated return value: integer + */ +int ZUNIONSTORE( + // Redis type: key + string destination, + // Redis type: integer + int numkeys, + string key, + // Redis type: integer + int weights_weight = 0, + // Redis type: enum + string aggregate_aggregate = "" +); + +/** + * SCAN + * + * Incrementally iterate the keys space + * + * Time complexity: O(1) for every call. O(N) for a complete iteration, including enough command + * calls for the cursor to return back to 0. N is the number of elements inside + * the collection. + * Annotated return value: + */ +int SCAN( + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0, + string type_type = "" +); + +/** + * SSCAN + * + * Incrementally iterate Set elements + * + * Time complexity: O(1) for every call. O(N) for a complete iteration, including enough command + * calls for the cursor to return back to 0. N is the number of elements inside + * the collection.. + * Annotated return value: + */ +int SSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +); + +/** + * HSCAN + * + * Incrementally iterate hash fields and associated values + * + * Time complexity: O(1) for every call. O(N) for a complete iteration, including enough command + * calls for the cursor to return back to 0. N is the number of elements inside + * the collection.. + * Annotated return value: + */ +int HSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +); + +/** + * ZSCAN + * + * Incrementally iterate sorted sets elements and associated scores + * + * Time complexity: O(1) for every call. O(N) for a complete iteration, including enough command + * calls for the cursor to return back to 0. N is the number of elements inside + * the collection.. + * Annotated return value: + */ +int ZSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +); + +/** + * XINFO + * + * Get information on streams and consumer groups + * + * Time complexity: O(N) with N being the number of returned items for the subcommands CONSUMERS + * and GROUPS. The STREAM subcommand is O(log N) with N being the number of + * items in the stream. + + * - Valid values for help: "HELP" + * Annotated return value: + */ +int XINFO( + // Redis type: key + string consumers_key = "", + string consumers_groupname = "", + // Redis type: key + string groups_key = "", + // Redis type: key + string stream_key = "", + // Redis type: enum + string help = "" +); + +/** + * XADD + * + * Appends a new entry to a stream + * + * Time complexity: O(1) + * Annotated return value: bulk-string + */ +int XADD( + string key, + string ID, + // Redis type: value + string field, + string str +); + +/** + * XTRIM + * + * Trims the stream to (approximately if '~' is passed) a certain size + * + * Time complexity: O(N), with N being the number of evicted entries. Constant times are very + * small however, since entries are organized in macro nodes containing + * multiple entries that can be released with a single deallocation. + + * - Valid values for strategy: "MAXLEN" + + * - Valid values for approx: "~" + * Annotated return value: integer + */ +int XTRIM( + string key, + // Redis type: enum + string strategy, + // Redis type: enum + string approx = "", + // Redis type: integer + int count = 0 +); + +/** + * XDEL + * + * Removes the specified entries from the stream. Returns the number of items actually deleted, that may be different from the number of IDs passed in case certain IDs do not exist. + * + * Time complexity: O(1) for each single item to delete in the stream, regardless of the stream + * size. + * Annotated return value: integer + */ +int XDEL( + string key, + string ID +); + +/** + * XRANGE + * + * Return a range of elements in a stream, with IDs matching the specified IDs interval + * + * Time complexity: O(N) with N being the number of elements being returned. If N is constant + * (e.g. always asking for the first 10 elements with COUNT), you can consider + * it O(1). + * Annotated return value: array + */ +int XRANGE( + string key, + string start, + string end, + // Redis type: integer + int count_count = 0 +); + +/** + * XREVRANGE + * + * Return a range of elements in a stream, with IDs matching the specified IDs interval, in reverse order (from greater to smaller IDs) compared to XRANGE + * + * Time complexity: O(N) with N being the number of elements returned. If N is constant (e.g. + * always asking for the first 10 elements with COUNT), you can consider it + * O(1). + * Annotated return value: array + */ +int XREVRANGE( + string key, + string end, + string start, + // Redis type: integer + int count_count = 0 +); + +/** + * XLEN + * + * Return the number of entires in a stream + * + * Time complexity: O(1) + * Annotated return value: integer + */ +int XLEN( + string key +); + +/** + * XREAD + * + * Return never seen elements in multiple streams, with IDs greater than the ones reported by the caller for each stream. Can block. + * + * Time complexity: For each stream mentioned: O(N) with N being the number of elements being + * returned, it menas that XREAD-ing with a fixed COUNT is O(1). Note that when + * the BLOCK option is used, XADD will pay O(M) time in order to serve the M + * clients blocked on the stream getting new data. + + * - Valid values for streams: "STREAMS" + * Annotated return value: array + */ +int XREAD( + // Redis type: integer + int count_count = 0, + // Redis type: integer + int block_milliseconds = 0, + // Redis type: enum + string streams = "", + string key = "", + string ID = "" +); + +/** + * XGROUP + * + * Create, destroy, and manage consumer groups. + * + * Time complexity: O(1) for all the subcommands, with the exception of the DESTROY subcommand + * which takes an additional O(M) time in order to delete the M entries inside + * the consumer group pending entries list (PEL). + * Annotated return value: + */ +int XGROUP( + // Redis type: key + string create_key = "", + string create_groupname = "", + string create_id_or__ = "", + // Redis type: key + string setid_key = "", + string setid_groupname = "", + string setid_id_or__ = "", + // Redis type: key + string destroy_key = "", + string destroy_groupname = "", + // Redis type: key + string delconsumer_key = "", + string delconsumer_groupname = "", + string delconsumer_consumername = "" +); + +/** + * XREADGROUP + * + * Return new entries from a stream using a consumer group, or access the history of the pending entries for a given consumer. Can block. + * + * Time complexity: For each stream mentioned: O(M) with M being the number of elements + * returned. If M is constant (e.g. always asking for the first 10 elements + * with COUNT), you can consider it O(1). On the other side when XREADGROUP + * blocks, XADD will pay the O(N) time in order to serve the N clients blocked + * on the stream getting new data. + + * - Valid values for noack: "NOACK" + + * - Valid values for streams: "STREAMS" + * Annotated return value: + */ +int XREADGROUP( + string group_group, + string group_consumer, + // Redis type: integer + int count_count = 0, + // Redis type: integer + int block_milliseconds = 0, + // Redis type: enum + string noack = "", + // Redis type: enum + string streams = "", + string key = "", + string ID = "" +); + +/** + * XACK + * + * Marks a pending message as correctly processed, effectively removing it from the pending entries list of the consumer group. Return value of the command is the number of messages successfully acknowledged, that is, the IDs we were actually able to resolve in the PEL. + * + * Time complexity: O(1) for each message ID processed. + * Annotated return value: integer + */ +int XACK( + string key, + string group, + string ID +); + +/** + * XCLAIM + * + * Changes (or acquires) ownership of a message in a consumer group, as if the message was delivered to the specified consumer. + * + * Time complexity: O(log N) with N being the number of messages in the PEL of the consumer + * group. + * Annotated return value: array + */ +int XCLAIM( + string key, + string group, + string consumer, + string min_idle_time, + string ID, + // Redis type: integer + int idle_ms = 0, + // Redis type: integer + int time_ms_unix_time = 0, + // Redis type: integer + int retrycount_count = 0 +); + +/** + * XPENDING + * + * Return information and entries from a stream consumer group pending entries list, that are messages fetched but never acknowledged. + * + * Time complexity: O(N) with N being the number of elements returned, so asking for a small + * fixed number of entries per call is O(1). When the command returns just the + * summary it runs in O(1) time assuming the list of consumers is small, + * otherwise there is additional O(N) time needed to iterate every consumer. + * Annotated return value: array + */ +int XPENDING( + string key, + string group, + string start = "", + string end = "", + // Redis type: integer + int count = 0, + string consumer = "" +); + + + +// Implementation below +int APPEND( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "APPEND"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int AUTH( + string password +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "AUTH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", password); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BGREWRITEAOF() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BGREWRITEAOF"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BGSAVE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BGSAVE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BITCOUNT( + string key, + // Redis type: integer + int start = 0, + // Redis type: integer + int end = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BITCOUNT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (start != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + if (end != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(end)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BITFIELD( + string key, + // Redis type: type + string get_type = "", + // Redis type: integer + int get_offset = 0, + // Redis type: type + string set_type = "", + // Redis type: integer + int set_offset = 0, + // Redis type: integer + int set_value = 0, + // Redis type: type + string incrby_type = "", + // Redis type: integer + int incrby_offset = 0, + // Redis type: integer + int incrby_increment = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BITFIELD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (get_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", get_type); + if (get_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(get_offset)); + if (set_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", set_type); + if (set_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(set_offset)); + if (set_value != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(set_value)); + if (incrby_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", incrby_type); + if (incrby_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(incrby_offset)); + if (incrby_increment != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(incrby_increment)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BITOP( + string operation, + // Redis type: key + string destkey, + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BITOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", operation); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destkey); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BITPOS( + string key, + // Redis type: integer + int bit, + // Redis type: integer + int start = 0, + // Redis type: integer + int end = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BITPOS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(bit)); + if (start != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + if (end != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(end)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BLPOP( + string key, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BLPOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BRPOP( + string key, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BRPOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BRPOPLPUSH( + // Redis type: key + string source, + // Redis type: key + string destination, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BRPOPLPUSH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", source); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BZPOPMIN( + string key, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BZPOPMIN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int BZPOPMAX( + string key, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "BZPOPMAX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLIENT_ID() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_ID"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLIENT_KILL( + string ip_port = "", + // Redis type: integer + int id_client_id = 0, + string addr_ip_port = "", + string skipme_yes_no = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_KILL"); + if (ip_port != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", ip_port); + if (id_client_id != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(id_client_id)); + if (addr_ip_port != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", addr_ip_port); + if (skipme_yes_no != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", skipme_yes_no); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLIENT_LIST() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_LIST"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLIENT_GETNAME() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_GETNAME"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLIENT_PAUSE( + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_PAUSE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLIENT_REPLY( + // Redis type: enum + string reply_mode +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_REPLY"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", reply_mode); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLIENT_SETNAME( + string connection_name +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_SETNAME"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", connection_name); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLIENT_UNBLOCK( + string client_id, + // Redis type: enum + string unblock_type = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLIENT_UNBLOCK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", client_id); + if (unblock_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", unblock_type); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_ADDSLOTS( + // Redis type: integer + int slot +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_ADDSLOTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(slot)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_COUNT_FAILURE_REPORTS( + string node_id +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_COUNT_FAILURE_REPORTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_COUNTKEYSINSLOT( + // Redis type: integer + int slot +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_COUNTKEYSINSLOT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(slot)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_DELSLOTS( + // Redis type: integer + int slot +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_DELSLOTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(slot)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_FAILOVER( + // Redis type: enum + string options = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_FAILOVER"); + if (options != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", options); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_FORGET( + string node_id +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_FORGET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_GETKEYSINSLOT( + // Redis type: integer + int slot, + // Redis type: integer + int count +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_GETKEYSINSLOT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(slot)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_INFO() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_INFO"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_KEYSLOT( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_KEYSLOT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_MEET( + string ip, + // Redis type: integer + int port +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_MEET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ip); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(port)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_NODES() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_NODES"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_REPLICATE( + string node_id +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_REPLICATE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_RESET( + // Redis type: enum + string reset_type = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_RESET"); + if (reset_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", reset_type); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_SAVECONFIG() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_SAVECONFIG"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_SET_CONFIG_EPOCH( + // Redis type: integer + int config_epoch +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_SET_CONFIG_EPOCH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(config_epoch)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_SETSLOT( + // Redis type: integer + int slot, + // Redis type: enum + string subcommand, + string node_id = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_SETSLOT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(slot)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", subcommand); + if (node_id != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_SLAVES( + string node_id +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_SLAVES"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_REPLICAS( + string node_id +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_REPLICAS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", node_id); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CLUSTER_SLOTS() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CLUSTER_SLOTS"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int COMMAND() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "COMMAND"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int COMMAND_COUNT() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "COMMAND_COUNT"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int COMMAND_GETKEYS() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "COMMAND_GETKEYS"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int COMMAND_INFO( + string command_name +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "COMMAND_INFO"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", command_name); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CONFIG_GET( + string parameter +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CONFIG_GET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", parameter); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CONFIG_REWRITE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CONFIG_REWRITE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CONFIG_SET( + string parameter, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CONFIG_SET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", parameter); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int CONFIG_RESETSTAT() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "CONFIG_RESETSTAT"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int DBSIZE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DBSIZE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int DEBUG_OBJECT( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DEBUG_OBJECT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int DEBUG_SEGFAULT() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DEBUG_SEGFAULT"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int DECR( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DECR"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int DECRBY( + string key, + // Redis type: integer + int decrement +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DECRBY"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(decrement)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int DEL( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DEL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int DISCARD() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DISCARD"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int DUMP( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "DUMP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ECHO( + string message +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ECHO"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", message); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int EVAL( + string script, + // Redis type: integer + int numkeys, + string key, + string arg +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EVAL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", script); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(numkeys)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", arg); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int EVALSHA( + string sha1, + // Redis type: integer + int numkeys, + string key, + string arg +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EVALSHA"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", sha1); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(numkeys)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", arg); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int EXEC() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EXEC"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int EXISTS( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EXISTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int EXPIRE( + string key, + // Redis type: integer + int seconds +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EXPIRE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(seconds)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int EXPIREAT( + string key, + // Redis type: posix time + string timestamp +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "EXPIREAT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", timestamp); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int FLUSHALL( + // Redis type: enum + string async = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "FLUSHALL"); + if (async != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", async); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int FLUSHDB( + // Redis type: enum + string async = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "FLUSHDB"); + if (async != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", async); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int GEOADD( + string key, + // Redis type: double + float longitude, + // Redis type: double + float latitude, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEOADD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(longitude, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(latitude, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int GEOHASH( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEOHASH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int GEOPOS( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEOPOS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int GEODIST( + string key, + string member1, + string member2, + string unit = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEODIST"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member1); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member2); + if (unit != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", unit); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int GEORADIUS( + string key, + // Redis type: double + float longitude, + // Redis type: double + float latitude, + // Redis type: double + float radius, + // Redis type: enum + string unit, + // Redis type: enum + string withcoord = "", + // Redis type: enum + string withdist = "", + // Redis type: enum + string withhash = "", + // Redis type: integer + int count_count = 0, + // Redis type: enum + string order = "", + // Redis type: key + string store_key = "", + // Redis type: key + string storedist_key = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEORADIUS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(longitude, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(latitude, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(radius, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", unit); + if (withcoord != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withcoord); + if (withdist != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withdist); + if (withhash != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withhash); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + if (order != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", order); + if (store_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", store_key); + if (storedist_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", storedist_key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int GEORADIUSBYMEMBER( + string key, + string member, + // Redis type: double + float radius, + // Redis type: enum + string unit, + // Redis type: enum + string withcoord = "", + // Redis type: enum + string withdist = "", + // Redis type: enum + string withhash = "", + // Redis type: integer + int count_count = 0, + // Redis type: enum + string order = "", + // Redis type: key + string store_key = "", + // Redis type: key + string storedist_key = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GEORADIUSBYMEMBER"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(radius, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", unit); + if (withcoord != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withcoord); + if (withdist != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withdist); + if (withhash != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withhash); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + if (order != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", order); + if (store_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", store_key); + if (storedist_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", storedist_key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int GET( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int GETBIT( + string key, + // Redis type: integer + int offset +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GETBIT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(offset)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int GETRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int end +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GETRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(end)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int GETSET( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "GETSET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HDEL( + string key, + string field +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HDEL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HEXISTS( + string key, + string field +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HEXISTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HGET( + string key, + string field +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HGET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HGETALL( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HGETALL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HINCRBY( + string key, + string field, + // Redis type: integer + int increment +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HINCRBY"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(increment)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HINCRBYFLOAT( + string key, + string field, + // Redis type: double + float increment +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HINCRBYFLOAT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(increment, 0)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HKEYS( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HKEYS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HLEN( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HLEN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HMGET( + string key, + string field +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HMGET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HMSET( + string key, + string field, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HMSET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HSET( + string key, + string field, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HSET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HSETNX( + string key, + string field, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HSETNX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HSTRLEN( + string key, + string field +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HSTRLEN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HVALS( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HVALS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int INCR( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "INCR"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int INCRBY( + string key, + // Redis type: integer + int increment +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "INCRBY"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(increment)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int INCRBYFLOAT( + string key, + // Redis type: double + float increment +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "INCRBYFLOAT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(increment, 0)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int INFO( + string section = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "INFO"); + if (section != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", section); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int KEYS( + string pattern +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "KEYS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", pattern); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LASTSAVE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LASTSAVE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LINDEX( + string key, + // Redis type: integer + int index +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LINDEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(index)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LINSERT( + string key, + // Redis type: enum + string where, + string pivot, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LINSERT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", where); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", pivot); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LLEN( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LLEN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LPOP( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LPOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LPUSH( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LPUSH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LPUSHX( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LPUSHX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(stop)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LREM( + string key, + // Redis type: integer + int count, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LREM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LSET( + string key, + // Redis type: integer + int index, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LSET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(index)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int LTRIM( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "LTRIM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(stop)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MEMORY_DOCTOR() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_DOCTOR"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MEMORY_HELP() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_HELP"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MEMORY_MALLOC_STATS() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_MALLOC_STATS"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MEMORY_PURGE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_PURGE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MEMORY_STATS() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_STATS"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MEMORY_USAGE( + string key, + // Redis type: integer + int samples_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MEMORY_USAGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (samples_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(samples_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MGET( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MGET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MIGRATE( + string host, + string port, + // Redis type: enum + string key, + // Redis type: integer + int destination_db, + // Redis type: integer + int timeout, + // Redis type: enum + string copy = "", + // Redis type: enum + string replace = "", + string auth_password = "", + // Redis type: key + string keys_key = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MIGRATE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", host); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", port); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(destination_db)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + if (copy != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", copy); + if (replace != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", replace); + if (auth_password != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", auth_password); + if (keys_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", keys_key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MONITOR() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MONITOR"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MOVE( + string key, + // Redis type: integer + int db +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MOVE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(db)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MSET( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MSET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MSETNX( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MSETNX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int MULTI() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "MULTI"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int OBJECT( + string subcommand, + string arguments = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "OBJECT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", subcommand); + if (arguments != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", arguments); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PERSIST( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PERSIST"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PEXPIRE( + string key, + // Redis type: integer + int milliseconds +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PEXPIRE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(milliseconds)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PEXPIREAT( + string key, + // Redis type: posix time + string milliseconds_timestamp +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PEXPIREAT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", milliseconds_timestamp); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PFADD( + string key, + string element +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PFADD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", element); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PFCOUNT( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PFCOUNT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PFMERGE( + // Redis type: key + string destkey, + // Redis type: key + string sourcekey +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PFMERGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destkey); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", sourcekey); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PING( + string message = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PING"); + if (message != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", message); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PSETEX( + string key, + // Redis type: integer + int milliseconds, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PSETEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(milliseconds)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PUBSUB( + string subcommand, + string argument = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PUBSUB"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", subcommand); + if (argument != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", argument); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PTTL( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PTTL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int PUBLISH( + string channel, + string message +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "PUBLISH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", channel); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", message); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int QUIT() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "QUIT"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int RANDOMKEY() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RANDOMKEY"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int READONLY() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "READONLY"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int READWRITE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "READWRITE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int RENAME( + string key, + // Redis type: key + string newkey +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RENAME"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", newkey); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int RENAMENX( + string key, + // Redis type: key + string newkey +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RENAMENX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", newkey); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int RESTORE( + string key, + // Redis type: integer + int ttl, + string serialized_value, + // Redis type: enum + string replace = "", + // Redis type: enum + string absttl = "", + // Redis type: integer + int idletime_seconds = 0, + // Redis type: integer + int freq_frequency = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RESTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(ttl)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", serialized_value); + if (replace != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", replace); + if (absttl != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", absttl); + if (idletime_seconds != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(idletime_seconds)); + if (freq_frequency != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(freq_frequency)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ROLE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ROLE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int RPOP( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RPOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int RPOPLPUSH( + // Redis type: key + string source, + // Redis type: key + string destination +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RPOPLPUSH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", source); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int RPUSH( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RPUSH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int RPUSHX( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "RPUSHX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SADD( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SADD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SAVE() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SAVE"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SCARD( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCARD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SCRIPT_DEBUG( + // Redis type: enum + string mode +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCRIPT_DEBUG"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", mode); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SCRIPT_EXISTS( + string sha1 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCRIPT_EXISTS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", sha1); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SCRIPT_FLUSH() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCRIPT_FLUSH"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SCRIPT_KILL() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCRIPT_KILL"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SCRIPT_LOAD( + string script +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCRIPT_LOAD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", script); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SDIFF( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SDIFF"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SDIFFSTORE( + // Redis type: key + string destination, + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SDIFFSTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SELECT( + // Redis type: integer + int index +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SELECT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(index)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SET( + string key, + string value, + // Redis type: enum + string condition = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SET"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + if (condition != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", condition); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SETBIT( + string key, + // Redis type: integer + int offset, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SETBIT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(offset)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SETEX( + string key, + // Redis type: integer + int seconds, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SETEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(seconds)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SETNX( + string key, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SETNX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SETRANGE( + string key, + // Redis type: integer + int offset, + string value +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SETRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(offset)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", value); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SHUTDOWN( + // Redis type: enum + string save_mode = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SHUTDOWN"); + if (save_mode != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", save_mode); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SINTER( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SINTER"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SINTERSTORE( + // Redis type: key + string destination, + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SINTERSTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SISMEMBER( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SISMEMBER"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SLAVEOF( + string host, + string port +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SLAVEOF"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", host); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", port); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int REPLICAOF( + string host, + string port +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "REPLICAOF"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", host); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", port); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SLOWLOG( + string subcommand, + string argument = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SLOWLOG"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", subcommand); + if (argument != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", argument); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SMEMBERS( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SMEMBERS"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SMOVE( + // Redis type: key + string source, + // Redis type: key + string destination, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SMOVE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", source); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SORT( + string key, + // Redis type: pattern + string by_pattern = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0, + string get_pattern = "", + // Redis type: enum + string order = "", + // Redis type: enum + string sorting = "", + // Redis type: key + string store_destination = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SORT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (by_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", by_pattern); + if (limit_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_offset)); + if (limit_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_count)); + if (get_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", get_pattern); + if (order != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", order); + if (sorting != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", sorting); + if (store_destination != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", store_destination); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SPOP( + string key, + // Redis type: integer + int count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SPOP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SRANDMEMBER( + string key, + // Redis type: integer + int count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SRANDMEMBER"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SREM( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SREM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int STRLEN( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "STRLEN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SUNION( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SUNION"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SUNIONSTORE( + // Redis type: key + string destination, + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SUNIONSTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SWAPDB( + // Redis type: integer + int index, + // Redis type: integer + int index_1 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SWAPDB"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(index)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(index_1)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SYNC() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SYNC"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int TIME() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "TIME"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int TOUCH( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "TOUCH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int TTL( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "TTL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int TYPE( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "TYPE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int UNLINK( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "UNLINK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int UNWATCH() { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "UNWATCH"); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int WAIT( + // Redis type: integer + int numreplicas, + // Redis type: integer + int timeout +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "WAIT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(numreplicas)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(timeout)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int WATCH( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "WATCH"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZADD( + string key, + // Redis type: enum + string condition = "", + // Redis type: enum + string change = "", + // Redis type: enum + string increment = "", + // Redis type: double + float score = 0.0, + string member = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZADD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (condition != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", condition); + if (change != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", change); + if (increment != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", increment); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(score, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZCARD( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZCARD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZCOUNT( + string key, + // Redis type: double + float min, + // Redis type: double + float max +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZCOUNT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(min, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(max, 0)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZINCRBY( + string key, + // Redis type: integer + int increment, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZINCRBY"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(increment)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZINTERSTORE( + // Redis type: key + string destination, + // Redis type: integer + int numkeys, + string key, + // Redis type: integer + int weights_weight = 0, + // Redis type: enum + string aggregate_aggregate = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZINTERSTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(numkeys)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (weights_weight != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(weights_weight)); + if (aggregate_aggregate != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", aggregate_aggregate); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZLEXCOUNT( + string key, + string min, + string max +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZLEXCOUNT"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", min); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", max); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZPOPMAX( + string key, + // Redis type: integer + int count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZPOPMAX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZPOPMIN( + string key, + // Redis type: integer + int count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZPOPMIN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop, + // Redis type: enum + string withscores = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(stop)); + if (withscores != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withscores); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZRANGEBYLEX( + string key, + string min, + string max, + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZRANGEBYLEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", min); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", max); + if (limit_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_offset)); + if (limit_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZREVRANGEBYLEX( + string key, + string max, + string min, + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREVRANGEBYLEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", max); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", min); + if (limit_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_offset)); + if (limit_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZRANGEBYSCORE( + string key, + // Redis type: double + float min, + // Redis type: double + float max, + // Redis type: enum + string withscores = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZRANGEBYSCORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(min, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(max, 0)); + if (withscores != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withscores); + if (limit_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_offset)); + if (limit_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZRANK( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZRANK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZREM( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZREMRANGEBYLEX( + string key, + string min, + string max +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREMRANGEBYLEX"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", min); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", max); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZREMRANGEBYRANK( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREMRANGEBYRANK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(stop)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZREMRANGEBYSCORE( + string key, + // Redis type: double + float min, + // Redis type: double + float max +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREMRANGEBYSCORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(min, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(max, 0)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZREVRANGE( + string key, + // Redis type: integer + int start, + // Redis type: integer + int stop, + // Redis type: enum + string withscores = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREVRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(start)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(stop)); + if (withscores != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withscores); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZREVRANGEBYSCORE( + string key, + // Redis type: double + float max, + // Redis type: double + float min, + // Redis type: enum + string withscores = "", + // Redis type: integer + int limit_offset = 0, + // Redis type: integer + int limit_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREVRANGEBYSCORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(max, 0)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", FloatToString(min, 0)); + if (withscores != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", withscores); + if (limit_offset != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_offset)); + if (limit_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(limit_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZREVRANK( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZREVRANK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZSCORE( + string key, + string member +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZSCORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", member); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZUNIONSTORE( + // Redis type: key + string destination, + // Redis type: integer + int numkeys, + string key, + // Redis type: integer + int weights_weight = 0, + // Redis type: enum + string aggregate_aggregate = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZUNIONSTORE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", destination); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(numkeys)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + if (weights_weight != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(weights_weight)); + if (aggregate_aggregate != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", aggregate_aggregate); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SCAN( + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0, + string type_type = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SCAN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(cursor)); + if (match_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", match_pattern); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + if (type_type != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", type_type); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int SSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "SSCAN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(cursor)); + if (match_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", match_pattern); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int HSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "HSCAN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(cursor)); + if (match_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", match_pattern); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int ZSCAN( + string key, + // Redis type: integer + int cursor, + // Redis type: pattern + string match_pattern = "", + // Redis type: integer + int count_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "ZSCAN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(cursor)); + if (match_pattern != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", match_pattern); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XINFO( + // Redis type: key + string consumers_key = "", + string consumers_groupname = "", + // Redis type: key + string groups_key = "", + // Redis type: key + string stream_key = "", + // Redis type: enum + string help = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XINFO"); + if (consumers_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", consumers_key); + if (consumers_groupname != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", consumers_groupname); + if (groups_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", groups_key); + if (stream_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", stream_key); + if (help != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", help); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XADD( + string key, + string ID, + // Redis type: value + string field, + string str +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XADD"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", field); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", str); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XTRIM( + string key, + // Redis type: enum + string strategy, + // Redis type: enum + string approx = "", + // Redis type: integer + int count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XTRIM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", strategy); + if (approx != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", approx); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XDEL( + string key, + string ID +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XDEL"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XRANGE( + string key, + string start, + string end, + // Redis type: integer + int count_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", start); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", end); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XREVRANGE( + string key, + string end, + string start, + // Redis type: integer + int count_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XREVRANGE"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", end); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", start); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XLEN( + string key +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XLEN"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XREAD( + // Redis type: integer + int count_count = 0, + // Redis type: integer + int block_milliseconds = 0, + // Redis type: enum + string streams = "", + string key = "", + string ID = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XREAD"); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + if (block_milliseconds != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(block_milliseconds)); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", streams); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XGROUP( + // Redis type: key + string create_key = "", + string create_groupname = "", + string create_id_or__ = "", + // Redis type: key + string setid_key = "", + string setid_groupname = "", + string setid_id_or__ = "", + // Redis type: key + string destroy_key = "", + string destroy_groupname = "", + // Redis type: key + string delconsumer_key = "", + string delconsumer_groupname = "", + string delconsumer_consumername = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XGROUP"); + if (create_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", create_key); + if (create_groupname != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", create_groupname); + if (create_id_or__ != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", create_id_or__); + if (setid_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", setid_key); + if (setid_groupname != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", setid_groupname); + if (setid_id_or__ != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", setid_id_or__); + if (destroy_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", destroy_key); + if (destroy_groupname != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", destroy_groupname); + if (delconsumer_key != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", delconsumer_key); + if (delconsumer_groupname != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", delconsumer_groupname); + if (delconsumer_consumername != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", delconsumer_consumername); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XREADGROUP( + string group_group, + string group_consumer, + // Redis type: integer + int count_count = 0, + // Redis type: integer + int block_milliseconds = 0, + // Redis type: enum + string noack = "", + // Redis type: enum + string streams = "", + string key = "", + string ID = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XREADGROUP"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", group_group); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", group_consumer); + if (count_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count_count)); + if (block_milliseconds != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(block_milliseconds)); + if (noack != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", noack); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", streams); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XACK( + string key, + string group, + string ID +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XACK"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", group); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XCLAIM( + string key, + string group, + string consumer, + string min_idle_time, + string ID, + // Redis type: integer + int idle_ms = 0, + // Redis type: integer + int time_ms_unix_time = 0, + // Redis type: integer + int retrycount_count = 0 +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XCLAIM"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", group); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", consumer); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", min_idle_time); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", ID); + if (idle_ms != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(idle_ms)); + if (time_ms_unix_time != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(time_ms_unix_time)); + if (retrycount_count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(retrycount_count)); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + +int XPENDING( + string key, + string group, + string start = "", + string end = "", + // Redis type: integer + int count = 0, + string consumer = "" +) { + NWNX_PushArgumentString("NWNX_Redis", "Deferred", "XPENDING"); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", key); + NWNX_PushArgumentString("NWNX_Redis", "Deferred", group); + if (start != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", start); + if (end != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", end); + if (count != 0) NWNX_PushArgumentString("NWNX_Redis", "Deferred", IntToString(count)); + if (consumer != "") NWNX_PushArgumentString("NWNX_Redis", "Deferred", consumer); + NWNX_CallFunction("NWNX_Redis", "Deferred"); + return NWNX_GetReturnValueInt("NWNX_Redis", "Deferred"); +} + diff --git a/gamma_age_v2/nwnx_regex.nss b/gamma_age_v2/nwnx_regex.nss new file mode 100644 index 00000000..7b737f78 --- /dev/null +++ b/gamma_age_v2/nwnx_regex.nss @@ -0,0 +1,42 @@ +/// @addtogroup regex Regex +/// @brief Provide regular expression functions. +/// @{ +/// @file nwnx_regex.nss +#include "nwnx" + +const string NWNX_Regex = "NWNX_Regex"; ///< @private + +/// @param str The string to search. +/// @param regex The regular expression to use when searching. +/// @return TRUE if string matches the regular expression. +int NWNX_Regex_Search(string str, string regex); + +/// @brief Replaces any matches of the regular expression with a string. +/// @param str The string to search. +/// @param regex The regular expression to use when searching. +/// @param replace The string to replace the matches with. +/// @param firstOnly Set to TRUE to only replace the first match. +/// @return A new string with any replacements made. +string NWNX_Regex_Replace(string str, string regex, string replace = "", int firstOnly = FALSE); + +/// @} + +int NWNX_Regex_Search(string str, string regex) +{ + string sFunc = "Search"; + NWNX_PushArgumentString(NWNX_Regex, sFunc, regex); + NWNX_PushArgumentString(NWNX_Regex, sFunc, str); + NWNX_CallFunction(NWNX_Regex, sFunc); + return NWNX_GetReturnValueInt(NWNX_Regex, sFunc); +} + +string NWNX_Regex_Replace(string str, string regex, string replace="", int firstOnly=0) +{ + string sFunc = "Replace"; + NWNX_PushArgumentInt(NWNX_Regex, sFunc, firstOnly); + NWNX_PushArgumentString(NWNX_Regex, sFunc, replace); + NWNX_PushArgumentString(NWNX_Regex, sFunc, regex); + NWNX_PushArgumentString(NWNX_Regex, sFunc, str); + NWNX_CallFunction(NWNX_Regex, sFunc); + return NWNX_GetReturnValueString(NWNX_Regex, sFunc); +} diff --git a/gamma_age_v2/nwnx_rename.nss b/gamma_age_v2/nwnx_rename.nss new file mode 100644 index 00000000..053fb2a5 --- /dev/null +++ b/gamma_age_v2/nwnx_rename.nss @@ -0,0 +1,80 @@ +/// @addtogroup rename Rename +/// @brief Facilitates renaming, overriding and customization of player names. +/// @{ +/// @file nwnx_rename.nss +#include "nwnx" + +const string NWNX_Rename = "NWNX_Rename"; ///< @private + +/// @anchor rename_comm_name_override_type +/// @name Community Name Override Type +/// @{ +const int NWNX_RENAME_PLAYERNAME_DEFAULT = 0; ///< Don't rename +const int NWNX_RENAME_PLAYERNAME_OBFUSCATE = 1; ///< Generate random string for Community Name +const int NWNX_RENAME_PLAYERNAME_OVERRIDE = 2; ///< Use character name specified +const int NWNX_RENAME_PLAYERNAME_ANONYMOUS = 3; ///< Use the value of the NWNX_RENAME_ANONYMOUS_NAME environment variable +///@} + +/// @brief Set a PC's character name and community name on the player list. +/// @param oTarget The PC whose name is being overridden. +/// @param sNewName The new name. +/// @param sPrefix The prefix for their character name, sometimes used for a color code. +/// @param sSuffix The suffix for their character name. +/// @param iPlayerNameState How to change the Community Name, use @ref rename_comm_name_override_type "Community Name Override Type". +/// @param oObserver If specified, the character name will appear to that specific observer as set, this overrides a global setting. +/// @note Will not persist through saving, resets or logout. +void NWNX_Rename_SetPCNameOverride(object oTarget, string sNewName, string sPrefix = "" , string sSuffix = "" , + int iPlayerNameState = NWNX_RENAME_PLAYERNAME_DEFAULT, object oObserver = OBJECT_INVALID); + +/// @brief Gets a PC's name as overridden. +/// @param oTarget The PC whose name to query. +/// @param oObserver The specific observer. +/// @return The PC's name as overridden either per observer or globally. +/// @note If you wish to get a PC's true name use `GetName(oPC, TRUE)`. +string NWNX_Rename_GetPCNameOverride(object oTarget, object oObserver = OBJECT_INVALID); + +/// @brief Clears an overridden PC Name. +/// @param oTarget The PC whose overridden name to clear, use OBJECT_INVALID if you're clearing all overrides for an observer. +/// @param oObserver The observer whose overriden name of oTarget is being cleared. +/// If oTarget is OBJECT_INVALID then all overrides are cleared. +/// @param clearAll If true, both the global and personal overrides will be cleared for that target PC. +/// Requires oObserver be OBJECT_INVALID. +void NWNX_Rename_ClearPCNameOverride(object oTarget, object oObserver = OBJECT_INVALID, int clearAll = FALSE); + +/// @} + +void NWNX_Rename_SetPCNameOverride(object oTarget, string sNewName, string sPrefix = "" , string sSuffix = "" , + int iPlayerNameState = NWNX_RENAME_PLAYERNAME_DEFAULT, object oObserver = OBJECT_INVALID) +{ + string sFunc = "SetPCNameOverride"; + + NWNX_PushArgumentObject(NWNX_Rename, sFunc, oObserver); + NWNX_PushArgumentInt(NWNX_Rename, sFunc, iPlayerNameState); + NWNX_PushArgumentString(NWNX_Rename, sFunc, sSuffix); + NWNX_PushArgumentString(NWNX_Rename, sFunc, sPrefix); + NWNX_PushArgumentString(NWNX_Rename, sFunc, sNewName); + NWNX_PushArgumentObject(NWNX_Rename, sFunc, oTarget); + + NWNX_CallFunction(NWNX_Rename, sFunc); +} +string NWNX_Rename_GetPCNameOverride(object oTarget, object oObserver = OBJECT_INVALID) +{ + string sFunc = "GetPCNameOverride"; + + NWNX_PushArgumentObject(NWNX_Rename, sFunc, oObserver); + NWNX_PushArgumentObject(NWNX_Rename, sFunc, oTarget); + + NWNX_CallFunction(NWNX_Rename, sFunc); + return NWNX_GetReturnValueString(NWNX_Rename, sFunc); +} + +void NWNX_Rename_ClearPCNameOverride(object oTarget, object oObserver = OBJECT_INVALID, int clearAll = FALSE) +{ + string sFunc = "ClearPCNameOverride"; + + NWNX_PushArgumentInt(NWNX_Rename, sFunc, clearAll); + NWNX_PushArgumentObject(NWNX_Rename, sFunc, oObserver); + NWNX_PushArgumentObject(NWNX_Rename, sFunc, oTarget); + + NWNX_CallFunction(NWNX_Rename, sFunc); +} diff --git a/gamma_age_v2/nwnx_reveal.nss b/gamma_age_v2/nwnx_reveal.nss new file mode 100644 index 00000000..8ddf2f1f --- /dev/null +++ b/gamma_age_v2/nwnx_reveal.nss @@ -0,0 +1,49 @@ +/// @addtogroup reveal Reveal +/// @brief Allows the selective revealing of a stealthing character to another character or their party. +/// @{ +/// @file nwnx_reveal.nss +#include "nwnx" + +const string NWNX_Reveal = "NWNX_Reveal"; ///< @private + +/// @name Reveal Detection Methods +/// @{ +const int NWNX_REVEAL_SEEN = 1; ///< Seen +const int NWNX_REVEAL_HEARD = 0; ///< Heard +///@} + +/// @brief Selectively reveals the character to an observer until the next time they stealth out of sight. +/// @param oHiding The creature who is stealthed. +/// @param oObserver The creature to whom the hider is revealed. +/// @param iDetectionMethod Can be specified to determine whether the hidden creature is seen or heard. +void NWNX_Reveal_RevealTo(object oHiding, object oObserver, int iDetectionMethod = NWNX_REVEAL_HEARD); + +/// @brief Sets whether a character remains visible to their party through stealth. +/// @param oHiding The creature who is stealthed. +/// @param bReveal TRUE for visible. +/// @param iDetectionMethod Can be specified to determine whether the hidden creature is seen or heard. +void NWNX_Reveal_SetRevealToParty(object oHiding, int bReveal, int iDetectionMethod = NWNX_REVEAL_HEARD); + +/// @} + +void NWNX_Reveal_RevealTo(object oHiding, object oObserver, int iDetectionMethod = NWNX_REVEAL_HEARD) +{ + string sFunc = "RevealTo"; + + NWNX_PushArgumentInt(NWNX_Reveal, sFunc, iDetectionMethod); + NWNX_PushArgumentObject(NWNX_Reveal, sFunc, oObserver); + NWNX_PushArgumentObject(NWNX_Reveal, sFunc, oHiding); + + NWNX_CallFunction(NWNX_Reveal, sFunc); +} + +void NWNX_Reveal_SetRevealToParty(object oHiding, int bReveal, int iDetectionMethod = NWNX_REVEAL_HEARD) +{ + string sFunc = "SetRevealToParty"; + + NWNX_PushArgumentInt(NWNX_Reveal, sFunc, iDetectionMethod); + NWNX_PushArgumentInt(NWNX_Reveal, sFunc, bReveal); + NWNX_PushArgumentObject(NWNX_Reveal, sFunc, oHiding); + + NWNX_CallFunction(NWNX_Reveal, sFunc); +} diff --git a/gamma_age_v2/nwnx_ruby.nss b/gamma_age_v2/nwnx_ruby.nss new file mode 100644 index 00000000..24c8f85d --- /dev/null +++ b/gamma_age_v2/nwnx_ruby.nss @@ -0,0 +1,23 @@ +/// @addtogroup ruby Ruby +/// @brief Allows users to execute arbitrary Ruby from the game. +/// @{ +/// @file nwnx_ruby.nss +#include "nwnx" + +const string NWNX_Ruby = "NWNX_Ruby"; ///< @private + +string NWNX_Ruby_Evaluate (string sCode); + +/// @brief Evaluates some ruby code. +/// @param sCode The code to evaluate. +/// @return The output of the call. +string NWNX_Ruby_Evaluate(string sCode) +{ + string sFunc = "Evaluate"; + + NWNX_PushArgumentString (NWNX_Ruby, sFunc, sCode); + NWNX_CallFunction (NWNX_Ruby, sFunc); + return NWNX_GetReturnValueString (NWNX_Ruby, sFunc); +} + +/// @} diff --git a/gamma_age_v2/nwnx_skillranks.nss b/gamma_age_v2/nwnx_skillranks.nss new file mode 100644 index 00000000..cc884831 --- /dev/null +++ b/gamma_age_v2/nwnx_skillranks.nss @@ -0,0 +1,283 @@ +/// @addtogroup skillranks SkillRanks +/// @brief Enhances and allows for manipulation of skill rank calculations including the ability to build custom +/// skill related feats as well as modifying stock feats. +/// @{ +/// @file nwnx_skillranks.nss +#include "nwnx" + +const string NWNX_SkillRanks = "NWNX_SkillRanks"; ///< @private + +/// @name SkillRanks Key Abilities +/// @anchor skr_key_abilities +/// +/// The abilities as bits +/// @{ +const int NWNX_SKILLRANKS_KEY_ABILITY_STRENGTH = 1; ///< Strength +const int NWNX_SKILLRANKS_KEY_ABILITY_DEXTERITY = 2; ///< Dexterity +const int NWNX_SKILLRANKS_KEY_ABILITY_CONSTITUTION = 4; ///< Constitution +const int NWNX_SKILLRANKS_KEY_ABILITY_INTELLIGENCE = 8; ///< Intelligence +const int NWNX_SKILLRANKS_KEY_ABILITY_WISDOM = 16; ///< Wisdom +const int NWNX_SKILLRANKS_KEY_ABILITY_CHARISMA = 32; ///< Charisma +///@} + +/// @name SkillRanks Key Ability Calculation Method +/// @anchor skr_key_ability_calc_bits +/// +/// Constants used to calculate the ability modifier for a skill. +/// @{ +/// @warning Use only one of these calculations in your mask! If you use more than one the first will be used. +const int NWNX_SKILLRANKS_KEY_ABILITY_CALC_MIN = 64; ///< Use the minimum value of the provided ability scores. +const int NWNX_SKILLRANKS_KEY_ABILITY_CALC_MAX = 128; ///< Use the maximum value of the provided ability scores. +const int NWNX_SKILLRANKS_KEY_ABILITY_CALC_AVERAGE = 256; ///< Use the average value of the provided ability scores. +const int NWNX_SKILLRANKS_KEY_ABILITY_CALC_SUM = 512; ///< Use the sum of the provided ability scores. +///@} + +/// @brief A feat that manipulates skill ranks. +struct NWNX_SkillRanks_SkillFeat +{ + int iSkill; ///< The skill this feat impacts + int iFeat; ///< The feat + + /// Skill feat bonus/penalty + int iModifier; + + /// 1 for Focus, 2 for Epic Focus. This can be set on a feat so NWNX_SkillRanks_SetFocusMod + /// can mass change the modifier for the Skill Focus and Epic Skill Focus feats. + int iFocusFeat; + + /// @brief 255 char bitset string for skill ranks impacted by class levels (like Bardic Knowledge). + /// + /// The right most bit is barbarian (class 0), second from right is bard (class 1) etc. + /// It's not necessary to pass in the entire string, for example Ranger is class 7 and Fighter is 4 + /// If you wanted those class levels to impact the skill modifier you could set sClasses equal to + /// "10010000". From right to left = Barbarian, Bard, Cleric, Druid, Fighter, Monk, Paladin, Ranger + /// You can alternatively use NWNX_SkillRanks_AddSkillFeatClass() for each class + /// @remark If unset but #fClassLevelMod is set, then all classes will be included. + string sClasses; + + /// Levels in class multiplier gives you skill modifier, for example 0.5f would mean 1 point for + /// every two class levels. If #sClasses is not set and this is set then all class levels will be modified. + float fClassLevelMod; + + /// Used for feats like Stonecunning or Trackless Step which restrict skill modifiers by area types. + int iAreaFlagsRequired; + + /// Used for feats like Stonecunning or Trackless Step which restrict skill modifiers by area types. + int iAreaFlagsForbidden; + + /// 1 for Day, 2 for Night - if skill modifiers only take effect based on the day/night cycle or an area + /// that's set to always night. 0 is all hours. + int iDayOrNight; + + /// This allows for feats that bypass the armor check penalty on skill rank calculations. + int bBypassArmorCheckPenalty; + + /// @brief Bitmask of @ref skr_key_abilities "abilities" and @ref skr_key_ability_calc_bits "method to calculate" + /// the ability modifier for a skill. + /// + /// Example **Doctor** Feat that used INT instead of WIS (if higher) for Heal skill would set to: + /// #NWNX_SKILLRANKS_KEY_ABILITY_INTELLIGENCE | #NWNX_SKILLRANKS_KEY_ABILITY_WISDOM | #NWNX_SKILLRANKS_KEY_ABILITY_CALC_MAX; + int iKeyAbilityMask; +}; + +/// @param iSkill The skill to check the feat count. +/// @return The count of feats for a specific skill. +int NWNX_SkillRanks_GetSkillFeatCountForSkill(int iSkill); + +/// @brief Returns a skill feat. +/// @param iSkill The skill. +/// @param iFeat The feat. +/// @return A constructed NWNX_SkillRanks_SkillFeat. +struct NWNX_SkillRanks_SkillFeat NWNX_SkillRanks_GetSkillFeat(int iSkill, int iFeat); + +/// @brief Returns a skill feat by index. +/// @remark Generally used in a loop with NWNX_SkillRanks_GetSkillFeatCountForSkill(). +/// @param iSkill The skill. +/// @param iIndex The index in the list of feats for the skill. +/// @return A constructed NWNX_SkillRanks_SkillFeat. +struct NWNX_SkillRanks_SkillFeat NWNX_SkillRanks_GetSkillFeatForSkillByIndex(int iSkill, int iIndex); + +/// @brief Modifies or creates a skill feat. +/// @param skillFeat The defined NWNX_SkillRanks_SkillFeat. +/// @param createIfNonExistent TRUE to create if the feat does not exist. +void NWNX_SkillRanks_SetSkillFeat(struct NWNX_SkillRanks_SkillFeat skillFeat, int createIfNonExistent = FALSE); + +/// @brief Add classes to a skill feat instead of working with the NWNX_SkillRanks_SkillFeat::sClasses string. +/// +/// Manipulating the sClasses string in the NWNX_SkillRanks_SkillFeat struct can be difficult. This +/// function allows the builder to enter one class at a time. +/// @param skillFeat The NWNX_SkillRanks_SkillFeat for which the sClasses field will be modifier. +/// @param iClass The class to add to the Skill Feat. +/// @return The updated NWNX_SkillRanks_SkillFeat. +struct NWNX_SkillRanks_SkillFeat NWNX_SkillRanks_AddSkillFeatClass(struct NWNX_SkillRanks_SkillFeat skillFeat, int iClass); + +/// @brief Change the modifier value for Skill Focus and Epic Skill Focus feats. +/// +/// The stock modifier on Skill Focus and Epic Skill Focus are 3 and 10 respectively, these can be +/// changed with this function. +/// @param iModifier The new value for the feat modifier. +/// @param iEpic Set to TRUE to change the value for Epic Skill Focus. +void NWNX_SkillRanks_SetSkillFeatFocusModifier(int iModifier, int iEpic = FALSE); + +/// @brief Gets the current penalty to Dexterity based skills when blind. +/// @return The penalty to Dexterity when blind. +int NWNX_SkillRanks_GetBlindnessPenalty(); + +/// @brief Set the value the Dexterity based skills get decreased due to blindness. +/// @remark Default is 4. +/// @param iModifier The penalty to Dexterity when blind. +void NWNX_SkillRanks_SetBlindnessPenalty(int iModifier); + +/// @brief Get a skill modifier for an area. +/// @param oArea The area. +/// @param iSkill The skill to check. +/// @return The modifier to that skill in the area. +int NWNX_SkillRanks_GetAreaModifier(object oArea, int iSkill); + +/// @brief Sets a skill modifier for the area. +/// @param oArea The area. +/// @param iSkill The skill to change. +/// @param iModifier The modifier to the skill in the area. +void NWNX_SkillRanks_SetAreaModifier(object oArea, int iSkill, int iModifier); + +/// @} + +int NWNX_SkillRanks_GetSkillFeatCountForSkill(int iSkill) +{ + string sFunc = "GetSkillFeatCountForSkill"; + + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, iSkill); + NWNX_CallFunction(NWNX_SkillRanks, sFunc); + + return NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); +} + +struct NWNX_SkillRanks_SkillFeat NWNX_SkillRanks_GetSkillFeatForSkillByIndex(int iSkill, int iIndex) +{ + string sFunc = "GetSkillFeatForSkillByIndex"; + + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, iIndex); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, iSkill); + NWNX_CallFunction(NWNX_SkillRanks, sFunc); + + struct NWNX_SkillRanks_SkillFeat skillFeat; + + skillFeat.iSkill = iSkill; + skillFeat.iFeat = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.iModifier = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.iFocusFeat = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.sClasses = NWNX_GetReturnValueString(NWNX_SkillRanks, sFunc); + skillFeat.fClassLevelMod = NWNX_GetReturnValueFloat(NWNX_SkillRanks, sFunc); + skillFeat.iAreaFlagsRequired = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.iAreaFlagsForbidden = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.iDayOrNight = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.bBypassArmorCheckPenalty = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.iKeyAbilityMask = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + + return skillFeat; +} + +struct NWNX_SkillRanks_SkillFeat NWNX_SkillRanks_GetSkillFeat(int iSkill, int iFeat) +{ + string sFunc = "GetSkillFeat"; + + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, iFeat); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, iSkill); + NWNX_CallFunction(NWNX_SkillRanks, sFunc); + + struct NWNX_SkillRanks_SkillFeat skillFeat; + + skillFeat.iSkill = iSkill; + skillFeat.iFeat = iFeat; + skillFeat.iModifier = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.iFocusFeat = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.sClasses = NWNX_GetReturnValueString(NWNX_SkillRanks, sFunc); + skillFeat.fClassLevelMod = NWNX_GetReturnValueFloat(NWNX_SkillRanks, sFunc); + skillFeat.iAreaFlagsRequired = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.iAreaFlagsForbidden = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.iDayOrNight = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.bBypassArmorCheckPenalty = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + skillFeat.iKeyAbilityMask = NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); + + return skillFeat; +} + +void NWNX_SkillRanks_SetSkillFeat(struct NWNX_SkillRanks_SkillFeat skillFeat, int createIfNonExistent = FALSE) +{ + string sFunc = "SetSkillFeat"; + + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, createIfNonExistent); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, skillFeat.iKeyAbilityMask); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, skillFeat.bBypassArmorCheckPenalty); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, skillFeat.iDayOrNight); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, skillFeat.iAreaFlagsForbidden); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, skillFeat.iAreaFlagsRequired); + NWNX_PushArgumentFloat(NWNX_SkillRanks, sFunc, skillFeat.fClassLevelMod); + // We only need to send the string from the point of the first set bit + NWNX_PushArgumentString(NWNX_SkillRanks, sFunc, GetStringRight(skillFeat.sClasses, GetStringLength(skillFeat.sClasses)-FindSubString(skillFeat.sClasses, "1"))); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, skillFeat.iFocusFeat); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, skillFeat.iModifier); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, skillFeat.iFeat); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, skillFeat.iSkill); + NWNX_CallFunction(NWNX_SkillRanks, sFunc); +} + +struct NWNX_SkillRanks_SkillFeat NWNX_SkillRanks_AddSkillFeatClass(struct NWNX_SkillRanks_SkillFeat skillFeat, int iClass) +{ + if (GetStringLength(skillFeat.sClasses) < 255) + { + int i; + string sPad; + for (i = 0; i < 255-GetStringLength(skillFeat.sClasses); i++) { sPad = sPad + "0"; } + skillFeat.sClasses = sPad + skillFeat.sClasses; + } + skillFeat.sClasses = GetStringLeft(skillFeat.sClasses, 254 - iClass) + "1" + GetStringRight(skillFeat.sClasses, iClass); + return skillFeat; +} + +void NWNX_SkillRanks_SetSkillFeatFocusModifier(int iModifier, int epicFocus = FALSE) +{ + string sFunc = "SetSkillFeatFocusModifier"; + + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, epicFocus); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, iModifier); + NWNX_CallFunction(NWNX_SkillRanks, sFunc); +} + +int NWNX_SkillRanks_GetBlindnessPenalty() +{ + string sFunc = "GetBlindnessPenalty"; + + NWNX_CallFunction(NWNX_SkillRanks, sFunc); + + return NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); +} + +void NWNX_SkillRanks_SetBlindnessPenalty(int iModifier) +{ + string sFunc = "SetBlindnessPenalty"; + + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, iModifier); + NWNX_CallFunction(NWNX_SkillRanks, sFunc); +} + +int NWNX_SkillRanks_GetAreaModifier(object oArea, int iSkill) +{ + string sFunc = "GetAreaModifier"; + + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, iSkill); + NWNX_PushArgumentObject(NWNX_SkillRanks, sFunc, oArea); + NWNX_CallFunction(NWNX_SkillRanks, sFunc); + + return NWNX_GetReturnValueInt(NWNX_SkillRanks, sFunc); +} + +void NWNX_SkillRanks_SetAreaModifier(object oArea, int iSkill, int iModifier) +{ + string sFunc = "SetAreaModifier"; + + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, iModifier); + NWNX_PushArgumentInt(NWNX_SkillRanks, sFunc, iSkill); + NWNX_PushArgumentObject(NWNX_SkillRanks, sFunc, oArea); + NWNX_CallFunction(NWNX_SkillRanks, sFunc); +} diff --git a/gamma_age_v2/nwnx_spellcheck.nss b/gamma_age_v2/nwnx_spellcheck.nss new file mode 100644 index 00000000..5c75bee0 --- /dev/null +++ b/gamma_age_v2/nwnx_spellcheck.nss @@ -0,0 +1,43 @@ +/// @addtogroup spellchecker SpellChecker +/// @brief Functions related to spellchecking +/// @{ +/// @file nwnx_spellcheck.nss +#include "nwnx" + +const string NWNX_SpellChecker = "NWNX_SpellChecker"; ///< @private + +/// @brief Finds misspells in a string. +/// @param sentence The sentence to check. +/// @return The spelling mistakes in the sentence, comma delimited. Returns blank if no errors or if .so file +/// is improperly installed. +/// @note If it returns an error in every word, even when spelled correctly, the dictionary is not set up correctly. +/// @warning These functions can be performance heavy, do limit how many calls and/or how long of a sentence is passed. +/// Make use of **DelayCommands** and **AssignCommands** +string NWNX_SpellChecker_FindMisspell(string sentence); + +/// @brief Get suggestions on a single word, comma delimited. +/// @param word The string to check for suggestions. +/// @return A comma delimited lists of suggestions for a word. Returns blank if no errors or if .so file is improperly +/// installed. +/// @warning These functions can be performance heavy, do limit how many calls and/or how long of a sentence is passed. +/// Make use of **DelayCommands** and **AssignCommands** +string NWNX_SpellChecker_GetSuggestSpell(string word); + +/// @} + +string NWNX_SpellChecker_FindMisspell(string sentence) +{ + string sFunc = "FindMisspell"; + + NWNX_PushArgumentString(NWNX_SpellChecker, sFunc, sentence); + NWNX_CallFunction(NWNX_SpellChecker, sFunc); + return NWNX_GetReturnValueString(NWNX_SpellChecker, sFunc); +} + +string NWNX_SpellChecker_GetSuggestSpell(string word) +{ + string sFunc = "GetSuggestSpell"; + NWNX_PushArgumentString(NWNX_SpellChecker, sFunc, word); + NWNX_CallFunction(NWNX_SpellChecker, sFunc); + return NWNX_GetReturnValueString(NWNX_SpellChecker, sFunc); +} diff --git a/gamma_age_v2/nwnx_sql.nss b/gamma_age_v2/nwnx_sql.nss new file mode 100644 index 00000000..fdd583fb --- /dev/null +++ b/gamma_age_v2/nwnx_sql.nss @@ -0,0 +1,254 @@ +/// @addtogroup sql SQL +/// @brief Functions to interface with a database through SQL +/// @{ +/// @file nwnx_sql.nss +#include "nwnx" + +const string NWNX_SQL = "NWNX_SQL"; ///< @private + +/// @brief Prepares the provided query for execution. +/// @note This does not execute the query. Will also clear any previous state. +/// @param query The query to prepare. +/// @return TRUE if the query was successfully prepared. +int NWNX_SQL_PrepareQuery(string query); + +/// @brief Executes a query which has been prepared. +/// @return The ID of this query if successful, else FALSE. +int NWNX_SQL_ExecutePreparedQuery(); + +/// @brief Directly execute an SQL query. +/// @note Clears previously prepared query states. +/// @return The ID of this query if successful, else FALSE. +int NWNX_SQL_ExecuteQuery(string query); + +/// @anchor sql_rtrnr +/// @return TRUE if one or more rows are ready, FALSE otherwise. +int NWNX_SQL_ReadyToReadNextRow(); + +/// @anchor sql_rnr +/// @brief Reads the next row of returned data. +/// @remark Should only be called after a successful call to @ref sql_rtrnr "NWNX_SQL_ReadyToReadNextRow()". +void NWNX_SQL_ReadNextRow(); + +/// @param column The column to read in the active row. +/// @return Data at the nth (0-based) column of the active row. +/// @remark Should only be called after a successful call to @ref sql_rnr "NWNX_SQL_ReadNextRow()". +string NWNX_SQL_ReadDataInActiveRow(int column = 0); + +/// @brief Set the int value of a prepared statement at given position. +/// @param position The nth ? in a prepared statement. +/// @param value The value to set. +void NWNX_SQL_PreparedInt(int position, int value); + +/// @brief Set the string value of a prepared statement at given position. +/// @param position The nth ? in a prepared statement. +/// @param value The value to set. +void NWNX_SQL_PreparedString(int position, string value); + +/// @brief Set the float value of a prepared statement at given position. +/// @param position The nth ? in a prepared statement. +/// @param value The value to set. +void NWNX_SQL_PreparedFloat(int position, float value); + +/// @brief Set the ObjectId value of a prepared statement at given position. +/// @param position The nth ? in a prepared statement. +/// @param value The value to set. +void NWNX_SQL_PreparedObjectId(int position, object value); + +/// @brief Set the full serialized object value of a prepared statement at given position. +/// @param position The nth ? in a prepared statement. +/// @param value The value to set. +/// @param base64 Use base64-encoded string format if TRUE (default), otherwise use binary format. +void NWNX_SQL_PreparedObjectFull(int position, object value, int base64 = TRUE); + +/// @brief Like NWNX_SQL_ReadDataInActiveRow, but for full serialized objects. +/// +/// The object will be deserialized and created in the game. New object ID is returned. +/// +/// The exact behavior depends on type of deserialized object and owner object: +/// * If object is an item, and owner if placeable, creature or container, the item will be created in its inventory +/// * If owner is an area, the object will be created on the ground at Vector(x,y,z) +/// * Otherwise, the object will be created outside the world and needs to be ported manually. +/// +/// @param column The column to read in the active row. +/// @param owner The owner of the object. +/// @param x, y, z The vector for objects to be placed in areas. +/// @param base64 Use base64-encoded string format if TRUE (default), otherwise use binary format. +/// @return The deserialized object. +object NWNX_SQL_ReadFullObjectInActiveRow(int column = 0, object owner = OBJECT_INVALID, float x = 0.0, float y = 0.0, float z = 0.0, int base64 = TRUE); + +/// @brief Gets the rows affected by a query. +/// @remark This command is for non-row-based statements like INSERT, UPDATE, DELETE, etc. +/// @return Number of rows affected by SQL statement or -1 if the query was not non-row-based. +int NWNX_SQL_GetAffectedRows(); + +/// Gets the database type. +/// @return The database type we're interacting with. +/// @remark This is the same value as the value of NWNX_SQL_TYPE environment variable. +string NWNX_SQL_GetDatabaseType(); + +/// @brief Free any resources attached to an existing prepared query. +/// @remark Resources are automatically freed when a new query is prepared, so calling this isn't necessary. +void NWNX_SQL_DestroyPreparedQuery(); + +/// @return The last error message generated by the database. +string NWNX_SQL_GetLastError(); + +/// @brief Gets the number of parameteres expected by a prepared query. +/// @return Returns the number of parameters expected by the prepared query or -1 if no query is prepared. +int NWNX_SQL_GetPreparedQueryParamCount(); + +/// @} + +int NWNX_SQL_PrepareQuery(string query) +{ + string sFunc = "PrepareQuery"; + + NWNX_PushArgumentString(NWNX_SQL, sFunc, query); + NWNX_CallFunction(NWNX_SQL, sFunc); + return NWNX_GetReturnValueInt(NWNX_SQL, sFunc); +} + +int NWNX_SQL_ExecutePreparedQuery() +{ + string sFunc = "ExecutePreparedQuery"; + + NWNX_CallFunction(NWNX_SQL, sFunc); + return NWNX_GetReturnValueInt(NWNX_SQL, sFunc); +} + +int NWNX_SQL_ExecuteQuery(string query) +{ + // Note: the implementation might change as support for more SQL targets arrives. + if (NWNX_SQL_PrepareQuery(query)) + { + int ret = NWNX_SQL_ExecutePreparedQuery(); + NWNX_SQL_DestroyPreparedQuery(); + return ret; + } + + return FALSE; +} + +int NWNX_SQL_ReadyToReadNextRow() +{ + string sFunc = "ReadyToReadNextRow"; + + NWNX_CallFunction(NWNX_SQL, sFunc); + return NWNX_GetReturnValueInt(NWNX_SQL, sFunc); +} + +void NWNX_SQL_ReadNextRow() +{ + string sFunc = "ReadNextRow"; + + NWNX_CallFunction(NWNX_SQL, sFunc); +} + +string NWNX_SQL_ReadDataInActiveRow(int column = 0) +{ + string sFunc = "ReadDataInActiveRow"; + + NWNX_PushArgumentInt(NWNX_SQL, sFunc, column); + NWNX_CallFunction(NWNX_SQL, sFunc); + return NWNX_GetReturnValueString(NWNX_SQL, sFunc); +} + + +void NWNX_SQL_PreparedInt(int position, int value) +{ + string sFunc = "PreparedInt"; + + NWNX_PushArgumentInt(NWNX_SQL, sFunc, value); + NWNX_PushArgumentInt(NWNX_SQL, sFunc, position); + NWNX_CallFunction(NWNX_SQL, sFunc); +} +void NWNX_SQL_PreparedString(int position, string value) +{ + string sFunc = "PreparedString"; + + NWNX_PushArgumentString(NWNX_SQL, sFunc, value); + NWNX_PushArgumentInt(NWNX_SQL, sFunc, position); + NWNX_CallFunction(NWNX_SQL, sFunc); + +} +void NWNX_SQL_PreparedFloat(int position, float value) +{ + string sFunc = "PreparedFloat"; + + NWNX_PushArgumentFloat(NWNX_SQL, sFunc, value); + NWNX_PushArgumentInt(NWNX_SQL, sFunc, position); + NWNX_CallFunction(NWNX_SQL, sFunc); + +} +void NWNX_SQL_PreparedObjectId(int position, object value) +{ + string sFunc = "PreparedObjectId"; + + NWNX_PushArgumentObject(NWNX_SQL, sFunc, value); + NWNX_PushArgumentInt(NWNX_SQL, sFunc, position); + NWNX_CallFunction(NWNX_SQL, sFunc); + +} +void NWNX_SQL_PreparedObjectFull(int position, object value, int base64 = TRUE) +{ + string sFunc = "PreparedObjectFull"; + + NWNX_PushArgumentInt(NWNX_SQL, sFunc, base64); + NWNX_PushArgumentObject(NWNX_SQL, sFunc, value); + NWNX_PushArgumentInt(NWNX_SQL, sFunc, position); + NWNX_CallFunction(NWNX_SQL, sFunc); +} + +object NWNX_SQL_ReadFullObjectInActiveRow(int column = 0, object owner = OBJECT_INVALID, float x = 0.0, float y = 0.0, float z = 0.0, int base64 = TRUE) +{ + string sFunc = "ReadFullObjectInActiveRow"; + + NWNX_PushArgumentInt(NWNX_SQL, sFunc, base64); + NWNX_PushArgumentFloat(NWNX_SQL, sFunc, z); + NWNX_PushArgumentFloat(NWNX_SQL, sFunc, y); + NWNX_PushArgumentFloat(NWNX_SQL, sFunc, x); + NWNX_PushArgumentObject(NWNX_SQL, sFunc, owner); + NWNX_PushArgumentInt(NWNX_SQL, sFunc, column); + NWNX_CallFunction(NWNX_SQL, sFunc); + return NWNX_GetReturnValueObject(NWNX_SQL, sFunc); +} + +int NWNX_SQL_GetAffectedRows() +{ + string sFunc = "GetAffectedRows"; + + NWNX_CallFunction(NWNX_SQL, sFunc); + return NWNX_GetReturnValueInt(NWNX_SQL, sFunc); +} + +string NWNX_SQL_GetDatabaseType() +{ + string sFunc = "GetDatabaseType"; + + NWNX_CallFunction(NWNX_SQL, sFunc); + return NWNX_GetReturnValueString(NWNX_SQL, sFunc); +} + +void NWNX_SQL_DestroyPreparedQuery() +{ + string sFunc = "DestroyPreparedQuery"; + + NWNX_CallFunction(NWNX_SQL, sFunc); +} + +string NWNX_SQL_GetLastError() +{ + string sFunc = "GetLastError"; + + NWNX_CallFunction(NWNX_SQL, sFunc); + return NWNX_GetReturnValueString(NWNX_SQL, sFunc); +} + +int NWNX_SQL_GetPreparedQueryParamCount() +{ + string sFunc = "GetPreparedQueryParamCount"; + + NWNX_CallFunction(NWNX_SQL, sFunc); + return NWNX_GetReturnValueInt(NWNX_SQL, sFunc); +} diff --git a/gamma_age_v2/nwnx_tests.nss b/gamma_age_v2/nwnx_tests.nss new file mode 100644 index 00000000..81b76433 --- /dev/null +++ b/gamma_age_v2/nwnx_tests.nss @@ -0,0 +1,21 @@ +/// @ingroup nwnx +/// @addtogroup tests NWNX Tests +/// @brief Helper functions when running the test scripts +/// @{ +/// @file nwnx_tests.nss + +/// @brief Reports the test results +/// @param sPlugin The plugin calling the test. +/// @param sTestName The name of the test. +/// @param bSuccess TRUE if the test passed. +void NWNX_Tests_Report(string sPlugin, string sTestName, int bSuccess); + +void NWNX_Tests_Report(string sPlugin, string sTestName, int bSuccess) +{ + if (bSuccess) + WriteTimestampedLogEntry(sPlugin + ": " + sTestName + "() success"); + else + WriteTimestampedLogEntry(sPlugin + ": " + sTestName + "() failed"); +} + +/// @} // End of tests diff --git a/gamma_age_v2/nwnx_tileset.nss b/gamma_age_v2/nwnx_tileset.nss new file mode 100644 index 00000000..3b9f71db --- /dev/null +++ b/gamma_age_v2/nwnx_tileset.nss @@ -0,0 +1,371 @@ +/// @addtogroup tileset Tileset +/// @brief An advanced plugin that exposes additional tileset and tile properties and allows builders to override the tiles of an area created with CreateArea(). +/// @{ +/// @file nwnx_tileset.nss +#include "nwnx" + +const string NWNX_Tileset = "NWNX_Tileset"; ///< @private + +/// @brief A structure containing general tileset data. +struct NWNX_Tileset_TilesetData +{ + int nNumTileData; ///< The number of tiles in the tileset. + float fHeightTransition; ///< The height difference between tiles on different heights. + int nNumTerrain; ///< The number of terrains in the tileset. + int nNumCrossers; ///< The number of crossers in the tileset. + int nNumGroups; ///< The number of groups in the tileset. + string sBorderTerrain; ///< The default border terrain of the tileset. + string sDefaultTerrain; ///< The default terrain of the tileset. + string sFloorTerrain; ///< The default floor terrain of the tileset. + int nDisplayNameStrRef; ///< The name of the tileset as strref, -1 if not set. + string sUnlocalizedName; ///< The unlocalized name of the tileset, "" if not set. + int bInterior; ///< The type of tileset. TRUE for interior, FALSE for exterior. + int bHasHeightTransition; ///< TRUE if the tileset supports multiple height levels. FALSE if not. +}; + +/// @brief A structure containing the group data for a tileset. +struct NWNX_Tileset_TilesetGroupData +{ + string sName; ///< The name of the group. + int nStrRef; ///< The StrRef of the group. + int nRows; ///< The number of rows the group has. + int nColumns; ///< The number of columns the group has. +}; + +/// @brief A structure containing the edge and corner types of a tile. +struct NWNX_Tileset_TileEdgesAndCorners +{ + string sTopLeft; ///< The top left corner. + string sTop; ///< The top edge. + string sTopRight; ///< The top right corner. + string sRight; ///< The right edge. + string sBottomRight; ///< The bottom right corner. + string sBottom; ///< The bottom edge. + string sBottomLeft; ///< The bottom left corner. + string sLeft; ///< The left edge. +}; + +/// @brief A structure containing the door data for a tile. +struct NWNX_Tileset_TileDoorData +{ + int nType; ///< The type of door, returns an index into doortypes.2da. + float fX; ///< The X position of the door. + float fY; ///< The Y position of the door. + float fZ; ///< The Z position of the door. + float fOrientation; ///< The orientation of the door. +}; + +/// @brief A structure containing custom tile data, +struct NWNX_Tileset_CustomTileData +{ + int nTileID; ///< The tile ID. See the tileset's .set file. + int nOrientation; ///< The orientation of the tile. Valid values: 0-3. + int nHeight; ///< The height of the tile. + + int nMainLightColor1; ///< A `TILE_MAIN_LIGHT_COLOR_*` value. + int nMainLightColor2; ///< A `TILE_MAIN_LIGHT_COLOR_*` value. + int nSourceLightColor1; ///< A `TILE_SOURCE_LIGHT_COLOR_*` value. + int nSourceLightColor2; ///< A `TILE_SOURCE_LIGHT_COLOR_*` value. + + int bAnimLoop1; ///< A bool to enable or disable the tile's first anim loop. + int bAnimLoop2; ///< A bool to enable or disable the tile's second anim loop. + int bAnimLoop3; ///< A bool to enable or disable the tile's third anim loop. +}; + +/// @brief Get general data of sTileset. +/// @param sTileset The tileset. +/// @return A NWNX_Tileset_TilesetData struct. +struct NWNX_Tileset_TilesetData NWNX_Tileset_GetTilesetData(string sTileset); + +/// @brief Get the name of sTileset's terrain at nIndex. +/// @param sTileset The tileset. +/// @param nIndex The index of the terrain. Range: NWNX_Tileset_TilesetData.nNumTerrain > nIndex >= 0 +/// @return The terrain name or "" on error. +string NWNX_Tileset_GetTilesetTerrain(string sTileset, int nIndex); + +/// @brief Get the name of sTileset's crosser at nIndex. +/// @param sTileset The tileset. +/// @param nIndex The index of the crosser. Range: NWNX_Tileset_TilesetData.nNumCrossers > nIndex >= 0 +/// @return The crosser name or "" on error. +string NWNX_Tileset_GetTilesetCrosser(string sTileset, int nIndex); + +/// @brief Get general data of the group at nIndex in sTileset. +/// @param sTileset The tileset. +/// @param nIndex The index of the group. Range: NWNX_Tileset_TilesetData.nNumGroups > nIndex >= 0 +/// @return A NWNX_Tileset_TilesetGroupData struct. +struct NWNX_Tileset_TilesetGroupData NWNX_Tileset_GetTilesetGroupData(string sTileset, int nIndex); + +/// @brief Get tile ID of the tile at nIndex. +/// @note NWNX_Tileset_GetTilesetGroupData() needs to be called first. +/// @param nIndex The index of the tile. Range: (NWNX_Tileset_TilesetGroupData.nRows * NWNX_Tileset_TilesetGroupData.nColumns) > nIndex >= 0 +/// @return The tile ID or 0 on error. +int NWNX_Tileset_GetTilesetGroupTile(int nIndex); + +/// @brief Get the model name of a tile in sTileset. +/// @param sTileset The tileset. +/// @param nTileID The tile ID. +/// @return The model name or "" on error. +string NWNX_Tileset_GetTileModel(string sTileset, int nTileID); + +/// @brief Get the minimap texture name of a tile in sTileset. +/// @param sTileset The tileset. +/// @param nTileID The tile ID. +/// @return The minimap texture name or "" on error. +string NWNX_Tileset_GetTileMinimapTexture(string sTileset, int nTileID); + +/// @brief Get the edges and corners of a tile in sTileset. +/// @param sTileset The tileset. +/// @param nTileID The tile ID. +/// @return A NWNX_Tileset_TileEdgesAndCorners struct. +struct NWNX_Tileset_TileEdgesAndCorners NWNX_Tileset_GetTileEdgesAndCorners(string sTileset, int nTileID); + +/// @brief Get the number of doors of a tile in sTileset. +/// @param sTileset The tileset. +/// @param nTileID The tile ID. +/// @return The amount of doors. +int NWNX_Tileset_GetTileNumDoors(string sTileset, int nTileID); + +/// @brief Get the door data of a tile in sTileset. +/// @param sTileset The tileset. +/// @param nTileID The tile ID. +/// @param nIndex The index of the door. Range: NWNX_Tileset_GetTileNumDoors() > nIndex >= 0 +/// @return A NWNX_Tileset_TileDoorData struct. +struct NWNX_Tileset_TileDoorData NWNX_Tileset_GetTileDoorData(string sTileset, int nTileID, int nIndex = 0); + +/// @brief Override the tiles of sAreaResRef with data in sOverrideName. +/// @param sAreaResRef The resref of the area to override. +/// @param sOverrideName The name of the override containing the custom tile data or "" to remove the override. +void NWNX_Tileset_SetAreaTileOverride(string sAreaResRef, string sOverrideName); + +/// @brief Create a tile override named sOverrideName. +/// @param sOverrideName The name of the override. +/// @param sTileSet The tileset the override should use. +/// @param nWidth The width of the area. Valid values: 1-32. +/// @param nHeight The height of the area. Valid values: 1-32. +void NWNX_Tileset_CreateTileOverride(string sOverrideName, string sTileSet, int nWidth, int nHeight); + +/// @brief Delete a tile override named sOverrideName. +/// @note This will also delete all custom tile data associated with sOverrideName. +/// @param sOverrideName The name of the override. +void NWNX_Tileset_DeleteTileOverride(string sOverrideName); + +/// @brief Set custom tile data for the tile at nIndex in sOverrideName. +/// @note An override must first be created with NWNX_Tileset_CreateTileOverride(). +/// @param sOverrideName The name of the override. +/// @param nIndex The index of the tile. +/// @param strCustomTileData A NWNX_Tileset_CustomTileData struct. +void NWNX_Tileset_SetOverrideTileData(string sOverrideName, int nIndex, struct NWNX_Tileset_CustomTileData strCustomTileData); + +/// @brief Delete custom tile data of the tile at nIndex in sOverrideName. +/// @param sOverrideName The name of the override. +/// @param nIndex The tile's index or -1 to remove all custom tile data. +void NWNX_Tileset_DeleteOverrideTileData(string sOverrideName, int nIndex); + +/// @} + +struct NWNX_Tileset_TilesetData NWNX_Tileset_GetTilesetData(string sTileset) +{ + string sFunc = "GetTilesetData"; + + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sTileset); + NWNX_CallFunction(NWNX_Tileset, sFunc); + + struct NWNX_Tileset_TilesetData str; + str.bHasHeightTransition = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + str.bInterior = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + str.sUnlocalizedName = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.nDisplayNameStrRef = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + str.sFloorTerrain = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.sDefaultTerrain = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.sBorderTerrain = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.nNumGroups = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + str.nNumCrossers = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + str.nNumTerrain = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + str.fHeightTransition = NWNX_GetReturnValueFloat(NWNX_Tileset, sFunc); + str.nNumTileData = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + + return str; +} + +string NWNX_Tileset_GetTilesetTerrain(string sTileset, int nIndex) +{ + string sFunc = "GetTilesetTerrain"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nIndex); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sTileset); + NWNX_CallFunction(NWNX_Tileset, sFunc); + + return NWNX_GetReturnValueString(NWNX_Tileset, sFunc); +} + +string NWNX_Tileset_GetTilesetCrosser(string sTileset, int nIndex) +{ + string sFunc = "GetTilesetCrosser"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nIndex); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sTileset); + NWNX_CallFunction(NWNX_Tileset, sFunc); + + return NWNX_GetReturnValueString(NWNX_Tileset, sFunc); +} + +struct NWNX_Tileset_TilesetGroupData NWNX_Tileset_GetTilesetGroupData(string sTileset, int nIndex) +{ + string sFunc = "GetTilesetGroupData"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nIndex); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sTileset); + NWNX_CallFunction(NWNX_Tileset, sFunc); + + struct NWNX_Tileset_TilesetGroupData str; + str.nColumns = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + str.nRows = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + str.nStrRef = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + str.sName = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + + return str; +} + +int NWNX_Tileset_GetTilesetGroupTile(int nIndex) +{ + string sFunc = "GetTilesetGroupTile"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nIndex); + NWNX_CallFunction(NWNX_Tileset, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); +} + +string NWNX_Tileset_GetTileModel(string sTileset, int nTileID) +{ + string sFunc = "GetTileModel"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nTileID); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sTileset); + NWNX_CallFunction(NWNX_Tileset, sFunc); + + return NWNX_GetReturnValueString(NWNX_Tileset, sFunc); +} + +string NWNX_Tileset_GetTileMinimapTexture(string sTileset, int nTileID) +{ + string sFunc = "GetTileMinimapTexture"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nTileID); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sTileset); + NWNX_CallFunction(NWNX_Tileset, sFunc); + + return NWNX_GetReturnValueString(NWNX_Tileset, sFunc); +} + +struct NWNX_Tileset_TileEdgesAndCorners NWNX_Tileset_GetTileEdgesAndCorners(string sTileset, int nTileID) +{ + string sFunc = "GetTileEdgesAndCorners"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nTileID); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sTileset); + NWNX_CallFunction(NWNX_Tileset, sFunc); + + struct NWNX_Tileset_TileEdgesAndCorners str; + str.sLeft = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.sBottomLeft = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.sBottom = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.sBottomRight = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.sRight = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.sTopRight = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.sTop = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + str.sTopLeft = NWNX_GetReturnValueString(NWNX_Tileset, sFunc); + + return str; +} + +int NWNX_Tileset_GetTileNumDoors(string sTileset, int nTileID) +{ + string sFunc = "GetTileNumDoors"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nTileID); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sTileset); + NWNX_CallFunction(NWNX_Tileset, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); +} + +struct NWNX_Tileset_TileDoorData NWNX_Tileset_GetTileDoorData(string sTileset, int nTileID, int nIndex = 0) +{ + string sFunc = "GetTileDoorData"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nIndex); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nTileID); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sTileset); + NWNX_CallFunction(NWNX_Tileset, sFunc); + + struct NWNX_Tileset_TileDoorData str; + str.fOrientation = NWNX_GetReturnValueFloat(NWNX_Tileset, sFunc); + str.fZ = NWNX_GetReturnValueFloat(NWNX_Tileset, sFunc); + str.fY = NWNX_GetReturnValueFloat(NWNX_Tileset, sFunc); + str.fX = NWNX_GetReturnValueFloat(NWNX_Tileset, sFunc); + str.nType = NWNX_GetReturnValueInt(NWNX_Tileset, sFunc); + + return str; +} + +void NWNX_Tileset_SetAreaTileOverride(string sAreaResRef, string sOverrideName) +{ + string sFunc = "SetAreaTileOverride"; + + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sOverrideName); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sAreaResRef); + + NWNX_CallFunction(NWNX_Tileset, sFunc); +} + +void NWNX_Tileset_CreateTileOverride(string sOverrideName, string sTileSet, int nWidth, int nHeight) +{ + string sFunc = "CreateTileOverride"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nHeight); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nWidth); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sTileSet); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sOverrideName); + + NWNX_CallFunction(NWNX_Tileset, sFunc); +} + +void NWNX_Tileset_DeleteTileOverride(string sOverrideName) +{ + string sFunc = "DeleteTileOverride"; + + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sOverrideName); + + NWNX_CallFunction(NWNX_Tileset, sFunc); +} + +void NWNX_Tileset_SetOverrideTileData(string sOverrideName, int nIndex, struct NWNX_Tileset_CustomTileData strCustomTileData) +{ + string sFunc = "SetOverrideTileData"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, strCustomTileData.bAnimLoop3); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, strCustomTileData.bAnimLoop2); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, strCustomTileData.bAnimLoop1); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, strCustomTileData.nSourceLightColor2); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, strCustomTileData.nSourceLightColor1); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, strCustomTileData.nMainLightColor2); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, strCustomTileData.nMainLightColor1); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, strCustomTileData.nHeight); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, strCustomTileData.nOrientation); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, strCustomTileData.nTileID); + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nIndex); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sOverrideName); + + NWNX_CallFunction(NWNX_Tileset, sFunc); +} + +void NWNX_Tileset_DeleteOverrideTileData(string sOverrideName, int nIndex) +{ + string sFunc = "DeleteOverrideTileData"; + + NWNX_PushArgumentInt(NWNX_Tileset, sFunc, nIndex); + NWNX_PushArgumentString(NWNX_Tileset, sFunc, sOverrideName); + + NWNX_CallFunction(NWNX_Tileset, sFunc); +} diff --git a/gamma_age_v2/nwnx_time.nss b/gamma_age_v2/nwnx_time.nss new file mode 100644 index 00000000..1e4e71bf --- /dev/null +++ b/gamma_age_v2/nwnx_time.nss @@ -0,0 +1,63 @@ +/// @addtogroup time Time +/// @brief Provides various time related functions +/// @{ +/// @file nwnx_time.nss +#include "nwnx" + +const string NWNX_Time = "NWNX_Time"; ///< @private + +/// @brief Returns the current date. +/// @return The date in the format (mm/dd/yyyy). +string NWNX_Time_GetSystemDate(); + +/// @brief Returns current time. +/// @return The current time in the format (24:mm:ss). +string NWNX_Time_GetSystemTime(); + +/// @return Returns the number of seconds since midnight on January 1, 1970. +int NWNX_Time_GetTimeStamp(); + +/// @brief A high resolution timestamp +struct NWNX_Time_HighResTimestamp +{ + int seconds; ///< Seconds since epoch + int microseconds; ///< Microseconds +}; + +/// @return Returns the number of microseconds since midnight on January 1, 1970. +struct NWNX_Time_HighResTimestamp NWNX_Time_GetHighResTimeStamp(); + +/// @} + +string NWNX_Time_GetSystemDate() +{ + string sFunc = "GetSystemDate"; + NWNX_CallFunction(NWNX_Time, sFunc); + return NWNX_GetReturnValueString(NWNX_Time, sFunc); +} + +string NWNX_Time_GetSystemTime() +{ + string sFunc = "GetSystemTime"; + NWNX_CallFunction(NWNX_Time, sFunc); + return NWNX_GetReturnValueString(NWNX_Time, sFunc); +} + +int NWNX_Time_GetTimeStamp() +{ + string sFunc = "GetTimeStamp"; + + NWNX_CallFunction(NWNX_Time, sFunc); + return NWNX_GetReturnValueInt(NWNX_Time, sFunc); +} + +struct NWNX_Time_HighResTimestamp NWNX_Time_GetHighResTimeStamp() +{ + struct NWNX_Time_HighResTimestamp t; + string sFunc = "GetHighResTimeStamp"; + + NWNX_CallFunction(NWNX_Time, sFunc); + t.microseconds = NWNX_GetReturnValueInt(NWNX_Time, sFunc); + t.seconds = NWNX_GetReturnValueInt(NWNX_Time, sFunc); + return t; +} diff --git a/gamma_age_v2/nwnx_util.nss b/gamma_age_v2/nwnx_util.nss new file mode 100644 index 00000000..929a5f62 --- /dev/null +++ b/gamma_age_v2/nwnx_util.nss @@ -0,0 +1,602 @@ +/// @addtogroup util Util +/// @brief Provides various utility functions that don't have a better home +/// @{ +/// @file nwnx_util.nss +#include "nwnx" + +const string NWNX_Util = "NWNX_Util"; ///< @private + +/// @name Resref Types +/// @anchor resref_types +/// Constants for the various types of resrefs. +/// +/// @{ +const int NWNX_UTIL_RESREF_TYPE_NSS = 2009; +const int NWNX_UTIL_RESREF_TYPE_NCS = 2010; +const int NWNX_UTIL_RESREF_TYPE_AREA_ARE = 2012; +const int NWNX_UTIL_RESREF_TYPE_TWODA = 2017; +const int NWNX_UTIL_RESREF_TYPE_AREA_GIT = 2023; +const int NWNX_UTIL_RESREF_TYPE_ITEM = 2025; +const int NWNX_UTIL_RESREF_TYPE_CREATURE = 2027; +const int NWNX_UTIL_RESREF_TYPE_DIALOG = 2029; +const int NWNX_UTIL_RESREF_TYPE_TRIGGER = 2032; +const int NWNX_UTIL_RESREF_TYPE_SOUND = 2035; +const int NWNX_UTIL_RESREF_TYPE_ENCOUNTER = 2040; +const int NWNX_UTIL_RESREF_TYPE_DOOR = 2042; +const int NWNX_UTIL_RESREF_TYPE_PLACEABLE = 2044; +const int NWNX_UTIL_RESREF_TYPE_STORE = 2051; +const int NWNX_UTIL_RESREF_TYPE_WAYPOINT = 2058; +///@} + +/// @brief A world time struct +struct NWNX_Util_WorldTime +{ + int nCalendarDay; ///< The calendar day + int nTimeOfDay; ///< The time of day +}; + +/// @brief Gets the name of the currently executing script. +/// @note If depth is > 0, it will return the name of the script that called this one via ExecuteScript(). +/// @param depth to seek the executing script. +/// @return The name of the currently executing script. +string NWNX_Util_GetCurrentScriptName(int depth = 0); + +/// @brief Gets a string that contains the ascii table. +/// @note The character at index 0 is a space. +/// @return A string that contains all characters at their position (e.g. 'A' at 65). +string NWNX_Util_GetAsciiTableString(); + +/// @brief Gets an integer hash of a string. +/// @param str The string to hash. +/// @return The hashed string as an integer. +int NWNX_Util_Hash(string str); + +/// @brief Gets the value of customTokenNumber. +/// @param customTokenNumber The token number to query. +/// @return The string representation of the token value. +string NWNX_Util_GetCustomToken(int customTokenNumber); + +/// @brief Convert an effect type to an itemproperty type. +/// @param e The effect to convert to an itemproperty. +/// @return The converted itemproperty. +itemproperty NWNX_Util_EffectToItemProperty(effect e); + +/// +/// @brief Convert an itemproperty type to an effect type. +/// @param ip The itemproperty to convert to an effect. +/// @return The converted effect. +effect NWNX_Util_ItemPropertyToEffect(itemproperty ip); + +/// @brief Strip any color codes from a string. +/// @param str The string to strip of color. +/// @return The new string without any color codes. +string NWNX_Util_StripColors(string str); + +/// @brief Determines if the supplied resref exists. +/// @param resref The resref to check. +/// @param type The @ref resref_types "Resref Type". +/// @return TRUE/FALSE +int NWNX_Util_IsValidResRef(string resref, int type = NWNX_UTIL_RESREF_TYPE_CREATURE); + +/// @brief Retrieves an environment variable. +/// @param sVarname The environment variable to query. +/// @return The value of the environment variable. +string NWNX_Util_GetEnvironmentVariable(string sVarname); + +/// @brief Gets the module real life minutes per in game hour. +/// @return The minutes per hour. +int NWNX_Util_GetMinutesPerHour(); + +/// @brief Set module real life minutes per in game hour. +/// @param minutes The minutes per hour. +void NWNX_Util_SetMinutesPerHour(int minutes); + +/// @anchor util_encode_url +/// @brief Encodes a string for usage in a URL. +/// @param str The string to encode for a URL. +/// @return The url encoded string. +string NWNX_Util_EncodeStringForURL(string str); + +/// @anchor twoda_row_count +/// @brief Gets the row count for a 2da. +/// @param str The 2da to check (do not include the .2da). +/// @return The amount of rows in the 2da. +int NWNX_Util_Get2DARowCount(string str); + +/// @brief Get the first resref of nType. +/// @param nType A @ref resref_types "Resref Type". +/// @param sRegexFilter Lets you filter out resrefs using a regexfilter. +/// For example: **nwnx_.\*** gets you all scripts prefixed with nwnx_ +/// when using the NSS resref type. +/// @param bModuleResourcesOnly If TRUE only custom resources will be returned. +/// @return The first resref found or "" if none is found. +string NWNX_Util_GetFirstResRef(int nType, string sRegexFilter = "", int bModuleResourcesOnly = TRUE); + +/// @brief Get the next resref. +/// @return The next resref found or "" if none is found. +string NWNX_Util_GetNextResRef(); + +/// @brief Get the ticks per second of the server. +/// @remark Useful to dynamically detect lag and adjust behavior accordingly. +/// @return The ticks per second. +int NWNX_Util_GetServerTicksPerSecond(); + +/// @brief Get the last created object. +/// @param nObjectType Does not take the NWScript OBJECT_TYPE_* constants. +/// Use NWNX_Consts_TranslateNWScriptObjectType() to get their NWNX equivalent. +/// @param nNthLast The nth last object created. +/// @return The last created object. On error, this returns OBJECT_INVALID. +object NWNX_Util_GetLastCreatedObject(int nObjectType, int nNthLast = 1); + +/// @brief Compiles and adds a script to the UserDirectory/nwnx folder, or to the location of sAlias. +/// @note Will override existing scripts that are in the module. +/// @param sFileName The script filename without extension, 16 or less characters. +/// @param sScriptData The script data to compile +/// @param bWrapIntoMain Set to TRUE to wrap sScriptData into void main(){}. +/// @param sAlias The alias of the resource directory to add the ncs file to. Default: UserDirectory/nwnx +/// @return "" on success, or the compilation error. +string NWNX_Util_AddScript(string sFileName, string sScriptData, int bWrapIntoMain = FALSE, string sAlias = "NWNX"); + +/// @brief Gets the contents of a .nss script file as a string. +/// @param sScriptName The name of the script to get the contents of. +/// @param nMaxLength The max length of the return string, -1 to get everything +/// @return The script file contents or "" on error. +string NWNX_Util_GetNSSContents(string sScriptName, int nMaxLength = -1); + +/// @brief Adds a nss file to the UserDirectory/nwnx folder, or to the location of sAlias. +/// @note Will override existing nss files that are in the module +/// @param sFileName The script filename without extension, 16 or less characters. +/// @param sContents The contents of the nss file +/// @param sAlias The alias of the resource directory to add the nss file to. Default: UserDirectory/nwnx +/// @return TRUE on success. +int NWNX_Util_AddNSSFile(string sFileName, string sContents, string sAlias = "NWNX"); + +/// @brief Remove sFileName of nType from the UserDirectory/nwnx folder, or from the location of sAlias. +/// @param sFileName The filename without extension, 16 or less characters. +/// @param nType The @ref resref_types "Resref Type". +/// @param sAlias The alias of the resource directory to remove the file from. Default: UserDirectory/nwnx +/// @return TRUE on success. +int NWNX_Util_RemoveNWNXResourceFile(string sFileName, int nType, string sAlias = "NWNX"); + +/// @brief Set the NWScript instruction limit. +/// @param nInstructionLimit The new limit or -1 to reset to default. +void NWNX_Util_SetInstructionLimit(int nInstructionLimit); + +/// @brief Get the NWScript instruction limit. +int NWNX_Util_GetInstructionLimit(); + +/// @brief Set the number of NWScript instructions currently executed. +/// @param nInstructions The number of instructions, must be >= 0. +void NWNX_Util_SetInstructionsExecuted(int nInstructions); + +/// @brief Get the number of NWScript instructions currently executed. +int NWNX_Util_GetInstructionsExecuted(); + +/// @brief Register a server console command that will execute a script chunk. +/// @note Example usage: NWNX_Util_RegisterServerConsoleCommand("test", "PrintString(\"Test Command -> Args: $args\");"); +/// @param sCommand The name of the command. +/// @param sScriptChunk The script chunk to run. You can use $args to get the console command arguments. +/// @return TRUE on success. +int NWNX_Util_RegisterServerConsoleCommand(string sCommand, string sScriptChunk); + +/// @brief Unregister a server console command that was registered with NWNX_Util_RegisterServerConsoleCommand(). +/// @param sCommand The name of the command. +void NWNX_Util_UnregisterServerConsoleCommand(string sCommand); + +/// @brief Determines if the given plugin exists and is enabled. +/// @param sPlugin The name of the plugin to check. This is the case sensitive plugin name as used by NWNX_CallFunction, NWNX_PushArgumentX +/// @note Example usage: NWNX_Util_PluginExists("NWNX_Creature"); +/// @return TRUE if the plugin exists and is enabled, otherwise FALSE. +int NWNX_Util_PluginExists(string sPlugin); + +/// @brief Gets the server's current working user folder. +/// @return The absolute path of the server's home directory (-userDirectory) +string NWNX_Util_GetUserDirectory(); + +/// @brief Get the return value of the last run script with a StartingConditional +/// @return Return value of the last run script. +int NWNX_Util_GetScriptReturnValue(); + +/// @brief Create a door. +/// @param sResRef The ResRef of the door. +/// @param locLocation The location to create the door at. +/// @param sNewTag An optional new tag for the door. +/// @param nAppearanceType An optional index into doortypes.2da for appearance. +/// @return The door, or OBJECT_INVALID on failure. +object NWNX_Util_CreateDoor(string sResRef, location locLocation, string sNewTag = "", int nAppearanceType = -1); + +/// @brief Set the object that will be returned by GetItemActivator. +/// @param oObject An object. +void NWNX_Util_SetItemActivator(object oObject); + +/// @brief Get the world time as calendar day and time of day. +/// @note This function is useful for calculating effect expiry times. +/// @param fAdjustment An adjustment in seconds, 0.0f will return the current world time, +/// positive or negative values will return a world time in the future or past. +/// @return A NWNX_Util_WorldTime struct with the calendar day and time of day. +struct NWNX_Util_WorldTime NWNX_Util_GetWorldTime(float fAdjustment = 0.0f); + +/// @brief Set a server-side resource override. +/// @param nResType A @ref resref_types "Resref Type". +/// @param sOldName The old resource name, 16 characters or less. +/// @param sNewName The new resource name or "" to clear a previous override, 16 characters or less. +void NWNX_Util_SetResourceOverride(int nResType, string sOldName, string sNewName); + +/// @brief Get a server-side resource override. +/// @param nResType A @ref resref_types "Resref Type". +/// @param sName The name of the resource, 16 characters or less. +/// @return The resource override, or "" if one is not set. +string NWNX_Util_GetResourceOverride(int nResType, string sName); + +/// @brief Get if a script param is set. +/// @param sParamName The script parameter name to check. +/// @return TRUE if the script param is set, FALSE if not or on error. +int NWNX_Util_GetScriptParamIsSet(string sParamName); + +/// @brief Set the module dawn hour. +/// @param nDawnHour The new dawn hour +void NWNX_Util_SetDawnHour(int nDawnHour); + +/// @brief Set the module dusk hour. +/// @param nDuskHour The new dusk hour +void NWNX_Util_SetDuskHour(int nDuskHour); + +/// @} + +string NWNX_Util_GetCurrentScriptName(int depth = 0) +{ + string sFunc = "GetCurrentScriptName"; + NWNX_PushArgumentInt(NWNX_Util, sFunc, depth); + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +string NWNX_Util_GetAsciiTableString() +{ + string sFunc = "GetAsciiTableString"; + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +int NWNX_Util_Hash(string str) +{ + string sFunc = "Hash"; + NWNX_PushArgumentString(NWNX_Util, sFunc, str); + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +string NWNX_Util_GetCustomToken(int customTokenNumber) +{ + string sFunc = "GetCustomToken"; + NWNX_PushArgumentInt(NWNX_Util, sFunc, customTokenNumber); + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +itemproperty NWNX_Util_EffectToItemProperty(effect e) +{ + string sFunc = "EffectTypeCast"; + NWNX_PushArgumentEffect(NWNX_Util, sFunc, e); + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueItemProperty(NWNX_Util, sFunc); +} + +effect NWNX_Util_ItemPropertyToEffect(itemproperty ip) +{ + string sFunc = "EffectTypeCast"; + NWNX_PushArgumentItemProperty(NWNX_Util, sFunc, ip); + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueEffect(NWNX_Util, sFunc); +} + +string NWNX_Util_StripColors(string str) +{ + string sFunc = "StripColors"; + NWNX_PushArgumentString(NWNX_Util, sFunc, str); + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +int NWNX_Util_IsValidResRef(string resref, int type = NWNX_UTIL_RESREF_TYPE_CREATURE) +{ + string sFunc = "IsValidResRef"; + NWNX_PushArgumentInt(NWNX_Util, sFunc, type); + NWNX_PushArgumentString(NWNX_Util, sFunc, resref); + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +string NWNX_Util_GetEnvironmentVariable(string sVarname) +{ + string sFunc = "GetEnvironmentVariable"; + NWNX_PushArgumentString(NWNX_Util, sFunc, sVarname); + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +int NWNX_Util_GetMinutesPerHour() +{ + string sFunc = "GetMinutesPerHour"; + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +void NWNX_Util_SetMinutesPerHour(int minutes) +{ + string sFunc = "SetMinutesPerHour"; + NWNX_PushArgumentInt(NWNX_Util, sFunc, minutes); + NWNX_CallFunction(NWNX_Util, sFunc); +} + +string NWNX_Util_EncodeStringForURL(string sURL) +{ + string sFunc = "EncodeStringForURL"; + + NWNX_PushArgumentString(NWNX_Util, sFunc, sURL); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +int NWNX_Util_Get2DARowCount(string str) +{ + string sFunc = "Get2DARowCount"; + NWNX_PushArgumentString(NWNX_Util, sFunc, str); + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +string NWNX_Util_GetFirstResRef(int nType, string sRegexFilter = "", int bModuleResourcesOnly = TRUE) +{ + string sFunc = "GetFirstResRef"; + + NWNX_PushArgumentInt(NWNX_Util, sFunc, bModuleResourcesOnly); + NWNX_PushArgumentString(NWNX_Util, sFunc, sRegexFilter); + NWNX_PushArgumentInt(NWNX_Util, sFunc, nType); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +string NWNX_Util_GetNextResRef() +{ + string sFunc = "GetNextResRef"; + + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +int NWNX_Util_GetServerTicksPerSecond() +{ + string sFunc = "GetServerTicksPerSecond"; + + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +object NWNX_Util_GetLastCreatedObject(int nObjectType, int nNthLast = 1) +{ + string sFunc = "GetLastCreatedObject"; + + NWNX_PushArgumentInt(NWNX_Util, sFunc, nNthLast); + NWNX_PushArgumentInt(NWNX_Util, sFunc, nObjectType); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueObject(NWNX_Util, sFunc); +} + +string NWNX_Util_AddScript(string sFileName, string sScriptData, int bWrapIntoMain = FALSE, string sAlias = "NWNX") +{ + string sFunc = "AddScript"; + + NWNX_PushArgumentString(NWNX_Util, sFunc, sAlias); + NWNX_PushArgumentInt(NWNX_Util, sFunc, bWrapIntoMain); + NWNX_PushArgumentString(NWNX_Util, sFunc, sScriptData); + NWNX_PushArgumentString(NWNX_Util, sFunc, sFileName); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +string NWNX_Util_GetNSSContents(string sScriptName, int nMaxLength = -1) +{ + string sFunc = "GetNSSContents"; + + NWNX_PushArgumentInt(NWNX_Util, sFunc, nMaxLength); + NWNX_PushArgumentString(NWNX_Util, sFunc, sScriptName); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +int NWNX_Util_AddNSSFile(string sFileName, string sContents, string sAlias = "NWNX") +{ + string sFunc = "AddNSSFile"; + + NWNX_PushArgumentString(NWNX_Util, sFunc, sAlias); + NWNX_PushArgumentString(NWNX_Util, sFunc, sContents); + NWNX_PushArgumentString(NWNX_Util, sFunc, sFileName); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +int NWNX_Util_RemoveNWNXResourceFile(string sFileName, int nType, string sAlias = "NWNX") +{ + string sFunc = "RemoveNWNXResourceFile"; + + NWNX_PushArgumentString(NWNX_Util, sFunc, sAlias); + NWNX_PushArgumentInt(NWNX_Util, sFunc, nType); + NWNX_PushArgumentString(NWNX_Util, sFunc, sFileName); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +void NWNX_Util_SetInstructionLimit(int nInstructionLimit) +{ + string sFunc = "SetInstructionLimit"; + + NWNX_PushArgumentInt(NWNX_Util, sFunc, nInstructionLimit); + NWNX_CallFunction(NWNX_Util, sFunc); +} + +int NWNX_Util_GetInstructionLimit() +{ + string sFunc = "GetInstructionLimit"; + + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +void NWNX_Util_SetInstructionsExecuted(int nInstructions) +{ + string sFunc = "SetInstructionsExecuted"; + + NWNX_PushArgumentInt(NWNX_Util, sFunc, nInstructions); + NWNX_CallFunction(NWNX_Util, sFunc); +} + +int NWNX_Util_GetInstructionsExecuted() +{ + string sFunc = "GetInstructionsExecuted"; + + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +int NWNX_Util_RegisterServerConsoleCommand(string sCommand, string sScriptChunk) +{ + string sFunc = "RegisterServerConsoleCommand"; + + NWNX_PushArgumentString(NWNX_Util, sFunc, sScriptChunk); + NWNX_PushArgumentString(NWNX_Util, sFunc, sCommand); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +void NWNX_Util_UnregisterServerConsoleCommand(string sCommand) +{ + string sFunc = "UnregisterServerConsoleCommand"; + + NWNX_PushArgumentString(NWNX_Util, sFunc, sCommand); + NWNX_CallFunction(NWNX_Util, sFunc); +} + +int NWNX_Util_PluginExists(string sPlugin) +{ + string sFunc = "PluginExists"; + NWNX_PushArgumentString(NWNX_Util, sFunc, sPlugin); + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +string NWNX_Util_GetUserDirectory() +{ + string sFunc = "GetUserDirectory"; + NWNX_CallFunction(NWNX_Util, sFunc); + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +int NWNX_Util_GetScriptReturnValue() +{ + string sFunc = "GetScriptReturnValue"; + + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +object NWNX_Util_CreateDoor(string sResRef, location locLocation, string sNewTag = "", int nAppearanceType = -1) +{ + string sFunc = "CreateDoor"; + + vector vPosition = GetPositionFromLocation(locLocation); + + NWNX_PushArgumentInt(NWNX_Util, sFunc, nAppearanceType); + NWNX_PushArgumentString(NWNX_Util, sFunc, sNewTag); + NWNX_PushArgumentFloat(NWNX_Util, sFunc, GetFacingFromLocation(locLocation)); + NWNX_PushArgumentFloat(NWNX_Util, sFunc, vPosition.z); + NWNX_PushArgumentFloat(NWNX_Util, sFunc, vPosition.y); + NWNX_PushArgumentFloat(NWNX_Util, sFunc, vPosition.x); + NWNX_PushArgumentObject(NWNX_Util, sFunc, GetAreaFromLocation(locLocation)); + NWNX_PushArgumentString(NWNX_Util, sFunc, sResRef); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueObject(NWNX_Util, sFunc); +} + +void NWNX_Util_SetItemActivator(object oObject) +{ + string sFunc = "SetItemActivator"; + + NWNX_PushArgumentObject(NWNX_Util, sFunc, oObject); + NWNX_CallFunction(NWNX_Util, sFunc); +} + +struct NWNX_Util_WorldTime NWNX_Util_GetWorldTime(float fAdjustment = 0.0f) +{ + string sFunc = "GetWorldTime"; + + NWNX_PushArgumentFloat(NWNX_Util, sFunc, fAdjustment); + NWNX_CallFunction(NWNX_Util, sFunc); + + struct NWNX_Util_WorldTime strWorldTime; + strWorldTime.nTimeOfDay = NWNX_GetReturnValueInt(NWNX_Util, sFunc); + strWorldTime.nCalendarDay = NWNX_GetReturnValueInt(NWNX_Util, sFunc); + + return strWorldTime; +} + +void NWNX_Util_SetResourceOverride(int nResType, string sOldName, string sNewName) +{ + string sFunc = "SetResourceOverride"; + + NWNX_PushArgumentString(NWNX_Util, sFunc, sNewName); + NWNX_PushArgumentString(NWNX_Util, sFunc, sOldName); + NWNX_PushArgumentInt(NWNX_Util, sFunc, nResType); + NWNX_CallFunction(NWNX_Util, sFunc); +} + +string NWNX_Util_GetResourceOverride(int nResType, string sName) +{ + string sFunc = "GetResourceOverride"; + + NWNX_PushArgumentString(NWNX_Util, sFunc, sName); + NWNX_PushArgumentInt(NWNX_Util, sFunc, nResType); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueString(NWNX_Util, sFunc); +} + +int NWNX_Util_GetScriptParamIsSet(string sParamName) +{ + string sFunc = "GetScriptParamIsSet"; + + NWNX_PushArgumentString(NWNX_Util, sFunc, sParamName); + NWNX_CallFunction(NWNX_Util, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Util, sFunc); +} + +void NWNX_Util_SetDawnHour(int nDawnHour) +{ + string sFunc = "SetDawnHour"; + + NWNX_PushArgumentInt(NWNX_Util, sFunc, nDawnHour); + NWNX_CallFunction(NWNX_Util, sFunc); +} + +void NWNX_Util_SetDuskHour(int nDuskHour) +{ + string sFunc = "SetDuskHour"; + + NWNX_PushArgumentInt(NWNX_Util, sFunc, nDuskHour); + NWNX_CallFunction(NWNX_Util, sFunc); +} diff --git a/gamma_age_v2/nwnx_visibility.nss b/gamma_age_v2/nwnx_visibility.nss new file mode 100644 index 00000000..31406370 --- /dev/null +++ b/gamma_age_v2/nwnx_visibility.nss @@ -0,0 +1,77 @@ +/// @addtogroup visibility Visibility +/// @brief Functions to manipulate visibility of objects both globally or per observer +/// @{ +/// @file nwnx_visibility.nss +#include "nwnx" + +const string NWNX_Visibility = "NWNX_Visibility"; ///< @private + +/// @name Visibility Types +/// @anchor vis_types +/// @{ +const int NWNX_VISIBILITY_DEFAULT = -1; +const int NWNX_VISIBILITY_VISIBLE = 0; +const int NWNX_VISIBILITY_HIDDEN = 1; +const int NWNX_VISIBILITY_DM_ONLY = 2; +const int NWNX_VISIBILITY_ALWAYS_VISIBLE = 3; +const int NWNX_VISIBILITY_ALWAYS_VISIBLE_DM_ONLY = 4; +///@} + +/// @brief Queries the existing visibility override for given (oPlayer, oTarget) pair. +/// If oPlayer is OBJECT_INVALID, the global visibility override will be returned. +/// +/// * NWNX_VISIBILITY_DEFAULT = Override not set. +/// * NWNX_VISIBILITY_VISIBLE = Target is visible but still adheres to default visibility rules. +/// * NWNX_VISIBILITY_HIDDEN = Target is always hidden. +/// * NWNX_VISIBILITY_DM_ONLY = Target is only visible to DMs but still adheres to default visibility rules. +/// * NWNX_VISIBILITY_ALWAYS_VISIBLE = Target is always visible in all circumstances. +/// * NWNX_VISIBILITY_ALWAYS_VISIBLE_DM_ONLY = Target is always visible only to DMs in all circumstances. +/// +/// @param oPlayer The PC Object or OBJECT_INVALID. +/// @param oTarget The object for which we're querying the visibility override. +/// @return The @ref vis_types "Visibility Type". +int NWNX_Visibility_GetVisibilityOverride(object oPlayer, object oTarget); + +/// @brief Overrides the default visibility rules about how oPlayer perceives oTarget. +/// If oPlayer is OBJECT_INVALID, the global visibility override will be set. +/// +/// * NWNX_VISIBILITY_DEFAULT = Remove a set override. +/// * NWNX_VISIBILITY_VISIBLE = Target is visible but still adheres to default visibility rules. +/// * NWNX_VISIBILITY_HIDDEN = Target is always hidden. +/// * NWNX_VISIBILITY_DM_ONLY = Target is only visible to DMs but still adheres to default visibility rules. +/// * NWNX_VISIBILITY_ALWAYS_VISIBLE = Target is always visible in all circumstances. +/// * NWNX_VISIBILITY_ALWAYS_VISIBLE_DM_ONLY = Target is always visible to DMs in all circumstances. +/// +/// @warning Setting too many objects to ALWAYS_VISIBLE in an area will impact the performance of your players. Use sparingly. +/// +/// @note Player state overrides the global state which means if a global state is set +/// to NWNX_VISIBILITY_HIDDEN or NWNX_VISIBILITY_DM_ONLY but the player's state is +/// set to NWNX_VISIBILITY_VISIBLE for the target, the object will be visible to the player. +/// +/// @param oPlayer The PC Object or OBJECT_INVALID. +/// @param oTarget The object for which we're altering the visibility. +/// @param nOverride The visibility type from @ref vis_types "Visibility Types". +void NWNX_Visibility_SetVisibilityOverride(object oPlayer, object oTarget, int nOverride); + +/// @} + +int NWNX_Visibility_GetVisibilityOverride(object oPlayer, object oTarget) +{ + string sFunc = "GetVisibilityOverride"; + + NWNX_PushArgumentObject(NWNX_Visibility, sFunc, oTarget); + NWNX_PushArgumentObject(NWNX_Visibility, sFunc, oPlayer); + NWNX_CallFunction(NWNX_Visibility, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Visibility, sFunc); +} + +void NWNX_Visibility_SetVisibilityOverride(object oPlayer, object oTarget, int nOverride) +{ + string sFunc = "SetVisibilityOverride"; + + NWNX_PushArgumentInt(NWNX_Visibility, sFunc, nOverride); + NWNX_PushArgumentObject(NWNX_Visibility, sFunc, oTarget); + NWNX_PushArgumentObject(NWNX_Visibility, sFunc, oPlayer); + NWNX_CallFunction(NWNX_Visibility, sFunc); +} diff --git a/gamma_age_v2/nwnx_weapon.nss b/gamma_age_v2/nwnx_weapon.nss new file mode 100644 index 00000000..6f57d15e --- /dev/null +++ b/gamma_age_v2/nwnx_weapon.nss @@ -0,0 +1,330 @@ +/// @addtogroup weapon Weapon +/// @brief Functions exposing additional weapon properties. +/// @{ +/// @file nwnx_weapon.nss +#include "nwnx" + +const string NWNX_Weapon = "NWNX_Weapon"; ///< @private + +/// @name Weapons Options +/// @anchor wpn_opts +/// +/// Options constants to be used with NWNX_Weapon_SetOption function. +/// @{ +const int NWNX_WEAPON_OPT_GRTFOCUS_AB_BONUS = 0; ///< Greater Focus Attack Bonus +const int NWNX_WEAPON_OPT_GRTSPEC_DAM_BONUS = 1; ///< Greater Specialization Damage Bonus +///@} + +// Get Event Data Constants +const int NWNX_WEAPON_GETDATA_DC = 0; ///< Get Devastating Critical Data + +// Set Event Data Constants +const int NWNX_WEAPON_SETDATA_DC_BYPASS = 0; ///< Set Devastating Critical Bypass + +/// Devastating critical event data +struct NWNX_Weapon_DevastatingCriticalEvent_Data +{ + object oWeapon; ///< The weapon used to cause the event. + object oTarget; ///< The target hit with a devastating critical. + int nDamage; ///< The damage points delivered. +}; + +/// @brief Set nFeat as weapon focus feat for a base item. +/// @param nBaseItem The base item id. +/// @param nFeat The feat to set. +void NWNX_Weapon_SetWeaponFocusFeat(int nBaseItem, int nFeat); + +/// @brief Set required creature size for a weapon base item to be finessable. +/// @param nBaseItem The base item id. +/// @param nSize The creature size minimum to consider this weapon finessable. +void NWNX_Weapon_SetWeaponFinesseSize(int nBaseItem, int nSize); + +/// @brief Get required creature size for a weapon base item to be finessable. +/// @param nBaseItem The base item id. +int NWNX_Weapon_GetWeaponFinesseSize(int nBaseItem); + +/// @brief Set weapon base item to be considered as unarmed for weapon finesse feat. +/// @param nBaseItem The base item id. +void NWNX_Weapon_SetWeaponUnarmed(int nBaseItem); + +/// @brief Set a feat as weapon improved critical for a base item. +/// @param nBaseItem The base item id. +/// @param nFeat The feat to set. +void NWNX_Weapon_SetWeaponImprovedCriticalFeat(int nBaseItem, int nFeat); + +/// @brief Set a feat as weapon specialization for a base item. +/// @param nBaseItem The base item id. +/// @param nFeat The feat to set. +void NWNX_Weapon_SetWeaponSpecializationFeat(int nBaseItem, int nFeat); + +/// @brief Set a feat as epic weapon focus for a base item. +/// @param nBaseItem The base item id. +/// @param nFeat The feat to set. +void NWNX_Weapon_SetEpicWeaponFocusFeat(int nBaseItem, int nFeat); + +/// @brief Set a feat as epic weapon specialization for a base item. +/// @param nBaseItem The base item id. +/// @param nFeat The feat to set. +void NWNX_Weapon_SetEpicWeaponSpecializationFeat(int nBaseItem, int nFeat); + +/// @brief Set a feat as epic weapon overwhelming critical for a base item. +/// @param nBaseItem The base item id. +/// @param nFeat The feat to set. +void NWNX_Weapon_SetEpicWeaponOverwhelmingCriticalFeat(int nBaseItem, int nFeat); + +/// @brief Set a feat as epic weapon devastating critical for a base item. +/// @param nBaseItem The base item id. +/// @param nFeat The feat to set. +void NWNX_Weapon_SetEpicWeaponDevastatingCriticalFeat(int nBaseItem, int nFeat); + +/// @brief Set a feat as weapon of choice for a base item. +/// @param nBaseItem The base item id. +/// @param nFeat The feat to set. +void NWNX_Weapon_SetWeaponOfChoiceFeat(int nBaseItem, int nFeat); + +/// @brief Set a feat as greater weapon specialization for a base item. +/// @param nBaseItem The base item id. +/// @param nFeat The feat to set. +void NWNX_Weapon_SetGreaterWeaponSpecializationFeat(int nBaseItem, int nFeat); + +/// @brief Set a feat as greater weapon focus for a base item. +/// @param nBaseItem The base item id. +/// @param nFeat The feat to set. +void NWNX_Weapon_SetGreaterWeaponFocusFeat(int nBaseItem, int nFeat); + +/// @brief Set base item as monk weapon. +/// @note Requires activation of CombatModes plugin for Flurry of Blows. +/// @param nBaseItem The base item id. +void NWNX_Weapon_SetWeaponIsMonkWeapon(int nBaseItem); + +/// @brief Set plugin options. +/// @param nOption The option to change from @ref wpn_opts "Weapon Options". +/// @param nVal The new value of the option. +void NWNX_Weapon_SetOption(int nOption, int nVal); + +/// @brief Set Devastating Critical Event Script. +/// @param sScript The script to call when a Devastating Critical occurs. +void NWNX_Weapon_SetDevastatingCriticalEventScript(string sScript); + +/// @brief Get Devastating Critical Event Data. +/// @note This is only for use with the Devastating Critical Event Script. +/// @return An NWNX_Weapon_DevastatingCriticalEvent_Data struct. +struct NWNX_Weapon_DevastatingCriticalEvent_Data NWNX_Weapon_GetDevastatingCriticalEventData(); + +/// @brief Bypass Devastating Critical. +/// @note This is only for use with the Devastating Critical Event Script. +void NWNX_Weapon_BypassDevastatingCritical(); + +/// @brief Sets weapon to gain .5 strength bonus. +/// @param oWeapon Should be a melee weapon. +/// @param nEnable TRUE for bonus. FALSE to turn off bonus. +/// @param bPersist whether the two hand state should persist to the gff file. +void NWNX_Weapon_SetOneHalfStrength(object oWeapon, int nEnable, int bPersist = FALSE); + +/// @brief Gets if the weapon is set to gain addition .5 strength bonus +/// @param oWeapon the weapon +/// @return FALSE/0 if weapon is not receiving the bonus. TRUE/1 if it does. +int NWNX_Weapon_GetOneHalfStrength(object oWeapon); + +/// @} + +void NWNX_Weapon_SetWeaponFocusFeat(int nBaseItem, int nFeat) +{ + string sFunc = "SetWeaponFocusFeat"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nFeat); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetEpicWeaponFocusFeat(int nBaseItem, int nFeat) +{ + string sFunc = "SetEpicWeaponFocusFeat"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nFeat); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetGreaterWeaponFocusFeat(int nBaseItem, int nFeat) +{ + string sFunc = "SetGreaterWeaponFocusFeat"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nFeat); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetWeaponFinesseSize(int nBaseItem, int nSize) +{ + string sFunc = "SetWeaponFinesseSize"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nSize); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +int NWNX_Weapon_GetWeaponFinesseSize(int nBaseItem) +{ + string sFunc = "GetWeaponFinesseSize"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetWeaponUnarmed(int nBaseItem) +{ + string sFunc = "SetWeaponUnarmed"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetWeaponIsMonkWeapon(int nBaseItem) +{ + string sFunc = "SetWeaponIsMonkWeapon"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetWeaponImprovedCriticalFeat(int nBaseItem, int nFeat) +{ + string sFunc = "SetWeaponImprovedCriticalFeat"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nFeat); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetWeaponSpecializationFeat(int nBaseItem, int nFeat) +{ + string sFunc = "SetWeaponSpecializationFeat"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nFeat); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetGreaterWeaponSpecializationFeat(int nBaseItem, int nFeat) +{ + string sFunc = "SetGreaterWeaponSpecializationFeat"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nFeat); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetEpicWeaponSpecializationFeat(int nBaseItem, int nFeat) +{ + string sFunc = "SetEpicWeaponSpecializationFeat"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nFeat); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetEpicWeaponOverwhelmingCriticalFeat(int nBaseItem, int nFeat) +{ + string sFunc = "SetEpicWeaponOverwhelmingCriticalFeat"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nFeat); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetEpicWeaponDevastatingCriticalFeat(int nBaseItem, int nFeat) +{ + string sFunc = "SetEpicWeaponDevastatingCriticalFeat"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nFeat); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetWeaponOfChoiceFeat(int nBaseItem, int nFeat) +{ + string sFunc = "SetWeaponOfChoiceFeat"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nFeat); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nBaseItem); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetOption(int nOption, int nVal) +{ + string sFunc = "SetOption"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nVal); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nOption); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_SetDevastatingCriticalEventScript(string sScript) +{ + string sFunc = "SetDevastatingCriticalEventScript"; + + NWNX_PushArgumentString(NWNX_Weapon, sFunc, sScript); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +void NWNX_Weapon_BypassDevastatingCritical() +{ + string sFunc = "SetEventData"; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, 1); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, NWNX_WEAPON_SETDATA_DC_BYPASS); + + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +struct NWNX_Weapon_DevastatingCriticalEvent_Data NWNX_Weapon_GetDevastatingCriticalEventData() +{ + string sFunc = "GetEventData"; + struct NWNX_Weapon_DevastatingCriticalEvent_Data data; + + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, NWNX_WEAPON_GETDATA_DC); + NWNX_CallFunction(NWNX_Weapon, sFunc); + + data.oWeapon = NWNX_GetReturnValueObject(NWNX_Weapon, sFunc); + data.oTarget = NWNX_GetReturnValueObject(NWNX_Weapon, sFunc); + data.nDamage = NWNX_GetReturnValueInt(NWNX_Weapon, sFunc); + + return data; +} + +void NWNX_Weapon_SetOneHalfStrength(object oWeapon, int nEnable, int bPersist = FALSE) +{ + string sFunc = "SetOneHalfStrength"; + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, bPersist); + NWNX_PushArgumentInt(NWNX_Weapon, sFunc, nEnable); + NWNX_PushArgumentObject(NWNX_Weapon, sFunc, oWeapon); + NWNX_CallFunction(NWNX_Weapon, sFunc); +} + +int NWNX_Weapon_GetOneHalfStrength(object oWeapon) +{ + string sFunc = "GetOneHalfStrength"; + NWNX_PushArgumentObject(NWNX_Weapon, sFunc, oWeapon); + NWNX_CallFunction(NWNX_Weapon, sFunc); + + return NWNX_GetReturnValueInt(NWNX_Weapon, sFunc); +} diff --git a/gamma_age_v2/nwnx_webhook.nss b/gamma_age_v2/nwnx_webhook.nss new file mode 100644 index 00000000..755b6321 --- /dev/null +++ b/gamma_age_v2/nwnx_webhook.nss @@ -0,0 +1,43 @@ +/// @addtogroup webhook Webhook +/// @brief Send messages to external entities through web hooks. +/// @{ +/// @file nwnx_webhook.nss +#include "nwnx" + +const string NWNX_WebHook = "NWNX_WebHook"; ///< @private + +/// @brief Send a slack compatible webhook. +/// @param host The web server to send the hook. +/// @param path The path to the hook. +/// @param message The message to dispatch. +/// @param username The username to display as the originator of the hook. +/// @param mrkdwn Set to false if you do not wish your message's markdown be parsed. +void NWNX_WebHook_SendWebHookHTTPS(string host, string path, string message, string username = "", int mrkdwn = 1); + +/// @brief Resends a webhook message after a defined delay. +/// +/// Handy when a submission is rate limited, since the message that the event sends in NWNX_Events_GetEventData +/// is already constructed. So it just resends the WebHook with an optional delay. +/// @param host The web server to send the hook. +/// @param path The path to the hook. +/// @param sMessage The message to dispatch. +/// @param delay The delay in seconds to send the message again. +void NWNX_WebHook_ResendWebHookHTTPS(string host, string path, string sMessage, float delay = 0.0f); + +/// @} + +void NWNX_WebHook_SendWebHookHTTPS(string host, string path, string message, string username = "", int mrkdwn = 1) +{ + string sFunc = "SendWebHookHTTPS"; + NWNX_PushArgumentInt(NWNX_WebHook, sFunc, mrkdwn); + NWNX_PushArgumentString(NWNX_WebHook, sFunc, username); + NWNX_PushArgumentString(NWNX_WebHook, sFunc, message); + NWNX_PushArgumentString(NWNX_WebHook, sFunc, path); + NWNX_PushArgumentString(NWNX_WebHook, sFunc, host); + NWNX_CallFunction(NWNX_WebHook, sFunc); +} + +void NWNX_WebHook_ResendWebHookHTTPS(string host, string path, string sMessage, float delay = 0.0f) +{ + DelayCommand(delay, NWNX_WebHook_SendWebHookHTTPS(host, path, sMessage)); +} diff --git a/gamma_age_v2/nwnx_webhook_rch.nss b/gamma_age_v2/nwnx_webhook_rch.nss new file mode 100644 index 00000000..3555ef71 --- /dev/null +++ b/gamma_age_v2/nwnx_webhook_rch.nss @@ -0,0 +1,159 @@ +/// @ingroup webhook +/// @file nwnx_webhook_rch.nss +/// @brief Create richer webhook messages suitable for Discord +#include "nwnx_webhook" + +/// @ingroup webhook +/// @brief For more information on these fields see https://birdie0.github.io/discord-webhooks-guide/ +/// @note URL fields may require NWNX_Util_EncodeStringForURL(). +struct NWNX_WebHook_Message { + string sUsername; ///< https://birdie0.github.io/discord-webhooks-guide/structure/username.html + string sText; ///< https://birdie0.github.io/discord-webhooks-guide/structure/content.html + string sAvatarURL; ///< https://birdie0.github.io/discord-webhooks-guide/structure/avatar_url.html + string sColor; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/color.html + string sAuthorName; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/author.html + string sAuthorURL; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/author.html + string sAuthorIconURL; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/author.html + string sTitle; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/title.html + string sURL; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/url.html + string sDescription; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/description.html + string sThumbnailURL; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/thumbnail.html + string sImageURL; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/image.html + string sFooterText; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/footer.html + string sFooterURL; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/footer.html + int iTimestamp; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/timestamp.html + string sField1Name; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField1Value; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + int iField1Inline; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField2Name; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField2Value; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + int iField2Inline; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField3Name; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField3Value; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + int iField3Inline; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField4Name; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField4Value; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + int iField4Inline; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField5Name; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField5Value; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + int iField5Inline; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField6Name; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField6Value; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + int iField6Inline; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField7Name; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField7Value; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + int iField7Inline; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField8Name; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField8Value; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + int iField8Inline; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField9Name; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField9Value; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + int iField9Inline; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField10Name; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + string sField10Value; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html + int iField10Inline; ///< https://birdie0.github.io/discord-webhooks-guide/structure/embed/fields.html +}; + +/// @private We don't need this to be a part of the docs. +/// @brief Helper function to convert 0 or 1 to false or true. +/// @param iBool The integer representation of the boolean. +/// @return The string representation (true or false) of the boolean. +string IntToBoolString(int iBool); + +/// @ingroup webhook +/// @brief Builds and sends a rich webhook message based on the constructed NWNX_WebHook_Message. +/// @param host The web server to send the hook. +/// @param path The path to the hook. +/// @param stMessage A constructed NWNX_Webhook_Message. +/// @param mrkdwn Set to false if you do not wish your message's markdown be parsed. +/// @warning Your path must end with /slack if using a Discord webhook. +string NWNX_WebHook_BuildMessageForWebHook(string host, string path, struct NWNX_WebHook_Message stMessage, int mrkdwn = 1); + +string IntToBoolString(int iBool) +{ + return iBool == 0 ? "false" : "true"; +} + +string NWNX_WebHook_BuildMessageForWebHook(string host, string path, struct NWNX_WebHook_Message stMessage, int mrkdwn = 1) +{ + if (host == "discordapp.com" && GetStringRight(path, 6) != "/slack") + { + PrintString("Discord WebHook specified but path does not end with /slack"); + return ""; + } + + // Open JSON + string message = "{"; + + string sMainText = ""; + + // The only way to turn off markdown for discord is to surround the text in backticks + if (stMessage.sText != "") + { + if (host == "discordapp.com" && !mrkdwn) + sMainText = "```text\\n" + stMessage.sText + "```"; + else + sMainText = stMessage.sText; + } + message = message + "\"text\": \"" + sMainText + "\""; + + // Slack will turn off markdown + if (host != "discordapp.com" && !mrkdwn) + message = message + ",\"mrkdwn\": false"; + + // Set the user attributes for the poster + if (stMessage.sUsername != "") + message = message + ",\"username\": \"" + stMessage.sUsername + "\""; + if (stMessage.sAvatarURL != "") + message = message + ",\"icon_url\": \"" + stMessage.sAvatarURL + "\""; + + // We need to construct an attachment (embed) object + if (stMessage.sAuthorName != "" || stMessage.sAuthorURL != "" || stMessage.sAuthorIconURL != "" || + stMessage.sTitle != "" || stMessage.sURL != "" || stMessage.sDescription != "" || + stMessage.sFooterText != "" || stMessage.sFooterURL != "" || stMessage.iTimestamp > 0 || + stMessage.sColor != "" || stMessage.sThumbnailURL != "" || stMessage.sImageURL != "" || stMessage.sField1Name != "") + { + message = message + ",\"attachments\": [{\"author_name\": \"" + stMessage.sAuthorName + "\",\"author_link\": \"" + stMessage.sAuthorURL + + "\",\"author_icon\": \"" + stMessage.sAuthorIconURL + "\",\"title\": \"" + stMessage.sTitle + "\",\"title_link\": \"" + stMessage.sURL + + "\",\"text\": \"" + stMessage.sDescription + "\",\"footer\": \"" + stMessage.sFooterText + "\",\"footer_icon\": \"" + stMessage.sFooterURL + + "\",\"color\": \"" + stMessage.sColor + "\",\"thumb_url\": \"" + stMessage.sThumbnailURL + + "\",\"image_url\": \"" + stMessage.sImageURL + "\""; + + // Dont post an empty timestamp + if (stMessage.iTimestamp > 0) + message = message + ",\"ts\": \"" + IntToString(stMessage.iTimestamp) + "\""; + + // Fields to handle + if (stMessage.sField1Name != "") + { + message = message + ",\"fields\": ["; + message = message + "{\"title\": \"" + stMessage.sField1Name + "\",\"value\": \"" + stMessage.sField1Value + "\",\"short\": " + IntToBoolString(stMessage.iField1Inline) + "}"; + if (stMessage.sField2Name != "") + message = message + ",{\"title\": \"" + stMessage.sField2Name + "\",\"value\": \"" + stMessage.sField2Value + "\",\"short\": " + IntToBoolString(stMessage.iField2Inline) + "}"; + if (stMessage.sField3Name != "") + message = message + ",{\"title\": \"" + stMessage.sField3Name + "\",\"value\": \"" + stMessage.sField3Value + "\",\"short\": " + IntToBoolString(stMessage.iField3Inline) + "}"; + if (stMessage.sField4Name != "") + message = message + ",{\"title\": \"" + stMessage.sField4Name + "\",\"value\": \"" + stMessage.sField4Value + "\",\"short\": " + IntToBoolString(stMessage.iField4Inline) + "}"; + if (stMessage.sField5Name != "") + message = message + ",{\"title\": \"" + stMessage.sField5Name + "\",\"value\": \"" + stMessage.sField5Value + "\",\"short\": " + IntToBoolString(stMessage.iField5Inline) + "}"; + if (stMessage.sField6Name != "") + message = message + ",{\"title\": \"" + stMessage.sField6Name + "\",\"value\": \"" + stMessage.sField6Value + "\",\"short\": " + IntToBoolString(stMessage.iField6Inline) + "}"; + if (stMessage.sField7Name != "") + message = message + ",{\"title\": \"" + stMessage.sField7Name + "\",\"value\": \"" + stMessage.sField7Value + "\",\"short\": " + IntToBoolString(stMessage.iField7Inline) + "}"; + if (stMessage.sField8Name != "") + message = message + ",{\"title\": \"" + stMessage.sField8Name + "\",\"value\": \"" + stMessage.sField8Value + "\",\"short\": " + IntToBoolString(stMessage.iField8Inline) + "}"; + if (stMessage.sField9Name != "") + message = message + ",{\"title\": \"" + stMessage.sField9Name + "\",\"value\": \"" + stMessage.sField9Value + "\",\"short\": " + IntToBoolString(stMessage.iField9Inline) + "}"; + if (stMessage.sField10Name != "") + message = message + ",{\"title\": \"" + stMessage.sField10Name + "\",\"value\": \"" + stMessage.sField10Value + "\",\"short\": " + IntToBoolString(stMessage.iField10Inline) + "}"; + // Close fields array + message = message + "]"; + } + // Close attachments array + message = message + "}]"; + } + // Close JSON + message = message + "}"; + + return message; +} diff --git a/gamma_age_v2/nyan.utc b/gamma_age_v2/nyan.utc new file mode 100644 index 00000000..3505ff44 Binary files /dev/null and b/gamma_age_v2/nyan.utc differ diff --git a/gamma_age_v2/obb.utc b/gamma_age_v2/obb.utc new file mode 100644 index 00000000..08ca3a84 Binary files /dev/null and b/gamma_age_v2/obb.utc differ diff --git a/gamma_age_v2/obbhide.uti b/gamma_age_v2/obbhide.uti new file mode 100644 index 00000000..9be372a5 Binary files /dev/null and b/gamma_age_v2/obbhide.uti differ diff --git a/gamma_age_v2/on_pubsub.ncs b/gamma_age_v2/on_pubsub.ncs new file mode 100644 index 00000000..96cfa959 Binary files /dev/null and b/gamma_age_v2/on_pubsub.ncs differ diff --git a/gamma_age_v2/on_pubsub.nss b/gamma_age_v2/on_pubsub.nss new file mode 100644 index 00000000..4505136a --- /dev/null +++ b/gamma_age_v2/on_pubsub.nss @@ -0,0 +1,14 @@ +/// @ingroup redis +/// @brief Script to handle PubSub event +/// @{ +/// @file on_pubsub.nss +#include "nwnx_redis_ps" + +void main() +{ + struct NWNX_Redis_PubSubMessageData data = NWNX_Redis_GetPubSubMessageData(); + + WriteTimestampedLogEntry("Pubsub Event: channel=" + data.channel + + " message=" + data.message); +} +/// @} diff --git a/gamma_age_v2/orlen.utc b/gamma_age_v2/orlen.utc new file mode 100644 index 00000000..6dc0bd83 Binary files /dev/null and b/gamma_age_v2/orlen.utc differ diff --git a/gamma_age_v2/parn.utc b/gamma_age_v2/parn.utc new file mode 100644 index 00000000..1ab7c1b1 Binary files /dev/null and b/gamma_age_v2/parn.utc differ diff --git a/gamma_age_v2/parnclaw.uti b/gamma_age_v2/parnclaw.uti new file mode 100644 index 00000000..86c805d7 Binary files /dev/null and b/gamma_age_v2/parnclaw.uti differ diff --git a/gamma_age_v2/pierinhorl.utc b/gamma_age_v2/pierinhorl.utc new file mode 100644 index 00000000..59592486 Binary files /dev/null and b/gamma_age_v2/pierinhorl.utc differ diff --git a/gamma_age_v2/pitchfork.uti b/gamma_age_v2/pitchfork.uti new file mode 100644 index 00000000..9f927124 Binary files /dev/null and b/gamma_age_v2/pitchfork.uti differ diff --git a/gamma_age_v2/placeablepalcus.itp b/gamma_age_v2/placeablepalcus.itp new file mode 100644 index 00000000..fde85286 Binary files /dev/null and b/gamma_age_v2/placeablepalcus.itp differ diff --git a/gamma_age_v2/placeablerespawn.utp b/gamma_age_v2/placeablerespawn.utp new file mode 100644 index 00000000..5fe25106 Binary files /dev/null and b/gamma_age_v2/placeablerespawn.utp differ diff --git a/gamma_age_v2/plate_med.uti b/gamma_age_v2/plate_med.uti new file mode 100644 index 00000000..50f08702 Binary files /dev/null and b/gamma_age_v2/plate_med.uti differ diff --git a/gamma_age_v2/podog.utc b/gamma_age_v2/podog.utc new file mode 100644 index 00000000..0f7bb5d8 Binary files /dev/null and b/gamma_age_v2/podog.utc differ diff --git a/gamma_age_v2/podog001.utc b/gamma_age_v2/podog001.utc new file mode 100644 index 00000000..0c264645 Binary files /dev/null and b/gamma_age_v2/podog001.utc differ diff --git a/gamma_age_v2/podoghide.uti b/gamma_age_v2/podoghide.uti new file mode 100644 index 00000000..807a3fbc Binary files /dev/null and b/gamma_age_v2/podoghide.uti differ diff --git a/gamma_age_v2/policearmor.uti b/gamma_age_v2/policearmor.uti new file mode 100644 index 00000000..6e1c095a Binary files /dev/null and b/gamma_age_v2/policearmor.uti differ diff --git a/gamma_age_v2/policehelmet.uti b/gamma_age_v2/policehelmet.uti new file mode 100644 index 00000000..70db3d15 Binary files /dev/null and b/gamma_age_v2/policehelmet.uti differ diff --git a/gamma_age_v2/policerobot.utc b/gamma_age_v2/policerobot.utc new file mode 100644 index 00000000..e730aa10 Binary files /dev/null and b/gamma_age_v2/policerobot.utc differ diff --git a/gamma_age_v2/portal_conv.dlg b/gamma_age_v2/portal_conv.dlg new file mode 100644 index 00000000..f50136a2 Binary files /dev/null and b/gamma_age_v2/portal_conv.dlg differ diff --git a/gamma_age_v2/portal_start.ncs b/gamma_age_v2/portal_start.ncs new file mode 100644 index 00000000..29224a67 Binary files /dev/null and b/gamma_age_v2/portal_start.ncs differ diff --git a/gamma_age_v2/portal_start.nss b/gamma_age_v2/portal_start.nss new file mode 100644 index 00000000..434a3d07 --- /dev/null +++ b/gamma_age_v2/portal_start.nss @@ -0,0 +1,89 @@ +///////////////////////////////////////////////// +// Ultimate Teleport Script 1.0 +///////////////////////////////////////////////// +// by Amurayi (mschdesign@hotmail.com) +// +// based on SirLestat's Secret Trapdoorscripts +///////////////////////////////////////////////// +/* The problem with most of the teleport scripts out there is that your companions +won't be teleported with you if you ar ebeing teleported within the same area. +This easy to configure script here is the solution for this old problem. Simply +alter the way how the teleport shall work by turning the options on and off be +setting the variables to 0 or 1 in the first ppart of this script. + +What this script can do: +- teleports player out of conversation, trigger or item +- teleports player with or without companions +- teleports player alone or the whole party (players) +*/ +void JumpAssociate(object i_oPC, int i_type, object i_oWP) +{ + object oAssociate = GetAssociate(i_type, i_oPC); + if(GetIsObjectValid(oAssociate)) + AssignCommand(oAssociate, JumpToObject(i_oWP)); +} + +void main() +{ + // uncomment one of the next 3 lines depending where you use the script: + object oPC = GetPCSpeaker(); // for conversations + // object oPC = GetEnteringObject; // for triggers + // object oPC = GetLastUsedBy(); // for items/objects + + // set to 1 if you want to teleport the whole party of the player, whereever every member is: + int iTeleportWholeParty = 1; + // set to 1 if you want the Associates of the player to be teleported as well, otherwise to 0: + int iTeleportAssociateToo = 1; + // Enter the destination Waypoint in here: + object oDWP = GetWaypointByTag("wp_portal_start"); + // Make the player say something on his departure (so others will now that he teleported but crashed): + string sGoodbye = "*fades out*"; + // Enter the message being send to the player when teleport starts: + string sTeleportmessage = "Your surroundings begin to fade..."; + + + // Don't start Teleport at all if activator isn't a player or DM + if(!GetIsPC(oPC)) + return; + + if (iTeleportWholeParty == 1) + { + object oFM = GetFirstFactionMember(oPC); + // Step through the party members. + while(GetIsObjectValid(oFM)) + { + AssignCommand(oFM, ActionSpeakString(sGoodbye)); + SendMessageToPC(oFM, sTeleportmessage); + AssignCommand(oFM, DelayCommand(2.0, JumpToObject(oDWP))); + if (iTeleportAssociateToo == 1) + { + // now send the players companions over as well: + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_ANIMALCOMPANION, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_DOMINATED, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_FAMILIAR, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_HENCHMAN, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_SUMMONED, oDWP)); + } + // Select the next member of the faction and loop. + oFM = GetNextFactionMember(oFM); + } + } + else + { + // Uncomment the next 2 lines if you like fancy animations (plays the summon monster 3 animation) + // effect eVis = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_3); + // ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oFM); + AssignCommand(oPC, ActionSpeakString(sGoodbye)); + SendMessageToPC(oPC, sTeleportmessage); + AssignCommand(oPC, DelayCommand(2.0, JumpToObject(oDWP))); + if (iTeleportAssociateToo == 1) + { + // now send the players companions over as well: + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_ANIMALCOMPANION, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_DOMINATED, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_FAMILIAR, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_HENCHMAN, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_SUMMONED, oDWP)); + } + } +} diff --git a/gamma_age_v2/prc_maze_01.are b/gamma_age_v2/prc_maze_01.are new file mode 100644 index 00000000..7ca96648 Binary files /dev/null and b/gamma_age_v2/prc_maze_01.are differ diff --git a/gamma_age_v2/prc_maze_01.gic b/gamma_age_v2/prc_maze_01.gic new file mode 100644 index 00000000..10bea229 Binary files /dev/null and b/gamma_age_v2/prc_maze_01.gic differ diff --git a/gamma_age_v2/prc_maze_01.git b/gamma_age_v2/prc_maze_01.git new file mode 100644 index 00000000..b5a0a820 Binary files /dev/null and b/gamma_age_v2/prc_maze_01.git differ diff --git a/gamma_age_v2/pwrespawner.utp b/gamma_age_v2/pwrespawner.utp new file mode 100644 index 00000000..baef53bb Binary files /dev/null and b/gamma_age_v2/pwrespawner.utp differ diff --git a/gamma_age_v2/rakoxen.utc b/gamma_age_v2/rakoxen.utc new file mode 100644 index 00000000..b4b7af04 Binary files /dev/null and b/gamma_age_v2/rakoxen.utc differ diff --git a/gamma_age_v2/rakrods.utc b/gamma_age_v2/rakrods.utc new file mode 100644 index 00000000..6575a4e0 Binary files /dev/null and b/gamma_age_v2/rakrods.utc differ diff --git a/gamma_age_v2/randomencounters.utp b/gamma_age_v2/randomencounters.utp new file mode 100644 index 00000000..35b589c0 Binary files /dev/null and b/gamma_age_v2/randomencounters.utp differ diff --git a/gamma_age_v2/re_common_blkd.ncs b/gamma_age_v2/re_common_blkd.ncs new file mode 100644 index 00000000..3d4f8512 Binary files /dev/null and b/gamma_age_v2/re_common_blkd.ncs differ diff --git a/gamma_age_v2/re_common_blkd.nss b/gamma_age_v2/re_common_blkd.nss new file mode 100644 index 00000000..b82bbb0c --- /dev/null +++ b/gamma_age_v2/re_common_blkd.nss @@ -0,0 +1,33 @@ +//:://///////////////////////////////////////////// +//:: On Blocked script for BESIE commoners +//:: re_common_blkd +//:: Original On Blocked script Copyright (c) 2001 Bioware Corp. +// modifications by Carlo +//::////////////////////////////////////////////// +/* + This will cause blocked creatures to open + doors, or failing that clear their action queue. +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Nov 23, 2001 +//::////////////////////////////////////////////// +void main() +{ + object oDoor = GetBlockingDoor(); + // * Increment number of times blocked + SetLocalInt(OBJECT_SELF, "X2_NUMTIMES_BLOCKED", GetLocalInt(OBJECT_SELF, "X2_NUMTIMES_BLOCKED") + 1); + if (GetLocalInt(OBJECT_SELF, "X2_NUMTIMES_BLOCKED") > 1) + { + SetLocalInt(OBJECT_SELF, "X2_NUMTIMES_BLOCKED",0); + ClearAllActions(); + } + if(GetAbilityScore(OBJECT_SELF, ABILITY_INTELLIGENCE) >= 5) + { + if(GetIsDoorActionPossible(oDoor, DOOR_ACTION_OPEN) && GetAbilityScore(OBJECT_SELF, ABILITY_INTELLIGENCE) >= 7 ) + { + DoDoorAction(oDoor, DOOR_ACTION_OPEN); + } + } +} + diff --git a/gamma_age_v2/re_common_spawn.ncs b/gamma_age_v2/re_common_spawn.ncs new file mode 100644 index 00000000..585015ff Binary files /dev/null and b/gamma_age_v2/re_common_spawn.ncs differ diff --git a/gamma_age_v2/re_common_spawn.nss b/gamma_age_v2/re_common_spawn.nss new file mode 100644 index 00000000..2615e4ff --- /dev/null +++ b/gamma_age_v2/re_common_spawn.nss @@ -0,0 +1,81 @@ +//:://///////////////////////////////////////////// +//:: Default: On Spawn In +//:: NW_C2_DEFAULT9 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Determines the course of action to be taken + after having just been spawned in +*/ +//::////////////////////////////////////////////// +//:: Created By: Preston Watamaniuk +//:: Created On: Oct 25, 2001 +//::////////////////////////////////////////////// +#include "NW_O2_CONINCLUDE" +#include "NW_I0_GENERIC" + +void main() +{ +// OPTIONAL BEHAVIORS (Comment In or Out to Activate ) **************************************************************************** + //SetSpawnInCondition(NW_FLAG_SPECIAL_CONVERSATION); + //SetSpawnInCondition(NW_FLAG_SPECIAL_COMBAT_CONVERSATION); + // This causes the creature to say a special greeting in their conversation file + // upon Perceiving the player. Attach the [NW_D2_GenCheck.nss] script to the desired + // greeting in order to designate it. As the creature is actually saying this to + // himself, don't attach any player responses to the greeting. + + //SetSpawnInCondition(NW_FLAG_SHOUT_ATTACK_MY_TARGET); + // This will set the listening pattern on the NPC to attack when allies call + //SetSpawnInCondition(NW_FLAG_STEALTH); + // If the NPC has stealth and they are a rogue go into stealth mode + //SetSpawnInCondition(NW_FLAG_SEARCH); + // If the NPC has Search go into Search Mode + //SetSpawnInCondition(NW_FLAG_SET_WARNINGS); + // This will set the NPC to give a warning to non-enemies before attacking + + //SetSpawnInCondition(NW_FLAG_SLEEP); + //Creatures that spawn in during the night will be asleep. + //SetSpawnInCondition(NW_FLAG_DAY_NIGHT_POSTING); + //SetSpawnInCondition(NW_FLAG_APPEAR_SPAWN_IN_ANIMATION); + //SetSpawnInCondition(NW_FLAG_IMMOBILE_AMBIENT_ANIMATIONS); + //SetSpawnInCondition(NW_FLAG_AMBIENT_ANIMATIONS); + //This will play Ambient Animations until the NPC sees an enemy or is cleared. + //NOTE that these animations will play automatically for Encounter Creatures. + + // NOTE: ONLY ONE OF THE FOLOOWING ESCAPE COMMANDS SHOULD EVER BE ACTIVATED AT ANY ONE TIME. + //SetSpawnInCondition(NW_FLAG_ESCAPE_RETURN); // OPTIONAL BEHAVIOR (Flee to a way point and return a short time later.) + //SetSpawnInCondition(NW_FLAG_ESCAPE_LEAVE); // OPTIONAL BEHAVIOR (Flee to a way point and do not return.) + //SetSpawnInCondition(NW_FLAG_TELEPORT_LEAVE); // OPTIONAL BEHAVIOR (Teleport to safety and do not return.) + //SetSpawnInCondition(NW_FLAG_TELEPORT_RETURN); // OPTIONAL BEHAVIOR (Teleport to safety and return a short time later.) + +// CUSTOM USER DEFINED EVENTS +/* + The following settings will allow the user to fire one of the blank user defined events in the NW_D2_DefaultD. Like the + On Spawn In script this script is meant to be customized by the end user to allow for unique behaviors. The user defined + events user 1000 - 1010 +*/ + //SetSpawnInCondition(NW_FLAG_HEARTBEAT_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1001 + //SetSpawnInCondition(NW_FLAG_PERCIEVE_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1002 + //SetSpawnInCondition(NW_FLAG_ATTACK_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1005 + //SetSpawnInCondition(NW_FLAG_DAMAGED_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1006 + //SetSpawnInCondition(NW_FLAG_DISTURBED_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1008 + //SetSpawnInCondition(NW_FLAG_END_COMBAT_ROUND_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1003 + //SetSpawnInCondition(NW_FLAG_ON_DIALOGUE_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1004 + //SetSpawnInCondition(NW_FLAG_DEATH_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1007 + +// DEFAULT GENERIC BEHAVIOR (DO NOT TOUCH) ***************************************************************************************** + int nResult = d10(); + string sItem; + sItem = "comclothes" + IntToString(nResult); + DelayCommand(1.0f, ActionEquipItem(CreateItemOnObject(sItem), INVENTORY_SLOT_CHEST)); + SetLocalInt(OBJECT_SELF, "iDialogue", Random(10) + 1); + SetLocalString(OBJECT_SELF, "sName", RandomName()); + SetListeningPatterns(); // Goes through and sets up which shouts the NPC will listen to. + //WalkWayPoints(); // Optional Parameter: void WalkWayPoints(int nRun = FALSE, float fPause = 1.0) + // 1. Looks to see if any Way Points in the module have the tag "WP_" + NPC TAG + "_0X", if so walk them + // 2. If the tag of the Way Point is "POST_" + NPC TAG the creature will return this way point after + // combat. + GenerateNPCTreasure(); //* Use this to create a small amount of treasure on the creature +} + + diff --git a/gamma_age_v2/re_commoner0.ncs b/gamma_age_v2/re_commoner0.ncs new file mode 100644 index 00000000..b16888b8 Binary files /dev/null and b/gamma_age_v2/re_commoner0.ncs differ diff --git a/gamma_age_v2/re_commoner0.nss b/gamma_age_v2/re_commoner0.nss new file mode 100644 index 00000000..fe440b87 --- /dev/null +++ b/gamma_age_v2/re_commoner0.nss @@ -0,0 +1,96 @@ +//////////////////////////////////////////////////// +/* +Custom Random Commoner Table for use with the BESIE +Random Encounter Package by Ray Miller +*/ +//////////////////////////////////////////////////// + +void main() +{ +int iVarNum = GetLocalInt(OBJECT_SELF, "re_iVarNum"); +int END; +int iWeight; +int iCounter1; +int iCounter2; +string sChoice; +object oMod = GetModule(); +while(!END) + { + sChoice = ""; + switch(iCounter1) + { +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//DO NOT EDIT ABOVE THIS LINE///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//CUSTOM ENCOUNTER TABLE BELOW://///////////////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + case 0:sChoice = "mhuman";// Creature tag goes between the " marks. + iWeight = 10; // This is the number of times this mob should be considered for the likelyhood of appearing. + break; + + case 1:sChoice = "fhuman"; + iWeight = 10; + break; + + case 2:sChoice = "melf"; + iWeight = 8; + break; + + case 3:sChoice = "felf"; + iWeight = 8; + break; + + case 4:sChoice = "mhalfelf"; + iWeight = 8; + break; + + case 5:sChoice = "fhalfelf"; + iWeight = 8; + break; + + case 6:sChoice = "mdwarf"; + iWeight = 6; + break; + + case 7:sChoice = "fhalforc"; + iWeight = 1; + break; + + case 8:sChoice = "mhalfling"; + iWeight = 4; + break; + + case 9:sChoice = "fhalfling"; + iWeight = 4; + break; + + case 10:sChoice = "mgnome"; + iWeight = 3; + break; + + case 11:sChoice = "fgnome"; + iWeight = 2; + break; + + case 12:sChoice = "mhalforc"; + iWeight = 2; + break; + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//END OF CUSTOM ENCOUNTER TABLE! DO NOT EDIT BELOW THIS LINE////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + default:END = TRUE; + break; + } + if(GetStringLowerCase(sChoice) != "") + { + for(iCounter2 = 1; iCounter2 <= iWeight; iCounter2++) + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + } + iCounter1++; + } +SetLocalInt(OBJECT_SELF, "re_iVarNum", iVarNum); +} diff --git a/gamma_age_v2/re_commoner1.ncs b/gamma_age_v2/re_commoner1.ncs new file mode 100644 index 00000000..258a4faf Binary files /dev/null and b/gamma_age_v2/re_commoner1.ncs differ diff --git a/gamma_age_v2/re_commoner1.nss b/gamma_age_v2/re_commoner1.nss new file mode 100644 index 00000000..360c5cb0 --- /dev/null +++ b/gamma_age_v2/re_commoner1.nss @@ -0,0 +1,169 @@ +//////////////////////////////////////////////////// +/* +Custom Random Commoner Table for use with the BESIE +Random Encounter Package by Ray Miller +*/ +//////////////////////////////////////////////////// + +void main() +{ +int iVarNum = GetLocalInt(OBJECT_SELF, "re_iVarNum"); +int END; +int iWeight; +int iCounter1; +int iCounter2; +string sChoice; +object oMod = GetModule(); +while(!END) + { + sChoice = ""; + switch(iCounter1) + { +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//DO NOT EDIT ABOVE THIS LINE///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//CUSTOM ENCOUNTER TABLE BELOW://///////////////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + case 0:sChoice = "mhuman_1";// Creature tag goes between the " marks. + iWeight = 2; // This is the number of times this mob should be considered for the likelyhood of appearing. + break; + + case 1:sChoice = "mhuman_2"; + iWeight = 2; + break; + + case 2:sChoice = "mhuman_3"; + iWeight = 2; + break; + + case 3:sChoice = "mhuman_4"; + iWeight = 2; + break; + + case 4:sChoice = "mhuman_5"; + iWeight = 2; + break; + + case 5:sChoice = "mhuman_6"; + iWeight = 2; + break; + + case 6:sChoice = "mhuman_7"; + iWeight = 2; + break; + + case 7:sChoice = "mhuman_8"; + iWeight = 2; + break; + + case 8:sChoice = "mhuman_9"; + iWeight = 2; + break; + + case 9:sChoice = "mhuman_10"; + iWeight = 2; + break; + + case 10:sChoice = "fhuman_1"; + iWeight = 2; + break; + + case 11:sChoice = "fhuman_2"; + iWeight = 2; + break; + + case 12:sChoice = "fhuman_3"; + iWeight = 2; + break; + + case 13:sChoice = "fhuman_4";// Creature tag goes between the " marks. + iWeight = 2; // This is the number of times this mob should be considered for the likelyhood of appearing. + break; + + case 14:sChoice = "fhuman_5"; + iWeight = 2; + break; + + case 15:sChoice = "fhuman_6"; + iWeight = 2; + break; + + case 16:sChoice = "fhuman_7"; + iWeight = 2; + break; + + case 17:sChoice = "fhuman_8"; + iWeight = 2; + break; + + case 18:sChoice = "fhuman_9"; + iWeight = 2; + break; + + case 19:sChoice = "fhuman_10"; + iWeight = 2; + break; + + case 20:sChoice = "melf"; + iWeight = 1; + break; + + case 21:sChoice = "felf"; + iWeight = 1; + break; + + case 22:sChoice = "mhalfelf"; + iWeight = 1; + break; + + case 23:sChoice = "fhalfelf"; + iWeight = 1; + break; + + case 24:sChoice = "mdwarf"; + iWeight = 1; + break; + + case 25:sChoice = "fhalforc"; + iWeight = 1; + break; + + case 26:sChoice = "mhalfling"; + iWeight = 1; + break; + + case 27:sChoice = "fhalfling"; + iWeight = 1; + break; + + case 28:sChoice = "mgnome"; + iWeight = 1; + break; + + case 29:sChoice = "fgnome"; + iWeight = 1; + break; + + case 30:sChoice = "mhalforc"; + iWeight = 1; + break; + + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//END OF CUSTOM ENCOUNTER TABLE! DO NOT EDIT BELOW THIS LINE////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + default:END = TRUE; + break; + } + if(GetStringLowerCase(sChoice) != "") + { + for(iCounter2 = 1; iCounter2 <= iWeight; iCounter2++) + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + } + iCounter1++; + } +SetLocalInt(OBJECT_SELF, "re_iVarNum", iVarNum); +} diff --git a/gamma_age_v2/re_commonspwnrhb.ncs b/gamma_age_v2/re_commonspwnrhb.ncs new file mode 100644 index 00000000..a0f0004c Binary files /dev/null and b/gamma_age_v2/re_commonspwnrhb.ncs differ diff --git a/gamma_age_v2/re_commonspwnrhb.nss b/gamma_age_v2/re_commonspwnrhb.nss new file mode 100644 index 00000000..db627e8c --- /dev/null +++ b/gamma_age_v2/re_commonspwnrhb.nss @@ -0,0 +1,139 @@ +//:://///////////////////////////////////////////// +//:: FileName re_mmorpghb.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +This script is used in the heartbeat of the +BESIE Commoner Spawner tool, part of the BESIE +Random Encounter System by Ray Miller. +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 9-2-02 +//::////////////////////////////////////////////// + +#include "re_rndenc" +void DoFacing(object oSource) +{ +object oTarget = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oSource, 1, CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_NOT_PC); +vector vTarget = GetPositionFromLocation(GetLocation(oTarget)); +vector vSource = GetPositionFromLocation(GetLocation(oSource)); +AssignCommand(oSource, SetFacingPoint(vTarget)); +if(oSource == GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oTarget, 1, CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_NOT_PC)) + { + if(GetTag(oTarget) == "Patron" + || GetTag(oTarget) == "Citizen" + || GetTag(oTarget) == "Commoner" + || GetLocalObject(oTarget, "re_oRandomEncounterSpawner") == OBJECT_SELF) + { + if(!GetIsPC(oTarget)) AssignCommand(oTarget, SetFacingPoint(vSource)); + } + } +} + +void main() +{ + if(!GetLocalInt(OBJECT_SELF, "re_BESIE")) + { + SetLocalInt(OBJECT_SELF, "re_BESIE", TRUE); + SetLocalString(OBJECT_SELF, "re_ToolType", "Commoner Spawner"); + } + if(GetLocalInt(GetModule(), "re_disableCommonerSpawner") || GetLocalInt(GetArea(OBJECT_SELF), "re_disableCommonerSpawner") || GetLocalInt(OBJECT_SELF, "re_disable")) + { + if(!GetIsObjectValid(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner"))) SetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner", OBJECT_SELF); + if(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner") == OBJECT_SELF) CleanHouse(); + return; + } + object oCreature; + object oAmIASpawn; + object oArea = GetArea(OBJECT_SELF); + int iCounter1; + int iCounter2; + int iCounterSpawn; + int bTimeIn; + int bSpawn; + int iSpawnRadius = GetFortitudeSavingThrow(OBJECT_SELF) * 5; + int iTableNumber = GetReflexSavingThrow(OBJECT_SELF); + int iMaxSpawns = GetWillSavingThrow(OBJECT_SELF); + int iSpawnAmount; + string sBuild; + string sCustom = "nil"; + string sTemplate = "re_commoner" + IntToString(iTableNumber); + if(!GetLocalInt(OBJECT_SELF, "re_bCommonerSpawner")) SetLocalInt(OBJECT_SELF, "bCommonerSpawner", TRUE); + if(!GetLocalInt(OBJECT_SELF, "bFirstRun")) + { + if(GetStringLeft(GetTag(OBJECT_SELF), 3) == "re_") + { + for(iCounter1 = 3; iCounter1 <= GetStringLength(GetTag(OBJECT_SELF)); iCounter1++) + { + if(sCustom != "nil" + && (GetSubString(GetTag(OBJECT_SELF), iCounter1, 1) == "0" || StringToInt(GetSubString(GetTag(OBJECT_SELF), iCounter1, 1)) > 0)) + { + sBuild = sBuild + GetSubString(GetTag(OBJECT_SELF), iCounter1, 1); + } + else if(sCustom != "nil") + { + if(sCustom == "b") SetLocalInt(OBJECT_SELF, "re_iBegin", StringToInt(sBuild)); + if(sCustom == "e") SetLocalInt(OBJECT_SELF, "re_iEnd", StringToInt(sBuild)); + sCustom = "nil"; + sBuild = ""; + } + if(GetSubString(GetTag(OBJECT_SELF), iCounter1, 1) == "b" || GetSubString(GetTag(OBJECT_SELF), iCounter1, 1) == "e") + { + sCustom = GetSubString(GetTag(OBJECT_SELF), iCounter1, 1); + } + } + } + SetLocalInt(OBJECT_SELF, "bFirstRun", TRUE); + } + if(GetLocalInt(OBJECT_SELF, "re_iBegin") > 23) SetLocalInt(OBJECT_SELF, "re_iBegin", 23); + if(GetLocalInt(OBJECT_SELF, "re_iEnd") > 23) SetLocalInt(OBJECT_SELF, "re_iEnd", 23); + int iStartTime = GetLocalInt(OBJECT_SELF, "re_iBegin"); + int iStopTime = GetLocalInt(OBJECT_SELF, "re_iEnd"); + if((iStartTime <= iStopTime && (GetTimeHour() >= iStartTime && GetTimeHour() < iStopTime)) + || (iStartTime >= iStopTime && (GetTimeHour() >= iStartTime || GetTimeHour() < iStopTime))) + bTimeIn = TRUE; + else bTimeIn = FALSE; + if(iMaxSpawns < 0)iMaxSpawns = 1; + oAmIASpawn = GetFirstObjectInArea(oArea); + while(GetIsObjectValid(oAmIASpawn)) + { + if(GetIsPC(oAmIASpawn) && !GetLocalInt(GetModule(), "re_" + GetPCPlayerName(oAmIASpawn))) bSpawn = TRUE; + if(GetLocalObject(oAmIASpawn, "re_oRandomEncounterSpawner") == OBJECT_SELF && bTimeIn) + { + iCounterSpawn++; + + //This is so the CleanHouse function doesn't clean up the commoners. + if(GetLocalInt(oAmIASpawn, "re_bRandomEncounter")) DeleteLocalInt(oAmIASpawn, "re_bRandomEncounter"); + + int iShouldIWalk = Random(100) + 1; + if(Random(100) + 1 < GetMaxHitPoints(OBJECT_SELF) && !GetIsInCombat(oAmIASpawn) && !IsInConversation(oAmIASpawn) && !GetIsPC(oAmIASpawn)) + { + ClearAllActions(); + RandomWalk2(GetLocation(OBJECT_SELF), iSpawnRadius, oAmIASpawn); + } + if(!GetIsInCombat(oAmIASpawn) && !IsInConversation(oAmIASpawn) && !GetIsPC(oAmIASpawn)) AssignCommand(oAmIASpawn, ActionDoCommand(DoFacing(oAmIASpawn))); + } + if(GetLocalObject(oAmIASpawn, "re_oRandomEncounterSpawner") == OBJECT_SELF && (!bTimeIn || GetLocalInt(OBJECT_SELF, "re_bDespawn"))) + { + if(!GetIsInCombat(oAmIASpawn) && !IsInConversation(oAmIASpawn) && !GetIsPC(oAmIASpawn)) DestroyObject(oAmIASpawn); + } + oAmIASpawn = GetNextObjectInArea(oArea); + } + if(!bSpawn) SetLocalInt(OBJECT_SELF, "re_bDespawn", TRUE); + else DeleteLocalInt(OBJECT_SELF, "re_bDespawn"); + if(iCounterSpawn < iMaxSpawns && bSpawn && bTimeIn) + { + //This is to prevent a Too Many Instructions error that occurs if more than 23 spawns are generated + //in a single loop. + if(iMaxSpawns - iCounterSpawn > 20) iSpawnAmount = 20; + else iSpawnAmount = iMaxSpawns - iCounterSpawn; + for(iCounter2 = 1; iCounter2 <= iSpawnAmount; iCounter2++) + { + oCreature = RandomEncounter(100.0, OBJECT_SELF, sTemplate, 0, 1, 1, iSpawnRadius, 360); + DelayCommand(2.0, DoFacing(oCreature)); + } + } + if(!GetIsObjectValid(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner"))) SetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner", OBJECT_SELF); + if(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner") == OBJECT_SELF) CleanHouse(); +} diff --git a/gamma_age_v2/re_custom.ncs b/gamma_age_v2/re_custom.ncs new file mode 100644 index 00000000..f02a8296 Binary files /dev/null and b/gamma_age_v2/re_custom.ncs differ diff --git a/gamma_age_v2/re_custom.nss b/gamma_age_v2/re_custom.nss new file mode 100644 index 00000000..20f43caf --- /dev/null +++ b/gamma_age_v2/re_custom.nss @@ -0,0 +1,125 @@ +//////////////////////////////////////////////////// +/* +Custom Random Encounter Table for use with the BESIE +Random Encounter Package by Ray Miller +*/ +//////////////////////////////////////////////////// + +void main() +{ + int iVarNum = GetLocalInt(OBJECT_SELF, "iVarNum"); + float fMinCR = GetLocalFloat(OBJECT_SELF, "fMinCR"); + float fMaxCR = GetLocalFloat(OBJECT_SELF, "fMaxCR"); + int iCounter1; + int iCounter2; + int iMaxNum; + int iMinNum; + int iWeight; + float fCR; + string sChoice = "nil"; + object oMod = GetModule(); + while(sChoice != "") + { + sChoice = ""; + switch(iCounter1) + { +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//DO NOT EDIT ABOVE THIS LINE///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//CUSTOM ENCOUNTER TABLE BELOW://///////////////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + case 0:sChoice = "";// Creature tag goes between the " marks. + fCR = 0.0; // Set this to the challenge rating of the creature as shown on the creature pallette. + iMinNum = 0; // + iMaxNum = 0; // If these are left at zero then an appropriate number of creatures will be spawned based on the CR. + iWeight = 1; // This is the number of times this mob should be considered for the likelyhood of appearing. + break; + + case 1:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 2:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 3:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 4:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 5:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 6:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 7:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 8:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 9:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 10:sChoice = ""; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + fCR = 0.0; + break; + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//END OF CUSTOM ENCOUNTER TABLE! DO NOT EDIT BELOW THIS LINE////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + for(iCounter2 = 1; iCounter2 <= iWeight; iCounter2++) + { + SetLocalString(oMod, "sCreatureList" + IntToString(iVarNum), sChoice); + SetLocalInt(oMod, "iMaxNumberOfCreatures" + IntToString(iVarNum), iMaxNum); + SetLocalInt(oMod, "iMinNumberOfCreatures" + IntToString(iVarNum), iMinNum); + iVarNum++; + } + } + iCounter1++; + } +SetLocalInt(OBJECT_SELF, "iVarNum", iVarNum); +} diff --git a/gamma_age_v2/re_custom1.ncs b/gamma_age_v2/re_custom1.ncs new file mode 100644 index 00000000..770303f6 Binary files /dev/null and b/gamma_age_v2/re_custom1.ncs differ diff --git a/gamma_age_v2/re_custom1.nss b/gamma_age_v2/re_custom1.nss new file mode 100644 index 00000000..c65144d7 --- /dev/null +++ b/gamma_age_v2/re_custom1.nss @@ -0,0 +1,125 @@ +//////////////////////////////////////////////////// +/* +Custom Random Encounter Table for use with the BESIE +Random Encounter Package by Ray Miller +*/ +//////////////////////////////////////////////////// + +void main() +{ + int iVarNum = GetLocalInt(OBJECT_SELF, "iVarNum"); + float fMinCR = GetLocalFloat(OBJECT_SELF, "fMinCR"); + float fMaxCR = GetLocalFloat(OBJECT_SELF, "fMaxCR"); + int iCounter1; + int iCounter2; + int iMaxNum; + int iMinNum; + int iWeight; + float fCR; + string sChoice = "nil"; + object oMod = GetModule(); + while(sChoice != "") + { + sChoice = ""; + switch(iCounter1) + { +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//DO NOT EDIT ABOVE THIS LINE///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//CUSTOM ENCOUNTER TABLE BELOW://///////////////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + case 0:sChoice = "darkened_wolf";// Creature tag goes between the " marks. + fCR = 1.5; // Set this to the challenge rating of the creature as shown on the creature pallette. + iMinNum = 2; // + iMaxNum = 8; // If these are left at zero then an appropriate number of creatures will be spawned based on the CR. + iWeight = 1; // This is the number of times this mob should be considered for the likelyhood of appearing. + break; + + case 1:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 2:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 3:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 4:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 5:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 6:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 7:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 8:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 9:sChoice = ""; + fCR = 0.0; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + break; + + case 10:sChoice = ""; + iMinNum = 0; + iMaxNum = 0; + iWeight = 1; + fCR = 0.0; + break; + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//END OF CUSTOM ENCOUNTER TABLE! DO NOT EDIT BELOW THIS LINE////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + for(iCounter2 = 1; iCounter2 <= iWeight; iCounter2++) + { + SetLocalString(oMod, "sCreatureList" + IntToString(iVarNum), sChoice); + SetLocalInt(oMod, "iMaxNumberOfCreatures" + IntToString(iVarNum), iMaxNum); + SetLocalInt(oMod, "iMinNumberOfCreatures" + IntToString(iVarNum), iMinNum); + iVarNum++; + } + } + iCounter1++; + } +SetLocalInt(OBJECT_SELF, "iVarNum", iVarNum); +} diff --git a/gamma_age_v2/re_cv_commoner.dlg b/gamma_age_v2/re_cv_commoner.dlg new file mode 100644 index 00000000..928279c7 Binary files /dev/null and b/gamma_age_v2/re_cv_commoner.dlg differ diff --git a/gamma_age_v2/re_levspawnerhb.ncs b/gamma_age_v2/re_levspawnerhb.ncs new file mode 100644 index 00000000..9667185f Binary files /dev/null and b/gamma_age_v2/re_levspawnerhb.ncs differ diff --git a/gamma_age_v2/re_levspawnerhb.nss b/gamma_age_v2/re_levspawnerhb.nss new file mode 100644 index 00000000..c06ff7dc --- /dev/null +++ b/gamma_age_v2/re_levspawnerhb.nss @@ -0,0 +1,109 @@ +//::///////////////////////////////////////////////////////////////// +//:: FileName re_spawnerhb +//:: Copyright (c) 2001 Bioware Corp. +//::///////////////////////////////////////////////////////////////// +/* +This script is used in the heartbeat of the +BESIE RES tool, part of the BESIE Random +Encounter package by Ray Miller. +*/ +//::///////////////////////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 9-2-02 +//::///////////////////////////////////////////////////////////////// +#include "re_rndenc" +void main() +{ +///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////// +//Set this parameter to FALSE if you wish +//your encounter distances to be constant +int RandomDistance = TRUE; +///////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////// +/* +If you want a PW RES tool to start and stop spawning +creatures at particular game times, set the following variables +to the appropriate times and save the script under a different +name. You could also set the local integers "re_iBegin" and +"re_iEnd" on the spawner externally if you wanted. +*/ +int StartTime = 0; +int StopTime = 0; +/////////////////////////////////////////////////////////// + + float fChanceOfEncounter; + if(StartTime || StopTime) + { + SetLocalInt(OBJECT_SELF, "re_iBegin", StartTime); + SetLocalInt(OBJECT_SELF, "re_iEnd", StopTime); + } + if(GetLocalInt(OBJECT_SELF, "re_iBegin") > 23) SetLocalInt(OBJECT_SELF, "re_iBegin", 23); + if(GetLocalInt(OBJECT_SELF, "re_iEnd") > 23) SetLocalInt(OBJECT_SELF, "re_iEnd", 23); + if(!GetLocalInt(OBJECT_SELF, "re_BESIE")) + { + SetLocalInt(OBJECT_SELF, "re_BESIE", TRUE); + SetLocalString(OBJECT_SELF, "re_ToolType", "PW RES"); + } + if(GetLocalInt(GetModule(), "re_disablePWRES") || GetLocalInt(GetArea(OBJECT_SELF), "re_disablePWRES") || GetLocalInt(OBJECT_SELF, "re_disable")) + { + if(!GetIsObjectValid(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner"))) SetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner", OBJECT_SELF); + if(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner") == OBJECT_SELF) CleanHouse(); + return; + } + int iStartTime = GetLocalInt(OBJECT_SELF, "re_iBegin"); + int iStopTime = GetLocalInt(OBJECT_SELF, "re_iEnd"); + if((iStartTime <= iStopTime && (GetTimeHour() >= iStartTime && GetTimeHour() < iStopTime)) + || (iStartTime >= iStopTime && (GetTimeHour() >= iStartTime || GetTimeHour() < iStopTime))) + fChanceOfEncounter = IntToFloat(GetMaxHitPoints(OBJECT_SELF)) / 100; + else fChanceOfEncounter = 0.0; + int iFaction; + int iCounterX; + object oEncounterObject; + object oArea = GetArea(OBJECT_SELF); + object oPC = GetFirstPC(); + while(GetIsObjectValid(oPC)) + { + if(GetArea(oPC) == oArea) + { + string sLeader = GetPCPlayerName(GetFactionLeader(oPC)) + GetName(GetFactionLeader(oPC)); + if(!GetLocalInt(OBJECT_SELF, "i" + sLeader)) + { + iFaction++; + SetLocalString(OBJECT_SELF, "sFaction" + IntToString(iFaction), sLeader); + } + SetLocalInt(OBJECT_SELF, "i" + sLeader, GetLocalInt(OBJECT_SELF, "i" + sLeader) + 1); + SetLocalObject(OBJECT_SELF, "o" + sLeader + IntToString(GetLocalInt(OBJECT_SELF, "i" + sLeader)), oPC); + } + oPC = GetNextPC(); + } + if(!GetIsObjectValid(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner"))) SetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner", OBJECT_SELF); + if(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner") == OBJECT_SELF) CleanHouse(); + if(!iFaction) return; + string sLeader = GetLocalString(OBJECT_SELF, "sFaction" + IntToString(Random(iFaction) + 1)); + int iMember = Random(GetLocalInt(OBJECT_SELF, "i" + sLeader)) + 1; + oEncounterObject = GetLocalObject(OBJECT_SELF, "o" + sLeader + IntToString(iMember)); + for(iCounterX = 1; iCounterX <= iFaction; iCounterX++) + { + DeleteLocalInt(OBJECT_SELF, "i" + GetLocalString(OBJECT_SELF, "sFaction" + IntToString(iCounterX))); + DeleteLocalString(OBJECT_SELF, "sFaction" + IntToString(iCounterX)); + } + string sTemplate = GetTag(OBJECT_SELF); + int iNumberOfParties; + int iMinDistance = RandomDistance; + int iLevel = GetFortitudeSavingThrow(OBJECT_SELF); + int iCheckDistance = GetReflexSavingThrow(OBJECT_SELF); + int iMaxDistance = GetWillSavingThrow(OBJECT_SELF); + + // Return if the resting variable is set by the re_onrest script. + if(GetLocalInt(oEncounterObject, "re_resting")) return; + + if(!iMaxDistance) + { + iMaxDistance = 1; + } + if(GetStringLeft(sTemplate, 3) != "re_") + sTemplate = "random"; + fChanceOfEncounter = IntToFloat(iFaction) * fChanceOfEncounter; + RandomEncounter(fChanceOfEncounter, oEncounterObject, sTemplate, 0, 0, iMinDistance, iMaxDistance, 360, 0, iCheckDistance, iLevel, 0); +} diff --git a/gamma_age_v2/re_mmorpghb.ncs b/gamma_age_v2/re_mmorpghb.ncs new file mode 100644 index 00000000..694db218 Binary files /dev/null and b/gamma_age_v2/re_mmorpghb.ncs differ diff --git a/gamma_age_v2/re_mmorpghb.nss b/gamma_age_v2/re_mmorpghb.nss new file mode 100644 index 00000000..3ddfc90c --- /dev/null +++ b/gamma_age_v2/re_mmorpghb.nss @@ -0,0 +1,153 @@ +//:://///////////////////////////////////////////// +//:: FileName re_mmorpghb.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +This script is used in the heartbeat of the +BESIE RES tool, part of the BESIE Random Encounter +package by Ray Miller. +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 9-2-02 +//::////////////////////////////////////////////// + +#include "re_rndenc" +void main() +{ +/////////////////////////////////////////////////////////// +/* +if you don't want a DM possessed NPC to produce spawns, +insert the following code into your module OnClientEnter +handler. + +note: this code is contained in the script "re_oncliententer" + +if(GetIsDM(GetEnteringObject())) SetLocalInt(GetModule(), "re_" + GetName(GetEnteringObject()), TRUE); +else DeleteLocalInt(GetModule(), "re_" + GetName(GetEnteringObject())); +*/ +/////////////////////////////////////////////////////////// +/* +If you want a MMORPG Spawner to start and stop spawning +creatures at particular game times, set the following variables +to the appropriate times and save the script under a different +name. You could also set the local integers "re_iBegin" and +"re_iEnd" on the spawner externally if you wanted. +*/ +int StartTime = 0; +int StopTime = 0; +/////////////////////////////////////////////////////////// + + int bTimeIn; + if(StartTime || StopTime) + { + SetLocalInt(OBJECT_SELF, "re_iBegin", StartTime); + SetLocalInt(OBJECT_SELF, "re_iEnd", StopTime); + } + if(GetLocalInt(OBJECT_SELF, "re_iBegin") > 23) SetLocalInt(OBJECT_SELF, "re_iBegin", 23); + if(GetLocalInt(OBJECT_SELF, "re_iEnd") > 23) SetLocalInt(OBJECT_SELF, "re_iEnd", 23); + if(!GetLocalInt(OBJECT_SELF, "re_BESIE")) + { + SetLocalInt(OBJECT_SELF, "re_BESIE", TRUE); + SetLocalString(OBJECT_SELF, "re_ToolType", "MMORPG Spawner"); + } + if(GetLocalInt(GetModule(), "re_disableMMORPG") || GetLocalInt(GetArea(OBJECT_SELF), "re_disableMMORPG") || GetLocalInt(OBJECT_SELF, "re_disable")) + { + if(!GetIsObjectValid(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner"))) SetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner", OBJECT_SELF); + if(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner") == OBJECT_SELF) CleanHouse(); + return; + } + int iStartTime = GetLocalInt(OBJECT_SELF, "re_iBegin"); + int iStopTime = GetLocalInt(OBJECT_SELF, "re_iEnd"); + if((iStartTime <= iStopTime && (GetTimeHour() >= iStartTime && GetTimeHour() < iStopTime)) + || (iStartTime >= iStopTime && (GetTimeHour() >= iStartTime || GetTimeHour() < iStopTime))) + bTimeIn = TRUE; + else bTimeIn = FALSE; + string sTemplate; + object oCreature; + object oAmIASpawn; + object oArea = GetArea(OBJECT_SELF); + int iTreasure; + int iType; + int bSpawnOne; + int iCounterPC; + int iCounterParty; + int iCounterSpawn; + int iSpawnRadius = GetFortitudeSavingThrow(OBJECT_SELF) * 5; + int iEncounterLevel = GetReflexSavingThrow(OBJECT_SELF); + int iMaxSpawns = GetWillSavingThrow(OBJECT_SELF); + float fZeroTest; + float fPCFactor; + float fChanceOfSpawn; + float fChallengeFactor; + float fFactor; + if(!iMaxSpawns) return; + if(!iEncounterLevel) + { + oAmIASpawn = GetFirstObjectInArea(oArea); + while(GetIsObjectValid(oAmIASpawn)) + { + if(GetIsPC(oAmIASpawn)) + { + iCounterPC++; + if(GetFactionLeader(oAmIASpawn) == oAmIASpawn) + { + iCounterParty++; + } + iEncounterLevel = iEncounterLevel + GetLevelByPosition(1, oAmIASpawn) + GetLevelByPosition(2, oAmIASpawn) + GetLevelByPosition(3, oAmIASpawn); + if(GetIsObjectValid(GetHenchman(oAmIASpawn))) + { + iEncounterLevel = iEncounterLevel + GetLevelByPosition(1, GetHenchman(oAmIASpawn)) + GetLevelByPosition(2, GetHenchman(oAmIASpawn)) + GetLevelByPosition(3, GetHenchman(oAmIASpawn)); + } + } + oAmIASpawn = GetNextObjectInArea(oArea); + } + if(iCounterParty < 1) iCounterParty = 1; + iEncounterLevel = FloatToInt(IntToFloat(iEncounterLevel) / IntToFloat(iCounterParty)); + } + if(iMaxSpawns < 0)iMaxSpawns = 1; + + //This code was removed in v1.8. I'm not sure why I was doing things this way. + //if(GetStringLeft(GetTag(OBJECT_SELF), 3) == "re_") + // { + sTemplate = GetTag(OBJECT_SELF); + // } + //else + // { + // sTemplate = "random"; + // } + oAmIASpawn = GetFirstObjectInArea(oArea); + while(GetIsObjectValid(oAmIASpawn)) + { + if(GetLocalInt(oAmIASpawn, "re_bRandomEncounter") && GetLocalObject(oAmIASpawn, "re_oRandomEncounterSpawner") == OBJECT_SELF) + { + iCounterSpawn++; + if(!bTimeIn && !GetIsInCombat(oAmIASpawn) && !IsInConversation(oAmIASpawn)) DestroyObject(oAmIASpawn); + if(!iEncounterLevel) SetLocalInt(oAmIASpawn, "re_iRandomEncounterLifeTime", 450); + else SetLocalInt(oAmIASpawn, "re_iRandomEncounterLifeTime", 900); + int iShouldIWalk = Random(100) + 1; + if(Random(100) + 1 < GetMaxHitPoints(OBJECT_SELF) && !GetIsInCombat(oAmIASpawn) && !GetIsPC(oAmIASpawn)) + { + ClearAllActions(); + RandomWalk2(GetLocation(OBJECT_SELF), iSpawnRadius, oAmIASpawn); + } + } + if(GetIsPC(oAmIASpawn) && !GetLocalInt(GetModule(), "re_" + GetPCPlayerName(oAmIASpawn))) bSpawnOne = TRUE; + oAmIASpawn = GetNextObjectInArea(oArea); + } + if(bSpawnOne && bTimeIn && iCounterSpawn < iMaxSpawns) + { + if(iCounterPC > iMaxSpawns / 4) iCounterPC = iMaxSpawns / 4; + //The following two lines were put in place with v1.8 because of some rare div by zero reports. This is + //the only place where this spawner could generate this error. I suspect it has to do with the presence + //of a dm possessed creature, or something of that nature. At any rate, this should eliminate the error. + fZeroTest = (IntToFloat(iMaxSpawns) - ((IntToFloat(iCounterPC) / (IntToFloat(iMaxSpawns) * 0.25)) * IntToFloat(iCounterSpawn))); + if(fZeroTest == 0.0) return; + + fPCFactor = IntToFloat(iMaxSpawns) / fZeroTest; + fChanceOfSpawn = ((100.0 - ((IntToFloat(iCounterSpawn) / IntToFloat(iMaxSpawns)) * 100.0)) * fPCFactor); + oCreature = RandomEncounter(fChanceOfSpawn, OBJECT_SELF, sTemplate, 0, 1, 1, iSpawnRadius, 360, 0, 0, iEncounterLevel, 5); + } + if(!GetIsObjectValid(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner"))) SetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner", OBJECT_SELF); + if(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner") == OBJECT_SELF) CleanHouse(); +} diff --git a/gamma_age_v2/re_moditemdrop.ncs b/gamma_age_v2/re_moditemdrop.ncs new file mode 100644 index 00000000..157fdf47 Binary files /dev/null and b/gamma_age_v2/re_moditemdrop.ncs differ diff --git a/gamma_age_v2/re_moditemdrop.nss b/gamma_age_v2/re_moditemdrop.nss new file mode 100644 index 00000000..9bc12968 --- /dev/null +++ b/gamma_age_v2/re_moditemdrop.nss @@ -0,0 +1,38 @@ +//::////////////////////////////////////////////// +//:: FileName re_moditemdrop.nss +//:: Copyright (c) 2002 Ray Miller +//::////////////////////////////////////////////// +/* +Note: This script goes on the Item Unacquired +handler for the module object and is used to +stamp dropped items with a local time variable +for use with the "CleanHouse()" function of the +BESIE Random Encounter Package by Ray Miller. +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 7/6/2002 +//::////////////////////////////////////////////// +void main() +{ + int iMph; + if(!GetLocalInt(GetModule(), "iMph")) + { + iMph = 2; + } + else + { + iMph = GetLocalInt(GetModule(), "iMph"); + } + int iMin = 60; + int iHr = iMin * iMph; + int iDay = iHr * 24; + int iMth = iDay * 28; + int iYr = iMth * 12; + object oAmIDroppedLoot = GetModuleItemLost(); + if(GetIsObjectValid(oAmIDroppedLoot)) + { + SetLocalInt(oAmIDroppedLoot, "bDroppedItem", TRUE); + SetLocalInt(oAmIDroppedLoot, "iDropTime", (GetCalendarYear() * iYr) + (GetCalendarMonth() * iMth) + (GetCalendarDay()* iDay) + (GetTimeHour()* iHr) + (GetTimeMinute() * iMin) + GetTimeSecond()); + } +} diff --git a/gamma_age_v2/re_modulehb.ncs b/gamma_age_v2/re_modulehb.ncs new file mode 100644 index 00000000..d7f7a2b9 Binary files /dev/null and b/gamma_age_v2/re_modulehb.ncs differ diff --git a/gamma_age_v2/re_modulehb.nss b/gamma_age_v2/re_modulehb.nss new file mode 100644 index 00000000..bb1a8434 --- /dev/null +++ b/gamma_age_v2/re_modulehb.nss @@ -0,0 +1,30 @@ +//:://///////////////////////////////////////////// +//:: Name re_modheartbeat.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +This script is part of the BESIE Random Encounter +System by Ray Miller. It is meant to be placed in +the Module OnHeartbeat Handler. It is used to run +the CleanHouse() function on all areas in which PCs +currently reside. +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 1-6-03 +//::////////////////////////////////////////////// +#include "re_rndenc" +void main() +{ +object oArea; +object oPC = GetFirstPC(); +while(GetIsObjectValid(oPC)) + { + oArea = GetArea(oPC); + if(!GetIsObjectValid(GetLocalObject(oArea, "re_oHouseCleaner"))) + { + CleanHouse(FALSE, oArea); + } + oPC = GetNextPC(); + } +} diff --git a/gamma_age_v2/re_onactivate.ncs b/gamma_age_v2/re_onactivate.ncs new file mode 100644 index 00000000..6cd67dff Binary files /dev/null and b/gamma_age_v2/re_onactivate.ncs differ diff --git a/gamma_age_v2/re_onactivate.nss b/gamma_age_v2/re_onactivate.nss new file mode 100644 index 00000000..67dfd402 --- /dev/null +++ b/gamma_age_v2/re_onactivate.nss @@ -0,0 +1,8 @@ +void main() +{ +//BESIE Widget +if(GetTag(GetItemActivated()) == "BESIEWidget") + { + AssignCommand(GetItemActivator(), ActionStartConversation(GetItemActivator(), "re_widget", TRUE)); + } +} diff --git a/gamma_age_v2/re_oncliententer.ncs b/gamma_age_v2/re_oncliententer.ncs new file mode 100644 index 00000000..5e36ce5a Binary files /dev/null and b/gamma_age_v2/re_oncliententer.ncs differ diff --git a/gamma_age_v2/re_oncliententer.nss b/gamma_age_v2/re_oncliententer.nss new file mode 100644 index 00000000..1deca92d --- /dev/null +++ b/gamma_age_v2/re_oncliententer.nss @@ -0,0 +1,31 @@ +//:://///////////////////////////////////////////// +//:: FileName re_oncliententer.nss +//::////////////////////////////////////////////// +/* +This is part of the BESIE Random Encounter System. +It is intended to be placed in the module +OnClientEnter handler. Its purpose is to set a +local int on the DM so the he does not produce +random encounters when possessing an NPC. +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 10/14/02 +//::////////////////////////////////////////////// +void main() +{ +object oPC = GetEnteringObject(); +int bBESIEWidget; +if(GetIsDM(oPC)) + { + SetLocalInt(GetModule(), "re_" + GetPCPlayerName(oPC), TRUE); + object oItem = GetFirstItemInInventory(oPC); + while(GetIsObjectValid(oItem)) + { + if(GetTag(oItem) == "BESIEWidget") bBESIEWidget = TRUE; + oItem = GetNextItemInInventory(oPC); + } + if(!bBESIEWidget) CreateItemOnObject("besiewidget", oPC); + } +else DeleteLocalInt(GetModule(), "re_" + GetName(oPC)); +} diff --git a/gamma_age_v2/re_onload.ncs b/gamma_age_v2/re_onload.ncs new file mode 100644 index 00000000..93235770 Binary files /dev/null and b/gamma_age_v2/re_onload.ncs differ diff --git a/gamma_age_v2/re_onload.nss b/gamma_age_v2/re_onload.nss new file mode 100644 index 00000000..be78ed42 --- /dev/null +++ b/gamma_age_v2/re_onload.nss @@ -0,0 +1,30 @@ +//:://///////////////////////////////////////////// +//:: FileName re_onload.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +This is the default OnLoad script for the BESIE +Random Encounter system. This script is really just +a template. The OnLoad handler is the best place +to set the random encounter properties for the areas +of your module. +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 5/17/03 +//::////////////////////////////////////////////// +#include"re_rndenc" +void main() +{ +//Notice that everything here matches the default settings of the SetRndEncProperties function except +//the iChanceOnRest parameter, which is set to 0. The purpose of this statement is to make every area +//of this module, that is not explicitley set, safe for resting. +SetRndEncProperties(GetModule(), 4, TRUE, "re_ceghimpubt0", 180, 2, 4, FALSE, 0); + + +//This sets the chance of a resting encounter in the area to 20 percent. Remember that when players +//are resting it is because they are wounded and/or are low on resources. It is important not to set +//the random encounter difficulty too high, especially in areas that are not safe for resting. +// Repeat the following function call for each area that needs specific properties set. +//SetRndEncProperties(GetObjectByTag(""), 4, TRUE, "re_ceghimpubt0", 180, 2, 4, FALSE, 20); +} diff --git a/gamma_age_v2/re_onrest.ncs b/gamma_age_v2/re_onrest.ncs new file mode 100644 index 00000000..8530d151 Binary files /dev/null and b/gamma_age_v2/re_onrest.ncs differ diff --git a/gamma_age_v2/re_onrest.nss b/gamma_age_v2/re_onrest.nss new file mode 100644 index 00000000..b5f5678b --- /dev/null +++ b/gamma_age_v2/re_onrest.nss @@ -0,0 +1,92 @@ +//:://///////////////////////////////////////////// +//:: FileName re_onrest.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +If placed in the module OnPlayerRest handler, this +script will generate a chance of a random encounter +whenever a player rests. All of the parameters of +this encounter are determined by the Random Encouter +Properties placed on the Area object in which the +player is resting, as set by the SetRndEncProperties() +function. If no properties are set on the Area Object +then the Module Object will be used. If none are set +on the Module Object, the module object will be set +with defaults and they will be used. + +To make an area safe for resting encounters use 0 +for the iChanceOnRest Property of the +SetRndEncProperties() function. +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 1/6/03 +//::////////////////////////////////////////////// +#include "re_rndenc" +int GetTotalLevels(object oPC = OBJECT_SELF) +{ +int iLevel = GetLevelByPosition(1, oPC) + GetLevelByPosition(2, oPC) + GetLevelByPosition(3, oPC); +return iLevel; +} + +void main() +{ +////////////////////////////////////////////////// +//This should be set to the number of seconds that +//players have to wait between rests. +int iRestPeriod = 480 +;///////////////////////////////////////////////// +//Set this to false to disable the darkness effect +//when a PC rests. +int iDark = TRUE +;///////////////////////////////////////////////// + +object oPC = GetLastPCRested(); +object oArea = GetArea(oPC); +struct RndEncProperties strProps = GetRndEncProperties(oArea); +if(!strProps.bInitialized) strProps = GetRndEncProperties(GetModule()); +if(!strProps.bInitialized) + { + SetRndEncProperties(GetModule()); + strProps = GetRndEncProperties(GetModule()); + } +if(GetLastRestEventType() == REST_EVENTTYPE_REST_STARTED) + { + int iTimeSinceRest = GetTimeInSeconds() - GetLocalInt(oPC, "re_iLastRestTime"); + if(iTimeSinceRest < iRestPeriod) + { + int iMph; + if(!GetLocalInt(GetModule(), "re_iMph")) iMph = 2; + else iMph = GetLocalInt(GetModule(), "re_iMph"); + int iTimeLeft = iRestPeriod - iTimeSinceRest; + int iInGameHours = iTimeLeft / 120; + int iInGameMinutes = (iTimeLeft - (iInGameHours * 120)) / iMph; + SendMessageToPC(oPC, "You may not rest for another " + IntToString(iInGameHours) + " hours " + IntToString(iInGameMinutes) + " minutes of game time."); + AssignCommand(oPC, ClearAllActions()); + } + else + { + SetLocalInt(oPC, "re_resting", TRUE); + SetLocalInt(oPC, "re_iLastRestTime", GetTimeInSeconds()); + + //Apply visual effects to resting PC + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_SLEEP), oPC); + if(iDark) ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectBlindness(), oPC, 7.0 + IntToFloat(GetTotalLevels(oPC)) / 2.5); + + float fDelay = IntToFloat(Random(8 + FloatToInt(IntToFloat(GetTotalLevels(oPC)) / 2.5))+1); + DelayCommand(fDelay, ExecuteScript("re_or", oPC)); + } + } +else + { + DeleteLocalInt(oPC, "re_resting"); + effect eEffect = GetFirstEffect(oPC); + while(GetIsEffectValid(eEffect)) + { + if(GetEffectType(eEffect) == EFFECT_TYPE_BLINDNESS && GetEffectCreator(eEffect) == GetModule()) RemoveEffect(oPC, eEffect); + if(GetEffectType(eEffect) == VFX_IMP_SLEEP && GetEffectCreator(eEffect) == GetModule()) RemoveEffect(oPC, eEffect); + eEffect = GetNextEffect(oPC); + } + } +} + diff --git a/gamma_age_v2/re_onunacquire.ncs b/gamma_age_v2/re_onunacquire.ncs new file mode 100644 index 00000000..b57def89 Binary files /dev/null and b/gamma_age_v2/re_onunacquire.ncs differ diff --git a/gamma_age_v2/re_onunacquire.nss b/gamma_age_v2/re_onunacquire.nss new file mode 100644 index 00000000..a38ea92b --- /dev/null +++ b/gamma_age_v2/re_onunacquire.nss @@ -0,0 +1,38 @@ +//::////////////////////////////////////////////// +//:: FileName re_moditemdrop.nss +//:: Copyright (c) 2002 Ray Miller +//::////////////////////////////////////////////// +/* +Note: This script goes in the OnUnAcquired +handler for the module object and is used to +stamp dropped items with a local time variable +for use with the "CleanHouse()" function of the +BESIE Random Encounter Package by Ray Miller. +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 7/6/2002 +//::////////////////////////////////////////////// +void main() +{ + int iMph; + if(!GetLocalInt(GetModule(), "re_iMph")) + { + iMph = 2; + } + else + { + iMph = GetLocalInt(GetModule(), "re_iMph"); + } + int iMin = 60; + int iHr = iMin * iMph; + int iDay = iHr * 24; + int iMth = iDay * 28; + int iYr = iMth * 12; + object oAmIDroppedLoot = GetModuleItemLost(); + if(GetIsObjectValid(oAmIDroppedLoot)) + { + SetLocalInt(oAmIDroppedLoot, "re_bDroppedItem", TRUE); + SetLocalInt(oAmIDroppedLoot, "re_iDropTime", (GetCalendarYear() * iYr) + (GetCalendarMonth() * iMth) + (GetCalendarDay()* iDay) + (GetTimeHour()* iHr) + (GetTimeMinute() * iMin) + GetTimeSecond()); + } +} diff --git a/gamma_age_v2/re_or.ncs b/gamma_age_v2/re_or.ncs new file mode 100644 index 00000000..6a7b4429 Binary files /dev/null and b/gamma_age_v2/re_or.ncs differ diff --git a/gamma_age_v2/re_or.nss b/gamma_age_v2/re_or.nss new file mode 100644 index 00000000..80f0c585 --- /dev/null +++ b/gamma_age_v2/re_or.nss @@ -0,0 +1,59 @@ +//:://///////////////////////////////////////////// +//:: Name re_or.nss +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +This script is intended to be executed by +"re_onrest". It should not be executed alone +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 1-6-03 +//::////////////////////////////////////////////// +#include "re_rndenc" +void main() +{ +object oPC = OBJECT_SELF; +if(GetLocalInt(oPC, "re_resting")) + { + object oArea = GetArea(oPC); + int iMinDistance = 1; + int iMaxDistance = 5; + struct RndEncProperties strProps = GetRndEncProperties(oArea); + if(!strProps.bInitialized) strProps = GetRndEncProperties(GetModule()); + if(!strProps.bInitialized) + { + SetRndEncProperties(GetModule()); + strProps = GetRndEncProperties(GetModule()); + } + //If a friendly creature is awake and within 20 meters, then increase + //the distance at which the encounter can spawn. + int iCounter1 = 1; + object oPlayer = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC, iCounter1); + while(GetIsObjectValid(oPlayer) && GetDistanceToObject(oPlayer) <= 20.0) + { + iCounter1++; + if(GetIsFriend(oPlayer, oPC)) + { + iMinDistance = 6; + iMaxDistance = 12; + } + oPlayer = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC, iCounter1); + } + //The purpose of the following local int is to cause the spawns + //to be facing the PC who generated the encounter. + SetLocalInt(oPC, "re_Facing", TRUE); + + object oEncounter = RandomEncounter(IntToFloat(strProps.iChanceOnRest), oPC, strProps.sCreatureTable, 0, 0, iMinDistance, iMaxDistance, 360, 0, 0, 0, strProps.iDifficulty); + /*if(GetIsObjectValid(oEncounter)) + { + //DeleteLocalInt(oPC, "re_resting"); + effect eEffect = GetFirstEffect(oPC); + while(GetIsEffectValid(eEffect)) + { + if(GetEffectType(eEffect) == EFFECT_TYPE_BLINDNESS && GetEffectCreator(eEffect) == GetModule()) RemoveEffect(oPC, eEffect); + eEffect = GetNextEffect(oPC); + } + }*/ + } +} diff --git a/gamma_age_v2/re_placespawnhb.ncs b/gamma_age_v2/re_placespawnhb.ncs new file mode 100644 index 00000000..8080194c Binary files /dev/null and b/gamma_age_v2/re_placespawnhb.ncs differ diff --git a/gamma_age_v2/re_placespawnhb.nss b/gamma_age_v2/re_placespawnhb.nss new file mode 100644 index 00000000..751a3164 --- /dev/null +++ b/gamma_age_v2/re_placespawnhb.nss @@ -0,0 +1,44 @@ +void main() +{ +if(!GetLocalInt(OBJECT_SELF, "re_BESIE")) + { + SetLocalInt(OBJECT_SELF, "re_BESIE", TRUE); + SetLocalString(OBJECT_SELF, "re_ToolType", "Placeable Spawner"); + } +if(GetLocalInt(GetModule(), "re_disablePlaceableSpawner") || GetLocalInt(GetArea(OBJECT_SELF), "re_disablePlaceableSpawner") || GetLocalInt(OBJECT_SELF, "re_disable")) return; +int iStartTime = GetFortitudeSavingThrow(OBJECT_SELF); +int iStopTime = GetReflexSavingThrow(OBJECT_SELF); +int iID = GetWillSavingThrow(OBJECT_SELF); +int iChanceOfSpawn = GetMaxHitPoints(OBJECT_SELF); +int iHappens = Random(10000) + 1; +object oObject; +string sTemplate = GetTag(OBJECT_SELF); +if(!GetLocalInt(OBJECT_SELF, "re_bFirstRun")) + { + iHappens = 0; + SetLocalInt(OBJECT_SELF, "re_bFirstRun", TRUE); + } +if(iStartTime > 23) iStartTime = 23; +if(iStopTime > 23) iStopTime = 23; +if((iStartTime <= iStopTime && (GetTimeHour() >= iStartTime && GetTimeHour() < iStopTime)) +|| (iStartTime >= iStopTime && (GetTimeHour() >= iStartTime || GetTimeHour() < iStopTime))) + { + if(!GetIsObjectValid(GetLocalObject(OBJECT_SELF, "re_oObject"))) + { + if(iChanceOfSpawn >= iHappens) + { + oObject = CreateObject(OBJECT_TYPE_PLACEABLE, sTemplate, GetLocation(OBJECT_SELF)); + SetLocalInt(oObject, "re_iID", iID); + SetLocalObject(OBJECT_SELF, "re_oObject", oObject); + } + } + } +else + { + if(GetIsObjectValid(GetLocalObject(OBJECT_SELF, "re_oObject"))) + { + DestroyObject(GetLocalObject(OBJECT_SELF, "re_oObject")); + DeleteLocalObject(OBJECT_SELF, "re_oObject"); + } + } +} diff --git a/gamma_age_v2/re_pwrespawnerhb.ncs b/gamma_age_v2/re_pwrespawnerhb.ncs new file mode 100644 index 00000000..d5d50347 Binary files /dev/null and b/gamma_age_v2/re_pwrespawnerhb.ncs differ diff --git a/gamma_age_v2/re_pwrespawnerhb.nss b/gamma_age_v2/re_pwrespawnerhb.nss new file mode 100644 index 00000000..61b870bd --- /dev/null +++ b/gamma_age_v2/re_pwrespawnerhb.nss @@ -0,0 +1,235 @@ +//::///////////////////////////////////////////////////////////////// +//:: FileName re_spawnerhb +//:: Copyright (c) 2001 Bioware Corp. +//::///////////////////////////////////////////////////////////////// +/* +This script is used in the heartbeat of the +BESIE Persistent World Respawner tool, part +of the BESIE Random Encounter System. +*/ +//::///////////////////////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 3-30-03 +//::///////////////////////////////////////////////////////////////// + +#include "re_rndenc" + +void main() +{ +// DEFINE VARIABLES + if(!GetLocalInt(OBJECT_SELF, "re_BESIE")) + { + SetLocalInt(OBJECT_SELF, "re_BESIE", TRUE); + SetLocalString(OBJECT_SELF, "re_ToolType", "PW Respawner"); + } + if(GetLocalInt(GetModule(), "re_disablePWRespawner") || GetLocalInt(GetArea(OBJECT_SELF), "re_disablePWRespawner") || GetLocalInt(OBJECT_SELF, "re_disable")) + { + if(!GetIsObjectValid(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner"))) SetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner", OBJECT_SELF); + if(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner") == OBJECT_SELF) CleanHouse(); + return; + } + int iRespawnTime = GetReflexSavingThrow(OBJECT_SELF); + int iLevel = GetFortitudeSavingThrow(OBJECT_SELF); + int iSpawnerNumber = GetWillSavingThrow(OBJECT_SELF); + int iCounter1; + int iCounter2 = 1; + int iCounter3; + float fChanceOfEncounter = IntToFloat(GetMaxHitPoints(OBJECT_SELF)) / 100; + string sTemplate = GetTag(OBJECT_SELF); + string sMatchString; + object oArea = GetArea(OBJECT_SELF); + object oCreature; + object oSpawner; + if(iSpawnerNumber > 99) iSpawnerNumber = 99; + if(iSpawnerNumber < 10) sMatchString = "PWS0" + IntToString(iSpawnerNumber); + else sMatchString = "PWS" + IntToString(iSpawnerNumber); + +// IF THIS IS THE FIRST RUN THEN INITIALIZE EACH SPAWN POINT BY PARSING THE TAG FOR SWITCHES AND SETTING +// LOCAL VARIABLES. + if(!GetLocalInt(OBJECT_SELF, "re_bFirstRun")) + { + SetLocalInt(OBJECT_SELF, "re_bFirstRun", TRUE); + SetLocalInt(OBJECT_SELF, "re_bSpawnNow", TRUE); + fChanceOfEncounter = 100.00; + object oObject = GetFirstObjectInArea(oArea); + string sCustom = "nil"; + string sBuild; + while(GetIsObjectValid(oObject)) + { + if(GetStringLeft(GetTag(oObject), 5) == sMatchString) + { + iCounter1++; + SetLocalObject(OBJECT_SELF, "re_oPWWaypoint" + IntToString(iCounter1), oObject); + for(iCounter3 = 5; iCounter3 <= GetStringLength(GetTag(oObject)); iCounter3++) + { + if(sCustom != "nil" + && (GetSubString(GetTag(oObject), iCounter3, 1) == "0" || StringToInt(GetSubString(GetTag(oObject), iCounter3, 1)) > 0)) + { + sBuild = sBuild + GetSubString(GetTag(oObject), iCounter3, 1); + } + else if(sCustom != "nil") + { + if(sCustom == "s") SetLocalInt(oObject, "re_bSwitch" + sBuild, TRUE); + if(sCustom == "b") + { + int iBegin = StringToInt(sBuild); + if(iBegin > 23) iBegin = 23; + if(iBegin < 0) iBegin = 0; //Don't think this is necessary, but... safety first! + SetLocalInt(oObject, "re_iBegin", iBegin); + } + if(sCustom == "e") + { + int iEnd = StringToInt(sBuild); + if(iEnd > 23) iEnd = 23; + if(iEnd < 0) iEnd = 0; + SetLocalInt(oObject, "re_iEnd", iEnd); + } + if(sCustom == "t") + { + SetLocalInt(oObject, "re_iTerritory", StringToInt(sBuild)); + if(GetLocalInt(oObject, "re_iTerritory") < 30) SetLocalInt(oObject, "re_iTerritory", 30); + } + sCustom = "nil"; + sBuild = ""; + } + if(GetSubString(GetTag(oObject), iCounter3, 1) == "s" + || GetSubString(GetTag(oObject), iCounter3, 1) == "t" + || GetSubString(GetTag(oObject), iCounter3, 1) == "b" + || GetSubString(GetTag(oObject), iCounter3, 1) == "e") + { + sCustom = GetSubString(GetTag(oObject), iCounter3, 1); + } + } + } + oObject = GetNextObjectInArea(oArea); + } + SetLocalInt(OBJECT_SELF, "re_iTotalSpawnpoints", iCounter1); + } + +// CYCLE THROUGH THE SPAWN POINTS. + for(iCounter2 = 1; iCounter2 <= GetLocalInt(OBJECT_SELF, "re_iTotalSpawnpoints"); iCounter2++) + { + oSpawner = GetLocalObject(OBJECT_SELF, "re_oPWWaypoint" + IntToString(iCounter2)); + oCreature = GetLocalObject(oSpawner, "re_oLastRandomEncounterSpawned"); + int bTimeIn = TRUE; + struct RndEncProperties stEncProperties = GetRndEncProperties(oSpawner); + if(!stEncProperties.bInitialized) stEncProperties = GetRndEncProperties(GetArea(OBJECT_SELF)); + if(!stEncProperties.bInitialized) stEncProperties = GetRndEncProperties(GetModule()); + if(!iLevel) SetRndEncProperties(oSpawner, stEncProperties.iDifficulty, FALSE, stEncProperties.sCreatureTable, stEncProperties.iLifeTime, stEncProperties.iMph, stEncProperties.iEncounterType, stEncProperties.bConflict, stEncProperties.iChanceOnRest, stEncProperties.bLOSCheck); + else SetRndEncProperties(oSpawner, stEncProperties.iDifficulty, TRUE, stEncProperties.sCreatureTable, stEncProperties.iLifeTime, stEncProperties.iMph, stEncProperties.iEncounterType, stEncProperties.bConflict, stEncProperties.iChanceOnRest, stEncProperties.bLOSCheck); + if(GetLocalInt(oSpawner, "re_iBegin") || GetLocalInt(oSpawner, "re_iEnd")) + { + int iStartTime = GetLocalInt(oSpawner, "re_iBegin"); + int iStopTime = GetLocalInt(oSpawner, "re_iEnd"); + if((iStartTime <= iStopTime && (GetTimeHour() >= iStartTime && GetTimeHour() < iStopTime)) + || (iStartTime >= iStopTime && (GetTimeHour() >= iStartTime || GetTimeHour() < iStopTime))) + bTimeIn = TRUE; + else bTimeIn = FALSE; + } + if(GetLocalInt(oSpawner, "re_bDay")) + { + if(GetIsDusk() || GetIsNight()) + { + DeleteLocalInt(oSpawner, "re_bDay"); + if(GetLocalInt(oSpawner, "re_bSwitch6")) fChanceOfEncounter = 100.0; + } + } + else + { + if(GetIsDawn() || GetIsDay()) + { + SetLocalInt(oSpawner, "re_bDay", TRUE); + if(GetLocalInt(oSpawner, "re_bSwitch5")) fChanceOfEncounter = 100.0; + } + } + // If the creature is dead or not valid then attempt to spawn him. + if(!GetIsObjectValid(oCreature) || GetIsDead(oCreature)) + { + if(!GetLocalInt(oSpawner, "re_TimeOfDeath")) SetLocalInt(oSpawner, "re_TimeOfDeath", GetTimeInSeconds()); + if((GetTimeInSeconds() - GetLocalInt(oSpawner, "re_TimeOfDeath")) / 60 >= iRespawnTime || GetLocalInt(OBJECT_SELF, "re_bSpawnNow")) + { + if((!GetLocalInt(oSpawner, "re_bSwitch5") && !GetLocalInt(oSpawner, "re_bSwitch6") && bTimeIn) + || (GetLocalInt(oSpawner, "re_bSwitch5") && (GetIsDawn() || GetIsDay()) && bTimeIn) + || (GetLocalInt(oSpawner, "re_bSwitch6") && (GetIsDusk() || GetIsNight()) && bTimeIn)) + { + oCreature = RandomEncounter(fChanceOfEncounter, oSpawner, sTemplate, 0, 1, 0, 0, 0, 0, 0, iLevel, 5); + if(GetIsObjectValid(oCreature)) + { + if(GetLocalInt(oSpawner, "re_bSwitch2")) AssignCommand(oCreature, ActionRandomWalk()); + if(GetLocalInt(oSpawner, "re_bSwitch3")) AssignCommand(oCreature, ActionPlayAnimation(ANIMATION_LOOPING_SIT_CROSS, 1.0, 4000.0)); + AssignCommand(oCreature, SetFacing(GetFacing(oSpawner))); + DeleteLocalInt(oSpawner, "re_TimeOfDeath"); + DeleteLocalInt(oCreature, "re_bRandomEncounter"); //This is so this creature isn't destroyed by the CleanHouse() function + } + } + } + } + else + { + location lLocation = GetLocation(oSpawner); + location lCreature = GetLocation(oCreature); + vector vLocation = GetPositionFromLocation(lLocation); + vector vCreature = GetPositionFromLocation(lCreature); + object oAttacker = GetLastHostileActor(oCreature); + location lAttacker = GetLocation(oAttacker); + + // Send the creature home if the territory switch is set and the creature is out of his territory + // and not in combat and not DM controlled. + if(GetLocalInt(oSpawner, "re_iTerritory") && GetDistanceBetweenLocations(lLocation, lCreature) > IntToFloat(GetLocalInt(oSpawner, "re_iTerritory"))) + { + if(!GetIsObjectValid(oAttacker) + || (!GetIsInCombat(oAttacker) && !GetIsPC(oCreature) && GetDistanceBetweenLocations(lLocation, lAttacker) > IntToFloat(GetLocalInt(oSpawner, "re_iTerritory")))) + { + AssignCommand(oCreature, ClearAllActions()); + AssignCommand(oCreature, JumpToLocation(lLocation)); + AssignCommand(oCreature, SetFacing(GetFacing(oSpawner))); + } + } + + // Things to do if creature is valid, alive, not in combat, and not DM controlled. + if(!GetIsInCombat(oCreature) && !GetIsPC(oCreature)) + { + float fDamage = IntToFloat(GetMaxHitPoints(oCreature) - GetCurrentHitPoints(oCreature)) / 5.0; + if(fDamage < 1.0 && fDamage > 0.0) fDamage = 1.0; + int iDamage = FloatToInt(fDamage); + if(GetLocalInt(oSpawner, "re_bSwitch5") && (GetIsDusk() || GetIsNight()) + || GetLocalInt(oSpawner, "re_bSwitch6") && (GetIsDawn() || GetIsDay()) + || !bTimeIn) + { + DestroyObject(oCreature); + } + if(vLocation.x != vCreature.x || vLocation.y != vCreature.y || GetFacing(oCreature) != GetFacing(oSpawner)) + { + if(!GetLocalInt(oSpawner, "re_bSwitch1")) + { + if(!GetLocalInt(oSpawner, "re_bSwitch2") || GetDistanceBetweenLocations(lLocation, lCreature) >= 15.0) + { + //AssignCommand(oCreature, ClearAllActions()); + if(GetLocalInt(oSpawner, "re_iTerritory")) AssignCommand(oCreature, ActionMoveToLocation(lLocation)); + else AssignCommand(oCreature, ActionMoveToLocation(lLocation)); + AssignCommand(oCreature, ActionDoCommand(SetFacing(GetFacing(oSpawner)))); + if(GetLocalInt(oSpawner, "re_bSwitch3")) AssignCommand(oCreature, ActionDoCommand(PlayAnimation(ANIMATION_LOOPING_SIT_CROSS, 1.0, 4000.0))); + } + } + } + if(lLocation == lCreature && GetFacing(oCreature) != GetFacing(oSpawner)) AssignCommand(oCreature, ActionDoCommand(SetFacing(GetFacing(oSpawner)))); + if(!GetLocalInt(oSpawner, "re_bSwitch4") && iDamage) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectHeal(iDamage), oCreature); + if(GetLocalInt(oSpawner, "re_bSwitch2")) AssignCommand(oCreature, ActionDoCommand(ActionRandomWalk())); + if(GetLocalInt(oSpawner, "re_bSwitch3")) + { + if(GetLocalInt(oSpawner, "re_bSwitch1")) + { + AssignCommand(oCreature, ClearAllActions()); + AssignCommand(oCreature, PlayAnimation(ANIMATION_LOOPING_SIT_CROSS, 1.0, 4000.0)); + } + else if(lLocation == lCreature) + { + AssignCommand(oCreature, ClearAllActions()); + AssignCommand(oCreature, PlayAnimation(ANIMATION_LOOPING_SIT_CROSS, 1.0, 4000.0)); + } + } + } + } + } + if(GetLocalInt(OBJECT_SELF, "re_bSpawnNow")) DeleteLocalInt(OBJECT_SELF, "re_bSpawnNow"); +} diff --git a/gamma_age_v2/re_rndenc.nss b/gamma_age_v2/re_rndenc.nss new file mode 100644 index 00000000..a65d656a --- /dev/null +++ b/gamma_age_v2/re_rndenc.nss @@ -0,0 +1,896 @@ +//:://///////////////////////////////////////////// +//:: Name re_rndenc +//:: FileName re_rndenc.nss +//:: Copyright (c) 2002 Raymond Miller +//::////////////////////////////////////////////// +/* +This script creates functions called RandomEncounter(), +CleanHouse(), and SetRndEncProperties() for use in the NWN +scripting language. This script is meant to be used as an #include +and is part of the BESIE Random Encounter package by Ray Miller +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 7/6/2002 +//::////////////////////////////////////////////// + +// Encounter Type Constants +int ENCOUNTER_TYPE_AREA = 3; +int ENCOUNTER_TYPE_PARTY = 1; +int ENCOUNTER_TYPE_IND = 2; +int ENCOUNTER_TYPE_TOTALPARTYLEVELS = 4; + +struct RndEncProperties + { + int bInitialized; + int iDifficulty; + int bConsiderCR; + string sCreatureTable; + int iLifeTime; + int iMph; + int iEncounterType; + int bConflict; + int iChanceOnRest; + int bLOSCheck; + }; + +// FUNCTION DECLARATIONS + +// Sets properties for random encounters that are likely to seldom change +// - oObject: The object that holds these properties. +// - iDifficulty: 1 to 10 +// - bConsiderCR: If TRUE takes CR of creature into consideration when +// choosing an encounter. +// - sCreatureTable: "re_***" - where *** is a string of letter and/or numbers to indicate to the function what type +// of creatures to spawn. They are as follows: +// a - animals +// c - construct +// d - dragon +// e - elemental +// g - giant +// h - humanoid +// i - insect +// m - miscellaneous +// p - planar +// u - undead +// b - bandit +// x1 through x### - These are for custom encounter tables. +// t1 through t### - These are for treasure tables. +// - iLifeTime: Time in seconds before unengaged encounters decay. +// - Mph: Should equal the Minutes Per Hour setting of the Module. +// - iEncounterType: +// ENCOUNTER_TYPE_PARTY - Takes into consideration the average level of the entire party of the PC who is to +// receive the encounter when choosing an encounter of appropriate difficulty level. +// ENCOUNTER_TYPE_TOTALPARTYLEVELS (default) - Takes into consideration the TOTAL of all the levels of the PC's party who +// currently reside in the same area as the PC to receive the encounter. +// ENCOUNTER_TYPE_AREA - Takes into consideration the levels off all PCs and henchmen within a 20m radius of the PC +// who is to receive the encounter. +// ENCOUNTER_TYPE_IND - Takes into consideration only the levels of the individual PC who is to receive the encounter. +// - bConflict: If set to TRUE then random encounters can occur during combat. +// - iChanceOnRest: The chance of a random encounter occuring when a PC rests (only matters on Area Object and the "re_onrest" +// script must be placed in PlayerOnRest handler of the module object). +// - bLOSCheck: Dependant upon a broken scripting function. (future use!) +// Note: This function is best called by the OnModuleLoad or OnAreaLoad handler. +void SetRndEncProperties(object oObject = OBJECT_SELF, int iDifficulty = 4, int bConsiderCR = TRUE, string sCreatureTable = "re_ceghimpubt0", int iLifeTime = 180, int iMph = 2, int iEncounterType = 4, int bConflict = FALSE, int iChanceOnRest = 20, int bLOSCheck = FALSE); + +// Returns the structure "RndEncProperties" containing all the Random Encounter Properties set on oObject. +// The elements of the structure are as follows: +// - bInitialized: TRUE if properties have been set on this object. +// - iDifficulty: 1 to 10 +// - bConsiderCR: If TRUE, takes CR of creature into consideration when +// choosing an encounter. +// - sCreatureTable: "re_***" - where *** is a string of letter and/or numbers to indicate to the function what type +// of creatures to spawn. They are as follows: +// a - animals +// c - construct +// d - dragon +// e - elemental +// g - giant +// h - humanoid +// i - insect +// m - miscellaneous +// p - planar +// u - undead +// b - bandit +// x1 through x### - These are for custom encounter tables. +// t1 through t### - These are for treasure tables. +// - iLifeTime: Time in seconds before unengaged encounters decay. +// - iMph: Should equal the Minutes Per Hour setting of the Module. +// - iEncounterType: +// ENCOUNTER_TYPE_PARTY - Takes into consideration the average level of the entire party of the PC who is to +// receive the encounter when choosing an encounter of appropriate difficulty level. +// ENCOUNTER_TYPE_TOTALPARTYLEVELS (default) - Takes into consideration the TOTAL of all the levels of the PC's party who +// currently reside in the same area as the PC to receive the encounter. +// ENCOUNTER_TYPE_AREA - Takes into consideration the levels off all PCs and henchmen within a 20m radius of the PC +// who is to receive the encounter. +// ENCOUNTER_TYPE_IND - Takes into consideration only the levels of the individual PC who is to receive the encounter. +// - bConflict: If TRUE then random encounters can occur during combat. +// - iChanceOnRest: The chance of a random encounter occuring when a PC rests (only matters on Area Object and the "re_onrest" +// script must be placed in PlayerOnRest handler of the module object). +// - bLOSCheck: Dependant upon a broken scripting function. (future use!) +struct RndEncProperties GetRndEncProperties(object oObject); + +// Generates the likelihood of a random encounter. +// - fChanceOfEncounter: Odds of encounter spawning when funciton is called. Accurate to two +// decimal places. .01 to 100.00 percent chance. +// - oEncounterObject: The object about which the encounter will spawn, whose levels (if a player) +// will be considered when determining an appropriate creature. +// - sTemplate: When used as the sCreatureTable parameter in the SetRndEncProperties() +// function this parameter has higher priority. It can also be set to the tag of a +// specific creature, or to "random" to use the default table set by SetRndEncProperties() +// - iMinNumberOfCreatures: If > 0, a random number of creatures between this and iMaxNumberOfCreatures +// will spawn. If set to 0, then exactly the number of creatures set by iMaxNumberOfCreatures will +// spawn. +// - iMaxNumberOfCreatures: If this and iMinNumberOfCreatures is set to 0 then the number of Creatures +// spawned will be determined by the CR of the creature spawned compared to the levels of the player(s). +// - iMinEncounterDistance: If set to 0, encounter distance will always be at the number set by iMaxEncounterDistance. +// - iMaxEncounterDistance: Farthest distance the encounter can be from oEncounterObject. +// - iOrientation: 0 to 360. Counterclockwise representing the angle from facing where the encounter will spawn. +// a value of 0 will spawn the encounter directly in front of oEncounterObject. 360 will generate a random angle. +// - iTolerance: The number of degrees by which the angle can randomly be off from iOrientation. +// - iCheckDistance: The distance a PC has to move before a Random Encounter check can be made against him. If the PC has +// not covered this much distance, then a call to the RandomEncounter() function for this PC will yield +// OBJECT_INVALID. +// - iLevelOverride: Use this to force the function to base the encounter on a character level other than that +// determined by oEncounterObject. +// - iDifficulty: Overrides the difficulty setting determined by the SetRndEncProperties() function. +object RandomEncounter(float fChanceOfEncounter = 100.0, object oEncounterObject = OBJECT_SELF, string sTemplate = "random", int iMinNumberOfCreatures = 0, int iMaxNumberOfCreatures = 0, int iMinEncounterDistance = 1, int iMaxEncounterDistance = 15, int iOrientation = 360, int iTolerance = 0, int iCheckDistance = 0, int iLevelOverride = 0, int iDifficulty = 0); + +// Used to "clean up" an area that has become littered by random encounters. +// - bDestroyPlotItems - Tells the function whether or not to destroy items with their plot flags set. If set to TRUE, +// plot items will be destroyed just like any other item. +// - oArea - The area to clean up. +// - iSpawnOverride - Overrides the default (set by the SetRndEncProperties() function) time to destroy random encounter +// creatures who are not engaged by PCs. +// - iItemOverride - Overrides the default time of 30 minutes after which to destroy items dropped by PCs +// Note: Only works if the "re_moditemdrop" script included with the BESIE Random Encounter package +// is placed in the module OnItemUnacquire handler. +// - iBodyBagOverride - Overrides the default time of 5 minutes after which to destroy loot that was dropped by creatures +// who were killed. +// NOTE: If there is bDestroyPlotItems is FALSE and there is a plot item or items inside a container or body bag, the container +// and all non-plot items will decay but the plot item(s) will be left. +// NOTE: A value of zero assigned to the override parameters will cause the function to use the default value for that parameter. +void CleanHouse(int bDestroyPlotItems = FALSE, object oArea = OBJECT_SELF, int iSpawnOverride = 0, int iItemOverride = 0, int iBodyBagOverride = 0); + +// Returns the game's calander time in seconds since time zero. +// - iMph: Minutes Per Hour. This should match the module's setting. +int GetTimeInSeconds(int iMph = 2); + +// Causes oCreature to walk to a randomly determined location. +// - lCenter: The center of a circle in which random destinations can be generated. +// - iDistance: The distance from lCenter in which to randomly generate destinations. +// - oCreature: The creature to perform the random walk. +// Note: Unlike the default RandomWalk function, this function does not persist until a ClearAllActions is called. Instead this +// function generates a single random desitination and the move to that destination is added to the creatures action que only once +// per call. +location RandomWalk2(location lCenter, int iDistance = 20, object oCreature = OBJECT_SELF); + +void SetRndEncProperties(object oObject = OBJECT_SELF, int iDifficulty = 4, int bConsiderCR = TRUE, string sCreatureTable = "re_ceghimpubt0", int iLifeTime = 180, int iMph = 2, int iEncounterType = 4, int bConflict = TRUE, int iChanceOnRest = 20, int bLOSCheck = FALSE) +{ + SetLocalInt(oObject, "re_bInitialized", TRUE); + SetLocalInt(oObject, "re_iDifficulty", iDifficulty); + SetLocalInt(oObject, "re_bConsiderCR", bConsiderCR); + SetLocalString(oObject, "re_sCreatureTable", sCreatureTable); + SetLocalInt(oObject, "re_iLifeTime", iLifeTime); + SetLocalInt(oObject, "re_iMph", iMph); + SetLocalInt(oObject, "re_iEncounterType", iEncounterType); + SetLocalInt(oObject, "re_bConflict", bConflict); + SetLocalInt(oObject, "re_iChanceOnRest", iChanceOnRest); + SetLocalInt(oObject, "re_bLOSCheck", bLOSCheck); +} + +struct RndEncProperties GetRndEncProperties(object oObject = OBJECT_SELF) +{ + if(oObject == GetModule() && !GetLocalInt(GetModule(), "re_bInitialized")) SetRndEncProperties(GetModule()); + struct RndEncProperties strProps; + strProps.bInitialized = GetLocalInt(oObject, "re_bInitialized"); + strProps.iDifficulty = GetLocalInt(oObject, "re_iDifficulty"); + strProps.bConsiderCR = GetLocalInt(oObject, "re_bConsiderCR"); + strProps.sCreatureTable = GetLocalString(oObject, "re_sCreatureTable"); + strProps.iLifeTime = GetLocalInt(oObject, "re_iLifeTime"); + strProps.iMph = GetLocalInt(oObject, "re_iMph"); + strProps.iEncounterType = GetLocalInt(oObject, "re_iEncounterType"); + strProps.bConflict = GetLocalInt(oObject, "re_bConflict"); + strProps.iChanceOnRest = GetLocalInt(oObject, "re_iChanceOnRest"); + strProps.bLOSCheck = GetLocalInt(oObject, "re_bLOSCheck"); + return strProps; +} + +#include "re_table" +object RandomEncounter(float fChanceOfEncounter = 100.0, object oEncounterObject = OBJECT_SELF, string sTemplate = "random", int iMinNumberOfCreatures = 0, int iMaxNumberOfCreatures = 0, int iMinEncounterDistance = 1, int iMaxEncounterDistance = 15, int iOrientation = 360, int iTolerance = 0, int iCheckDistance = 0, int iLevelOverride = 0, int iDifficulty = 0) +{ +// IF PROPERTIES ARE NOT SET ON MODULE OBJECT THEN SET THEM WITH DEFAULTS + if(!GetLocalInt(GetModule(), "re_bInitialized")) + { + SetRndEncProperties(GetModule()); + } + +// DETERMINE IF ENCOUNTER HAPPENS + //Has the player moved farther than the CheckDistance? + float fTravelDistance; + if(GetIsPC(oEncounterObject)) + { + if(!GetLocalInt(oEncounterObject, "re_bOldLocationSet")) + { + SetLocalInt(oEncounterObject, "re_bOldLocationSet", TRUE); + SetLocalLocation(oEncounterObject, "re_lOldLocation", GetLocation(oEncounterObject)); + if(iCheckDistance) return OBJECT_INVALID; + } + if(GetDistanceBetweenLocations(GetLocation(oEncounterObject), GetLocalLocation(oEncounterObject, "re_lOldLocation")) < 0.0) + { + SetLocalLocation(oEncounterObject, "re_lOldLocation", GetLocation(oEncounterObject)); + if(iCheckDistance) return OBJECT_INVALID; + } + fTravelDistance = GetDistanceBetweenLocations(GetLocation(oEncounterObject), GetLocalLocation(oEncounterObject, "re_lOldLocation")); + SetLocalFloat(oEncounterObject, "re_fTravelDistance", GetLocalFloat(oEncounterObject, "re_fTravelDistance") + fTravelDistance); + SetLocalLocation(oEncounterObject, "re_lOldLocation", GetLocation(oEncounterObject)); + if(GetLocalFloat(oEncounterObject, "re_fTravelDistance") >= IntToFloat(iCheckDistance)) DeleteLocalFloat(oEncounterObject, "re_fTravelDistance"); + else return OBJECT_INVALID; + } + // The following two lines allow for a chance of encounter with a precision of up to + // two decimal places. ie. 100.00. An encounter can have as little as a 0.01 chance + // of occuring. + int iHappens = Random(10000)+1; + int iChanceOfEncounter = FloatToInt(fChanceOfEncounter * 100); + if(iChanceOfEncounter < iHappens) + { + return OBJECT_INVALID; + } + //Are encounters disabled for this player? + if(GetLocalInt(GetModule(), "re_" + GetPCPlayerName(oEncounterObject))) + { + return OBJECT_INVALID; + } + //Are random encounters disabled altogether? + if(GetLocalInt(GetModule(), "re_disable")) + { + return OBJECT_INVALID; + } + //Is the player in combat with bConflict equal to false? + object oHolder; + int iCounter7 = 1; // Used in checking for nearby enemies. + if(GetLocalInt(oEncounterObject, "re_bInitialized")) oHolder = oEncounterObject; + else if(GetLocalInt(GetArea(oEncounterObject), "re_bInitialized")) oHolder = GetArea(oEncounterObject); + else oHolder = GetModule(); + int bConflict = GetLocalInt(oHolder, "re_bConflict"); + if(!bConflict && GetIsPC(oEncounterObject)) + { + if(GetIsInCombat(oEncounterObject)) return OBJECT_INVALID; + object oNearest = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oEncounterObject, iCounter7); + while(GetIsObjectValid(oNearest) && GetDistanceToObject(oNearest) < 35.0) + { + if(GetIsEnemy(oNearest) && (GetIsInCombat(oNearest) || GetObjectSeen(oNearest))) return OBJECT_INVALID; + iCounter7++; + oNearest = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oEncounterObject, iCounter7); + } + } + //Are any nearby party members in a conversation? + object oAmIAPC; + oAmIAPC = GetFirstObjectInShape(SHAPE_SPHERE, 35.0, GetLocation(oEncounterObject), FALSE, OBJECT_TYPE_CREATURE); + if(GetIsObjectValid(oAmIAPC)) + { + while(GetIsObjectValid(oAmIAPC)) + { + if(GetIsPC(oAmIAPC)) + { + if(GetFactionEqual(oEncounterObject, oAmIAPC)) + { + if(IsInConversation(oAmIAPC)) + { + return OBJECT_INVALID; + } + } + } + oAmIAPC = GetNextObjectInShape(SHAPE_SPHERE, 25.0, GetLocation(oEncounterObject), FALSE, OBJECT_TYPE_CREATURE); + } + } + +// DECLARE AND INITIALIZE VARIABLES + object oMod = GetModule(); + int iMph; + if(!iDifficulty) iDifficulty = GetLocalInt(oHolder, "re_iDifficulty"); + int bConsiderCR = GetLocalInt(oHolder, "re_bConsiderCR"); + if(GetStringLowerCase(sTemplate) == "random") sTemplate = GetLocalString(GetModule(), "re_sCreatureTable"); + int iLifeTime = GetLocalInt(oHolder, "re_iLifeTime"); + if(!GetLocalInt(oHolder, "re_iMph")) iMph = 2; + else iMph = GetLocalInt(oHolder, "re_iMph"); + int bLOSCheck = GetLocalInt(oHolder, "re_bLOSCheck"); + int iEncounterType = GetLocalInt(oHolder, "re_iEncounterType"); + int iCounter1 = 1; // Used to count the creatures when spawning them. + int iCounter2 = 1; // Used in loop to set difficulty level. + int iCounter3 = 1; // Used in loop to check line of sight float fEncounterDistance (future use!). + int iCounter4;// Used in determining the PC to spawn the encounter if the encounter object passed is an area or the module. + int iCounter5; // Used in determining treasure table. + int iCounter6; // Used in giving treasure. + int iNumberOfCreatures; + int iEncounterDistance; + int iFacingSameWay; + int iLevels; + int iTableNumber; + int bNumberByLevel = FALSE; + int bNoEncounter = FALSE; + int bComplete1 = FALSE; + int bComplete2 = FALSE; + int bTreasure; + float fMinCR; + float fMaxCR; + float fEncounterDistance; + float fNewEncounterDistance; + float fCreatureFacing; + float fEncounterAngle; + float fEncounterVector; + float fAngleOffset; + float fLevels; + float fDifficulty = 0.167; + string sBuild; + string sTreasure = sTemplate; + vector vEncounterVector; + vector vVectorOffset; + vector vCreatureVector; + object oObject; + object oCreature; + object oArea; + if(oEncounterObject == GetModule()) + { + oAmIAPC = GetFirstPC(); + while(GetIsObjectValid(oAmIAPC)) + { + if(!GetLocalInt(GetModule(), "re_" + GetPCPlayerName(oAmIAPC))) + { + SetLocalObject(oMod, "re_oEncounterObject" + IntToString(iCounter4), oAmIAPC); + iCounter4++; + } + oAmIAPC = GetNextPC(); + } + oEncounterObject = GetLocalObject(oMod, "re_oEncounterObject" + IntToString(Random(iCounter4))); + } + else if(GetObjectType(oEncounterObject) == 0 && oEncounterObject != GetModule()) + { + oArea = oEncounterObject; + oAmIAPC = GetFirstObjectInArea(oArea); + while(GetIsObjectValid(oAmIAPC)) + { + if(GetIsPC(oAmIAPC) && !GetLocalInt(GetModule(), "re_" + GetPCPlayerName(oAmIAPC))) + { + SetLocalObject(oArea, "re_oEncounterObject" + IntToString(iCounter4), oAmIAPC); + iCounter4++; + } + oAmIAPC = GetNextObjectInArea(oArea); + } + oEncounterObject = GetLocalObject(oArea, "re_oEncounterObject" + IntToString(Random(iCounter4))); + } + else + { + oArea = GetArea(oEncounterObject); + } + if(!GetIsPC(oEncounterObject)) + iEncounterType = ENCOUNTER_TYPE_AREA; + location lCreatureLocation; + vector vEncounterObjectVector = GetPosition(oEncounterObject); + int iMin = 60; + int iHr = iMin * iMph; + int iDay = iHr * 24; + int iMth = iDay * 28; + int iYr = iMth * 12; + if(iDifficulty > 10) + { + iDifficulty = 10; + } + if(iDifficulty == 0) + { + iDifficulty = GetGameDifficulty() * 2; + } + while(iCounter2 <= iDifficulty) + { + fDifficulty = fDifficulty * 1.5; + iCounter2++; + } + +// ERROR CORRECTION + if(iMaxNumberOfCreatures < iMinNumberOfCreatures) + { + iMaxNumberOfCreatures = iMinNumberOfCreatures; + } + if(iMaxEncounterDistance < iMinEncounterDistance) + { + iMaxEncounterDistance = iMinEncounterDistance; + } + if(!GetIsPC(oEncounterObject)) + { + iEncounterType = ENCOUNTER_TYPE_AREA; + } + +// CHECK TO SEE IF PC IS RESTING VIA THE BESIE "re_onrest" SCRIPT AND IF SO +// REMOVE RESTING EFFECTS. + if(GetIsPC(oEncounterObject) && GetLocalInt(oEncounterObject, "re_resting")) + { + DeleteLocalInt(oEncounterObject, "re_resting"); + effect eEffect = GetFirstEffect(oEncounterObject); + while(GetIsEffectValid(eEffect)) + { + if(GetEffectType(eEffect) == EFFECT_TYPE_BLINDNESS && GetEffectCreator(eEffect) == GetModule()) RemoveEffect(oEncounterObject, eEffect); + if(GetEffectType(eEffect) == VFX_IMP_SLEEP && GetEffectCreator(eEffect) == GetModule()) RemoveEffect(oEncounterObject, eEffect); + eEffect = GetNextEffect(oEncounterObject); + } + } + +// DETERMINE THE ANGLE OFFSET OF THE SPAWN + if(iOrientation == 360) + { + fEncounterAngle = IntToFloat(Random(360)); + } + else + { + fEncounterAngle = GetFacingFromLocation(GetLocation(oEncounterObject)) + IntToFloat(iOrientation); + fEncounterAngle = (fEncounterAngle + (IntToFloat(iTolerance) * 0.5)) - (IntToFloat(Random(iTolerance))); + } + +// DETERMINE THE DISTANCE FROM THE SPAWNING OBJECT + if(iMinEncounterDistance == 0) + { + iMinEncounterDistance = iMaxEncounterDistance; + fEncounterDistance = IntToFloat(iMaxEncounterDistance); + } + else + { + fEncounterDistance = IntToFloat(iMinEncounterDistance + Random((iMaxEncounterDistance - iMinEncounterDistance) + 1)); + } + iEncounterDistance = FloatToInt(fEncounterDistance); + +// DETERMINE THE FACING OF THE SPAWN + if(GetLocalInt(oEncounterObject, "re_Facing")) + { + fCreatureFacing = fEncounterAngle + 180.0; + iFacingSameWay = TRUE; + DeleteLocalInt(oEncounterObject, "re_Facing"); + } + else + { + fCreatureFacing = IntToFloat(Random(360)); + iFacingSameWay = Random(2); // Note: If there is more than one creature there is a 50% chance they will all be facing the same direction + } + +// DETERMINE TOTAL CHARACTER LEVELS TO CONSIDER WHEN CHOOSING A CREATURE +// AND/OR DETERMINING THE NUMBER OF CREATURES TO SPAWN. + // If the variable iEncounterType is AREA, this routine + // determines the total character levels + // based upon the character levels of all PCs + // in a 20 meter radius around the object that spawned + // the encounter. + // Later on the total character levels will be compared to + // the challenge rating of the creature spawned, and a number + // of creatures will be determined from that comparison. + if(iEncounterType == ENCOUNTER_TYPE_AREA) + { + oAmIAPC = GetFirstObjectInShape(SHAPE_SPHERE, 20.0, GetLocation(oEncounterObject), FALSE, OBJECT_TYPE_CREATURE); + while(GetIsObjectValid(oAmIAPC)) + { + if(GetIsPC(oAmIAPC)) + { + iLevels = iLevels + GetLevelByPosition(1, oAmIAPC) + GetLevelByPosition(2, oAmIAPC) + GetLevelByPosition(3, oAmIAPC); + if(GetIsObjectValid(GetHenchman(oAmIAPC))) + { + iLevels = iLevels + GetLevelByPosition(1, GetHenchman(oAmIAPC)) + GetLevelByPosition(2, GetHenchman(oAmIAPC)) + GetLevelByPosition(3, GetHenchman(oAmIAPC)); + } + } + oAmIAPC = GetNextObjectInShape(SHAPE_SPHERE, 20.0, GetLocation(oEncounterObject), FALSE, OBJECT_TYPE_CREATURE); + } + } + else if(iEncounterType == ENCOUNTER_TYPE_PARTY) + { + iLevels = GetFactionAverageLevel(oEncounterObject); + } + else if(iEncounterType == ENCOUNTER_TYPE_TOTALPARTYLEVELS) + { + oObject = GetFirstFactionMember(oEncounterObject); + while(GetIsObjectValid(oObject)) + { + if(GetArea(oObject) == GetArea(oEncounterObject)) + { + iLevels = iLevels + GetLevelByPosition(1, oObject) + GetLevelByPosition(2, oObject) + GetLevelByPosition(3, oObject); + } + oObject = GetNextFactionMember(oEncounterObject); + } + } + else + { + // If the variable iEncounterType is set to IND, this + // routine determines the total character levels based upon the + // character level of the object that spawned the encounter. + // if the object that spawned the encounter is NOT a PC then + // the number of creatures spawned will be one. This shouldn't + // happen since the the encounter type sets itself to AREA if + // the encounter object is a placeable. + if(GetIsPC(oEncounterObject)) + { + iLevels = GetLevelByPosition(1, oEncounterObject) + GetLevelByPosition(2, oEncounterObject) + GetLevelByPosition(3, oEncounterObject); + } + } + // Modify the float representing the total levels by the difficulty level. + if(iLevelOverride) + { + iLevels = iLevelOverride; + } + fLevels = IntToFloat(iLevels) * fDifficulty; + +// CHOOSE A CREATURE TO SPAWN + if(GetStringLowerCase(sTemplate) == "random" || GetStringLowerCase(GetStringLeft(sTemplate, 3)) == "re_") + { + if(GetStringLowerCase(GetStringLeft(sTemplate, 3)) == "re_") + { + sTemplate = GetStringRight(sTemplate, GetStringLength(sTemplate) - 3); + } + if(fLevels < 0.25) + { + fMaxCR = 0.25; + } + else + { + fMaxCR = fLevels; + } + fMinCR = IntToFloat(FloatToInt(fMaxCR * 0.3)); + //If there is a definative number of creatures to spawn passed to + //the RandomEncounter function when it is called, then do not + //allow as much play in the low end, and a little more in the + // high end challange ratings. + if(iMinNumberOfCreatures == 0 && iMaxNumberOfCreatures > 1) + { + fMinCR = IntToFloat(FloatToInt(fMaxCR * 0.4)); + fMaxCR = fMaxCR * 1.2; + fMinCR = IntToFloat(FloatToInt(fMinCR)); + } + if(iMinNumberOfCreatures == 0 && iMaxNumberOfCreatures == 1) + { + fMinCR = IntToFloat(FloatToInt(fMaxCR * 0.6)); + fMaxCR = fMaxCR * 1.2; + fMinCR = IntToFloat(FloatToInt(fMinCR));// Round off the CR. + } + if(GetLocalInt(oHolder, "re_bConsiderCR") == FALSE) + { + fMaxCR = 9999.0; + fMinCR = 0.0; + } + sTemplate = GetRndEncCreature(fMinCR, fMaxCR, sTemplate); + if(sTemplate == "") return OBJECT_INVALID; + } + +// DETERMINE IF CREATURE IS TO HAVE TREASURE AND WHAT TABLES TO USE + if(GetLocalString(oMod, "re_s2DATreasure") != "") + { + sTreasure = GetLocalString(oMod, "re_s2DATreasure"); + DeleteLocalString(oMod, "re_s2DATreasure"); + } + for(iCounter5 = 0; iCounter5 <= GetStringLength(sTreasure); iCounter5++) + { + if(bTreasure + && (GetSubString(sTreasure, iCounter5, 1) == "0" || StringToInt(GetSubString(sTreasure, iCounter5, 1)) > 0)) + { + sBuild = sBuild + GetSubString(sTreasure, iCounter5, 1); + } + else if(bTreasure) + { + iTableNumber++; + SetLocalString(OBJECT_SELF, "re_sTreasureTable" + IntToString(iTableNumber), sBuild); + bTreasure = FALSE; + sBuild = ""; + } + if(GetStringLowerCase(GetSubString(sTreasure, iCounter5, 1)) == "t") + { + bTreasure = TRUE; + } + } + +// DETERMINE LOCATION AND SPAWN ONE CREATURE + // NOTE: Line Of Sight checks have a bug. Bioware says they are looking + // into the bug. I have spent an ungodly amount of hours trying to come + // up with an acceptable work-around to the Line Of Sight functionality + // of Get**ObjectInShape(). Unless somebody else can come up with a working + // LOS check, I have no choice but to disregard LOS checks until they are + // fixed. + // + // if(LOSCheck = TRUE) + // { + // + // } + // + // note: one creature is spawned in now so its challange rating can be + // used to determine if more are needed. (if that option is set) + vEncounterVector = AngleToVector(fEncounterAngle); + vVectorOffset = vEncounterVector * fEncounterDistance; + vCreatureVector = vEncounterObjectVector + vVectorOffset; + lCreatureLocation = Location(oArea, vCreatureVector, fCreatureFacing); + oCreature = CreateObject(OBJECT_TYPE_CREATURE, sTemplate, lCreatureLocation, FALSE); + +// VERIFY THE RESREF OF THE SPAWNED CREATURE AGAINST THE TEMPLATE AND RETURN AN ERROR IF THEY DO NOT MATCH + if(GetStringLowerCase(GetResRef(oCreature)) != GetStringLowerCase(sTemplate)) + { + string sError = "BESIE Error: " + sTemplate + " does not match the blueprint of a valid creature object!"; + DestroyObject(oCreature); + if(GetIsPC(oEncounterObject)) SendMessageToPC(oEncounterObject, sError); + else + { + object oPC = GetFirstPC(); + while(GetIsObjectValid(oPC)) + { + if(GetArea(oPC) == GetArea(oEncounterObject)) SendMessageToPC(oPC, sError); + oPC = GetNextPC(); + } + } + SendMessageToAllDMs(sError); + WriteTimestampedLogEntry(sError); + return OBJECT_INVALID; + } + +// DETERMINE THE NUMBER OF ADDITIONAL CREATURES TO SPAWN. + // If the min and max number of creatures in the function call are zero + // then get the min and max number from the local variables in the module + // object. + if(iMinNumberOfCreatures == 0 && iMaxNumberOfCreatures == 0) + { + iMinNumberOfCreatures = GetLocalInt(oMod, "re_iMinNumberOfCreatures"); + iMaxNumberOfCreatures = GetLocalInt(oMod, "re_iMaxNumberOfCreatures"); + } + // Now that we are done with these local integers, we need to clean reset + // them to their defaults so we don't accidentally use old numbers later. + SetLocalInt(oMod, "re_iMinNumberOfCreatures", 0); + SetLocalInt(oMod, "re_iMaxNumberOfCreatures", 0); + if(iMinNumberOfCreatures == 0 && iMaxNumberOfCreatures != 0) + { + iNumberOfCreatures = iMaxNumberOfCreatures; + } + if(iMinNumberOfCreatures != 0 && iMaxNumberOfCreatures != 0) + { + iNumberOfCreatures = iMinNumberOfCreatures + Random((iMaxNumberOfCreatures - iMinNumberOfCreatures) + 1); + } + if(iMinNumberOfCreatures == 0 && iMaxNumberOfCreatures == 0) + { + // This is the routine that sets the number of creatures to spawn + // based on their challenge rating and the total character levels. + // It chooses a random number between one half (truncated) and 120 + // percent (1 for every 4) of the number of creatures ideal for the + // difficulty level set. + iMaxNumberOfCreatures = FloatToInt(fLevels / GetChallengeRating(oCreature)); + iMinNumberOfCreatures = FloatToInt(IntToFloat(iMaxNumberOfCreatures) * 0.5); + iMaxNumberOfCreatures = FloatToInt(IntToFloat(iMaxNumberOfCreatures) * 1.25); + + //These lines were added with the v1.7 release because I noticed a situation where characters of + //up to level 4 would still spawn orcs, goblins and other < CR1 creatures but they would + //spawn a rediculous amount of them because of the low CR/LV ratio. This is just to eliminate + //that. + if(iMinNumberOfCreatures > 8) iMinNumberOfCreatures = 8; + if(iMaxNumberOfCreatures > 9) iMaxNumberOfCreatures = 9; + + iNumberOfCreatures = iMinNumberOfCreatures + Random((iMaxNumberOfCreatures - iMinNumberOfCreatures) + 1); + if((iNumberOfCreatures < 1) && (iLevels > 0)) + { + iNumberOfCreatures = 1; + } + } + +// SPAWN THOSE SUCKERS! + while(iCounter1 <= iNumberOfCreatures) + { + // Stick some labels on the creature for record keeping and reference (future use!) + SetLocalInt(oCreature, "re_bRandomEncounter", TRUE); + SetLocalObject(oCreature, "re_oRandomEncounterSpawner", oEncounterObject); + SetLocalInt(oCreature, "re_iRandomEncounterCounter", 1); + SetLocalInt(oCreature, "re_iRandomEncounterSpawnTime", (GetCalendarYear() * iYr) + (GetCalendarMonth() * iMth) + (GetCalendarDay()* iDay) + (GetTimeHour()* iHr) + (GetTimeMinute() * iMin) + GetTimeSecond()); + SetLocalInt(oCreature, "re_iRandomEncounterLifeTime", iLifeTime); + /*------------------------- + This routine was removed in v1.8 because the standard treasure tables were removed and replaced + with a routine that simply awards an appropriate amount of coin. + if(!GetLocalInt(GetModule(), "re_standardtable") + || (GetLocalInt(GetModule(), "re_standardtable") && iCounter1 < 4)) + // The preceding if statement looks for a local variable set by the + // standard treasure table included with BESIE. If this variable is + // set then it halts execution of the treasure script after the first + // 3 creatures. This prevents a Too Many Instructions error. + { + DeleteLocalInt(GetModule(), "re_standardtable"); //delete standard table int so as not to interfere with custom scripts. + */ + // Give treasure to the creature if any tables are set. + for(iCounter6 = 1; iCounter6 <= iTableNumber; iCounter6++) + { + ExecuteScript("re_treasure" + GetLocalString(OBJECT_SELF, "re_sTreasureTable" + IntToString(iCounter6)), oCreature); + } + //} + if(iCounter1 < iNumberOfCreatures) + { + oCreature = CreateObject(OBJECT_TYPE_CREATURE, sTemplate, lCreatureLocation, FALSE); + } + iCounter1++; + // Determine the facing of the next creature + if(iFacingSameWay == FALSE) + { + fCreatureFacing = IntToFloat(Random(360)); + lCreatureLocation = Location(oArea, vCreatureVector, fCreatureFacing); + } + } + // Stick a lable on the spawning object for record keeping and reference (future use?) + SetLocalObject(oEncounterObject, "re_oLastRandomEncounterSpawned", oCreature); + return oCreature; +} + + + +void CleanHouse(int bDestroyPlotItems = FALSE, object oArea = OBJECT_SELF, int iSpawnOverride = 0, int iItemOverride = 0, int iBodyBagOverride = 0) +{ +// GET THE TIME SCALE FOR THE MODULE + int iMph; + if(!GetLocalInt(GetModule(), "re_iMph")) + { + iMph = 2; + } + else + { + iMph = GetLocalInt(GetModule(), "re_iMph"); + } + +// DECLARE AND INTIALIZE VARIABLES + int iMin = 60; + int iHr = iMin * iMph; + int iDay = iHr * 24; + int iMth = iDay * 28; + int iYr = iMth * 12; + int bShouldIKillHim = TRUE; + int iLifeTime; + int iItemLifeTime; + int iBodyBagLifeTime; + int iPresentTime = (GetCalendarYear() * iYr) + (GetCalendarMonth() * iMth) + (GetCalendarDay() * iDay) + (GetTimeHour() * iHr) + (GetTimeMinute() * iMin) + GetTimeSecond(); + object oObject; + + +// GET EACH OBJECT IN THE AREA AND TEST FOR VALIDITY + //The following assignment uses a peculiar property of the GetArea() function in that if the GetArea() function + //is called on an area then the area is returned. So the oArea parameter of the CleanHouse function can be set + //to an area or an object within that area and the function will work. (unless and/or until this is changed). + object oAmIASpawn = GetFirstObjectInArea(GetArea(oArea)); + while(GetIsObjectValid(oAmIASpawn)) + { + // IS IT A BODY BAG? + if(GetTag(oAmIASpawn) == "BodyBag" && !GetLocalInt(oAmIASpawn, "re_bDroppedItem")) + { + SetLocalInt(oAmIASpawn, "re_bDroppedItem", TRUE); + SetLocalInt(oAmIASpawn, "re_iDropTime", iPresentTime); + object oItem = GetFirstItemInInventory(oAmIASpawn); + while(GetIsObjectValid(oItem)) + { + if(GetLocalInt(oItem, "bItemForGold")) DestroyObject(oItem); + oItem = GetNextItemInInventory(oAmIASpawn); + } + } + // IS IT A DROPPED ITEM? + if(GetLocalInt(oAmIASpawn, "re_bDroppedItem")) + { + // HAS IT BEEN AROUND TOO LONG? + if(iItemOverride) + { + iItemLifeTime = iItemOverride; + } + else + { + iItemLifeTime = 1800; + } + if(iBodyBagOverride) + { + iBodyBagLifeTime = iBodyBagOverride; + } + else + { + iBodyBagLifeTime = 300; + } + if((iPresentTime - GetLocalInt(oAmIASpawn, "re_iDropTime") > iItemLifeTime && GetTag(oAmIASpawn) != "BodyBag") || (iPresentTime - GetLocalInt(oAmIASpawn, "re_iDropTime") > iBodyBagLifeTime && GetTag(oAmIASpawn) == "BodyBag"))// && !GetPlotFlag(oAmIASpawn)) + { + if(GetHasInventory(oAmIASpawn)) + { + oObject = GetFirstItemInInventory(oAmIASpawn); + while(GetIsObjectValid(oObject)) + { + if(!GetPlotFlag(oObject) || bDestroyPlotItems) + { + DestroyObject(oObject, 0.0); + } + oObject = GetNextItemInInventory(oAmIASpawn); + } + } + if(!GetPlotFlag(oAmIASpawn) || bDestroyPlotItems) + { + DestroyObject(oAmIASpawn, 0.0); + } + } + } + // IS HE IS A RANDOM ENCOUNTER? + if(GetLocalInt(oAmIASpawn, "re_bRandomEncounter")) + { + // HAS HE BEEN AROUND TOO LONG? + if(iSpawnOverride) + { + iLifeTime = iSpawnOverride; + } + else + { + iLifeTime = GetLocalInt(oAmIASpawn, "re_iRandomEncounterLifeTime"); + } + if(iPresentTime - GetLocalInt(oAmIASpawn, "re_iRandomEncounterSpawnTime") > iLifeTime) + { + // IS HE IN COMBAT? + if(!GetIsInCombat(oAmIASpawn)) + { + // GET EACH PC AND TEST IF THE CREATURE SEES HIM + // Note: this is because the creature might be charmed + // or influenced not to attack the PCs by other means. + object oPC = GetFirstPC(); + if(GetIsObjectValid(oPC)) + { + while(GetIsObjectValid(oPC)) + { + if(GetObjectSeen(oPC, oAmIASpawn)) + { + bShouldIKillHim = FALSE; + } + oPC = GetNextPC(); + } + } + // IF THE CREATURE HAS PASSED ALL OF THESE CHECKS, DESTROY HIM. + if(bShouldIKillHim) + { + if(!GetIsPC(oAmIASpawn)) //This is prevent despawning of creatures while possessed by a DM. + { + DestroyObject(oAmIASpawn, 0.0); + } + } + } + } + } + oAmIASpawn = GetNextObjectInArea(oArea); + } +} + +//GET TIME IN SECONDS FUNCTION +int GetTimeInSeconds(int iMph = 2) +{ + if(!iMph) iMph = GetLocalInt(GetModule(), "re_iMph"); + int iMin = 60; + int iHr = iMin * iMph; + int iDay = iHr * 24; + int iMth = iDay * 28; + int iYr = iMth * 12; + int iPresentTime = (GetCalendarYear() * iYr) + (GetCalendarMonth() * iMth) + (GetCalendarDay() * iDay) + (GetTimeHour() * iHr) + (GetTimeMinute() * iMin) + GetTimeSecond(); + return iPresentTime; +} + +location RandomWalk2(location lCenter, int iDistance = 20, object oCreature = OBJECT_SELF) +{ + vector vVector; + vector vVectorOffset; + vector vFinalVector; + location lLocation; + object oArea = GetAreaFromLocation(lCenter); + object oWaypoint; + int nLocationValid = 0; + float fDistanceToDoor; + object oDoor; + // determine location of invisible object to be used as target of ActionMoveToLocation command + // if object is too near a door, location will be changed + while (nLocationValid != 1) + { + // determine random location of invisible object to be placed as target of walk command + float fAngle = IntToFloat(Random(360)); + float fDistance = IntToFloat(Random(iDistance) + 1); + vVector = AngleToVector(fAngle); + vVectorOffset = vVector * fDistance; + vFinalVector = GetPositionFromLocation(lCenter) + vVectorOffset; + lLocation = Location(oArea, vFinalVector, fAngle); + // check distance for nearest door, set LocationValid flag if beyond 1 meter + oWaypoint = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lLocation); + oDoor = GetNearestObject(OBJECT_TYPE_DOOR, oWaypoint); + fDistanceToDoor = GetDistanceBetween (oWaypoint, oDoor); + if (fDistanceToDoor > 1.0) + nLocationValid = 1; // terminates loop with current oWaypoint if door further away than 1 meter + } + lLocation = GetLocation(oWaypoint); + AssignCommand(oCreature, ActionDoCommand(ActionMoveToLocation(lLocation))); + DestroyObject(oWaypoint); + return lLocation; + +} diff --git a/gamma_age_v2/re_sc_dialogue1.ncs b/gamma_age_v2/re_sc_dialogue1.ncs new file mode 100644 index 00000000..ee85eb73 Binary files /dev/null and b/gamma_age_v2/re_sc_dialogue1.ncs differ diff --git a/gamma_age_v2/re_sc_dialogue1.nss b/gamma_age_v2/re_sc_dialogue1.nss new file mode 100644 index 00000000..28f41eb4 --- /dev/null +++ b/gamma_age_v2/re_sc_dialogue1.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_dialogue1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/16/2003 9:32:45 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(OBJECT_SELF, "iDialogue") == 1)) + return FALSE; + + return TRUE; +} diff --git a/gamma_age_v2/re_sc_dialogue10.ncs b/gamma_age_v2/re_sc_dialogue10.ncs new file mode 100644 index 00000000..25cb4128 Binary files /dev/null and b/gamma_age_v2/re_sc_dialogue10.ncs differ diff --git a/gamma_age_v2/re_sc_dialogue10.nss b/gamma_age_v2/re_sc_dialogue10.nss new file mode 100644 index 00000000..ee273afc --- /dev/null +++ b/gamma_age_v2/re_sc_dialogue10.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_dialogue1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/16/2003 9:32:45 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(OBJECT_SELF, "iDialogue") == 10)) + return FALSE; + + return TRUE; +} diff --git a/gamma_age_v2/re_sc_dialogue2.ncs b/gamma_age_v2/re_sc_dialogue2.ncs new file mode 100644 index 00000000..310c0126 Binary files /dev/null and b/gamma_age_v2/re_sc_dialogue2.ncs differ diff --git a/gamma_age_v2/re_sc_dialogue2.nss b/gamma_age_v2/re_sc_dialogue2.nss new file mode 100644 index 00000000..d68308d4 --- /dev/null +++ b/gamma_age_v2/re_sc_dialogue2.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_dialogue1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/16/2003 9:32:45 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(OBJECT_SELF, "iDialogue") == 2)) + return FALSE; + + return TRUE; +} diff --git a/gamma_age_v2/re_sc_dialogue3.ncs b/gamma_age_v2/re_sc_dialogue3.ncs new file mode 100644 index 00000000..31979369 Binary files /dev/null and b/gamma_age_v2/re_sc_dialogue3.ncs differ diff --git a/gamma_age_v2/re_sc_dialogue3.nss b/gamma_age_v2/re_sc_dialogue3.nss new file mode 100644 index 00000000..953995d2 --- /dev/null +++ b/gamma_age_v2/re_sc_dialogue3.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_dialogue1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/16/2003 9:32:45 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(OBJECT_SELF, "iDialogue") == 3)) + return FALSE; + + return TRUE; +} diff --git a/gamma_age_v2/re_sc_dialogue4.ncs b/gamma_age_v2/re_sc_dialogue4.ncs new file mode 100644 index 00000000..1bbdbeaf Binary files /dev/null and b/gamma_age_v2/re_sc_dialogue4.ncs differ diff --git a/gamma_age_v2/re_sc_dialogue4.nss b/gamma_age_v2/re_sc_dialogue4.nss new file mode 100644 index 00000000..d8369976 --- /dev/null +++ b/gamma_age_v2/re_sc_dialogue4.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_dialogue1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/16/2003 9:32:45 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(OBJECT_SELF, "iDialogue") == 4)) + return FALSE; + + return TRUE; +} diff --git a/gamma_age_v2/re_sc_dialogue5.ncs b/gamma_age_v2/re_sc_dialogue5.ncs new file mode 100644 index 00000000..c6e97822 Binary files /dev/null and b/gamma_age_v2/re_sc_dialogue5.ncs differ diff --git a/gamma_age_v2/re_sc_dialogue5.nss b/gamma_age_v2/re_sc_dialogue5.nss new file mode 100644 index 00000000..4ae30121 --- /dev/null +++ b/gamma_age_v2/re_sc_dialogue5.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_dialogue1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/16/2003 9:32:45 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(OBJECT_SELF, "iDialogue") == 5)) + return FALSE; + + return TRUE; +} diff --git a/gamma_age_v2/re_sc_dialogue6.ncs b/gamma_age_v2/re_sc_dialogue6.ncs new file mode 100644 index 00000000..7d7758be Binary files /dev/null and b/gamma_age_v2/re_sc_dialogue6.ncs differ diff --git a/gamma_age_v2/re_sc_dialogue6.nss b/gamma_age_v2/re_sc_dialogue6.nss new file mode 100644 index 00000000..07b7055e --- /dev/null +++ b/gamma_age_v2/re_sc_dialogue6.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_dialogue1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/16/2003 9:32:45 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(OBJECT_SELF, "iDialogue") == 6)) + return FALSE; + + return TRUE; +} diff --git a/gamma_age_v2/re_sc_dialogue7.ncs b/gamma_age_v2/re_sc_dialogue7.ncs new file mode 100644 index 00000000..b1d2f7de Binary files /dev/null and b/gamma_age_v2/re_sc_dialogue7.ncs differ diff --git a/gamma_age_v2/re_sc_dialogue7.nss b/gamma_age_v2/re_sc_dialogue7.nss new file mode 100644 index 00000000..1dea13cb --- /dev/null +++ b/gamma_age_v2/re_sc_dialogue7.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_dialogue1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/16/2003 9:32:45 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(OBJECT_SELF, "iDialogue") == 7)) + return FALSE; + + return TRUE; +} diff --git a/gamma_age_v2/re_sc_dialogue8.ncs b/gamma_age_v2/re_sc_dialogue8.ncs new file mode 100644 index 00000000..6d08087d Binary files /dev/null and b/gamma_age_v2/re_sc_dialogue8.ncs differ diff --git a/gamma_age_v2/re_sc_dialogue8.nss b/gamma_age_v2/re_sc_dialogue8.nss new file mode 100644 index 00000000..7667505b --- /dev/null +++ b/gamma_age_v2/re_sc_dialogue8.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_dialogue1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/16/2003 9:32:45 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + // Inspect local variables + if(!(GetLocalInt(OBJECT_SELF, "iDialogue") == 8)) + { + return FALSE; + } + SetCustomToken(2112, GetLocalString(OBJECT_SELF, "sName")); + return TRUE; +} diff --git a/gamma_age_v2/re_sc_dialogue9.ncs b/gamma_age_v2/re_sc_dialogue9.ncs new file mode 100644 index 00000000..fc87aa14 Binary files /dev/null and b/gamma_age_v2/re_sc_dialogue9.ncs differ diff --git a/gamma_age_v2/re_sc_dialogue9.nss b/gamma_age_v2/re_sc_dialogue9.nss new file mode 100644 index 00000000..883a4e3a --- /dev/null +++ b/gamma_age_v2/re_sc_dialogue9.nss @@ -0,0 +1,16 @@ +//:://///////////////////////////////////////////// +//:: FileName sc_dialogue1 +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 5/16/2003 9:32:45 PM +//::////////////////////////////////////////////// +int StartingConditional() +{ + + // Inspect local variables + if(!(GetLocalInt(OBJECT_SELF, "iDialogue") == 9)) + return FALSE; + + return TRUE; +} diff --git a/gamma_age_v2/re_spawnerhb.ncs b/gamma_age_v2/re_spawnerhb.ncs new file mode 100644 index 00000000..e4cfd5c1 Binary files /dev/null and b/gamma_age_v2/re_spawnerhb.ncs differ diff --git a/gamma_age_v2/re_spawnerhb.nss b/gamma_age_v2/re_spawnerhb.nss new file mode 100644 index 00000000..b0803969 --- /dev/null +++ b/gamma_age_v2/re_spawnerhb.nss @@ -0,0 +1,108 @@ +//::///////////////////////////////////////////////////////////////// +//:: FileName re_spawnerhb +//:: Copyright (c) 2001 Bioware Corp. +//::///////////////////////////////////////////////////////////////// +/* +This script is used in the heartbeat of the +BESIE RES tool, part of the BESIE Random +Encounter package by Ray Miller. +*/ +//::///////////////////////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 9-2-02 +//::///////////////////////////////////////////////////////////////// +#include "re_rndenc" +void main() +{ +///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////// +//Set this parameter to FALSE if you wish +//your encounter distances to be constant +int RandomDistance = TRUE; +/////////////////////////////////////////////////////////// +/* +If you want a BESIE RES tool to start and stop spawning +creatures at particular game times, set the following variables +to the appropriate times and save the script under a different +name. You could also set the local integers "re_iBegin" and +"re_iEnd" on the spawner externally if you wanted. +*/ +int StartTime = 0; +int StopTime = 0; +/////////////////////////////////////////////////////////// + + float fChanceOfEncounter; + if(StartTime || StopTime) + { + SetLocalInt(OBJECT_SELF, "re_iBegin", StartTime); + SetLocalInt(OBJECT_SELF, "re_iEnd", StopTime); + } + if(GetLocalInt(OBJECT_SELF, "re_iBegin") > 23) SetLocalInt(OBJECT_SELF, "re_iBegin", 23); + if(GetLocalInt(OBJECT_SELF, "re_iEnd") > 23) SetLocalInt(OBJECT_SELF, "re_iEnd", 23); + if(!GetLocalInt(OBJECT_SELF, "re_BESIE")) + { + SetLocalInt(OBJECT_SELF, "re_BESIE", TRUE); + SetLocalString(OBJECT_SELF, "re_ToolType", "BESIE RES"); + } + if(GetLocalInt(GetModule(), "re_disableBESIERES") || GetLocalInt(GetArea(OBJECT_SELF), "re_disableBESIERES") || GetLocalInt(OBJECT_SELF, "re_disable")) + { + if(!GetIsObjectValid(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner"))) SetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner", OBJECT_SELF); + if(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner") == OBJECT_SELF) CleanHouse(); + return; + } + int iStartTime = GetLocalInt(OBJECT_SELF, "re_iBegin"); + int iStopTime = GetLocalInt(OBJECT_SELF, "re_iEnd"); + if((iStartTime <= iStopTime && (GetTimeHour() >= iStartTime && GetTimeHour() < iStopTime)) + || (iStartTime >= iStopTime && (GetTimeHour() >= iStartTime || GetTimeHour() < iStopTime))) + fChanceOfEncounter = IntToFloat(GetMaxHitPoints(OBJECT_SELF)) / 100; + else fChanceOfEncounter = 0.0; + int iFaction; + int iCounterX; + object oEncounterObject; + object oArea = GetArea(OBJECT_SELF); + object oPC = GetFirstPC(); + while(GetIsObjectValid(oPC)) + { + if(GetArea(oPC) == oArea) + { + string sLeader = GetPCPlayerName(GetFactionLeader(oPC)) + GetName(GetFactionLeader(oPC)); + if(!GetLocalInt(OBJECT_SELF, "i" + sLeader)) + { + iFaction++; + SetLocalString(OBJECT_SELF, "sFaction" + IntToString(iFaction), sLeader); + } + SetLocalInt(OBJECT_SELF, "i" + sLeader, GetLocalInt(OBJECT_SELF, "i" + sLeader) + 1); + SetLocalObject(OBJECT_SELF, "o" + sLeader + IntToString(GetLocalInt(OBJECT_SELF, "i" + sLeader)), oPC); + } + oPC = GetNextPC(); + } + if(!GetIsObjectValid(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner"))) SetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner", OBJECT_SELF); + if(GetLocalObject(GetArea(OBJECT_SELF), "re_oHouseCleaner") == OBJECT_SELF) CleanHouse(); + if(!iFaction) return; + string sLeader = GetLocalString(OBJECT_SELF, "sFaction" + IntToString(Random(iFaction) + 1)); + int iMember = Random(GetLocalInt(OBJECT_SELF, "i" + sLeader)) + 1; + oEncounterObject = GetLocalObject(OBJECT_SELF, "o" + sLeader + IntToString(iMember)); + for(iCounterX = 1; iCounterX <= iFaction; iCounterX++) + { + DeleteLocalInt(OBJECT_SELF, "i" + GetLocalString(OBJECT_SELF, "sFaction" + IntToString(iCounterX))); + DeleteLocalString(OBJECT_SELF, "sFaction" + IntToString(iCounterX)); + } + string sTemplate = GetTag(OBJECT_SELF); + int iNumberOfParties; + int iMinDistance = RandomDistance; + int iDifficulty = GetFortitudeSavingThrow(OBJECT_SELF); + int iCheckDistance = GetReflexSavingThrow(OBJECT_SELF); + int iMaxDistance = GetWillSavingThrow(OBJECT_SELF); + + // Return if the resting variable is set by the re_onrest script. + if(GetLocalInt(oEncounterObject, "re_resting")) return; + + if(!iMaxDistance) + { + iMaxDistance = 1; + } + if(GetStringLeft(sTemplate, 3) != "re_") + sTemplate = "random"; + fChanceOfEncounter = IntToFloat(iFaction) * fChanceOfEncounter; + RandomEncounter(fChanceOfEncounter, oEncounterObject, sTemplate, 0, 0, iMinDistance, iMaxDistance, 360, 0, iCheckDistance, 0, iDifficulty); +} diff --git a/gamma_age_v2/re_spawnerhb_v2.ncs b/gamma_age_v2/re_spawnerhb_v2.ncs new file mode 100644 index 00000000..7c85071f Binary files /dev/null and b/gamma_age_v2/re_spawnerhb_v2.ncs differ diff --git a/gamma_age_v2/re_spawnerhb_v2.nss b/gamma_age_v2/re_spawnerhb_v2.nss new file mode 100644 index 00000000..ea00a317 --- /dev/null +++ b/gamma_age_v2/re_spawnerhb_v2.nss @@ -0,0 +1,93 @@ +//::///////////////////////////////////////////////////////////////// +//:: FileName re_spawnerhb +//:: Copyright (c) 2001 Bioware Corp. +//::///////////////////////////////////////////////////////////////// +/* +This script is used in the heartbeat of the +BESIE MMORPG Spawner tool, part of the BESIE Random +Encounter package by Ray Miller. +*/ +//::///////////////////////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 9-2-02 +//::///////////////////////////////////////////////////////////////// +#include "re_rndenc" +void main() +{ +///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////// +//Set this parameter to FALSE if you wish +//your encounter distances to be constant +// +int RandomDistance = FALSE +// +///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////// +/* +if you don't want a DM possessed NPC to produce spawns, +insert the following code into your module OnClientEnter +handler. + +if(GetIsDM(GetEnteringObject())) SetLocalInt(GetModule(), "re_" + GetName(GetEnteringObject()), TRUE); +else DeleteLocalInt(GetModule(), "re_" + GetName(GetEnteringObject())); +*/ +///////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////// + ; + float fChanceOfEncounter = IntToFloat(GetMaxHitPoints(OBJECT_SELF)) / 100; + int iFaction; + int iCounterX; + object oEncounterObject; + object oArea = GetArea(OBJECT_SELF); + object oPC = GetFirstPC(); + while(GetIsObjectValid(oPC)) + { + if(GetArea(oPC) == oArea) + { + string sLeader = GetPCPlayerName(GetFactionLeader(oPC)) + GetName(GetFactionLeader(oPC)); + if(!GetLocalInt(OBJECT_SELF, "i" + sLeader)) + { + iFaction++; + SetLocalString(OBJECT_SELF, "sFaction" + IntToString(iFaction), sLeader); + } + SetLocalInt(OBJECT_SELF, "i" + sLeader, GetLocalInt(OBJECT_SELF, "i" + sLeader) + 1); + SetLocalObject(OBJECT_SELF, "o" + sLeader + IntToString(GetLocalInt(OBJECT_SELF, "i" + sLeader)), oPC); + } + oPC = GetNextPC(); + } + CleanHouse(); + if(!iFaction) return; + string sLeader = GetLocalString(OBJECT_SELF, "sFaction" + IntToString(Random(iFaction) + 1)); + int iMember = Random(GetLocalInt(OBJECT_SELF, "i" + sLeader)) + 1; + oEncounterObject = GetLocalObject(OBJECT_SELF, "o" + sLeader + IntToString(iMember)); + for(iCounterX = 1; iCounterX <= iFaction; iCounterX++) + { + DeleteLocalInt(OBJECT_SELF, "i" + GetLocalString(OBJECT_SELF, "sFaction" + IntToString(iCounterX))); + DeleteLocalString(OBJECT_SELF, "sFaction" + IntToString(iCounterX)); + } + string sTemplate = GetTag(OBJECT_SELF); + int iNumberOfParties; + int iOrientation = 0; + int iMinDistance = RandomDistance; + int iDifficulty = GetFortitudeSavingThrow(OBJECT_SELF); + int iChanceFromBehind = GetReflexSavingThrow(OBJECT_SELF); + int iMaxDistance = GetWillSavingThrow(OBJECT_SELF); + if(!GetLocalInt(oEncounterObject, "bInitialized")) + { + SetRndEncProperties(oEncounterObject, iDifficulty, TRUE, sTemplate, 180, 2, ENCOUNTER_TYPE_AREA); + } + if(!iMaxDistance) + { + iMaxDistance = 1; + } + if(GetStringLeft(sTemplate, 3) != "re_") + sTemplate = "random"; + fChanceOfEncounter = IntToFloat(iFaction) * fChanceOfEncounter; + if((Random(99) + 1) < iChanceFromBehind) + { + iOrientation = 180; + iMaxDistance = 2; + } + RandomEncounter(fChanceOfEncounter, oEncounterObject, sTemplate, 0, 0, iMinDistance, iMaxDistance, iOrientation, 30); +} diff --git a/gamma_age_v2/re_table.nss b/gamma_age_v2/re_table.nss new file mode 100644 index 00000000..1f674c57 --- /dev/null +++ b/gamma_age_v2/re_table.nss @@ -0,0 +1,1923 @@ +//:://///////////////////////////////////////////// +//:: Name +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +This script represents the standard encounter table +for the BESIE Random Encounter System By Ray Miller. +It is meant to be used as an include, and will not +compile on its own. +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: God knows. I wrote this months ago! +//::////////////////////////////////////////////// + + +string GetRndEncCreature(float fMinCR = 0.0, float fMaxCR = 9999.0, string sCreatureTable = "") +{ +// IF NOT INITIALIZED THEN DO SO + /*if(!GetLocalInt(GetModule(), "re_bInitialized")) + { + SetRndEncProperties(); + }*/ + +// DECLARE AND INTIALIZE VARIABLES + object oMod = GetModule(); + string sChoice = "nil"; + string sBuild; + int bCustom; + int iCounter1; + int iCounter2 = 0; + int iCounter3; + int iVarNum; + float fCR; + if (fMinCR > 18.0) fMinCR = 18.0; + sCreatureTable = GetStringLowerCase(sCreatureTable); + if(GetStringLeft(sCreatureTable, 8) == "commoner") sCreatureTable = "z" + GetStringRight(sCreatureTable, GetStringLength(sCreatureTable) - 8); + +/* The following code was added with v1.8. It checks to see if the template contains the string '2da' +if so it checks to ensure the tag name matches the file name of a 2DA file by looking for the 'TableLength' +parameter on Row 0. If it is present, a check is made to ensure that the parameter is correct. If so, the +standard or 'old style' table will be ignored and this routine will draw an encounter from the 2da file. */ + if(GetStringLeft(sCreatureTable, 3) == "2da") + { + string s2DAMatch = "re_" + GetStringRight(GetStringLowerCase(sCreatureTable), GetStringLength(sCreatureTable) - 4); + int iTableLength = StringToInt(Get2DAString(s2DAMatch, "TableLength", 0)); + if(iTableLength && Get2DAString(s2DAMatch, "ResRef", iTableLength) != "" && Get2DAString(s2DAMatch, "ResRef", iTableLength + 1) == "") + { + int iRnd = Random(iTableLength) + 1; + string sTreasure = Get2DAString(s2DAMatch, "Treasure", iRnd); + int iMinimum = StringToInt(Get2DAString(s2DAMatch, "Minimum", iRnd)); + int iMaximum = StringToInt(Get2DAString(s2DAMatch, "Maximum", iRnd)); + if(!iMinimum && !iMaximum) iMaximum = 1; + SetLocalInt(oMod, "re_iMinNumberOfCreatures", iMinimum); + SetLocalInt(oMod, "re_iMaxNumberOfCreatures", iMaximum); + string sCreature = Get2DAString(s2DAMatch, "ResRef", iRnd); + if(sTreasure != "") SetLocalString(GetModule(), "re_s2DATreasure", sTreasure); + return sCreature; + } + else + { + string sError = "BESIE error: 2DA Table " + s2DAMatch + " is not present or is invalid!"; + object oPC = GetFirstPC(); + SendMessageToAllDMs(sError); + while(GetIsObjectValid(oPC)) + { + SendMessageToPC(oPC, sError); + oPC = GetNextPC(); + } + WriteTimestampedLogEntry(sError); + return ""; + } + } + +// PICK RANDOM ABERRATION + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "n") + { + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_BATTDEVOUR"; + fCR = 11.0; + break; + + case 1:sChoice = "X2_BEHOLDER001"; + fCR = 11.0; + break; + + case 2:sChoice = "X2_BEHOLDER003"; + fCR = 15.0; + break; + + case 3:sChoice = "X2_DRIDER001"; + fCR = 6.0; + break; + + case 4:sChoice = "X2_DRIDER002"; + fCR = 10.0; + break; + + case 5:sChoice = "X2_DRIDER003"; + fCR = 17.0; + break; + + case 6:sChoice = "X2_DRIDER004"; + fCR = 23.0; + break; + + case 7:sChoice = "X2_DRIDER005"; + fCR = 28.0; + break; + + case 8:sChoice = "X2_FDRIDER002"; + fCR = 7.0; + break; + + case 9:sChoice = "X2_DRIDERW01"; + fCR = 8.0; + break; + + case 10:sChoice = "NW_ETTERCAP"; + fCR = 5.0; + break; + + case 11:sChoice = "X2_BEHOLDER002"; + fCR = 3.0; + break; + + case 12:sChoice = "X2_FDRIDER001"; + fCR = 6.0; + break; + + case 13:sChoice = "NW_HORROR"; + fCR = 5.0; + break; + + case 14:sChoice = "NW_DEVOUR"; + fCR = 7.0; + break; + + case 15:sChoice = "X2_MINDFLAYER001"; + fCR = 9.0; + break; + + case 16:sChoice = "X2_MINDFDARKENER"; + fCR = 16.0; + break; + + case 17:sChoice = "X2_MINDFVENERATR"; + fCR = 20.0; + break; + + case 18:sChoice = "X2_MINDFLAYER002"; + fCR = 19.0; + break; + + case 19:sChoice = "NW_UMBERHULK"; + fCR = 9.0; + break; + + case 20:sChoice = "NW_WILLOWISP"; + fCR = 8.0; + break; + + case 21:sChoice = ""; + fCR = 0.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && sChoice != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } + + +// PICK RANDOM ANIMAL + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "a") + { + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_BEARDIREBOSS"; + fCR = 15.0; + break; + + case 1:sChoice = "NW_BEARBLCK"; + fCR = 2.0; + break; + + case 2:sChoice = "NW_BEARBRWN"; + fCR = 5.0; + break; + + case 3:sChoice = "NW_BEARDIRE"; + fCR = 9.0; + break; + + case 4:sChoice = "NW_BEARKODIAK"; + fCR = 6.0; + break; + + case 5:sChoice = "NW_BEARPOLAR"; + fCR = 6.0; + break; + + case 6:sChoice = "NW_BEASTMALAR001"; + fCR = 7.0; + break; + + case 7:sChoice = "NW_DIREWOLF"; + fCR = 5.0; + break; + + case 8:sChoice = "NW_WOLFDIREBOSS"; + fCR = 11.0; + break; + + case 9:sChoice = "NW_WOLFWINT"; + fCR = 5.0; + break; + + case 10:sChoice = "NW_WOLF"; + fCR = 1.0; + break; + + case 11:sChoice = "NW_WORG"; + fCR = 3.0; + break; + + case 12:sChoice = "NW_COUGAR"; + fCR = 2.0; + break; + + case 13:sChoice = "NW_CRAGCAT"; + fCR = 2.0; + break; + + case 14:sChoice = "NW_DIRETIGER"; + fCR = 11.0; + break; + + case 15:sChoice = "NW_JAGUAR"; + fCR = 3.0; + break; + + case 16:sChoice = "NW_CAT"; + fCR = 2.0; + break; + + case 17:sChoice = "NW_LION"; + fCR = 3.0; + break; + + case 18:sChoice = "NW_PANTHER"; + fCR = 2.0; + break; + + case 19:sChoice = "NW_BADGER"; + fCR = 0.5; + break; + + case 20:sChoice = "NW_BOAR"; + fCR = 2.0; + break; + + case 21:sChoice = "NW_DIREBADG"; + fCR = 3.0; + break; + + case 22:sChoice = "NW_BOARDIRE"; + fCR = 5.0; + break; + + case 23:sChoice = "NW_RAT001"; + fCR = 0.12; + break; + + case 24:sChoice = "NW_RATDIRE001"; + fCR = 0.33; + break; + + case 25:sChoice = ""; + fCR = 0.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && sChoice != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM CONSTRUCT + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "c") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_BATHORROR"; + fCR = 13.0; + break; + + case 1:sChoice = "NW_GolBone"; + fCR = 11.0; + break; + + case 2:sChoice = "NW_GolClay"; + fCR = 10.0; + break; + + case 3:sChoice = "NW_GOLFLESH"; + fCR = 8.0; + break; + + case 4:sChoice = "NW_HELMHORR"; + fCR = 11.0; + break; + + case 5:sChoice = "NW_GOLIRON"; + fCR = 16.0; + break; + + case 6:sChoice = "NW_MINOGON"; + fCR = 8.0; + break; + + case 7:sChoice = "NW_SHGUARD"; + fCR = 13.0; + break; + + case 8:sChoice = "NW_GOLSTONE"; + fCR = 12.0; + break; + + case 9:sChoice = "X2_GOLEM002"; + fCR = 32.0; + break; + + case 10:sChoice = "nw_goldmflesh001"; + fCR = 25.0; + break; + + case 11:sChoice = "X2_GOLIRON_HUGE"; + fCR = 21.0; + break; + + case 12:sChoice = "X2_GOLEM001"; + fCR = 35.0; + break; + + case 13:sChoice = ""; + fCR = 0.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && sChoice != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM DRAGON + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "d") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_DRGBLACK001"; + fCR = 13.0; + break; + + case 1:sChoice = "NW_DRGBLUE001"; + fCR = 14.0; + break; + + case 2:sChoice = "NW_DRGGREEN001"; + fCR = 14.0; + break; + + case 3:sChoice = "NW_DRGRED001"; + fCR = 15.0; + break; + + case 4:sChoice = "NW_DRGWHITE001"; + fCR = 12.0; + break; + + case 5:sChoice = "NW_DRGBLACK002"; + fCR = 17.0; + break; + + case 6:sChoice = "NW_DRGBLUE002"; + fCR = 18.0; + break; + + case 7:sChoice = "NW_DRGGREEN002"; + fCR = 18.0; + break; + + case 8:sChoice = "NW_DRGRED002"; + fCR = 19.0; + break; + + case 9:sChoice = "NW_DRGWHITE002"; + fCR = 16.0; + break; + + case 10:sChoice = "NW_DRGBLACK003"; + fCR = 21.0; + break; + + case 11:sChoice = "NW_DRGBLUE003"; + fCR = 23.0; + break; + + case 12:sChoice = "NW_DRGGREEN003"; + fCR = 23.0; + break; + + case 13:sChoice = "NW_DRGRED003"; + fCR = 25.0; + break; + + case 14:sChoice = "NW_HALFDRA001"; + fCR = 13.0; + break; + + case 15:sChoice = "X2_DRAGONSHAD001"; + fCR = 22.0; + break; + + case 16:sChoice = "X2_DRAGONPRIS001"; + fCR = 37.0; + break; + + case 17:sChoice = "X0_WYRMLING_BLK"; + fCR = 3.0; + break; + + case 18:sChoice = "X0_WYRMLING_BLU"; + fCR = 5.0; + break; + + case 19:sChoice = "X0_WYRMLING_GRN"; + fCR = 4.0; + break; + + case 20:sChoice = "X0_WYRMLING_RED"; + fCR = 5.0; + break; + + case 21:sChoice = "X0_WYRMLING_WHT"; + fCR = 3.0; + break; + + case 22:sChoice = ""; + fCR = 0.0; + break; + + } + if(fCR >= fMinCR && fCR <= fMaxCR && sChoice != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM ELEMENTAL + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "e") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_AIR"; + fCR = 4.0; + break; + + case 1:sChoice = "NW_Earth"; + fCR = 4.0; + break; + + case 2:sChoice = "NW_AIRELDER"; + fCR = 20.0; + break; + + case 3:sChoice = "NW_EARTHELD"; + fCR = 17.0; + break; + + case 4:sChoice = "NW_FIREELDER"; + fCR = 17.0; + break; + + case 5:sChoice = "NW_WATELDER"; + fCR = 16.0; + break; + + case 6:sChoice = "NW_FIRE"; + fCR = 3.0; + break; + + case 7:sChoice = "NW_AIRGREAT"; + fCR = 18.0; + break; + + case 8:sChoice = "NW_EARTHGREAT"; + fCR = 15.0; + break; + + case 9:sChoice = "NW_FIREGREAT"; + fCR = 15.0; + break; + + case 10:sChoice = "NW_WATERGREAT"; + fCR = 14.0; + break; + + case 11:sChoice = "NW_AIRHUGE"; + fCR = 13.0; + break; + + case 12:sChoice = "NW_EARTHHUGE"; + fCR = 11.0; + break; + + case 13:sChoice = "NW_FIREHUGE"; + fCR = 12.0; + break; + + case 14:sChoice = "NW_WATERHUGE"; + fCR = 11.0; + break; + + case 15:sChoice = "NW_INVSTALK"; + fCR = 6.0; + break; + + case 16:sChoice = "NW_WATER"; + fCR = 4.0; + break; + + case 17:sChoice = ""; + fCR = 0.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM GIANT + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "g") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_ETTIN"; + fCR = 8.0; + break; + + case 1:sChoice = "NW_GNTHILL"; + fCR = 10.0; + break; + + case 2:sChoice ="NW_GNTMOUNT"; + fCR = 10.0; + break; + + case 3:sChoice = "NW_GNTFIRE"; + fCR = 12.0; + break; + + case 4:sChoice = "NW_GNTFROST"; + fCR = 10.0; + break; + + case 5:sChoice = "NW_OGRE01"; + fCR = 3.0; + break; + + case 6:sChoice = "NW_OGRE02"; + fCR = 3.0; + break; + + case 7:sChoice = "NW_OGRECHIEF01"; + fCR = 6.0; + break; + + case 8:sChoice = "NW_OGRECHIEF02"; + fCR = 6.0; + break; + + case 9:sChoice = "nw_ogreboss"; + fCR = 9.0; + break; + + case 10:sChoice = "NW_OGREMAGEBOSS"; + fCR = 21.0; + break; + + case 11:sChoice = "NW_OGREMAGE01"; + fCR = 5.0; + break; + + case 12:sChoice = "NW_OGREMAGE02"; + fCR = 5.0; + break; + + case 13:sChoice = "NW_TROLL"; + fCR = 5.0; + break; + + case 14:sChoice = "NW_TROLLCHIEF"; + fCR = 8.0; + break; + + case 15:sChoice = "NW_TROLLBOSS"; + fCR = 9.0; + break; + + case 16:sChoice = "NW_TROLLWIZ"; + fCR = 8.0; + break; + + case 17:sChoice = "X0_GNTFIREFEM"; + fCR = 10.0; + break; + + case 18:sChoice = "X0_GNTFROSTFEM"; + fCR = 9.0; + break; + + case 19:sChoice = ""; + fCR = 0.0; + break; + + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM HUMANOID + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "h") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_BUGBEARA"; + fCR = 2.0; + break; + + case 1:sChoice = "NW_BUGBEARB"; + fCR = 2.0; + break; + + case 2:sChoice = "nw_bugbearboss"; + fCR = 10.0; + break; + + case 3:sChoice = "NW_BUGCHIEFA"; + fCR = 5.0; + break; + + case 4:sChoice = "NW_BUGCHIEFB"; + fCR = 5.0; + break; + + case 5:sChoice = "NW_BUGWIZA"; + fCR = 4.0; + break; + + case 6:sChoice = "NW_BUGWIZB"; + fCR = 4.0; + break; + + case 7:sChoice = "NW_GRIG"; + fCR = 2.0; + break; + + case 8:sChoice = "NW_PIXIE"; + fCR = 2.0; + break; + + case 9:sChoice = "NW_GOBLINA"; + fCR = 0.25; + break; + + case 10:sChoice = "NW_GOBLINB"; + fCR = 0.25; + break; + + case 11:sChoice = "NW_GOBLINBOSS"; + fCR = 11.0; + break; + + case 12:sChoice = "NW_GOBCHIEFA"; + fCR = 4.0; + break; + + case 13:sChoice = "NW_GOBCHIEFB"; + fCR = 3.0; + break; + + case 14:sChoice = "NW_GOBWIZA"; + fCR = 3.0; + break; + + case 15:sChoice = "NW_GOBWIZB"; + fCR = 3.0; + break; + + case 16:sChoice = "NW_OLDCHIEFA"; + fCR = 4.0; + break; + + case 17:sChoice = "NW_OLDCHIEFB"; + fCR = 4.0; + break; + + case 19:sChoice = "NW_OLDMAGEA"; + fCR = 4.0; + break; + + case 20:sChoice = "NW_OLDMAGEB"; + fCR = 4.0; + break; + + case 21:sChoice = "NW_OLDWARB"; + fCR = 2.0; + break; + + case 22:sChoice = "NW_OLDWARRA"; + fCR = 2.0; + break; + + case 23:sChoice = "NW_YUAN_TI001"; + fCR = 5.0; + break; + + case 24:sChoice = "NW_YUAN_TI003"; + fCR = 6.0; + break; + + case 25:sChoice = "NW_YUAN_TI002"; + fCR = 5.0; + break; + + case 26:sChoice = "NW_MINOTAUR"; + fCR = 4.0; + break; + + case 27:sChoice = "NW_MinChief"; + fCR = 8.0; + break; + + case 28:sChoice = "NW_MINOTAURBOSS"; + fCR = 14.0; + break; + + case 29:sChoice = "NW_MINWIZ"; + fCR = 9.0; + break; + + case 30:sChoice = "NW_ORCA"; + fCR = 0.25; + break; + + case 31:sChoice = "NW_ORCB"; + fCR = 0.25; + break; + + case 32:sChoice = "NW_OrcChiefA"; + fCR = 3.0; + break; + + case 33:sChoice = "NW_ORCCHIEFB"; + fCR = 3.0; + break; + + case 34:sChoice = "nw_orcboss"; + fCR = 10.0; + break; + + case 35:sChoice = "NW_ORCWIZA"; + fCR = 4.0; + break; + + case 36:sChoice = "NW_ORCWIZB"; + fCR = 4.0; + break; + + case 37:sChoice = "NW_KOBOLD001"; + fCR = 0.33; + break; + + case 38:sChoice = "NW_KOBOLD002"; + fCR = 0.33; + break; + + case 39:sChoice = "NW_KOBOLD004"; + fCR = 2.0; + break; + + case 40:sChoice = "NW_KOBOLD006"; + fCR = 2.0; + break; + + case 41:sChoice = "NW_KOBOLD005"; + fCR = 2.0; + break; + + case 42:sChoice = "NW_KOBOLD003"; + fCR = 2.0; + break; + + case 43:sChoice = "NW_GNOLL001"; + fCR = 1.0; + break; + + case 44:sChoice = "NW_GNOLL002"; + fCR = 3.0; + break; + + case 45:sChoice = "NW_HOBGOBLIN001"; + fCR = 0.33; + break; + + case 46:sChoice = "NW_HOBGOBLIN002"; + fCR = 2.0; + break; + + case 47:sChoice = "X0_ASABI_CHIEF"; + fCR = 6.0; + break; + + case 48:sChoice = "X0_ASABI_SHAMAN"; + fCR = 5.0; + break; + + case 49:sChoice = "X0_ASABI_WARRIOR"; + fCR = 2.0; + break; + + case 50:sChoice = "X0_MEDUSA"; + fCR = 6.0; + break; + + case 51:sChoice = "X0_STINGER"; + fCR = 3.0; + break; + + case 52:sChoice = "X0_STINGER_CHIEF"; + fCR = 7.0; + break; + + case 53:sChoice = "X0_STINGER_MAGE"; + fCR = 5.0; + break; + + case 54:sChoice = "X0_STINGER_WAR"; + fCR = 5.0; + break; + + case 55:sChoice = "nw_seahag"; + fCR = 4.0; + break; + + case 56:sChoice = ""; + fCR = 4.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM INSECT + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "i") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_BTLBOMB"; + fCR = 3.0; + break; + + case 1:sChoice = "NW_BTLFIRE"; + fCR = 0.25; + break; + + case 2:sChoice = "nw_beetleboss"; + fCR = 16.0; + break; + + case 3:sChoice = "NW_BTLFIRE02"; + fCR = 3.0; + break; + + case 4:sChoice = "NW_BTLSTAG"; + fCR = 7.0; + break; + + case 5:sChoice = "NW_BTLSTINK"; + fCR = 3.0; + break; + + case 6:sChoice = "NW_SPIDDIRE"; + fCR = 7.0; + break; + + case 7:sChoice = "NW_SPIDGIANT"; + fCR = 3.0; + break; + + case 8:sChoice = "NW_SPIDPHASE"; + fCR = 3.0; + break; + + case 9:sChoice = "NW_SPIDERBOSS"; + fCR = 14.0; + break; + + case 10:sChoice = "NW_SPIDSWRD"; + fCR = 4.0; + break; + + case 11:sChoice = "NW_SPIDWRA"; + fCR = 4.0; + break; + + case 12:sChoice = ""; + fCR = 0.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM MISCELLANEOUS + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "m") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "X0_BASILISK"; + fCR = 5.0; + break; + + case 1:sChoice = "X0_COCKATRICE"; + fCR = 5.0; + break; + + case 2:sChoice = "X2_HARPY001"; + fCR = 3.0; + break; + + case 3:sChoice = "NW_GRAYREND"; + fCR = 8.0; + break; + + case 4:sChoice = "X2_DEEPROTHE001"; + fCR = 1.0; + break; + + case 5:sChoice = "X0_GORGON"; + fCR = 7.0; + break; + + case 6:sChoice = "NW_KRENSHAR"; + fCR = 2.0; + break; + + case 7:sChoice = "NW_STIRGE"; + fCR = 0.33; + break; + + case 8:sChoice = "X0_MANTICORE"; + fCR = 6.0; + break; + + case 9:sChoice = "X2_GELCUBE"; + fCR = 3.0; + break; + + case 10:sChoice = ""; + fCR = 5.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM PLANAR + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "p") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_DEMON"; + fCR = 15.0; + break; + + case 1:sChoice = "NW_HALFFND001"; + fCR = 8.0; + break; + + case 2:sChoice = "NW_HELLHOUND"; + fCR = 4.0; + break; + + case 3:sChoice = "NW_BEASTXVIM"; + fCR = 5.0; + break; + + case 4:sChoice = "NW_RAKSHASA"; + fCR = 7.0; + break; + + case 5:sChoice = "NW_SHMASTIF"; + fCR = 4.0; + break; + + case 6:sChoice = "NW_DMSUCUBUS"; + fCR = 7.0; + break; + + case 7:sChoice = "NW_DMVROCK"; + fCR = 10.0; + break; + + case 8:sChoice = "NW_MEPAIR"; + fCR = 3.0; + break; + + case 9:sChoice = "NW_MEPDUST"; + fCR = 3.0; + break; + + case 10:sChoice = "NW_MEPEARTH"; + fCR = 3.0; + break; + + case 11:sChoice = "NW_MEPFIRE"; + fCR = 3.0; + break; + + case 12:sChoice = "NW_MEPICE"; + fCR = 3.0; + break; + + case 13:sChoice = "NW_IMP"; + fCR = 3.0; + break; + + case 14:sChoice = "NW_MEPMAGMA"; + fCR = 3.0; + break; + + case 15:sChoice = "NW_MEPOOZE"; + fCR = 3.0; + break; + + case 16:sChoice = "NW_DMQUASIT"; + fCR = 3.0; + break; + + case 17:sChoice = "NW_MEPSALT"; + fCR = 3.0; + break; + + case 19:sChoice = "NW_MEPSTEAM"; + fCR = 3.0; + break; + + case 20:sChoice = "NW_MEPWATER"; + fCR = 3.0; + break; + + case 21:sChoice = "NW_TIEFLING02"; + fCR = 0.5; + break; + + case 22:sChoice = "NW_SLAADBL"; + fCR = 7.0; + break; + + case 23:sChoice = "NW_SLAADDETH"; + fCR = 15.0; + break; + + case 24:sChoice = "NW_SLAADDTHBOSS"; + fCR = 15.0; + break; + + case 25:sChoice = "NW_SLAADGRAY"; + fCR = 10.0; + break; + + case 26:sChoice = "NW_SLAADGRYBOSS"; + fCR = 11.0; + break; + + case 27:sChoice = "NW_SLAADGRN"; + fCR = 9.0; + break; + + case 28:sChoice = "NW_SLAADRED"; + fCR = 6.0; + break; + + case 29:sChoice = "X2_SPIDERDEMO001"; + fCR = 12.0; + break; + + case 30:sChoice = "x2_erinyes"; + fCR = 8.0; + break; + + case 31:sChoice = "X2_PITFIEND001"; + fCR = 15.0; + break; + + case 32:sChoice = "X0_FORM_MYRMARCH"; + fCR = 11.0; + break; + + case 33:sChoice = "X0_FORM_QUEEN"; + fCR = 20.0; + break; + + case 34:sChoice = "X0_FORM_TASKMAST"; + fCR = 7.0; + break; + + case 35:sChoice = "X0_FORM_WARRIOR"; + fCR = 4.0; + break; + + case 36:sChoice = "X0_FORM_WORKER"; + fCR = 1.0; + break; + + case 37:sChoice = "X2_SLAADBLACK001"; + fCR = 30.0; + break; + + case 38:sChoice = "X2_SLAADWHITE001"; + fCR = 25.0; + break; + + case 39:sChoice = ""; + fCR = 0.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM SHAPECHANGER + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "s") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_ARANEA"; + fCR = 3.0; + break; + + case 1:sChoice = "NW_WERECAT"; + fCR = 5.0; + break; + + case 2:sChoice = "NW_WERERAT001"; + fCR = 0.5; + break; + + case 3:sChoice = "NW_WEREWOLF"; + fCR = 2.0; + break; + + case 4:sChoice = "NW_WERERAT"; + fCR = 0.5; + break; + + case 5:sChoice = ""; + fCR = 0.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM UNDEAD + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "u") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_GHAST"; + fCR = 4.0; + break; + + case 1:sChoice = "NW_GHOUL"; + fCR = 2.0; + break; + + case 2:sChoice = "NW_GHOULLORD"; + fCR = 5.0; + break; + + case 3:sChoice = "NW_GHOULBOSS"; + fCR = 10.0; + break; + + case 4:sChoice = "NW_MUMCLERIC"; + fCR = 10.0; + break; + + case 5:sChoice = "NW_MUMMY"; + fCR = 5.0; + break; + + case 6:sChoice = "NW_MUMMYBOSS"; + fCR = 11.0; + break; + + case 7:sChoice = "NW_MUMFIGHT"; + fCR = 10.0; + break; + + case 8:sChoice = "NW_ZOMBWARR02"; + fCR = 19.0; + break; + + case 9:sChoice = "NW_Bodak"; + fCR = 9.0; + break; + + case 10:sChoice = "NW_CURST004"; + fCR = 6.0; + break; + + case 11:sChoice = "NW_CURST003"; + fCR = 5.0; + break; + + case 12:sChoice = "NW_CURST002"; + fCR = 6.0; + break; + + case 13:sChoice = "NW_CURST001"; + fCR = 5.0; + break; + + case 14:sChoice = "NW_DOOMKGHT"; + fCR = 10.0; + break; + + case 15:sChoice = "NW_DOOMKGHTBOSS"; + fCR = 15.0; + break; + + case 16:sChoice = "NW_LICH001"; + fCR = 28.0; + break; + + case 17:sChoice = "NW_LICH003"; + fCR = 17.0; + break; + + case 19:sChoice = "NW_LICHBOSS"; + fCR = 21.0; + break; + + case 20:sChoice = "NW_MOHRG"; + fCR = 12.0; + break; + + case 21:sChoice = "NW_REVENANT001"; + fCR = 7.0; + break; + + case 22:sChoice = "NW_SKELDEVOUR"; + fCR = 13.0; + break; + + case 23:sChoice = "NW_VAMPIRE"; + fCR = 6.0; + break; + + case 24:sChoice = "NW_VAMPIRE003"; + fCR = 16.0; + break; + + case 25:sChoice = "NW_VAMPIRE004"; + fCR = 13.0; + break; + + case 26:sChoice = "NW_VAMPIRE002"; + fCR = 13.0; + break; + + case 27:sChoice = "NW_VAMPIRE001"; + fCR = 12.0; + break; + + case 28:sChoice = "NW_WIGHT"; + fCR = 4.0; + break; + + case 29:sChoice = "NW_VAMPIRE_SHAD"; + fCR = 3.0; + break; + + case 30:sChoice = "NW_SHADOW"; + fCR = 3.0; + break; + + case 31:sChoice = "NW_SHFIEND"; + fCR = 7.0; + break; + + case 32:sChoice = "NW_SKELETON"; + fCR = 0.5; + break; + + case 33:sChoice = "NW_SKELCHIEF"; + fCR = 7.0; + break; + + case 34:sChoice = "NW_SKELMAGE"; + fCR = 4.0; + break; + + case 35:sChoice = "NW_SKELPRIEST"; + fCR = 4.0; + break; + + case 36:sChoice = "NW_SKELWARR01"; + fCR = 6.0; + break; + + case 37:sChoice = "NW_SKELWARR02"; + fCR = 6.0; + break; + + case 38:sChoice = "NW_ALLIP"; + fCR = 3.0; + break; + + case 39:sChoice = "NW_SPECTRE"; + fCR = 6.0; + break; + + case 40:sChoice = "NW_WRAITH"; + fCR = 5.0; + break; + + case 41:sChoice = "NW_ZOMBTYRANT"; + fCR = 3.0; + break; + + case 42:sChoice = "NW_ZOMBIE01"; + fCR = 1.0; + break; + + case 43:sChoice = "NW_ZOMBIE02"; + fCR = 1.0; + break; + + case 44:sChoice = "NW_ZOMBIEBOSS"; + fCR = 8.0; + break; + + case 45:sChoice = "NW_ZOMBWARR01"; + fCR = 4.0; + break; + + case 47:sChoice = "X2_SPIDERDEMO001"; + fCR = 12.0; + break; + + case 48:sChoice = "x2_erinyes"; + fCR = 8.0; + break; + + case 49:sChoice = "X2_PITFIEND001"; + fCR = 15.0; + break; + + case 50:sChoice = "X0_FORM_MYRMARCH"; + fCR = 11.0; + break; + + case 51:sChoice = "X0_FORM_QUEEN"; + fCR = 20.0; + break; + + case 52:sChoice = "X0_FORM_TASKMAST"; + fCR = 7.0; + break; + + case 53:sChoice = "X0_FORM_WARRIOR"; + fCR = 4.0; + break; + + case 54:sChoice = "X0_FORM_WORKER"; + fCR = 1.0; + break; + + case 55:sChoice = "X2_SLAADBLACK001"; + fCR = 30.0; + break; + + case 56:sChoice = "X2_SLAADWHITE001"; + fCR = 25.0; + break; + + case 57:sChoice = "X2_MINDFLAYER003"; + fCR = 18.0; + break; + + case 58:sChoice = "X2_DEMILICH001"; + fCR = 24.0; + break; + + case 59:sChoice = "X2_DRACOLICH001"; + fCR = 43.0; + break; + + case 60:sChoice = ""; + fCR = 0.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } +// PICK RANDOM BANDIT + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(GetSubString(sCreatureTable, iCounter1, 1) == "b") + { + iCounter2 = 0; //Reset the counter + sChoice = "nil"; //Reset sChoice + while(sChoice != "") + { + switch(iCounter2) + { + case 0:sChoice = "NW_DUECLER001"; + fCR = 1.0; + break; + + case 1:sChoice = "NW_DUECLER005"; + fCR = 5.0; + break; + + case 2:sChoice = "NW_DUECLER010"; + fCR = 8.0; + break; + + case 3:sChoice = "NW_DUECLER015"; + fCR = 10.0; + break; + + case 4:sChoice = "NW_DUECLER020"; + fCR = 15.0; + break; + + case 5:sChoice = "NW_DUEMAGE001"; + fCR = 1.0; + break; + + case 6:sChoice = "NW_DUEMAGE005"; + fCR = 4.0; + break; + + case 7:sChoice = "NW_DUEMAGE010"; + fCR = 7.0; + break; + + case 8:sChoice = "NW_DUEMAGE015"; + fCR = 11.0; + break; + + case 9:sChoice = "NW_DUEMAGE020"; + fCR = 14.0; + break; + + case 10:sChoice = "NW_DUEROGUE001"; + fCR = 1.0; + break; + + case 11:sChoice = "NW_DUEROGUE005"; + fCR = 4.0; + break; + + case 12:sChoice = "NW_DUEROGUE010"; + fCR = 7.0; + break; + + case 13:sChoice = "NW_DUEROGUE015"; + fCR = 10.0; + break; + + case 14:sChoice = "NW_DUEROGUE020"; + fCR = 13.0; + break; + + case 15:sChoice = "NW_DUEFIGHT001"; + fCR = 1.0; + break; + + case 16:sChoice = "NW_DUEFIGHT005"; + fCR = 4.0; + break; + + case 17:sChoice = "NW_DUEFIGHT010"; + fCR = 7.0; + break; + + case 19:sChoice = "NW_DUEFIGHT015"; + fCR = 11.0; + break; + + case 20:sChoice = "NW_DUEFIGHT020"; + fCR = 14.0; + break; + + case 21:sChoice = "NW_DWARFMERC001"; + fCR = 0.5; + break; + + case 22:sChoice = "NW_DWARFMERC002"; + fCR = 2.0; + break; + + case 23:sChoice = "NW_DWARFMERC003"; + fCR = 4.0; + break; + + case 24:sChoice = "NW_DWARFMERC004"; + fCR = 7.0; + break; + + case 25:sChoice = "NW_DWARFMERC005"; + fCR = 9.0; + break; + + case 26:sChoice = "NW_DWARFMERC006"; + fCR = 13.0; + break; + + case 27:sChoice = "NW_DROWROGUE001"; + fCR = 1.0; + break; + + case 28:sChoice = "NW_DROWROGUE005"; + fCR = 3.0; + break; + + case 29:sChoice = "NW_DROWROGUE010"; + fCR = 7.0; + break; + + case 30:sChoice = "NW_DROWROGUE015"; + fCR = 10.0; + break; + + case 31:sChoice = "NW_DROWROGUE020"; + fCR = 13.0; + break; + + case 33:sChoice = "NW_DROWMAGE001"; + fCR = 1.0; + break; + + case 34:sChoice = "NW_DROWMAGE005"; + fCR = 4.0; + break; + + case 35:sChoice = "NW_DROWMAGE010"; + fCR = 7.0; + break; + + case 36:sChoice = "NW_DROWMAGE015"; + fCR = 11.0; + break; + + case 37:sChoice = "NW_DROWMAGE020"; + fCR = 15.0; + break; + + case 38:sChoice = "NW_DROWFIGHT001"; + fCR = 1.0; + break; + + case 39:sChoice = "NW_DROWFIGHT005"; + fCR = 4.0; + break; + + case 40:sChoice = "NW_DROWFIGHT010"; + fCR = 8.0; + break; + + case 41:sChoice = "NW_DROWFIGHT015"; + fCR = 11.0; + break; + + case 42:sChoice = "NW_DROWFIGHT020"; + fCR = 15.0; + break; + + case 43:sChoice = "NW_DROWCLER001"; + fCR = 1.0; + break; + + case 44:sChoice = "NW_DROWCLER005"; + fCR = 4.0; + break; + + case 45:sChoice = "NW_DROWCLER010"; + fCR = 8.0; + break; + + case 46:sChoice = "NW_DROWCLER015"; + fCR = 12.0; + break; + + case 47:sChoice = "NW_DROWCLER020"; + fCR = 16.0; + break; + + case 48:sChoice = "NW_HALFMERC001"; + fCR = 1.0; + break; + + case 49:sChoice = "NW_HALFMERC002"; + fCR = 3.0; + break; + + case 50:sChoice = "NW_HALFMERC003"; + fCR = 5.0; + break; + + case 51:sChoice = "NW_HALFMERC004"; + fCR = 7.0; + break; + + case 52:sChoice = "NW_HALFMERC005"; + fCR = 10.0; + break; + + case 53:sChoice = "NW_HALFMERC006"; + fCR = 13.0; + break; + + case 54:sChoice = "NW_BANDIT006"; + fCR = 7.0; + break; + + case 55:sChoice = "NW_BANDIT001"; + fCR = 0.5; + break; + + case 56:sChoice = "NW_BANDIT002"; + fCR = 0.5; + break; + + case 57:sChoice = "NW_BANDIT007"; + fCR = 11.0; + break; + + case 58:sChoice = "NW_BANDIT004"; + fCR = 3.0; + break; + + case 59:sChoice = "NW_BANDIT005"; + fCR = 4.0; + break; + + case 60:sChoice = "NW_BANDIT003"; + fCR = 1.0; + break; + + case 61:sChoice = "NW_GYPSY006"; + fCR = 11.0; + break; + + case 62:sChoice = "NW_GYPSY005"; + fCR = 8.0; + break; + + case 63:sChoice = "NW_GYPSY004"; + fCR = 4.0; + break; + + case 64:sChoice = "NW_GYPSY007"; + fCR = 10.0; + break; + + case 65:sChoice = "NW_GYPSY002"; + fCR = 0.5; + break; + + case 66:sChoice = "NW_GYPSY001"; + fCR = 0.5; + break; + + case 67:sChoice = "NW_GYPSY003"; + fCR = 4.0; + break; + + case 68:sChoice = "NW_HUMANMERC005"; + fCR = 12.0; + break; + + case 69:sChoice = "NW_HUMANMERC006"; + fCR = 15.0; + break; + + case 70:sChoice = "NW_HUMANMERC001"; + fCR = 2.0; + break; + + case 71:sChoice = "NW_HUMANMERC002"; + fCR = 3.0; + break; + + case 72:sChoice = "NW_HUMANMERC003"; + fCR = 6.0; + break; + + case 73:sChoice = "NW_HUMANMERC004"; + fCR = 9.0; + break; + + case 74:sChoice = ""; + fCR = 12.0; + break; + } + if(fCR >= fMinCR && fCR <= fMaxCR && GetStringLowerCase(sChoice) != "") + { + SetLocalString(oMod, "re_sCreatureList" + IntToString(iVarNum), sChoice); + iVarNum++; + } + iCounter2++; + } + } + } + +// PICK RANDOM CREATURE FROM CUSTOM TABLE + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(bCustom + && (GetSubString(sCreatureTable, iCounter1, 1) == "0" || StringToInt(GetSubString(sCreatureTable, iCounter1, 1)) > 0)) + { + sBuild = sBuild + GetSubString(sCreatureTable, iCounter1, 1); + } + else if(bCustom) + { + SetLocalInt(OBJECT_SELF, "re_iVarNum", iVarNum); + SetLocalFloat(OBJECT_SELF, "re_fMinCR", fMinCR); + SetLocalFloat(OBJECT_SELF, "re_fMaxCR", fMaxCR); + ExecuteScript("re_custom" + sBuild, OBJECT_SELF); + iVarNum = GetLocalInt(OBJECT_SELF, "re_iVarNum"); + DeleteLocalInt(OBJECT_SELF, "re_iVarNum"); + DeleteLocalFloat(OBJECT_SELF, "re_fMinCR"); + DeleteLocalFloat(OBJECT_SELF, "re_fMaxCR"); + bCustom = FALSE; + sBuild = ""; + } + if(GetSubString(sCreatureTable, iCounter1, 1) == "x") + { + bCustom = TRUE; + } + } + +// PICK RANDOM CREATURE FROM COMMONER TABLE (For the commoner spawner) + for(iCounter1 = 0; iCounter1 <= GetStringLength(sCreatureTable); iCounter1++) + { + if(bCustom + && (GetSubString(sCreatureTable, iCounter1, 1) == "0" || StringToInt(GetSubString(sCreatureTable, iCounter1, 1)) > 0)) + { + sBuild = sBuild + GetSubString(sCreatureTable, iCounter1, 1); + } + else if(bCustom) + { + ExecuteScript("re_commoner" + sBuild, OBJECT_SELF); + iVarNum = GetLocalInt(OBJECT_SELF, "re_iVarNum"); + DeleteLocalInt(OBJECT_SELF, "re_iVarNum"); + bCustom = FALSE; + sBuild = ""; + } + if(GetSubString(sCreatureTable, iCounter1, 1) == "z") + { + bCustom = TRUE; + } + } + + + +// SELECT THE RANDOM CREATURE + if(!iVarNum) return ""; + int iRnd = Random(iVarNum); + string sCreature = GetLocalString(oMod, "re_sCreatureList" + IntToString(iRnd)); + // Copy the Min and Max number of creatures from the corresponding simulated "array" to the + // root variable in the module object. + SetLocalInt(oMod, "re_iMinNumberOfCreatures", GetLocalInt(oMod, "re_iMinNumberOfCreatures" + IntToString(iRnd))); + SetLocalInt(oMod, "re_iMaxNumberOfCreatures", GetLocalInt(oMod, "re_iMaxNumberOfCreatures" + IntToString(iRnd))); + // Reset the local module variables that store min and max number of creatures + // so we don't use old numbers at a later time. + for(iCounter3 = 1; iCounter3 <= iVarNum; iCounter3++) + { + SetLocalInt(oMod, "re_iMinNumberOfCreatures" + IntToString(iCounter3), 0); + SetLocalInt(oMod, "re_iMaxNumberOfCreatures" + IntToString(iCounter3), 0); + } + return sCreature; +} diff --git a/gamma_age_v2/re_treasure.ncs b/gamma_age_v2/re_treasure.ncs new file mode 100644 index 00000000..51a300c4 Binary files /dev/null and b/gamma_age_v2/re_treasure.ncs differ diff --git a/gamma_age_v2/re_treasure.nss b/gamma_age_v2/re_treasure.nss new file mode 100644 index 00000000..02852cd2 --- /dev/null +++ b/gamma_age_v2/re_treasure.nss @@ -0,0 +1,141 @@ +//////////////////////////////////////////////////// +/* +Custom Treasure Table for use with the BESIE +Random Encounter Package by Ray Miller +*/ +//////////////////////////////////////////////////// +void main() +{ + object oCreature = OBJECT_SELF; + float fChance; + float fMinCR; + float fMaxCR; + int iCounter1; + int iCounter2; + int iMaxNum; + int iMinNum; + string sIfIs; + string sChoice = "nil"; + while(sChoice != "") + { + sChoice = ""; + switch(iCounter1) + { +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//DO NOT EDIT ABOVE THIS LINE///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//CUSTOM TREASURE TABLE BELOW://////////////////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + case 0:sChoice = "";// Treasure resref goes between the " marks. + sIfIs = ""; // Only give this treasure to a creature with this TAG (TAG not RESREF. This allows us to be more specific since the creature already exists when this script is called). + fMinCR = 0.0; // Only give this treasure to a creature whose challenge rating is between these two values. + fMaxCR = 0.0; // Leave them at 0.0 if you wish them not to be considered. + fChance = 0.0; // Set this to the percentage chance of the creature having this item. This is accurate to one one thousandth (0.001). + iMinNum = 1; // + iMaxNum = 1; // The minimum and maximum numbers of this treasure item to randomly give. + break; + + case 1:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 2:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 3:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 4:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 5:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 6:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 7:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 8:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 9:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 10:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//END OF CUSTOM TREASURE TABLE! DO NOT EDIT BELOW THIS LINE/////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + } + if((sIfIs == "" || sIfIs == GetTag(oCreature)) + && (fMinCR == 0.0 || (fMinCR != 0.0 && GetChallengeRating(oCreature) >= fMinCR)) + && (fMaxCR == 0.0 || (fMaxCR != 0.0 && GetChallengeRating(oCreature) <= fMaxCR)) + && Random(10000) + 1 <= FloatToInt(fChance * 100.0)) + { + CreateItemOnObject(sChoice, oCreature, Random((iMaxNum + 1) - iMinNum) + iMinNum); + } + iCounter1++; + } +} diff --git a/gamma_age_v2/re_treasure0.ncs b/gamma_age_v2/re_treasure0.ncs new file mode 100644 index 00000000..8ed8ea0d Binary files /dev/null and b/gamma_age_v2/re_treasure0.ncs differ diff --git a/gamma_age_v2/re_treasure0.nss b/gamma_age_v2/re_treasure0.nss new file mode 100644 index 00000000..9c0130b4 --- /dev/null +++ b/gamma_age_v2/re_treasure0.nss @@ -0,0 +1,52 @@ +//:://///////////////////////////////////////////// +//:: Name re_treasure0 +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* +The purpose of re_treasure# scripts are to generate +random treasure on a creature created via the BESIE +Random Encounter System by Ray Miller. These scripts +are called via an ExecuteScript() function from within +"re_rndenc". The object executing this script is passed +as the creature to be given treasure, so this creature +can be refered to as OBJECT_SELF. +*/ +//::////////////////////////////////////////////// +//:: Created By: Ray Miller +//:: Created On: 10/27/02 +//:://////////////////////////////////////////////////////////////////////////// +/* +This is the standard treasure script for the BESIE Random Encounter System +By Ray Miller. Prior to v1.8 This script executed a series of functions to +bestow treasure upon creatures generated by the system. The problem was that +there were to many function which looped too many times and would sometimes cause +the spawner to abort with a "too many instructions error". So now we just use it +to bestow money. + +Please note that the amount of treasure that should be rewarded for an encounter +or in a module is very subjective. Some will consider this amount far too generous +and some too greedy. +*/ +//////////////////////////////////////////////////////////////////////////////// +void main() +{ + if(d100()>66) return; + object oCreature = OBJECT_SELF; + object oMarker; + if(GetRacialType(oCreature) == RACIAL_TYPE_ANIMAL + || GetRacialType(oCreature) == RACIAL_TYPE_VERMIN) return; + float fChallengeFactor = GetChallengeRating(oCreature) * 30.0; + float fFactor = IntToFloat(Random(5) + 2); + int iTreasure = FloatToInt(fChallengeFactor / fFactor); + int iType = GetRacialType(oCreature); + CreateItemOnObject("NW_IT_GOLD001", oCreature, iTreasure); + if(iType == RACIAL_TYPE_UNDEAD || iType == RACIAL_TYPE_ABERRATION) + oMarker = CreateItemOnObject("NW_IT_MSMLMISC21", oCreature, 1); + else if(iType == RACIAL_TYPE_CONSTRUCT || + iType == RACIAL_TYPE_ELEMENTAL || + iType == RACIAL_TYPE_OUTSIDER) + oMarker = CreateItemOnObject("NW_IT_MSMLMISC11", oCreature, 1); + else + oMarker = CreateItemOnObject("NW_IT_MMIDMISC05", oCreature, 1); + SetLocalInt(oMarker, "bItemForGold", TRUE); +} diff --git a/gamma_age_v2/re_treasure1.ncs b/gamma_age_v2/re_treasure1.ncs new file mode 100644 index 00000000..d94411bc Binary files /dev/null and b/gamma_age_v2/re_treasure1.ncs differ diff --git a/gamma_age_v2/re_treasure1.nss b/gamma_age_v2/re_treasure1.nss new file mode 100644 index 00000000..96a30462 --- /dev/null +++ b/gamma_age_v2/re_treasure1.nss @@ -0,0 +1,145 @@ +//////////////////////////////////////////////////// +/* +Custom Treasure Table for use with the BESIE +Random Encounter Package by Ray Miller +*/ +//////////////////////////////////////////////////// +//////////////////////////////////////////////////// +void main() +{ + //Note: This statement causes the script to exclude animals from this treasure table. + if(GetRacialType(OBJECT_SELF) == RACIAL_TYPE_ANIMAL) return; + //////////////////////////////////////////////////////////// + object oCreature = OBJECT_SELF; + float fChance; + float fMinCR; + float fMaxCR; + int iCounter1; + int iCounter2; + int iMaxNum; + int iMinNum; + string sIfIs; + string sChoice = "nil"; + while(sChoice != "") + { + sChoice = ""; + switch(iCounter1) + { +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//DO NOT EDIT ABOVE THIS LINE///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//CUSTOM TREASURE TABLE BELOW://////////////////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + case 0:sChoice = "NW_IT_MPOTION003";// Treasure resref goes between the " marks. + sIfIs = ""; // Only give this treasure to a creature with this TAG (TAG not RESREF. This allows us to be more specific since the creature already exists when this script is called). + fMinCR = 15.0; // Only give this treasure to a creature whose challenge rating is between these two values. + fMaxCR = 0.0; // Leave them at 0.0 if you wish them not to be considered. + fChance = 25.0; // Set this to the percentage chance of the creature having this item. This is accurate to one one thousandth (0.001). + iMinNum = 1; // + iMaxNum = 1; // The minimum and maximum numbers of this treasure item to randomly give. + break; + + case 1:sChoice = "NW_IT_MPOTION002"; + sIfIs = ""; + fMinCR = 10.0; + fMaxCR = 14.99; + fChance = 25.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 2:sChoice = "NW_IT_MPOTION020"; + sIfIs = ""; + fMinCR = 5.0; + fMaxCR = 9.99; + fChance = 25.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 3:sChoice = "NW_IT_MPOTION001"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 4.99; + fChance = 25.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 4:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 5:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 6:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 7:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 8:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 9:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 10:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//END OF CUSTOM TREASURE TABLE! DO NOT EDIT BELOW THIS LINE/////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + } + if((sIfIs == "" || sIfIs == GetTag(oCreature)) + && (fMinCR == 0.0 || (fMinCR != 0.0 && GetChallengeRating(oCreature) >= fMinCR)) + && (fMaxCR == 0.0 || (fMaxCR != 0.0 && GetChallengeRating(oCreature) <= fMaxCR)) + && Random(10000) + 1 <= FloatToInt(fChance * 100.0)) + { + CreateItemOnObject(sChoice, oCreature, Random((iMaxNum + 1) - iMinNum) + iMinNum); + } + iCounter1++; + } +} diff --git a/gamma_age_v2/re_trsr_table.nss b/gamma_age_v2/re_trsr_table.nss new file mode 100644 index 00000000..20591503 --- /dev/null +++ b/gamma_age_v2/re_trsr_table.nss @@ -0,0 +1,2351 @@ +//////////////////////////////////////////////////// +/* +Default Treasure Table for use with the +BESIE Random Encounter System by Ray Miller + +This script is meant to be used as an include +and will not compile on its own. +*/ +//////////////////////////////////////////////////// +//////////////////////////////////////////////////// + +float fCRFactor = GetChallengeRating(OBJECT_SELF) / 20.0; + +object GiveMoney(object oCreature = OBJECT_SELF) +{ + if(d100()>66) return OBJECT_INVALID; + object oObject = OBJECT_INVALID; + object oMarker; + if(GetRacialType(oCreature) == RACIAL_TYPE_ANIMAL + || GetRacialType(oCreature) == RACIAL_TYPE_VERMIN) return OBJECT_INVALID; + float fChallengeFactor = GetChallengeRating(oCreature) * 30.0; + float fFactor = IntToFloat(Random(5) + 2); + int iTreasure = FloatToInt(fChallengeFactor / fFactor); + int iType = GetRacialType(oCreature); + oObject = CreateItemOnObject("NW_IT_GOLD001", oCreature, iTreasure); + if(iType == RACIAL_TYPE_UNDEAD || iType == RACIAL_TYPE_ABERRATION) + oMarker = CreateItemOnObject("NW_IT_MSMLMISC21", oCreature, 1); + else if(iType == RACIAL_TYPE_CONSTRUCT || + iType == RACIAL_TYPE_ELEMENTAL || + iType == RACIAL_TYPE_OUTSIDER) + oMarker = CreateItemOnObject("NW_IT_MSMLMISC11", oCreature, 1); + else + oMarker = CreateItemOnObject("NW_IT_MMIDMISC05", oCreature, 1); + SetLocalInt(oMarker, "bItemForGold", TRUE); + return oObject; +} + + + + + +object GiveHealing(object oCreature = OBJECT_SELF) +{ +object oObject = OBJECT_INVALID; + +//Note: This statement causes the script to exclude animals from this treasure table. +if(GetRacialType(oCreature) != RACIAL_TYPE_ANIMAL){ +////////////////////////////////////////////////////////////// + int END; + float fChance; + float fMinCR; + float fMaxCR; + int iCounter1; + int iMaxNum; + int iMinNum; + string sIfIs; + string sChoice = ""; + while(!END) + { + sChoice = ""; + switch(iCounter1) + { +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//DO NOT EDIT ABOVE THIS LINE///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//CUSTOM TREASURE TABLE BELOW://////////////////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + case 0:sChoice = "NW_IT_MPOTION003";// Treasure resref goes between the " marks. + sIfIs = ""; // Only give this treasure to a creature with this TAG (TAG not RESREF. This allows us to be more specific since the creature already exists when this script is called). + fMinCR = 12.0; // Only give this treasure to a creature whose challenge rating is between these two values. + fMaxCR = 0.0; // Leave them at 0.0 if you wish them not to be considered. + fChance = 5.0; // Set this to the percentage chance of the creature having this item. This is accurate to one one thousandth (0.001). + iMinNum = 1; // + iMaxNum = 1; // The minimum and maximum numbers of this treasure item to randomly give. + break; + + case 1:sChoice = "NW_IT_MPOTION002"; + sIfIs = ""; + fMinCR = 7.0; + fMaxCR = 11.99; + fChance = 5.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 2:sChoice = "NW_IT_MPOTION020"; + sIfIs = ""; + fMinCR = 3.0; + fMaxCR = 6.99; + fChance = 5.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 3:sChoice = "NW_IT_MPOTION001"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 2.99; + fChance = 5.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 4:sChoice = "NW_IT_MEDKIT001"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 5:sChoice = "NW_IT_MEDKIT002"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 1.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 6:sChoice = "NW_IT_MEDKIT003"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 7:sChoice = "NW_IT_MEDKIT004"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.25; + iMinNum = 1; + iMaxNum = 1; + break; + + case 8:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//END OF CUSTOM TREASURE TABLE! DO NOT EDIT BELOW THIS LINE/////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + default:END = TRUE; + break; + } + if((sIfIs == "" || sIfIs == GetTag(oCreature)) + && (fMinCR == 0.0 || (fMinCR != 0.0 && GetChallengeRating(oCreature) >= fMinCR)) + && (fMaxCR == 0.0 || (fMaxCR != 0.0 && GetChallengeRating(oCreature) <= fMaxCR)) + && Random(10000) + 1 <= FloatToInt(fChance * 100.0)) + { + oObject = CreateItemOnObject(sChoice, oCreature, Random((iMaxNum + 1) - iMinNum) + iMinNum); + } + iCounter1++; + } +} +return oObject; +} + + + + + +object GiveWeapons(object oCreature = OBJECT_SELF) +{ +object oObject = OBJECT_INVALID; +int iStack = 1; +float fRunningChance; +float Chance = 0.0; +int iCounter1 = 1; +int Class; +int Items; +int END; +while(!END) + { + switch(iCounter1) + { +//////////////////////////////////////////////////////////////////////////// +/*////////////////////////////////////////////////////////////////////////// +The following table represents the chance of a creature having an item from +this treasure table based upon its class. Remark in the class type and edit +the chance accordingly. +*/////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//case 1:Class = CLASS_TYPE_ABERRATION; Chance = 100.0; break; +//case 2:Class = CLASS_TYPE_ANIMAL; Chance = 100.0; break; +case 3:Class = CLASS_TYPE_BARBARIAN; Chance = 5.0; break; +case 4:Class = CLASS_TYPE_BARD; Chance = 2.5; break; +//case 5:Class = CLASS_TYPE_BEAST; Chance = 100.0; break; +case 6:Class = CLASS_TYPE_CLERIC; Chance = 2.5; break; +case 7:Class = CLASS_TYPE_COMMONER; Chance = 5.0; break; +case 8:Class = CLASS_TYPE_CONSTRUCT; Chance = 1.0; break; +//case 9:Class = CLASS_TYPE_DRAGON; Chance = 100.0; break; +case 10:Class = CLASS_TYPE_DRUID; Chance = 2.5; break; +//case 11:Class = CLASS_TYPE_ELEMENTAL; Chance = 100.0; break; +//case 12:Class = CLASS_TYPE_FEY; Chance = 100.0; break; +case 13:Class = CLASS_TYPE_FIGHTER; Chance = 7.5; break; +case 14:Class = CLASS_TYPE_GIANT; Chance = 1.0; break; +case 15:Class = CLASS_TYPE_HUMANOID; Chance = 7.5; break; +//case 16:Class = CLASS_TYPE_MAGICAL_BEAST; Chance = 100.0;break; +case 17:Class = CLASS_TYPE_MONK; Chance = 2.0; break; +//case 18:Class = CLASS_TYPE_MONSTROUS; Chance = 100.0; break; +//case 19:Class = CLASS_TYPE_OUTSIDER; Chance = 100.0; break; +case 20:Class = CLASS_TYPE_PALADIN; Chance = 5.0; break; +case 21:Class = CLASS_TYPE_RANGER; Chance = 5.0; break; +case 22:Class = CLASS_TYPE_ROGUE; Chance = 5.0; break; +case 23:Class = CLASS_TYPE_SHAPECHANGER; Chance = 2.0; break; +case 24:Class = CLASS_TYPE_SORCERER; Chance = 0.5; break; +case 25:Class = CLASS_TYPE_UNDEAD; Chance = 2.0; break; +//case 26:Class = CLASS_TYPE_VERMIN; Chance = 100.0; break; +case 27:Class = CLASS_TYPE_WIZARD; Chance = 0.5; break; +/////////////////////////////////////////////////////////////////////////// +/* END OF TABLE */ +/////////////////////////////////////////////////////////////////////////// + case 28:END = TRUE; + default: break; + } + if(GetLevelByClass(Class) && Chance > fRunningChance) fRunningChance = Chance; + iCounter1++; + } +Chance = fRunningChance; +if(Random(10000) <= FloatToInt(Chance * 100.0)) + { + string sChoice; + int iChoices = 4; // set this to the number of "rarity catagories" in the table. + int iRarityChoice = FloatToInt(1.0 + (IntToFloat(iChoices - 1) * fCRFactor)); + int iRarityLevel = Random(iRarityChoice) + 1; + switch(iRarityLevel) + { +case 1: +//////////////////////////////////////// +/* RARITY: COMMON */ +//////////////////////////////////////// +//////////////////////////////////////// +Items = 36; +switch(Random(Items)+1) +{ +case 1:sChoice = "NW_WAXGR001"; break; +case 2:sChoice = "NW_WAXHN001"; break; +case 3:sChoice = "NW_WAXBT001"; break; +case 4:sChoice = "NW_WSWBS001"; break; +case 5:sChoice = "NW_WSWDG001"; break; +case 6:sChoice = "NW_WSWGS001"; break; +case 7:sChoice = "NW_WSWLS001"; break; +case 8:sChoice = "NW_WSWRP001"; break; +case 9:sChoice = "NW_WSWSC001"; break; +case 10:sChoice = "NW_WSWKA001"; break; +case 11:sChoice = "NW_WSWSS001"; break; +case 12:sChoice = "NW_WBLCL001"; break; +case 13:sChoice = "NW_WBLFH001"; break; +case 14:sChoice = "NW_WBLFL001"; break; +case 15:sChoice = "NW_WBLHL001"; break; +case 16:sChoice = "NW_WBLHW001"; break; +case 17:sChoice = "NW_WBLML001"; break; +case 18:sChoice = "NW_WBLMS001"; break; +case 19:sChoice = "NW_WDBMA001"; break; +case 20:sChoice = "NW_WDBAX001"; break; +case 21:sChoice = "NW_WDBQS001"; break; +case 22:sChoice = "NW_WDBSW001"; break; +case 23:sChoice = "NW_WSPKA001"; break; +case 24:sChoice = "NW_WSPKU001"; break; +case 25:sChoice = "NW_WSPSC001"; break; +case 26:sChoice = "NW_WPLHB001"; break; +case 27:sChoice = "NW_WPLSC001"; break; +case 28:sChoice = "NW_WPLSS001"; break; +case 29:sChoice = "NW_WBWXH001"; break; +case 30:sChoice = "NW_WBWXL001"; break; +case 31:sChoice = "NW_WBWLN001"; break; +case 32:sChoice = "NW_WBWSH001"; break; +case 33:sChoice = "NW_WBWSL001"; break; +case 34:sChoice = "NW_WTHDT001"; break; +case 35:sChoice = "NW_WTHSH001"; break; +case 36:sChoice = "NW_WTHAX001"; break; +} +//////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////// +//////////////////////////////////////// +break; + + +case 2: +//////////////////////////////////////// +/* RARITY: UNCOMMON */ +//////////////////////////////////////// +//////////////////////////////////////// +Items = 34; +switch(Random(Items)+1) +{ +case 1:sChoice = "NW_WAXMGR002"; break; +case 2:sChoice = "NW_WAXMHN002"; break; +case 3:sChoice = "NW_WAXMBT002"; break; +case 4:sChoice = "NW_WSWMDG002"; break; +case 5:sChoice = "NW_WSWMGS002"; break; +case 6:sChoice = "NW_WSWMLS002"; break; +case 7:sChoice = "NW_WSWMKA002"; break; +case 8:sChoice = "NW_WSWMRP002"; break; +case 9:sChoice = "NW_WSWMSC002"; break; +case 10:sChoice = "NW_WSWMSS002"; break; +case 11:sChoice = "NW_WBLMCL002"; break; +case 12:sChoice = "NW_WBLMFH002"; break; +case 13:sChoice = "NW_WBLMFL002"; break; +case 14:sChoice = "NW_WBLMHL002"; break; +case 15:sChoice = "NW_WBLMHW002"; break; +case 16:sChoice = "NW_WBLMML002"; break; +case 17:sChoice = "NW_WBLMMS002"; break; +case 18:sChoice = "NW_WDBMMA002"; break; +case 19:sChoice = "NW_WDBMAX002"; break; +case 20:sChoice = "NW_WDBMQS002"; break; +case 21:sChoice = "NW_WDBMSW002"; break; +case 22:sChoice = "NW_WSPMKA002"; break; +case 23:sChoice = "NW_WSPMSC002"; break; +case 24:sChoice = "NW_WPLMHB002"; break; +case 25:sChoice = "NW_WPLMSC002"; break; +case 26:sChoice = "NW_WPLMSS002"; break; +case 27:sChoice = "NW_WBWMXH002"; break; +case 28:sChoice = "NW_WBWMXL002"; break; +case 29:sChoice = "NW_WBWMLN002"; break; +case 30:sChoice = "NW_WBWMSH002"; break; +case 31:sChoice = "NW_WBWMSL001"; break; +case 32:sChoice = "NW_WTHMDT002"; break; +case 33:sChoice = "NW_WTHMSH002"; break; +case 34:sChoice = "NW_WTHMAX002"; break; +} +//////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////// +break; + + +case 3: +//////////////////////////////////////// +/* RARITY: RARE */ +//////////////////////////////////////// +//////////////////////////////////////// +Items = 38; +switch(Random(Items)+1) +{ +case 1:sChoice = "NW_WAXMGR009"; break; +case 2:sChoice = "NW_WAXMHN010"; break; +case 3:sChoice = "NW_WAXMBT010"; break; +case 4:sChoice = "NW_WSWMBS009"; break; +case 5:sChoice = "NW_WSWMDG008"; break; +case 6:sChoice = "NW_WSWMGS011"; break; +case 7:sChoice = "NW_WSWMLS010"; break; +case 8:sChoice = "NW_WSWMKA010"; break; +case 9:sChoice = "NW_WSWMRP010"; break; +case 10:sChoice = "NW_WSWMSC010"; break; +case 11:sChoice = "NW_WSWMSS009"; break; +case 12:sChoice = "NW_WBLMCL010"; break; +case 13:sChoice = "NW_WBLMFH010"; break; +case 14:sChoice = "NW_WBLMFL010"; break; +case 15:sChoice = "NW_WBLMHL010"; break; +case 16:sChoice = "NW_WBLMHW011"; break; +case 17:sChoice = "NW_WBLMML011"; break; +case 18:sChoice = "NW_WBLMMS010"; break; +case 19:sChoice = "NW_WDBMMA010"; break; +case 20:sChoice = "NW_WDBMAX010"; break; +case 21:sChoice = "NW_WDBMQS008"; break; +case 22:sChoice = "NW_WDBMSW010"; break; +case 23:sChoice = "NW_WSPMKA008"; break; +case 24:sChoice = "NW_WSPMKU008"; break; +case 25:sChoice = "NW_WSPMSC010"; break; +case 26:sChoice = "NW_WPLMHB010"; break; +case 27:sChoice = "NW_WPLMSC010"; break; +case 28:sChoice = "NW_WPLMSS010"; break; +case 29:sChoice = "NW_WBWMXH008"; break; +case 30:sChoice = "NW_WBWMXL008"; break; +case 31:sChoice = "NW_WBWMLN010"; break; +case 32:sChoice = "NW_WBWMLN008"; break; +case 33:sChoice = "NW_WBWMSH010"; break; +case 34:sChoice = "NW_WBWMSH008"; break; +case 35:sChoice = "NW_WBWMSL009"; break; +case 36:sChoice = "NW_WTHMDT008"; break; +case 37:sChoice = "NW_WTHMSH008"; break; +case 38:sChoice = "NW_WTHMAX008"; break; +} +//////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////// +break; + + +case 4: +//////////////////////////////////////// +/* RARITY: VERY RARE */ +//////////////////////////////////////// +//////////////////////////////////////// +Items = 40; +switch(Random(Items)+1) +{ +case 1:sChoice = "NW_WAXMGR011"; break; +case 2:sChoice = "NW_WAXMHN011"; break; +case 3:sChoice = "NW_WAXMBT011"; break; +case 4:sChoice = "NW_WSWMBS010"; break; +case 5:sChoice = "NW_WSWMDG009"; break; +case 6:sChoice = "NW_WSWMGS012"; break; +case 7:sChoice = "NW_WSWMLS012"; break; +case 8:sChoice = "NW_WSWMKA011"; break; +case 9:sChoice = "NW_WSWMRP011"; break; +case 10:sChoice = "NW_WSWMSC011"; break; +case 11:sChoice = "NW_WSWMSS011"; break; +case 12:sChoice = "NW_WBLMCL011"; break; +case 13:sChoice = "NW_WBLMFH011"; break; +case 14:sChoice = "NW_WBLMFL011"; break; +case 15:sChoice = "NW_WBLMHL011"; break; +case 16:sChoice = "NW_WBLMHW012"; break; +case 17:sChoice = "NW_WBLMML012"; break; +case 18:sChoice = "NW_WBLMMS011"; break; +case 19:sChoice = "NW_WDBMMA011"; break; +case 20:sChoice = "NW_WDBMAX011"; break; +case 21:sChoice = "NW_WDBMQS009"; break; +case 22:sChoice = "NW_WDBMSW011"; break; +case 23:sChoice = "NW_WSPMKA009"; break; +case 24:sChoice = "NW_WSPMKU009"; break; +case 25:sChoice = "NW_WSPMSC011"; break; +case 26:sChoice = "NW_WPLMHB011"; break; +case 27:sChoice = "NW_WPLMSC011"; break; +case 28:sChoice = "NW_WPLMSS011"; break; +case 29:sChoice = "NW_WBWMXH009"; break; +case 30:sChoice = "NW_WBWMXL009"; break; +case 31:sChoice = "NW_WBWMLN011"; break; +case 32:sChoice = "NW_WBWMLN012"; break; +case 33:sChoice = "NW_WBWMLN009"; break; +case 34:sChoice = "NW_WBWMSH011"; break; +case 35:sChoice = "NW_WBWMSH012"; break; +case 36:sChoice = "NW_WBWMSH009"; break; +case 37:sChoice = "NW_WBWMSL010"; break; +case 38:sChoice = "NW_WTHMDT009"; break; +case 39:sChoice = "NW_WTHMSH009"; break; +case 40:sChoice = "NW_WTHMAX009"; break; +} +//////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////// +//////////////////////////////////////// +break; + } + if(GetStringLeft(sChoice, 6) == "NW_WTH") iStack = Random(50) + 1; + oObject = CreateItemOnObject(sChoice, oCreature, iStack); + + //This code gives a stack of arrows, bolts or, bullets if + // the weapon is a bow, crossbow, or sling. + if(GetStringLeft(sChoice, 7) == "NW_WBWX" + || GetStringLeft(sChoice, 8) == "NW_WBWMX") + CreateItemOnObject("NW_WAMBO001", oCreature, Random(99) + 1); + if(GetStringLeft(sChoice, 7) == "NW_WBWL" + || GetStringLeft(sChoice, 8) == "NW_WBWML" + || GetStringLeft(sChoice, 8) == "NW_WBWSH" + || GetStringLeft(sChoice, 9) == "NW_WBWMSH") + CreateItemOnObject("NW_WAMAR001", oCreature, Random(99) + 1); + if(GetStringLeft(sChoice, 8) == "NW_WBWSL" + || GetStringLeft(sChoice, 9) == "NW_WBWMSL") + CreateItemOnObject("NW_WAMBU001", oCreature, Random(99) + 1); + } +return oObject; +} + + + + + +object GiveArmor(object oCreature = OBJECT_SELF) +{ +object oObject = OBJECT_INVALID; +float fRunningChance; +float Chance = 0.0; +int iCounter1 = 1; +int Items; +int Class; +int END; +while(!END) + { + switch(iCounter1) + { +//////////////////////////////////////////////////////////////////////////// +/*////////////////////////////////////////////////////////////////////////// +The following table represents the chance of a creature having an item from +this treasure table based upon its class. Remark in the class type and edit +the chance accordingly. +*/////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//case 1:Class = CLASS_TYPE_ABERRATION; Chance = 100.0; break; +//case 2:Class = CLASS_TYPE_ANIMAL; Chance = 100.0; break; +case 3:Class = CLASS_TYPE_BARBARIAN; Chance = 7.5; break; +case 4:Class = CLASS_TYPE_BARD; Chance = 2.5; break; +//case 5:Class = CLASS_TYPE_BEAST; Chance = 100.0; break; +case 6:Class = CLASS_TYPE_CLERIC; Chance = 5.0; break; +case 7:Class = CLASS_TYPE_COMMONER; Chance = 2.5; break; +case 8:Class = CLASS_TYPE_CONSTRUCT; Chance = 1.0; break; +//case 9:Class = CLASS_TYPE_DRAGON; Chance = 100.0; break; +case 10:Class = CLASS_TYPE_DRUID; Chance = 2.5; break; +//case 11:Class = CLASS_TYPE_ELEMENTAL; Chance = 100.0; break; +//case 12:Class = CLASS_TYPE_FEY; Chance = 100.0; break; +case 13:Class = CLASS_TYPE_FIGHTER; Chance = 7.5; break; +case 14:Class = CLASS_TYPE_GIANT; Chance = 1.0; break; +case 15:Class = CLASS_TYPE_HUMANOID; Chance = 5.0; break; +//case 16:Class = CLASS_TYPE_MAGICAL_BEAST; Chance = 100.0;break; +case 17:Class = CLASS_TYPE_MONK; Chance = 2.0; break; +//case 18:Class = CLASS_TYPE_MONSTROUS; Chance = 100.0; break; +//case 19:Class = CLASS_TYPE_OUTSIDER; Chance = 100.0; break; +case 20:Class = CLASS_TYPE_PALADIN; Chance = 7.5; break; +case 21:Class = CLASS_TYPE_RANGER; Chance = 5.0; break; +case 22:Class = CLASS_TYPE_ROGUE; Chance = 5.0; break; +case 23:Class = CLASS_TYPE_SHAPECHANGER; Chance = 1.0; break; +case 24:Class = CLASS_TYPE_SORCERER; Chance = 0.5; break; +case 25:Class = CLASS_TYPE_UNDEAD; Chance = 2.0; break; +//case 26:Class = CLASS_TYPE_VERMIN; Chance = 100.0; break; +case 27:Class = CLASS_TYPE_WIZARD; Chance = 0.5; break; +//////////////////////////////////////////////////////////////////////////// +/* END OF TABLE +*/////////////////////////////////////////////////////////////////////////// + case 28:END = TRUE; + default: break; + } + if(GetLevelByClass(Class) && Chance > fRunningChance) fRunningChance = Chance; + iCounter1++; + } +Chance = fRunningChance; +if(Random(10000) <= FloatToInt(Chance * 100.0)) + { +string sChoice; + int iChoices = 6; // set this to the number of "rarity catagories" in the table. + int iRarityChoice = FloatToInt(1.0 + (IntToFloat(iChoices - 1) * fCRFactor)); + int iRarityLevel = Random(iRarityChoice) + 1; + switch(iRarityLevel) + { + case 1: + Items = 5; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_AARCL012"; break; + case 2:sChoice = "NW_AARCL001"; break; + case 3:sChoice = "NW_AARCL009"; break; + case 4:sChoice = "NW_AARCL002"; break; + case 5:sChoice = "NW_ASHSW001"; break; + default: break; + } + break; + case 2: + Items = 10; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_MAARCL046"; break; + case 2:sChoice = "NW_MAARCL044"; break; + case 3:sChoice = "NW_MAARCL043"; break; + case 4:sChoice = "NW_MAARCL045"; break; + case 5:sChoice = "NW_ASHMSW002"; break; + case 6:sChoice = "NW_AARCL010"; break; + case 7:sChoice = "NW_AARCL004"; break; + case 8:sChoice = "NW_AARCL008"; break; + case 9:sChoice = "NW_AARCL003"; break; + case 10:sChoice = "NW_ASHLW001"; break; + default: break; + } + break; + case 3: + Items = 15; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_MAARCL067"; break; + case 2:sChoice = "NW_MAARCL071"; break; + case 3:sChoice = "NW_MAARCL072"; break; + case 4:sChoice = "NW_MAARCL075"; break; + case 5:sChoice = "NW_ASHMSW008"; break; + case 6:sChoice = "NW_MAARCL049"; break; + case 7:sChoice = "NW_MAARCL035"; break; + case 8:sChoice = "NW_MAARCL047"; break; + case 9:sChoice = "NW_MAARCL048"; break; + case 10:sChoice = "NW_AARCL011"; break; + case 11:sChoice = "NW_AARCL007"; break; + case 12:sChoice = "NW_AARCL006"; break; + case 13:sChoice = "NW_AARCL005"; break; + case 14:sChoice = "NW_ASHMLW002"; break; + case 15:sChoice = "NW_ASHTO001"; break; + default: break; + } + break; + case 4: + Items = 15; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_MAARCL079"; break; + case 2:sChoice = "NW_MAARCL083"; break; + case 3:sChoice = "NW_MAARCL084"; break; + case 4:sChoice = "NW_MAARCL087"; break; + case 5:sChoice = "NW_ASHMSW009"; break; + case 6:sChoice = "NW_MAARCL065"; break; + case 7:sChoice = "NW_MAARCL066"; break; + case 8:sChoice = "NW_MAARCL070"; break; + case 9:sChoice = "NW_MAARCL073"; break; + case 10:sChoice = "NW_ASHMLW008"; break; + case 11:sChoice = "NW_MAARCL051"; break; + case 12:sChoice = "NW_MAARCL053"; break; + case 13:sChoice = "NW_MAARCL052"; break; + case 14:sChoice = "NW_MAARCL050"; break; + case 15:sChoice = "NW_ASHMTO002"; break; + default: break; + } + break; + case 5: + Items = 10; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_MAARCL077"; break; + case 2:sChoice = "NW_MAARCL078"; break; + case 3:sChoice = "NW_MAARCL082"; break; + case 4:sChoice = "NW_MAARCL085"; break; + case 5:sChoice = "NW_ASHMLW009"; break; + case 6:sChoice = "NW_MAARCL064"; break; + case 7:sChoice = "NW_MAARCL068"; break; + case 8:sChoice = "NW_MAARCL069"; break; + case 9:sChoice = "NW_MAARCL074"; break; + case 10:sChoice = "NW_ASHMTO008"; break; + default: break; + } + break; + case 6: + Items = 5; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_MAARCL076"; break; + case 2:sChoice = "NW_MAARCL080"; break; + case 3:sChoice = "NW_MAARCL081"; break; + case 4:sChoice = "NW_MAARCL086"; break; + case 5:sChoice = "NW_ASHMTO009"; break; + default: break; + } + break; + default: break; + } + oObject = CreateItemOnObject(sChoice, oCreature); + } +return oObject; +} + + + + + +object GiveMageWeapons(object oCreature = OBJECT_SELF) +{ +object oObject = OBJECT_INVALID; +float fRunningChance; +float Chance = 0.0; +int iCounter = 1; +int Class; +int END; +while(!END) + { + switch(iCounter) + { +//////////////////////////////////////////////////////////////////////////// +/*////////////////////////////////////////////////////////////////////////// +The following table represents the chance of a creature having an item from +this treasure table based upon its class. Remark in the class type and edit +the chance accordingly. +*/////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//case 1:Class = CLASS_TYPE_ABERRATION; Chance = 100.0; break; +//case 2:Class = CLASS_TYPE_ANIMAL; Chance = 100.0; break; +case 3:Class = CLASS_TYPE_BARBARIAN; Chance = 5.0; break; +case 4:Class = CLASS_TYPE_BARD; Chance = 15.0; break; +//case 5:Class = CLASS_TYPE_BEAST; Chance = 100.0; break; +case 6:Class = CLASS_TYPE_CLERIC; Chance = 30.0; break; +case 7:Class = CLASS_TYPE_COMMONER; Chance = 5.0; break; +//case 8:Class = CLASS_TYPE_CONSTRUCT; Chance = 100.0; break; +case 9:Class = CLASS_TYPE_DRAGON; Chance = 10.0; break; +case 10:Class = CLASS_TYPE_DRUID; Chance = 25.0; break; +//case 11:Class = CLASS_TYPE_ELEMENTAL; Chance = 100.0; break; +//case 12:Class = CLASS_TYPE_FEY; Chance = 100.0; break; +//case 13:Class = CLASS_TYPE_FIGHTER; Chance = 100.0; break; +//case 14:Class = CLASS_TYPE_GIANT; Chance = 100.0; break; +case 15:Class = CLASS_TYPE_HUMANOID; Chance = 2.5; break; +//case 16:Class = CLASS_TYPE_MAGICAL_BEAST; Chance = 100.0; break; +//case 17:Class = CLASS_TYPE_MONK; Chance = 100.0; break; +//case 18:Class = CLASS_TYPE_MONSTROUS; Chance = 100.0; break; +//case 19:Class = CLASS_TYPE_OUTSIDER; Chance = 100.0; break; +//case 20:Class = CLASS_TYPE_PALADIN; Chance = 100.0; break; +//case 21:Class = CLASS_TYPE_RANGER; Chance = 100.0; break; +case 22:Class = CLASS_TYPE_ROGUE; Chance = 20.0; break; +//case 23:Class = CLASS_TYPE_SHAPECHANGER; Chance = 100.0; break; +case 24:Class = CLASS_TYPE_SORCERER; Chance = 50.0; break; +//case 25:Class = CLASS_TYPE_UNDEAD; Chance = 100.0; break; +//case 26:Class = CLASS_TYPE_VERMIN; Chance = 100.0; break; +case 27:Class = CLASS_TYPE_WIZARD; Chance = 50.0; break; +//////////////////////////////////////////////////////////////////////////// +/* END OF TABLE +*/////////////////////////////////////////////////////////////////////////// + case 28:END = TRUE; + default: break; + } + if(GetLevelByClass(Class) && Chance > fRunningChance) fRunningChance = Chance; + iCounter++; + } +Chance = fRunningChance; +if(Random(10000) <= FloatToInt(Chance * 100.0)) + { + float fChance; + float fMinCR; + float fMaxCR; + int iCounter1; + int iCounter2; + int iMaxNum; + int iMinNum; + string sIfIs; + string sChoice = "nil"; + while(sChoice != "") + { + sChoice = ""; + switch(iCounter1) + { +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//DO NOT EDIT ABOVE THIS LINE///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//CUSTOM TREASURE TABLE BELOW://////////////////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + case 0:sChoice = "NW_WMGMRD004";// Treasure resref goes between the " marks. + sIfIs = ""; // Only give this treasure to a creature with this TAG (TAG not RESREF. This allows us to be more specific since the creature already exists when this script is called). + fMinCR = 10.0; // Only give this treasure to a creature whose challenge rating is between these two values. + fMaxCR = 0.0; // Leave them at 0.0 if you wish them not to be considered. + fChance = 0.5; // Set this to the percentage chance of the creature having this item. This is accurate to one one thousandth (0.001). + iMinNum = 1; // + iMaxNum = 1; // The minimum and maximum numbers of this treasure item to randomly give. + break; + + case 1:sChoice = "nw_wmgmrd006"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 2:sChoice = "NW_WMGMRD002"; + sIfIs = ""; + fMinCR = 13.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 3:sChoice = "NW_WMGMRD005"; + sIfIs = ""; + fMinCR = 10.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 4:sChoice = "NW_WMGMRD003"; + sIfIs = ""; + fMinCR = 7.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 5:sChoice = "NW_WMGRD002"; + sIfIs = ""; + fMinCR = 4.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 6:sChoice = "NW_WMGST002"; + sIfIs = ""; + fMinCR = 11.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 7:sChoice = "NW_WMGST004"; + sIfIs = ""; + fMinCR = 7.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 8:sChoice = "NW_WMGST005"; + sIfIs = ""; + fMinCR = 8.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 9:sChoice = "NW_WMGST006"; + sIfIs = ""; + fMinCR = 6.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 10:sChoice = "NW_WMGST003"; + sIfIs = ""; + fMinCR = 18.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 11:sChoice = "NW_IT_NOVEL008"; + sIfIs = ""; + fMinCR = 16.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 12:sChoice = "NW_WMGWN011"; + sIfIs = ""; + fMinCR = 7.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 13:sChoice = "NW_WMGWN003"; + sIfIs = ""; + fMinCR = 7.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 14:sChoice = "NW_WMGWN002"; + sIfIs = ""; + fMinCR = 6.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 15:sChoice = "NW_WMGWN013"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 16:sChoice = "NW_WMGWN007"; + sIfIs = ""; + fMinCR = 6.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 17:sChoice = "NW_WMGWN004"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 18:sChoice = "NW_WMGWN006"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 19:sChoice = "NW_WMGWN005"; + sIfIs = ""; + fMinCR = 8.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 20:sChoice = "nw_wmgwn012"; + sIfIs = ""; + fMinCR = 3.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 21:sChoice = "NW_WMGWN010"; + sIfIs = ""; + fMinCR = 7.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 22:sChoice = "NW_WMGWN008"; + sIfIs = ""; + fMinCR = 8.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 23:sChoice = "NW_WMGWN009"; + sIfIs = ""; + fMinCR = 8.0; + fMaxCR = 0.0; + fChance = 0.5; + iMinNum = 1; + iMaxNum = 1; + break; + + case 24:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//END OF CUSTOM TREASURE TABLE! DO NOT EDIT BELOW THIS LINE/////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + } + if((sIfIs == "" || sIfIs == GetTag(oCreature)) + && (fMinCR == 0.0 || (fMinCR != 0.0 && GetChallengeRating(oCreature) >= fMinCR)) + && (fMaxCR == 0.0 || (fMaxCR != 0.0 && GetChallengeRating(oCreature) <= fMaxCR)) + && Random(10000) + 1 <= FloatToInt(fChance * 100.0)) + { + CreateItemOnObject(sChoice, oCreature, Random((iMaxNum + 1) - iMinNum) + iMinNum); + } + iCounter1++; + } + } +return oObject; +} + + + + + +object GiveScrolls(object oCreature = OBJECT_SELF) +{ +object oObject = OBJECT_INVALID; +float fRunningChance; +float Chance = 0.0; +int iCounter1 = 1; +int Items; +int Class; +int END; +while(!END) + { + switch(iCounter1) + { +//////////////////////////////////////////////////////////////////////////// +/*////////////////////////////////////////////////////////////////////////// +The following table represents the chance of a creature having an item from +this treasure table based upon its class. Remark in the class type and edit +the chance accordingly. +*/////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//case 1:Class = CLASS_TYPE_ABERRATION; Chance = 100.0; break; +//case 2:Class = CLASS_TYPE_ANIMAL; Chance = 100.0; break; +case 3:Class = CLASS_TYPE_BARBARIAN; Chance = 1.0; break; +case 4:Class = CLASS_TYPE_BARD; Chance = 2.5; break; +//case 5:Class = CLASS_TYPE_BEAST; Chance = 100.0; break; +case 6:Class = CLASS_TYPE_CLERIC; Chance = 4.0; break; +case 7:Class = CLASS_TYPE_COMMONER; Chance = 1.0; break; +//case 8:Class = CLASS_TYPE_CONSTRUCT; Chance = 100.0; break; +case 9:Class = CLASS_TYPE_DRAGON; Chance = 12.0; break; +case 10:Class = CLASS_TYPE_DRUID; Chance = 3.0; break; +//case 11:Class = CLASS_TYPE_ELEMENTAL; Chance = 100.0; break; +case 12:Class = CLASS_TYPE_FEY; Chance = 14.0; break; +case 13:Class = CLASS_TYPE_FIGHTER; Chance = 0.5; break; +case 14:Class = CLASS_TYPE_GIANT; Chance = 0.5; break; +case 15:Class = CLASS_TYPE_HUMANOID; Chance = 0.5; break; +//case 16:Class = CLASS_TYPE_MAGICAL_BEAST;Chance = 100.0; break; +case 17:Class = CLASS_TYPE_MONK; Chance = 11.0; break; +//case 18:Class = CLASS_TYPE_MONSTROUS; Chance = 100.0; break; +//case 19:Class = CLASS_TYPE_OUTSIDER; Chance = 100.0; break; +case 20:Class = CLASS_TYPE_PALADIN; Chance = 2.5; break; +case 21:Class = CLASS_TYPE_RANGER; Chance = 12.5; break; +case 22:Class = CLASS_TYPE_ROGUE; Chance = 12.5; break; +//case 23:Class = CLASS_TYPE_SHAPECHANGER; Chance = 100.0; break; +case 24:Class = CLASS_TYPE_SORCERER; Chance = 15.0; break; +//case 25:Class = CLASS_TYPE_UNDEAD; Chance = 100.0 break; +//case 26:Class = CLASS_TYPE_VERMIN; Chance = 100.0 break; +case 27:Class = CLASS_TYPE_WIZARD; Chance = 15.0; break; +/////////////////////////////////////////////////////////////////////////// +/* END OF TABLE */ +/////////////////////////////////////////////////////////////////////////// + case 28:END = TRUE; break; + default: break; + } + if(GetLevelByClass(Class) && Chance > fRunningChance) fRunningChance = Chance; + iCounter1++; + } +Chance = fRunningChance; +if(Random(10000) <= FloatToInt(Chance * 100.0)) + { + string sChoice; + int iChoices = 9; // set this to the number of "rarity catagories" in the table. + int iRarityChoice = FloatToInt(1.0 + (IntToFloat(iChoices - 1) * fCRFactor)); + int iRarityLevel = Random(iRarityChoice) + 1; + switch(iRarityLevel) + { +case 1: +//////////////////////////////////////////// +/* SPELL LEVEL 1 */ +//////////////////////////////////////////// +//////////////////////////////////////////// +Items = 17; +switch(Random(Items) + 1) +{ +case 1:sChoice = "NW_IT_SPARSCR112"; break; +case 2:sChoice = "NW_IT_SPARSCR107"; break; +case 3:sChoice = "NW_IT_SPARSCR110"; break; +case 4:sChoice = "NW_IT_SPARSCR206"; break; +case 5:sChoice = "NW_IT_SPARSCR101"; break; +case 6:sChoice = "NW_IT_SPARSCR103"; break; +case 7:sChoice = "NW_IT_SPARSCR106"; break; +case 8:sChoice = "NW_IT_SPARSCR004"; break; +case 9:sChoice = "NW_IT_SPARSCR104"; break; +case 10:sChoice = "NW_IT_SPARSCR109"; break; +case 11:sChoice = "nw_it_sparscr113"; break; +case 12:sChoice = "NW_IT_SPARSCR102"; break; +case 13:sChoice = "NW_IT_SPARSCR111"; break; +case 14:sChoice = "NW_IT_SPARSCR002"; break; +case 15:sChoice = "NW_IT_SPARSCR001"; break; +case 16:sChoice = "NW_IT_SPARSCR108"; break; +case 17:sChoice = "NW_IT_SPARSCR105"; break; +} +//////////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////////// +break; + + +case 2: +//////////////////////////////////////////// +/* SPELL LEVEL 2 */ +//////////////////////////////////////////// +//////////////////////////////////////////// +Items = 25; +switch (Random(Items) + 1) +{ +case 1:sChoice = "NW_IT_SPARSCR211"; break; +case 2:sChoice = "NW_IT_SPARSCR212"; break; +case 3:sChoice = "NW_IT_SPARSCR213"; break; +case 4:sChoice = "NW_IT_SPDVSCR202"; break; +case 5:sChoice = "NW_IT_SPARSCR217"; break; +case 6:sChoice = "NW_IT_SPARSCR206"; break; +case 7:sChoice = "nw_it_sparscr219"; break; +case 8:sChoice = "NW_IT_SPARSCR215"; break; +case 9:sChoice = "nw_it_sparscr220"; break; +case 10:sChoice = "NW_IT_SPARSCR208"; break; +case 11:sChoice = "NW_IT_SPARSCR209"; break; +case 12:sChoice = "NW_IT_SPARSCR207"; break; +case 13:sChoice = "NW_IT_SPARSCR216"; break; +case 14:sChoice = "NW_IT_SPARSCR218"; break; +case 15:sChoice = "NW_IT_SPDVSCR201"; break; +case 16:sChoice = "NW_IT_SPARSCR202"; break; +case 17:sChoice = "nw_it_sparscr221"; break; +case 18:sChoice = "NW_IT_SPARSCR201"; break; +case 19:sChoice = "NW_IT_SPARSCR210"; break; +case 20:sChoice = "NW_IT_SPARSCR205"; break; +case 21:sChoice = "NW_IT_SPDVSCR203"; break; +case 22:sChoice = "NW_IT_SPDVSCR204"; break; +case 23:sChoice = "NW_IT_SPARSCR203"; break; +case 24:sChoice = "NW_IT_SPARSCR214"; break; +case 25:sChoice = "NW_IT_SPARSCR204"; break; +} +//////////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////////// +break; + + +case 3: +//////////////////////////////////////////// +/* SPELL LEVEL 3 */ +//////////////////////////////////////////// +//////////////////////////////////////////// +Items = 18; +switch (Random(Items) + 1) +{ +case 1:sChoice = "NW_IT_SPARSCR307"; break; +case 2:sChoice = "NW_IT_SPARSCR301"; break; +case 3:sChoice = "NW_IT_SPARSCR309"; break; +case 4:sChoice = "NW_IT_SPARSCR304"; break; +case 5:sChoice = "NW_IT_SPARSCR312"; break; +case 6:sChoice = "NW_IT_SPARSCR308"; break; +case 7:sChoice = "NW_IT_SPARSCR314"; break; +case 8:sChoice = "NW_IT_SPARSCR310"; break; +case 9:sChoice = "NW_IT_SPARSCR302"; break; +case 10:sChoice = "nw_it_sparscr315"; break; +case 11:sChoice = "NW_IT_SPARSCR303"; break; +case 12:sChoice = "NW_IT_SPDVSCR501"; break; +case 13:sChoice = "NW_IT_SPDVSCR301"; break; +case 14:sChoice = "NW_IT_SPDVSCR302"; break; +case 15:sChoice = "NW_IT_SPARSCR313"; break; +case 16:sChoice = "NW_IT_SPARSCR305"; break; +case 17:sChoice = "NW_IT_SPARSCR306"; break; +case 18:sChoice = "NW_IT_SPARSCR311"; break; +} +//////////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////////// +break; + + +case 4: +//////////////////////////////////////////// +/* SPELL LEVEL 4 */ +//////////////////////////////////////////// +//////////////////////////////////////////// +Items = 19; +switch (Random(Items) + 1) +{ +case 1:sChoice = "NW_IT_SPARSCR414"; break; +case 2:sChoice = "NW_IT_SPARSCR405"; break; +case 3:sChoice = "NW_IT_SPARSCR406"; break; +case 4:sChoice = "NW_IT_SPARSCR411"; break; +case 5:sChoice = "NW_IT_SPARSCR416"; break; +case 6:sChoice = "NW_IT_SPARSCR412"; break; +case 7:sChoice = "NW_IT_SPARSCR413"; break; +case 8:sChoice = "NW_IT_SPARSCR408"; break; +case 9:sChoice = "NW_IT_SPARSCR417"; break; +case 10:sChoice = "NW_IT_SPARSCR401"; break; +case 11:sChoice = "NW_IT_SPDVSCR402"; break; +case 12:sChoice = "NW_IT_SPARSCR409"; break; +case 13:sChoice = "NW_IT_SPARSCR415"; break; +case 14:sChoice = "NW_IT_SPARSCR402"; break; +case 15:sChoice = "NW_IT_SPDVSCR401"; break; +case 16:sChoice = "NW_IT_SPARSCR410"; break; +case 17:sChoice = "NW_IT_SPARSCR403"; break; +case 18:sChoice = "NW_IT_SPARSCR404"; break; +case 19:sChoice = "NW_IT_SPARSCR407"; break; +} +//////////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////////// +break; + + +case 5: +//////////////////////////////////////////// +/* SPELL LEVEL 5 */ +//////////////////////////////////////////// +//////////////////////////////////////////// +Items = 13; +switch (Random(Items) + 1) +{ +case 1:sChoice = "NW_IT_SPARSCR509"; break; +case 2:sChoice = "NW_IT_SPARSCR502"; break; +case 3:sChoice = "NW_IT_SPARSCR507"; break; +case 4:sChoice = "NW_IT_SPARSCR501"; break; +case 5:sChoice = "NW_IT_SPARSCR503"; break; +case 6:sChoice = "NW_IT_SPARSCR504"; break; +case 7:sChoice = "NW_IT_SPARSCR508"; break; +case 8:sChoice = "NW_IT_SPARSCR505"; break; +case 9:sChoice = "NW_IT_SPARSCR511"; break; +case 10:sChoice = "NW_IT_SPARSCR512"; break; +case 11:sChoice = "NW_IT_SPARSCR513"; break; +case 12:sChoice = "NW_IT_SPARSCR506"; break; +case 13:sChoice = "NW_IT_SPARSCR510"; break; +} +//////////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////////// +break; + + +case 6: +//////////////////////////////////////////// +/* SPELL LEVEL 6 */ +//////////////////////////////////////////// +//////////////////////////////////////////// +Items = 14; +switch (Random(Items) + 1) +{ +case 1:sChoice = "NW_IT_SPARSCR603"; break; +case 2:sChoice = "NW_IT_SPARSCR607"; break; +case 3:sChoice = "NW_IT_SPARSCR610"; break; +case 4:sChoice = "NW_IT_SPARSCR608"; break; +case 5:sChoice = "NW_IT_SPARSCR601"; break; +case 6:sChoice = "NW_IT_SPARSCR602"; break; +case 7:sChoice = "NW_IT_SPARSCR612"; break; +case 8:sChoice = "NW_IT_SPARSCR613"; break; +case 9:sChoice = "NW_IT_SPARSCR611"; break; +case 10:sChoice = "NW_IT_SPARSCR604"; break; +case 11:sChoice = "NW_IT_SPARSCR609"; break; +case 12:sChoice = "NW_IT_SPARSCR605"; break; +case 13:sChoice = "nw_it_sparscr614"; break; +case 14:sChoice = "NW_IT_SPARSCR606"; break; +} +//////////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////////// +break; + + +case 7: +//////////////////////////////////////////// +/* SPELL LEVEL 7 */ +//////////////////////////////////////////// +//////////////////////////////////////////// +Items = 10; +switch (Random(Items) + 1) +{ +case 1:sChoice = "NW_IT_SPARSCR707"; break; +case 2:sChoice = "NW_IT_SPARSCR704"; break; +case 3:sChoice = "NW_IT_SPARSCR708"; break; +case 4:sChoice = "NW_IT_SPDVSCR701"; break; +case 5:sChoice = "NW_IT_SPARSCR705"; break; +case 6:sChoice = "NW_IT_SPARSCR702"; break; +case 7:sChoice = "NW_IT_SPARSCR706"; break; +case 8:sChoice = "NW_IT_SPDVSCR702"; break; +case 9:sChoice = "NW_IT_SPARSCR701"; break; +case 10:sChoice = "NW_IT_SPARSCR703"; break; +} +//////////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////////// +break; + + +case 8: +//////////////////////////////////////////// +/* SPELL LEVEL 8 */ +//////////////////////////////////////////// +//////////////////////////////////////////// +Items = 9; +switch (Random(Items) + 1) +{ +case 1:sChoice = "NW_IT_SPARSCR803"; break; +case 2:sChoice = "NW_IT_SPARSCR809"; break; +case 3:sChoice = "NW_IT_SPARSCR804"; break; +case 4:sChoice = "NW_IT_SPARSCR807"; break; +case 5:sChoice = "NW_IT_SPARSCR806"; break; +case 6:sChoice = "NW_IT_SPARSCR801"; break; +case 7:sChoice = "NW_IT_SPARSCR808"; break; +case 8:sChoice = "NW_IT_SPARSCR802"; break; +case 9:sChoice = "NW_IT_SPARSCR805"; break; +} +//////////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////////// +break; + + +case 9: +//////////////////////////////////////////// +/* SPELL LEVEL 9 */ +//////////////////////////////////////////// +//////////////////////////////////////////// +Items = 12; +switch (Random(Items) + 1) +{ +case 1:sChoice = "NW_IT_SPARSCR905"; break; +case 2:sChoice = "NW_IT_SPARSCR908"; break; +case 3:sChoice = "NW_IT_SPARSCR902"; break; +case 4:sChoice = "NW_IT_SPARSCR912"; break; +case 5:sChoice = "NW_IT_SPARSCR906"; break; +case 6:sChoice = "NW_IT_SPARSCR901"; break; +case 7:sChoice = "NW_IT_SPARSCR903"; break; +case 8:sChoice = "NW_IT_SPARSCR910"; break; +case 9:sChoice = "NW_IT_SPARSCR904"; break; +case 10:sChoice = "NW_IT_SPARSCR911"; break; +case 11:sChoice = "NW_IT_SPARSCR909"; break; +case 12:sChoice = "NW_IT_SPARSCR907"; break; +} +//////////////////////////////////////////// +/* END OF TABLE */ +//////////////////////////////////////////// +break; + } + oObject = CreateItemOnObject(sChoice); + } +return oObject; +} + + + + + +object GiveGems(object oCreature = OBJECT_SELF) +{ +object oObject = OBJECT_INVALID; +float fRunningChance; +float Chance = 0.0; +int iCounter = 1; +int Class; +int END; +while(!END) + { + switch(iCounter) + { +//////////////////////////////////////////////////////////////////////////// +/*////////////////////////////////////////////////////////////////////////// +The following table represents the chance of a creature having an item from +this treasure table based upon its class. Remark in the class type and edit +the chance accordingly. +*/////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//case 1:Class = CLASS_TYPE_ABERRATION; Chance = 100.0; break; +//case 2:Class = CLASS_TYPE_ANIMAL; Chance = 100.0; break; +case 3:Class = CLASS_TYPE_BARBARIAN; Chance = 1.0; break; +case 4:Class = CLASS_TYPE_BARD; Chance = 10.0; break; +//case 5:Class = CLASS_TYPE_BEAST; Chance = 100.0; break; +case 6:Class = CLASS_TYPE_CLERIC; Chance = 5.0; break; +case 7:Class = CLASS_TYPE_COMMONER; Chance = 5.0; break; +//case 8:Class = CLASS_TYPE_CONSTRUCT; Chance = 100.0; break; +case 9:Class = CLASS_TYPE_DRAGON; Chance = 20.0; break; +case 10:Class = CLASS_TYPE_DRUID; Chance = 1.0; break; +case 11:Class = CLASS_TYPE_ELEMENTAL; Chance = 5.0; break; +case 12:Class = CLASS_TYPE_FEY; Chance = 20.0; break; +case 13:Class = CLASS_TYPE_FIGHTER; Chance = 2.5; break; +case 14:Class = CLASS_TYPE_GIANT; Chance = 2.5; break; +case 15:Class = CLASS_TYPE_HUMANOID; Chance = 2.5; break; +//case 16:Class = CLASS_TYPE_MAGICAL_BEAST; Chance = 100.0; break; +case 17:Class = CLASS_TYPE_MONK; Chance = 2.5; break; +//case 18:Class = CLASS_TYPE_MONSTROUS; Chance = 100.0; break; +//case 19:Class = CLASS_TYPE_OUTSIDER; Chance = 100.0; break; +case 20:Class = CLASS_TYPE_PALADIN; Chance = 1.0; break; +case 21:Class = CLASS_TYPE_RANGER; Chance = 5.0; break; +case 22:Class = CLASS_TYPE_ROGUE; Chance = 20.0; break; +//case 23:Class = CLASS_TYPE_SHAPECHANGER; Chance = 100.0; break; +case 24:Class = CLASS_TYPE_SORCERER; Chance = 15.0; break; +case 25:Class = CLASS_TYPE_UNDEAD; Chance = 2.5; break; +//case 26:Class = CLASS_TYPE_VERMIN; Chance = 100.0; break; +case 27:Class = CLASS_TYPE_WIZARD; Chance = 15.0; break; +//////////////////////////////////////////////////////////////////////////// +/* END OF TABLE +*/////////////////////////////////////////////////////////////////////////// + case 28:END = TRUE; + default: break; + } + if(GetLevelByClass(Class) && Chance > fRunningChance) fRunningChance = Chance; + iCounter++; + } +Chance = fRunningChance; +if(Random(10000) <= FloatToInt(Chance * 100.0)) + { + float fChance; + float fMinCR; + float fMaxCR; + int iCounter1; + int iCounter2; + int iMaxNum; + int iMinNum; + string sIfIs; + string sChoice = "nil"; + while(sChoice != "") + { + sChoice = ""; + switch(iCounter1) + { +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//DO NOT EDIT ABOVE THIS LINE///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//CUSTOM TREASURE TABLE BELOW://////////////////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + case 0:sChoice = "";// Treasure resref goes between the " marks. + sIfIs = ""; // Only give this treasure to a creature with this TAG (TAG not RESREF. This allows us to be more specific since the creature already exists when this script is called). + fMinCR = 0.0; // Only give this treasure to a creature whose challenge rating is between these two values. + fMaxCR = 0.0; // Leave them at 0.0 if you wish them not to be considered. + fChance = 0.5; // Set this to the percentage chance of the creature having this item. This is accurate to one one thousandth (0.001). + iMinNum = 1; // + iMaxNum = 1; // The minimum and maximum numbers of this treasure item to randomly give. + break; + + case 1:sChoice = "NW_IT_GEM013"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 2:sChoice = "NW_IT_GEM003"; + sIfIs = ""; + fMinCR =0.0; + fMaxCR = 0.0; + fChance = 5.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 3:sChoice = "NW_IT_GEM014"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 10.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 4:sChoice = "NW_IT_GEM005"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.1; + iMinNum = 1; + iMaxNum = 1; + break; + + case 5:sChoice = "NW_IT_GEM012"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.05; + iMinNum = 1; + iMaxNum = 1; + break; + + case 6:sChoice = "NW_IT_GEM002"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 10.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 7:sChoice = "NW_IT_GEM009"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.15; + iMinNum = 1; + iMaxNum = 1; + break; + + case 8:sChoice = "NW_IT_GEM015"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 9:sChoice = "NW_IT_GEM011"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 10:sChoice = "NW_IT_GEM001"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 15.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 11:sChoice = "NW_IT_GEM007"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 15.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 12:sChoice = "NW_IT_GEM004"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 10.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 13:sChoice = "NW_IT_GEM006"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.05; + iMinNum = 1; + iMaxNum = 1; + break; + + case 14:sChoice = "NW_IT_GEM008"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.2; + iMinNum = 1; + iMaxNum = 1; + break; + + case 15:sChoice = "NW_IT_GEM010"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 1.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 16:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 0; + iMaxNum = 0; + break; + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//END OF CUSTOM TREASURE TABLE! DO NOT EDIT BELOW THIS LINE/////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + } + if((sIfIs == "" || sIfIs == GetTag(oCreature)) + && (fMinCR == 0.0 || (fMinCR != 0.0 && GetChallengeRating(oCreature) >= fMinCR)) + && (fMaxCR == 0.0 || (fMaxCR != 0.0 && GetChallengeRating(oCreature) <= fMaxCR)) + && Random(10000) + 1 <= FloatToInt(fChance * 100.0)) + { + oObject = CreateItemOnObject(sChoice, oCreature, Random((iMaxNum + 1) - iMinNum) + iMinNum); + } + iCounter1++; + } + } +return oObject; +} + + + + +object GivePotions(object oCreature = OBJECT_SELF) +{ +object oObject = OBJECT_INVALID; +float fRunningChance; +float Chance = 0.0; +int iCounter = 1; +int Class; +int END; +while(!END) + { + switch(iCounter) + { +//////////////////////////////////////////////////////////////////////////// +/*////////////////////////////////////////////////////////////////////////// +The following table represents the chance of a creature having an item from +this treasure table based upon its class. Remark in the class type and edit +the chance accordingly. +*/////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//case 1:Class = CLASS_TYPE_ABERRATION; Chance = 100.0; break; +//case 2:Class = CLASS_TYPE_ANIMAL; Chance = 100.0; break; +case 3:Class = CLASS_TYPE_BARBARIAN; Chance = 2.5; break; +case 4:Class = CLASS_TYPE_BARD; Chance = 5.0; break; +//case 5:Class = CLASS_TYPE_BEAST; Chance = 100.0; break; +case 6:Class = CLASS_TYPE_CLERIC; Chance = 10.0; break; +case 7:Class = CLASS_TYPE_COMMONER; Chance = 5.0; break; +//case 8:Class = CLASS_TYPE_CONSTRUCT; Chance = 100.0; break; +case 9:Class = CLASS_TYPE_DRAGON; Chance = 20.0; break; +case 10:Class = CLASS_TYPE_DRUID; Chance = 10.0; break; +//case 11:Class = CLASS_TYPE_ELEMENTAL; Chance = 100.0; break; +case 12:Class = CLASS_TYPE_FEY; Chance = 5.0; break; +case 13:Class = CLASS_TYPE_FIGHTER; Chance = 2.5; break; +case 14:Class = CLASS_TYPE_GIANT; Chance = 5.0; break; +case 15:Class = CLASS_TYPE_HUMANOID; Chance = 5.0; break; +//case 16:Class = CLASS_TYPE_MAGICAL_BEAST; Chance = 100.0; break; +case 17:Class = CLASS_TYPE_MONK; Chance = 5.0; break; +//case 18:Class = CLASS_TYPE_MONSTROUS; Chance = 100.0; break; +//case 19:Class = CLASS_TYPE_OUTSIDER; Chance = 100.0; break; +case 20:Class = CLASS_TYPE_PALADIN; Chance = 5.0; break; +case 21:Class = CLASS_TYPE_RANGER; Chance = 10.0; break; +case 22:Class = CLASS_TYPE_ROGUE; Chance = 10.0; break; +//case 23:Class = CLASS_TYPE_SHAPECHANGER; Chance = 100.0; break; +case 24:Class = CLASS_TYPE_SORCERER; Chance = 10.0; break; +//case 25:Class = CLASS_TYPE_UNDEAD; Chance = 100.0; break; +//case 26:Class = CLASS_TYPE_VERMIN; Chance = 100.0; break; +case 27:Class = CLASS_TYPE_WIZARD; Chance = 10.0; break; +//////////////////////////////////////////////////////////////////////////// +/* END OF TABLE +*/////////////////////////////////////////////////////////////////////////// + case 28:END = TRUE; + default: break; + } + if(GetLevelByClass(Class) && Chance > fRunningChance) fRunningChance = Chance; + iCounter++; + } +Chance = fRunningChance; +if(Random(10000) <= FloatToInt(Chance * 100.0)) + { + float fChance; + float fMinCR; + float fMaxCR; + int iCounter1; + int iCounter2; + int iMaxNum; + int iMinNum; + string sIfIs; + string sChoice = "nil"; + while(sChoice != "") + { + sChoice = ""; + switch(iCounter1) + { +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//DO NOT EDIT ABOVE THIS LINE///////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//CUSTOM TREASURE TABLE BELOW://////////////////////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + case 0:sChoice = "NW_IT_MPOTION016";// Treasure resref goes between the " marks. + sIfIs = ""; // Only give this treasure to a creature with this TAG (TAG not RESREF. This allows us to be more specific since the creature already exists when this script is called). + fMinCR = 0.0; // Only give this treasure to a creature whose challenge rating is between these two values. + fMaxCR = 0.0; // Leave them at 0.0 if you wish them not to be considered. + fChance = 2.0; // Set this to the percentage chance of the creature having this item. This is accurate to one one thousandth (0.001). + iMinNum = 1; // + iMaxNum = 1; // The minimum and maximum numbers of this treasure item to randomly give. + break; + + case 1:sChoice = "NW_IT_MPOTION006"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 2:sChoice = "NW_IT_MPOTION005"; + sIfIs = ""; + fMinCR =0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 3:sChoice = "NW_IT_MPOTION009"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 4:sChoice = "NW_IT_MPOTION015"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 5:sChoice = "NW_IT_MPOTION014"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 6:sChoice = "NW_IT_MPOTION007"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 7:sChoice = "NW_IT_MPOTION010"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 8:sChoice = "NW_IT_MPOTION013"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 9:sChoice = "NW_IT_MPOTION017"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 10:sChoice = "NW_IT_MPOTION012"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 11:sChoice = "NW_IT_MPOTION008"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 12:sChoice = "NW_IT_MPOTION011"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 13:sChoice = "NW_IT_MPOTION019"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 14:sChoice = "NW_IT_MPOTION018"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 15:sChoice = "NW_IT_MPOTION004"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 16:sChoice = "NW_IT_MPOTION021"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 17:sChoice = "NW_IT_MPOTION022"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 18:sChoice = "NW_IT_MPOTION023"; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 2.0; + iMinNum = 1; + iMaxNum = 1; + break; + + case 19:sChoice = ""; + sIfIs = ""; + fMinCR = 0.0; + fMaxCR = 0.0; + fChance = 0.0; + iMinNum = 1; + iMaxNum = 1; + break; + + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//END OF CUSTOM TREASURE TABLE! DO NOT EDIT BELOW THIS LINE/////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + } + if((sIfIs == "" || sIfIs == GetTag(oCreature)) + && (fMinCR == 0.0 || (fMinCR != 0.0 && GetChallengeRating(oCreature) >= fMinCR)) + && (fMaxCR == 0.0 || (fMaxCR != 0.0 && GetChallengeRating(oCreature) <= fMaxCR)) + && Random(10000) + 1 <= FloatToInt(fChance * 100.0)) + { + oObject = CreateItemOnObject(sChoice, oCreature, Random((iMaxNum + 1) - iMinNum) + iMinNum); + } + iCounter1++; + } +} +return oObject; +} + + + + + +object GiveJewelry(object oCreature = OBJECT_SELF) +{ +object oObject = OBJECT_INVALID; +float fRunningChance; +float Chance = 0.0; +int iCounter1 = 1; +int Items; +int Class; +int END; +while(!END) + { + switch(iCounter1) + { +//////////////////////////////////////////////////////////////////////////// +/*////////////////////////////////////////////////////////////////////////// +The following table represents the chance of a creature having an item from +this treasure table based upon its class. Remark in the class type and edit +the chance accordingly. +*/////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +case 1:Class = CLASS_TYPE_ABERRATION; Chance = 1.0; break; +//case 2:Class = CLASS_TYPE_ANIMAL; Chance = 100.0; break; +case 3:Class = CLASS_TYPE_BARBARIAN; Chance = 1.0; break; +case 4:Class = CLASS_TYPE_BARD; Chance = 1.0; break; +//case 5:Class = CLASS_TYPE_BEAST; Chance = 100.0; break; +case 6:Class = CLASS_TYPE_CLERIC; Chance = 1.0; break; +case 7:Class = CLASS_TYPE_COMMONER; Chance = 1.0; break; +//case 8:Class = CLASS_TYPE_CONSTRUCT; Chance = 100.0; break; +case 9:Class = CLASS_TYPE_DRAGON; Chance = 10.0; break; +case 10:Class = CLASS_TYPE_DRUID; Chance = 1.0; break; +//case 11:Class = CLASS_TYPE_ELEMENTAL; Chance = 100.0; break; +case 12:Class = CLASS_TYPE_FEY; Chance = 1.0; break; +case 13:Class = CLASS_TYPE_FIGHTER; Chance = 1.0; break; +case 14:Class = CLASS_TYPE_GIANT; Chance = 1.0; break; +case 15:Class = CLASS_TYPE_HUMANOID; Chance = 1.0; break; +//case 16:Class = CLASS_TYPE_MAGICAL_BEAST; Chance = 100.0; break; +case 17:Class = CLASS_TYPE_MONK; Chance = 1.0; break; +case 18:Class = CLASS_TYPE_MONSTROUS; Chance = 1.0; break; +case 19:Class = CLASS_TYPE_OUTSIDER; Chance = 1.0; break; +case 20:Class = CLASS_TYPE_PALADIN; Chance = 1.0; break; +case 21:Class = CLASS_TYPE_RANGER; Chance = 1.0; break; +case 22:Class = CLASS_TYPE_ROGUE; Chance = 2.0; break; +case 23:Class = CLASS_TYPE_SHAPECHANGER; Chance = 1.0; break; +case 24:Class = CLASS_TYPE_SORCERER; Chance = 2.0; break; +case 25:Class = CLASS_TYPE_UNDEAD; Chance = 1.0; break; +//case 26:Class = CLASS_TYPE_VERMIN; Chance = 100.0; break; +case 27:Class = CLASS_TYPE_WIZARD; Chance = 1.0; break; +//////////////////////////////////////////////////////////////////////////// +/* END OF TABLE +*/////////////////////////////////////////////////////////////////////////// + case 28:END = TRUE; + default: break; + } + if(GetLevelByClass(Class) && Chance > fRunningChance) fRunningChance = Chance; + iCounter1++; + } +Chance = fRunningChance; +if(Random(10000) <= FloatToInt(Chance * 100.0)) + { +string sChoice; + int iChoices = 5; // set this to the number of "rarity catagories" in the table. + int iRarityChoice = FloatToInt(1.0 + (IntToFloat(iChoices - 1) * fCRFactor)); + int iRarityLevel = Random(iRarityChoice) + 1; + switch(iRarityLevel) + { + case 1: + Items = 14; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_IT_MNECK001"; break; + case 2:sChoice = "nw_it_mneck024"; break; + case 3:sChoice = "NW_IT_MNECK007"; break; + case 4:sChoice = "NW_IT_MNECK006"; break; + case 5:sChoice = "NW_IT_MRING006"; break; + case 6:sChoice = "nw_it_mring024"; break; + case 7:sChoice = "NW_IT_MRING001"; break; + case 8:sChoice = "nw_it_mneck032"; break; + case 9:sChoice = "nw_it_mneck030"; break; + case 10:sChoice = "nw_it_mneck031"; break; + case 11:sChoice = "nw_it_mneck029"; break; + case 12:sChoice = "NW_IT_MRING012"; break; + case 13:sChoice = "NW_IT_MRING011"; break; + case 14:sChoice = "NW_IT_MRING013"; break; + default: break; + } + break; + case 2: + Items = 12; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_IT_MNECK012"; break; + case 2:sChoice = "nw_it_mneck025"; break; + case 3:sChoice = "NW_IT_MNECK008"; break; + case 4:sChoice = "NW_IT_MNECK016"; break; + case 5:sChoice = "NW_IT_MRING014"; break; + case 6:sChoice = "nw_it_mring025"; break; + case 7:sChoice = "NW_IT_MRING008"; break; + case 8:sChoice = "NW_IT_MRING031"; break; + case 9:sChoice = "NW_IT_MNECK033"; break; + case 10:sChoice = "NW_IT_MRING002"; break; + case 11:sChoice = "NW_IT_MRING007"; break; + case 12:sChoice = "NW_IT_MRING003"; break; + default: break; + } + break; + case 3: + Items = 12; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_IT_MNECK013"; break; + case 2:sChoice = "nw_it_mneck026"; break; + case 3:sChoice = "NW_IT_MNECK009"; break; + case 4:sChoice = "NW_IT_MNECK017"; break; + case 5:sChoice = "NW_IT_MRING015"; break; + case 6:sChoice = "nw_it_mring026"; break; + case 7:sChoice = "NW_IT_MRING018"; break; + case 8:sChoice = "NW_IT_MRING032"; break; + case 9:sChoice = "NW_IT_MNECK036"; break; + case 10:sChoice = "NW_IT_MNECK005"; break; + case 11:sChoice = "NW_IT_MRING029"; break; + case 12:sChoice = "NW_IT_MRING005"; break; + default: break; + } + break; + case 4: + Items = 9; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_IT_MNECK014"; break; + case 2:sChoice = "nw_it_mneck027"; break; + case 3:sChoice = "NW_IT_MNECK010"; break; + case 4:sChoice = "NW_IT_MNECK018"; break; + case 5:sChoice = "NW_IT_MRING016"; break; + case 6:sChoice = "nw_it_mring027"; break; + case 7:sChoice = "NW_IT_MRING019"; break; + case 8:sChoice = "NW_IT_MRING033"; break; + case 9:sChoice = "NW_IT_MNECK037"; break; + default: break; + } + break; + case 5: + Items = 8; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_IT_MNECK015"; break; + case 2:sChoice = "nw_it_mneck028"; break; + case 3:sChoice = "NW_IT_MNECK011"; break; + case 4:sChoice = "NW_IT_MNECK019"; break; + case 5:sChoice = "NW_IT_MRING017"; break; + case 6:sChoice = "nw_it_mring028"; break; + case 7:sChoice = "NW_IT_MRING020"; break; + case 8:sChoice = "NW_IT_MRING004"; break; + default: break; + } + break; + default: break; + } + oObject = CreateItemOnObject(sChoice, oCreature); + } +return oObject; +} + + + + + +object GiveMiscMagic(object oCreature = OBJECT_SELF) +{ +object oObject = OBJECT_INVALID; +float fRunningChance; +float Chance = 0.0; +int iCounter1 = 1; +int Items; +int Class; +int END; +while(!END) + { + switch(iCounter1) + { +//////////////////////////////////////////////////////////////////////////// +/*////////////////////////////////////////////////////////////////////////// +The following table represents the chance of a creature having an item from +this treasure table based upon its class. Remark in the class type and edit +the chance accordingly. +*/////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +case 1:Class = CLASS_TYPE_ABERRATION; Chance = 1.0; break; +//case 2:Class = CLASS_TYPE_ANIMAL; Chance = 100.0; break; +case 3:Class = CLASS_TYPE_BARBARIAN; Chance = 1.0; break; +case 4:Class = CLASS_TYPE_BARD; Chance = 1.0; break; +//case 5:Class = CLASS_TYPE_BEAST; Chance = 100.0; break; +case 6:Class = CLASS_TYPE_CLERIC; Chance = 1.0; break; +case 7:Class = CLASS_TYPE_COMMONER; Chance = 1.0; break; +case 8:Class = CLASS_TYPE_CONSTRUCT; Chance = 1.0; break; +case 9:Class = CLASS_TYPE_DRAGON; Chance = 5.0; break; +case 10:Class = CLASS_TYPE_DRUID; Chance = 1.0; break; +case 11:Class = CLASS_TYPE_ELEMENTAL; Chance = 1.0; break; +case 12:Class = CLASS_TYPE_FEY; Chance = 1.0; break; +case 13:Class = CLASS_TYPE_FIGHTER; Chance = 1.0; break; +case 14:Class = CLASS_TYPE_GIANT; Chance = 1.0; break; +case 15:Class = CLASS_TYPE_HUMANOID; Chance = 1.0; break; +//case 16:Class = CLASS_TYPE_MAGICAL_BEAST; Chance = 100.0; break; +case 17:Class = CLASS_TYPE_MONK; Chance = 1.0; break; +case 18:Class = CLASS_TYPE_MONSTROUS; Chance = 1.0; break; +case 19:Class = CLASS_TYPE_OUTSIDER; Chance = 1.0; break; +case 20:Class = CLASS_TYPE_PALADIN; Chance = 1.0; break; +case 21:Class = CLASS_TYPE_RANGER; Chance = 1.0; break; +case 22:Class = CLASS_TYPE_ROGUE; Chance = 1.0; break; +case 23:Class = CLASS_TYPE_SHAPECHANGER; Chance = 2.0; break; +case 24:Class = CLASS_TYPE_SORCERER; Chance = 1.0; break; +case 25:Class = CLASS_TYPE_UNDEAD; Chance = 1.0; break; +//case 26:Class = CLASS_TYPE_VERMIN; Chance = 100.0; break; +case 27:Class = CLASS_TYPE_WIZARD; Chance = 1.0; break; +//////////////////////////////////////////////////////////////////////////// +/* END OF TABLE +*/////////////////////////////////////////////////////////////////////////// + case 28:END = TRUE; + default: break; + } + if(GetLevelByClass(Class) && Chance > fRunningChance) fRunningChance = Chance; + iCounter1++; + } +Chance = fRunningChance; +if(Random(10000) <= FloatToInt(Chance * 100.0)) + { +string sChoice; + int iChoices = 5; // set this to the number of "rarity catagories" in the table. + int iRarityChoice = FloatToInt(1.0 + (IntToFloat(iChoices - 1) * fCRFactor)); + int iRarityLevel = Random(iRarityChoice) + 1; + switch(iRarityLevel) + { + case 1: + Items = 18; + switch(Random(Items)+1) + { + case 1:sChoice = "nw_it_mboots010"; break; + case 2:sChoice = "NW_IT_MBOOTS001"; break; + case 3:sChoice = "NW_IT_MBOOTS018"; break; + case 4:sChoice = "NW_IT_MBRACER002"; break; + case 5:sChoice = "NW_IT_MBRACER001"; break; + case 6:sChoice = "NW_MAARCL055"; break; + case 7:sChoice = "NW_MAARCL031"; break; + case 8:sChoice = "nw_it_mglove006"; break; + case 9:sChoice = "nw_it_mglove004"; break; + case 10:sChoice = "nw_it_mglove008"; break; + case 11:sChoice = "nw_it_mglove007"; break; + case 12:sChoice = "nw_it_mglove009"; break; + case 13:sChoice = "NW_IT_MGLOVE016"; break; + case 14:sChoice = "NW_IT_MGLOVE021"; break; + case 15:sChoice = "nw_it_mglove005"; break; + case 16:sChoice = "NW_IT_MGLOVE003"; break; + case 17:sChoice = "NW_IT_MGLOVE026"; break; + case 18:sChoice = "NW_IT_CONTAIN002"; break; + default: break; + } + break; + case 2: + Items = 16; + switch(Random(Items)+1) + { + case 1:sChoice = "nw_it_mbelt018"; break; + case 2:sChoice = "nw_it_mbelt016"; break; + case 3:sChoice = "NW_IT_MBOOTS015"; break; + case 4:sChoice = "nw_it_mboots011"; break; + case 5:sChoice = "NW_IT_MBOOTS006"; break; + case 6:sChoice = "NW_IT_MBOOTS019"; break; + case 7:sChoice = "NW_IT_MBRACER007"; break; + case 8:sChoice = "NW_IT_MBRACER003"; break; + case 9:sChoice = "NW_MAARCL104"; break; + case 10:sChoice = "NW_MAARCL088"; break; + case 11:sChoice = "NW_MAARCL092"; break; + case 12:sChoice = "NW_IT_MBRACER013"; break; + case 13:sChoice = "NW_IT_MGLOVE017"; break; + case 14:sChoice = "NW_IT_MGLOVE022"; break; + case 15:sChoice = "NW_IT_MGLOVE027"; break; + case 16:sChoice = "NW_IT_CONTAIN003"; break; + default: break; + } + break; + case 3: + Items = 18; + switch(Random(Items)+1) + { + case 1:sChoice = "nw_it_mbelt019"; break; + case 2:sChoice = "NW_IT_MBELT002"; break; + case 3:sChoice = "nw_it_mbelt017"; break; + case 4:sChoice = "NW_IT_MBOOTS016"; break; + case 5:sChoice = "nw_it_mboots012"; break; + case 6:sChoice = "NW_IT_MBOOTS007"; break; + case 7:sChoice = "NW_IT_MBOOTS020"; break; + case 8:sChoice = "NW_IT_MBOOTS003"; break; + case 9:sChoice = "NW_IT_MBRACER008"; break; + case 10:sChoice = "NW_IT_MBRACER004"; break; + case 11:sChoice = "NW_MAARCL105"; break; + case 12:sChoice = "NW_MAARCL056"; break; + case 13:sChoice = "NW_MAARCL089"; break; + case 14:sChoice = "NW_MAARCL093"; break; + case 15:sChoice = "NW_IT_MGLOVE018"; break; + case 16:sChoice = "NW_IT_MGLOVE023"; break; + case 17:sChoice = "NW_IT_MGLOVE028"; break; + case 18:sChoice = "NW_IT_CONTAIN004"; break; + default: break; + } + break; + case 4: + Items = 16; + switch(Random(Items)+1) + { + case 1:sChoice = "nw_it_mbelt020"; break; + case 2:sChoice = "NW_IT_MBELT007"; break; + case 3:sChoice = "NW_IT_MBOOTS017"; break; + case 4:sChoice = "nw_it_mboots013"; break; + case 5:sChoice = "NW_IT_MBOOTS005"; break; + case 6:sChoice = "NW_IT_MBOOTS008"; break; + case 7:sChoice = "NW_IT_MBOOTS021"; break; + case 8:sChoice = "NW_IT_MBRACER009"; break; + case 9:sChoice = "NW_IT_MBRACER005"; break; + case 10:sChoice = "NW_MAARCL106"; break; + case 11:sChoice = "NW_MAARCL090"; break; + case 12:sChoice = "NW_MAARCL094"; break; + case 13:sChoice = "NW_IT_MGLOVE019"; break; + case 14:sChoice = "NW_IT_MGLOVE024"; break; + case 15:sChoice = "NW_IT_MGLOVE029"; break; + case 16:sChoice = "NW_IT_CONTAIN005"; break; + default: break; + } + break; + case 5: + Items = 14; + switch(Random(Items)+1) + { + case 1:sChoice = "nw_it_mbelt021"; break; + case 2:sChoice = "NW_IT_MBELT002"; break; + case 3:sChoice = "nw_it_mboots014"; break; + case 4:sChoice = "NW_IT_MBOOTS008"; break; + case 5:sChoice = "NW_IT_MBOOTS009"; break; + case 6:sChoice = "NW_IT_MBOOTS022"; break; + case 7:sChoice = "NW_IT_MBRACER010"; break; + case 8:sChoice = "NW_IT_MBRACER006"; break; + case 9:sChoice = "NW_MAARCL091"; break; + case 10:sChoice = "NW_MAARCL095"; break; + case 11:sChoice = "NW_IT_MGLOVE020"; break; + case 12:sChoice = "NW_IT_MGLOVE025"; break; + case 13:sChoice = "NW_IT_MGLOVE030"; break; + case 14:sChoice = "NW_IT_CONTAIN006"; break; + default: break; + } + break; + default: break; + } + oObject = CreateItemOnObject(sChoice, oCreature); + } +return oObject; +} + + + + + +object GiveTraps(object oCreature = OBJECT_SELF) +{ +object oObject = OBJECT_INVALID; +float fRunningChance; +float Chance = 0.0; +int iCounter1 = 1; +int Items; +int Class; +int END; +while(!END) + { + switch(iCounter1) + { +//////////////////////////////////////////////////////////////////////////// +/*////////////////////////////////////////////////////////////////////////// +The following table represents the chance of a creature having an item from +this treasure table based upon its class. Remark in the class type and edit +the chance accordingly. +*/////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//case 1:Class = CLASS_TYPE_ABERRATION; Chance = 100.0; break; +//case 2:Class = CLASS_TYPE_ANIMAL; Chance = 100.0; break; +//case 3:Class = CLASS_TYPE_BARBARIAN; Chance = 100.0; break; +case 4:Class = CLASS_TYPE_BARD; Chance = 2.5; break; +//case 5:Class = CLASS_TYPE_BEAST; Chance = 100.0; break; +//case 6:Class = CLASS_TYPE_CLERIC; Chance = 100.0; break; +//case 7:Class = CLASS_TYPE_COMMONER; Chance = 100.0; break; +//case 8:Class = CLASS_TYPE_CONSTRUCT; Chance = 100.0; break; +//case 9:Class = CLASS_TYPE_DRAGON; Chance = 100.0; break; +//case 10:Class = CLASS_TYPE_DRUID; Chance = 100.0; break; +//case 11:Class = CLASS_TYPE_ELEMENTAL; Chance = 100.0; break; +//case 12:Class = CLASS_TYPE_FEY; Chance = 100.0; break; +//case 13:Class = CLASS_TYPE_FIGHTER; Chance = 100.0; break; +//case 14:Class = CLASS_TYPE_GIANT; Chance = 100.0; break; +//case 15:Class = CLASS_TYPE_HUMANOID; Chance = 100.0; break; +//case 16:Class = CLASS_TYPE_MAGICAL_BEAST; Chance = 100.0; break; +//case 17:Class = CLASS_TYPE_MONK; Chance = 100.0; break; +//case 18:Class = CLASS_TYPE_MONSTROUS; Chance = 100.0; break; +//case 19:Class = CLASS_TYPE_OUTSIDER; Chance = 100.0; break; +//case 20:Class = CLASS_TYPE_PALADIN; Chance = 100.0; break; +//case 21:Class = CLASS_TYPE_RANGER; Chance = 100.0; break; +case 22:Class = CLASS_TYPE_ROGUE; Chance = 5.0; break; +//case 23:Class = CLASS_TYPE_SHAPECHANGER; Chance = 100.0; break; +//case 24:Class = CLASS_TYPE_SORCERER; Chance = 100.0; break; +//case 25:Class = CLASS_TYPE_UNDEAD; Chance = 100.0; break; +//case 26:Class = CLASS_TYPE_VERMIN; Chance = 100.0; break; +//case 27:Class = CLASS_TYPE_WIZARD; Chance = 100.0; break; +//////////////////////////////////////////////////////////////////////////// +/* END OF TABLE +*/////////////////////////////////////////////////////////////////////////// + case 28:END = TRUE; + default: break; + } + if(GetLevelByClass(Class) && Chance > fRunningChance) fRunningChance = Chance; + iCounter1++; + } +Chance = fRunningChance; +if(Random(10000) <= FloatToInt(Chance * 100.0)) + { +string sChoice; + int iChoices = 4; // set this to the number of "rarity catagories" in the table. + int iRarityChoice = FloatToInt(1.0 + (IntToFloat(iChoices - 1) * fCRFactor)); + int iRarityLevel = Random(iRarityChoice) + 1; + switch(iRarityLevel) + { + case 1: + Items = 12; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_IT_TRAP033"; break; + case 2:sChoice = "NW_IT_TRAP013"; break; + case 3:sChoice = "NW_IT_TRAP021"; break; + case 4:sChoice = "NW_IT_TRAP017"; break; + case 5:sChoice = "NW_IT_TRAP029"; break; + case 6:sChoice = "NW_IT_TRAP025"; break; + case 7:sChoice = "NW_IT_TRAP005"; break; + case 8:sChoice = "NW_IT_TRAP041"; break; + case 9:sChoice = "NW_IT_TRAP037"; break; + case 10:sChoice = "NW_IT_TRAP001"; break; + case 11:sChoice = "NW_IT_TRAP009"; break; + case 12:sChoice = "NW_IT_PICKS001"; break; + default: break; + } + break; + case 2: + Items = 12; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_IT_TRAP034"; break; + case 2:sChoice = "NW_IT_TRAP014"; break; + case 3:sChoice = "NW_IT_TRAP022"; break; + case 4:sChoice = "NW_IT_TRAP018"; break; + case 5:sChoice = "NW_IT_TRAP030"; break; + case 6:sChoice = "NW_IT_TRAP026"; break; + case 7:sChoice = "NW_IT_TRAP006"; break; + case 8:sChoice = "NW_IT_TRAP042"; break; + case 9:sChoice = "NW_IT_TRAP038"; break; + case 10:sChoice = "NW_IT_TRAP002"; break; + case 11:sChoice = "NW_IT_TRAP010"; break; + case 12:sChoice = "NW_IT_PICKS002"; break; + default: break; + } + break; + case 3: + Items = 12; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_IT_TRAP035"; break; + case 2:sChoice = "NW_IT_TRAP015"; break; + case 3:sChoice = "NW_IT_TRAP023"; break; + case 4:sChoice = "NW_IT_TRAP019"; break; + case 5:sChoice = "NW_IT_TRAP031"; break; + case 6:sChoice = "NW_IT_TRAP027"; break; + case 7:sChoice = "NW_IT_TRAP007"; break; + case 8:sChoice = "NW_IT_TRAP043"; break; + case 9:sChoice = "NW_IT_TRAP039"; break; + case 10:sChoice = "NW_IT_TRAP003"; break; + case 11:sChoice = "NW_IT_TRAP011"; break; + case 12:sChoice = "NW_IT_PICKS003"; break; + default: break; + } + break; + case 4: + Items = 12; + switch(Random(Items)+1) + { + case 1:sChoice = "NW_IT_TRAP036"; break; + case 2:sChoice = "NW_IT_TRAP016"; break; + case 3:sChoice = "NW_IT_TRAP024"; break; + case 4:sChoice = "NW_IT_TRAP020"; break; + case 5:sChoice = "NW_IT_TRAP032"; break; + case 6:sChoice = "NW_IT_TRAP028"; break; + case 7:sChoice = "NW_IT_TRAP008"; break; + case 8:sChoice = "NW_IT_TRAP044"; break; + case 9:sChoice = "NW_IT_TRAP040"; break; + case 10:sChoice = "NW_IT_TRAP004"; break; + case 11:sChoice = "NW_IT_TRAP012"; break; + case 12:sChoice = "NW_IT_PICKS004"; break; + default: break; + } + break; + default: break; + } + oObject = CreateItemOnObject(sChoice, oCreature); + } +return oObject; +} diff --git a/gamma_age_v2/re_widget.dlg b/gamma_age_v2/re_widget.dlg new file mode 100644 index 00000000..1f740768 Binary files /dev/null and b/gamma_age_v2/re_widget.dlg differ diff --git a/gamma_age_v2/re_widget1.ncs b/gamma_age_v2/re_widget1.ncs new file mode 100644 index 00000000..a386400b Binary files /dev/null and b/gamma_age_v2/re_widget1.ncs differ diff --git a/gamma_age_v2/re_widget1.nss b/gamma_age_v2/re_widget1.nss new file mode 100644 index 00000000..fe5f77ee --- /dev/null +++ b/gamma_age_v2/re_widget1.nss @@ -0,0 +1,44 @@ +#include "re_rndenc" +int StartingConditional() +{ +object oPC = GetPCSpeaker(); +object oObject = GetFirstObjectInArea(GetArea(oPC)); +string sToken; +struct RndEncProperties strProps = GetRndEncProperties(GetArea(oPC)); +if(!strProps.bInitialized) + { + sToken = sToken + "Area properties not set. Using module properties:\n"; + strProps = GetRndEncProperties(GetModule()); + } +else sToken = sToken + "Area Properties:\n"; +sToken = sToken + "Difficulty: " + IntToString(strProps.iDifficulty) ++ "\nConsider CR: " + IntToString(strProps.bConsiderCR) ++ "\nCreature Table: " + strProps.sCreatureTable ++ "\nCreature Decay Time: " + IntToString(strProps.iLifeTime) ++ "\nEncounter Type: "; +if(strProps.iEncounterType == 1) sToken = sToken + "(1)PARTY"; +if(strProps.iEncounterType == 2) sToken = sToken + "(2)INDIVIDUAL"; +if(strProps.iEncounterType == 3) sToken = sToken + "(3)AREA"; +if(strProps.iEncounterType == 4) sToken = sToken + "(4)TOTAL PARTY LEVELS"; +sToken = sToken + "\nEnc During Conflict: " + IntToString(strProps.bConflict) ++ "\nChance On Rest: " + IntToString(strProps.iChanceOnRest); +sToken = sToken + "\n\nArea Spawners:\n"; +while(GetIsObjectValid(oObject)) + { + if(GetLocalInt(oObject, "re_BESIE")) + { + sToken = sToken + GetName(oObject) + " - " + GetTag(oObject) + " - "; + if(GetLocalInt(oObject, "re_iBegin") + || GetLocalInt(oObject, "re_iEnd")) + { + sToken = sToken + "B" + IntToString(GetLocalInt(oObject, "re_iBegin")) + " E" + IntToString(GetLocalInt(oObject, "re_iEnd")) + " - "; + } + if(GetLocalInt(oObject, "re_disable")) sToken = sToken + "Disabled"; + else sToken = sToken + "Enabled"; + sToken = sToken + "\n\n"; + } + oObject = GetNextObjectInArea(GetArea(oPC)); + } +SetCustomToken(2112, sToken); +return TRUE; +} diff --git a/gamma_age_v2/re_widget10.ncs b/gamma_age_v2/re_widget10.ncs new file mode 100644 index 00000000..bc388fe6 Binary files /dev/null and b/gamma_age_v2/re_widget10.ncs differ diff --git a/gamma_age_v2/re_widget10.nss b/gamma_age_v2/re_widget10.nss new file mode 100644 index 00000000..79dc461e --- /dev/null +++ b/gamma_age_v2/re_widget10.nss @@ -0,0 +1,6 @@ +void main() +{ +int iCounter = GetLocalInt(GetModule(), "re_AreaToolIndex"); +object oObject = GetLocalObject(GetModule(), "re_oAreaTool" + IntToString(iCounter)); +DeleteLocalInt(oObject, "re_disable"); +} diff --git a/gamma_age_v2/re_widget11.ncs b/gamma_age_v2/re_widget11.ncs new file mode 100644 index 00000000..5a848af6 Binary files /dev/null and b/gamma_age_v2/re_widget11.ncs differ diff --git a/gamma_age_v2/re_widget11.nss b/gamma_age_v2/re_widget11.nss new file mode 100644 index 00000000..2ba7c397 --- /dev/null +++ b/gamma_age_v2/re_widget11.nss @@ -0,0 +1,6 @@ +void main() +{ +int iCounter = GetLocalInt(GetModule(), "re_AreaToolIndex"); +object oObject = GetLocalObject(GetModule(), "re_oAreaTool" + IntToString(iCounter)); +SetLocalInt(oObject, "re_disable", TRUE); +} diff --git a/gamma_age_v2/re_widget12.ncs b/gamma_age_v2/re_widget12.ncs new file mode 100644 index 00000000..781e8be1 Binary files /dev/null and b/gamma_age_v2/re_widget12.ncs differ diff --git a/gamma_age_v2/re_widget12.nss b/gamma_age_v2/re_widget12.nss new file mode 100644 index 00000000..1a509b8e --- /dev/null +++ b/gamma_age_v2/re_widget12.nss @@ -0,0 +1,13 @@ +int StartingConditional() +{ + object oPC = GetPCSpeaker(); + object oArea = GetArea(oPC); + int iResult; + object oObject = GetFirstObjectInArea(oArea); + while(GetIsObjectValid(oObject)) + { + if(GetLocalInt(oObject, "re_bRandomEncounter")) iResult = TRUE; + oObject = GetNextObjectInArea(oArea); + } + return iResult; +} diff --git a/gamma_age_v2/re_widget13.ncs b/gamma_age_v2/re_widget13.ncs new file mode 100644 index 00000000..de8354bb Binary files /dev/null and b/gamma_age_v2/re_widget13.ncs differ diff --git a/gamma_age_v2/re_widget13.nss b/gamma_age_v2/re_widget13.nss new file mode 100644 index 00000000..06dbe7f4 --- /dev/null +++ b/gamma_age_v2/re_widget13.nss @@ -0,0 +1,11 @@ +void main() +{ +object oPC = GetPCSpeaker(); +object oArea = GetArea(oPC); +object oObject = GetFirstObjectInArea(oArea); +while(GetIsObjectValid(oObject)) + { + if(GetLocalInt(oObject, "re_bRandomEncounter") && !GetIsInCombat(oObject) && !IsInConversation(oObject)) DestroyObject(oObject); + oObject = GetNextObjectInArea(oArea); + } +} diff --git a/gamma_age_v2/re_widget14.ncs b/gamma_age_v2/re_widget14.ncs new file mode 100644 index 00000000..2bb3f2b7 Binary files /dev/null and b/gamma_age_v2/re_widget14.ncs differ diff --git a/gamma_age_v2/re_widget14.nss b/gamma_age_v2/re_widget14.nss new file mode 100644 index 00000000..0f670e6c --- /dev/null +++ b/gamma_age_v2/re_widget14.nss @@ -0,0 +1,7 @@ +int StartingConditional() +{ + int iResult; + object oTarget = GetItemActivatedTarget(); + iResult = GetIsPC(oTarget) && GetLocalInt(GetModule(), "re_" + GetPCPlayerName(oTarget)); + return iResult; +} diff --git a/gamma_age_v2/re_widget15.ncs b/gamma_age_v2/re_widget15.ncs new file mode 100644 index 00000000..b49a0e2f Binary files /dev/null and b/gamma_age_v2/re_widget15.ncs differ diff --git a/gamma_age_v2/re_widget15.nss b/gamma_age_v2/re_widget15.nss new file mode 100644 index 00000000..c519f5c2 --- /dev/null +++ b/gamma_age_v2/re_widget15.nss @@ -0,0 +1,7 @@ +int StartingConditional() +{ + int iResult; + object oTarget = GetItemActivatedTarget(); + iResult = GetIsPC(oTarget) && !GetLocalInt(GetModule(), "re_" + GetPCPlayerName(oTarget)); + return iResult; +} diff --git a/gamma_age_v2/re_widget16.ncs b/gamma_age_v2/re_widget16.ncs new file mode 100644 index 00000000..c148d9d4 Binary files /dev/null and b/gamma_age_v2/re_widget16.ncs differ diff --git a/gamma_age_v2/re_widget16.nss b/gamma_age_v2/re_widget16.nss new file mode 100644 index 00000000..a2d144c7 --- /dev/null +++ b/gamma_age_v2/re_widget16.nss @@ -0,0 +1,4 @@ +void main() +{ +DeleteLocalInt(GetModule(), "re_" + GetPCPlayerName(GetPCSpeaker())); +} diff --git a/gamma_age_v2/re_widget17.ncs b/gamma_age_v2/re_widget17.ncs new file mode 100644 index 00000000..44a1750f Binary files /dev/null and b/gamma_age_v2/re_widget17.ncs differ diff --git a/gamma_age_v2/re_widget17.nss b/gamma_age_v2/re_widget17.nss new file mode 100644 index 00000000..3e0a8fea --- /dev/null +++ b/gamma_age_v2/re_widget17.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetModule(), "re_" + GetPCPlayerName(GetPCSpeaker()), TRUE); +} diff --git a/gamma_age_v2/re_widget18.ncs b/gamma_age_v2/re_widget18.ncs new file mode 100644 index 00000000..898ac491 Binary files /dev/null and b/gamma_age_v2/re_widget18.ncs differ diff --git a/gamma_age_v2/re_widget18.nss b/gamma_age_v2/re_widget18.nss new file mode 100644 index 00000000..c3e2dac5 --- /dev/null +++ b/gamma_age_v2/re_widget18.nss @@ -0,0 +1,11 @@ +void main() +{ +object oPC = GetPCSpeaker(); +object oArea = GetArea(oPC); +object oObject = GetFirstObjectInArea(oArea); +while(GetIsObjectValid(oObject)) + { + if(GetLocalInt(oObject, "re_bRandomEncounter") && !IsInConversation(oObject)) DestroyObject(oObject); + oObject = GetNextObjectInArea(oArea); + } +} diff --git a/gamma_age_v2/re_widget19.ncs b/gamma_age_v2/re_widget19.ncs new file mode 100644 index 00000000..723a4d54 Binary files /dev/null and b/gamma_age_v2/re_widget19.ncs differ diff --git a/gamma_age_v2/re_widget19.nss b/gamma_age_v2/re_widget19.nss new file mode 100644 index 00000000..fb38b63b --- /dev/null +++ b/gamma_age_v2/re_widget19.nss @@ -0,0 +1,7 @@ +int StartingConditional() +{ + int iResult; + object oTarget = GetItemActivatedTarget(); + iResult = GetIsPC(oTarget) && !GetIsDM(oTarget); + return iResult; +} diff --git a/gamma_age_v2/re_widget2.ncs b/gamma_age_v2/re_widget2.ncs new file mode 100644 index 00000000..347a4887 Binary files /dev/null and b/gamma_age_v2/re_widget2.ncs differ diff --git a/gamma_age_v2/re_widget2.nss b/gamma_age_v2/re_widget2.nss new file mode 100644 index 00000000..9e9cf366 --- /dev/null +++ b/gamma_age_v2/re_widget2.nss @@ -0,0 +1,21 @@ +int StartingConditional() +{ +object oPC = GetPCSpeaker(); +int iCounter = GetLocalInt(GetModule(), "re_AreaToolIndex"); +object oObject = GetLocalObject(GetModule(), "re_oAreaTool" + IntToString(iCounter)); +string sToken; +int bReturn; +sToken = sToken + "Tool Type: " + GetLocalString(oObject, "re_ToolType") + "\n" + + "Name: " + GetName(oObject) + "\n" + + "Tag: " + GetTag(oObject) + "\n"; +if(GetLocalInt(oObject, "re_iBegin") || GetLocalInt(oObject, "re_iEnd")) + { + sToken = sToken + "Begin Time: " + IntToString(GetLocalInt(oObject, "re_iBegin")) + "\n" + + "End Time: " + IntToString(GetLocalInt(oObject, "re_iEnd")) + "\n"; + } +if(GetLocalInt(oObject, "re_disable")) sToken = sToken + "State: Disabled"; +else sToken = sToken + "State: Enabled"; +sToken = sToken + "\n"; +SetCustomToken(2112, sToken); +return TRUE; +} diff --git a/gamma_age_v2/re_widget20.ncs b/gamma_age_v2/re_widget20.ncs new file mode 100644 index 00000000..9a6748b6 Binary files /dev/null and b/gamma_age_v2/re_widget20.ncs differ diff --git a/gamma_age_v2/re_widget20.nss b/gamma_age_v2/re_widget20.nss new file mode 100644 index 00000000..1e13698d --- /dev/null +++ b/gamma_age_v2/re_widget20.nss @@ -0,0 +1,6 @@ +#include "re_rndenc" +void main() +{ +object oPC = GetItemActivatedTarget(); +RandomEncounter(100.0, oPC, "random", 0, 0, 0, 5, 360); +} diff --git a/gamma_age_v2/re_widget21.ncs b/gamma_age_v2/re_widget21.ncs new file mode 100644 index 00000000..d93739c5 Binary files /dev/null and b/gamma_age_v2/re_widget21.ncs differ diff --git a/gamma_age_v2/re_widget21.nss b/gamma_age_v2/re_widget21.nss new file mode 100644 index 00000000..e6ef8626 --- /dev/null +++ b/gamma_age_v2/re_widget21.nss @@ -0,0 +1,6 @@ +int StartingConditional() +{ + int iResult; + iResult = GetLocalInt(GetModule(), "re_disable"); + return iResult; +} diff --git a/gamma_age_v2/re_widget22.ncs b/gamma_age_v2/re_widget22.ncs new file mode 100644 index 00000000..633dd05b Binary files /dev/null and b/gamma_age_v2/re_widget22.ncs differ diff --git a/gamma_age_v2/re_widget22.nss b/gamma_age_v2/re_widget22.nss new file mode 100644 index 00000000..23ee84c4 --- /dev/null +++ b/gamma_age_v2/re_widget22.nss @@ -0,0 +1,7 @@ +int StartingConditional() +{ + int iResult; + iResult = !GetLocalInt(GetModule(), "re_disable"); + return iResult; +} + diff --git a/gamma_age_v2/re_widget23.ncs b/gamma_age_v2/re_widget23.ncs new file mode 100644 index 00000000..02a56038 Binary files /dev/null and b/gamma_age_v2/re_widget23.ncs differ diff --git a/gamma_age_v2/re_widget23.nss b/gamma_age_v2/re_widget23.nss new file mode 100644 index 00000000..5d4bc8dc --- /dev/null +++ b/gamma_age_v2/re_widget23.nss @@ -0,0 +1,4 @@ +void main() +{ +DeleteLocalInt(GetModule(), "re_disable"); +} diff --git a/gamma_age_v2/re_widget24.ncs b/gamma_age_v2/re_widget24.ncs new file mode 100644 index 00000000..712550b0 Binary files /dev/null and b/gamma_age_v2/re_widget24.ncs differ diff --git a/gamma_age_v2/re_widget24.nss b/gamma_age_v2/re_widget24.nss new file mode 100644 index 00000000..df85816e --- /dev/null +++ b/gamma_age_v2/re_widget24.nss @@ -0,0 +1,4 @@ +void main() +{ +SetLocalInt(GetModule(), "re_disable", TRUE); +} diff --git a/gamma_age_v2/re_widget25.ncs b/gamma_age_v2/re_widget25.ncs new file mode 100644 index 00000000..6a427847 Binary files /dev/null and b/gamma_age_v2/re_widget25.ncs differ diff --git a/gamma_age_v2/re_widget25.nss b/gamma_age_v2/re_widget25.nss new file mode 100644 index 00000000..7eb2c67f --- /dev/null +++ b/gamma_age_v2/re_widget25.nss @@ -0,0 +1,9 @@ +int StartingConditional() +{ + string sToken; + sToken = "\nBESIE is currently "; + if(GetLocalInt(GetModule(), "re_disable")) sToken = sToken + "disabled"; + else sToken = sToken + "enabled"; + SetCustomToken(2112, sToken); + return TRUE; +} diff --git a/gamma_age_v2/re_widget3.ncs b/gamma_age_v2/re_widget3.ncs new file mode 100644 index 00000000..67a2a847 Binary files /dev/null and b/gamma_age_v2/re_widget3.ncs differ diff --git a/gamma_age_v2/re_widget3.nss b/gamma_age_v2/re_widget3.nss new file mode 100644 index 00000000..41b38288 --- /dev/null +++ b/gamma_age_v2/re_widget3.nss @@ -0,0 +1,19 @@ +int StartingConditional() +{ +object oPC = GetPCSpeaker(); +object oArea = GetArea(oPC); +object oObject = GetFirstObjectInArea(oArea); +int iCounter; +while(GetIsObjectValid(oObject)) + { + if(GetLocalInt(oObject, "re_BESIE")) + { + iCounter = iCounter + 1; + SetLocalObject(GetModule(), "re_oAreaTool" + IntToString(iCounter), oObject); + } + oObject = GetNextObjectInArea(oArea); + } +SetLocalInt(GetModule(), "re_iAreaTool", iCounter); +SetLocalInt(GetModule(), "re_AreaToolIndex", 1); +return iCounter; +} diff --git a/gamma_age_v2/re_widget4.ncs b/gamma_age_v2/re_widget4.ncs new file mode 100644 index 00000000..c1b5ae19 Binary files /dev/null and b/gamma_age_v2/re_widget4.ncs differ diff --git a/gamma_age_v2/re_widget4.nss b/gamma_age_v2/re_widget4.nss new file mode 100644 index 00000000..c5e86a19 --- /dev/null +++ b/gamma_age_v2/re_widget4.nss @@ -0,0 +1,7 @@ +int StartingConditional() +{ + int iResult; + int iCounter = GetLocalInt(GetModule(), "re_AreaToolIndex") + 1; + iResult = iCounter <= GetLocalInt(GetModule(), "re_iAreaTool"); + return iResult; +} diff --git a/gamma_age_v2/re_widget5.ncs b/gamma_age_v2/re_widget5.ncs new file mode 100644 index 00000000..58fdb130 Binary files /dev/null and b/gamma_age_v2/re_widget5.ncs differ diff --git a/gamma_age_v2/re_widget5.nss b/gamma_age_v2/re_widget5.nss new file mode 100644 index 00000000..c5697dae --- /dev/null +++ b/gamma_age_v2/re_widget5.nss @@ -0,0 +1,8 @@ +int StartingConditional() +{ + int iResult; + int iCounter = GetLocalInt(GetModule(), "re_AreaToolIndex") - 1; + iResult = iCounter > 0; + return iResult; +} + diff --git a/gamma_age_v2/re_widget6.ncs b/gamma_age_v2/re_widget6.ncs new file mode 100644 index 00000000..3cf35b01 Binary files /dev/null and b/gamma_age_v2/re_widget6.ncs differ diff --git a/gamma_age_v2/re_widget6.nss b/gamma_age_v2/re_widget6.nss new file mode 100644 index 00000000..e4235256 --- /dev/null +++ b/gamma_age_v2/re_widget6.nss @@ -0,0 +1,5 @@ +void main() +{ +int iCounter = GetLocalInt(GetModule(), "re_AreaToolIndex") + 1; +SetLocalInt(GetModule(), "re_AreaToolIndex", iCounter); +} diff --git a/gamma_age_v2/re_widget7.ncs b/gamma_age_v2/re_widget7.ncs new file mode 100644 index 00000000..e71cd4ee Binary files /dev/null and b/gamma_age_v2/re_widget7.ncs differ diff --git a/gamma_age_v2/re_widget7.nss b/gamma_age_v2/re_widget7.nss new file mode 100644 index 00000000..b2d4be26 --- /dev/null +++ b/gamma_age_v2/re_widget7.nss @@ -0,0 +1,5 @@ +void main() +{ +int iCounter = GetLocalInt(GetModule(), "re_AreaToolIndex") - 1; +SetLocalInt(GetModule(), "re_AreaToolIndex", iCounter); +} diff --git a/gamma_age_v2/re_widget8.ncs b/gamma_age_v2/re_widget8.ncs new file mode 100644 index 00000000..ebeea52e Binary files /dev/null and b/gamma_age_v2/re_widget8.ncs differ diff --git a/gamma_age_v2/re_widget8.nss b/gamma_age_v2/re_widget8.nss new file mode 100644 index 00000000..cd08b648 --- /dev/null +++ b/gamma_age_v2/re_widget8.nss @@ -0,0 +1,8 @@ +int StartingConditional() +{ + int iResult; + int iCounter = GetLocalInt(GetModule(), "re_AreaToolIndex"); + object oObject = GetLocalObject(GetModule(), "re_oAreaTool" + IntToString(iCounter)); + iResult = GetLocalInt(oObject, "re_disable"); + return iResult; +} diff --git a/gamma_age_v2/re_widget9.ncs b/gamma_age_v2/re_widget9.ncs new file mode 100644 index 00000000..1005b0cf Binary files /dev/null and b/gamma_age_v2/re_widget9.ncs differ diff --git a/gamma_age_v2/re_widget9.nss b/gamma_age_v2/re_widget9.nss new file mode 100644 index 00000000..16746d67 --- /dev/null +++ b/gamma_age_v2/re_widget9.nss @@ -0,0 +1,8 @@ +int StartingConditional() +{ + int iResult; + int iCounter = GetLocalInt(GetModule(), "re_AreaToolIndex"); + object oObject = GetLocalObject(GetModule(), "re_oAreaTool" + IntToString(iCounter)); + iResult = !GetLocalInt(oObject, "re_disable"); + return iResult; +} diff --git a/gamma_age_v2/redcloak.uti b/gamma_age_v2/redcloak.uti new file mode 100644 index 00000000..fd96355c Binary files /dev/null and b/gamma_age_v2/redcloak.uti differ diff --git a/gamma_age_v2/relanops.utc b/gamma_age_v2/relanops.utc new file mode 100644 index 00000000..acf30cc4 Binary files /dev/null and b/gamma_age_v2/relanops.utc differ diff --git a/gamma_age_v2/relanopspropert.uti b/gamma_age_v2/relanopspropert.uti new file mode 100644 index 00000000..bd8fc16d Binary files /dev/null and b/gamma_age_v2/relanopspropert.uti differ diff --git a/gamma_age_v2/rest_item.uti b/gamma_age_v2/rest_item.uti new file mode 100644 index 00000000..85d168e2 Binary files /dev/null and b/gamma_age_v2/rest_item.uti differ diff --git a/gamma_age_v2/riotshield.uti b/gamma_age_v2/riotshield.uti new file mode 100644 index 00000000..633b8dc6 Binary files /dev/null and b/gamma_age_v2/riotshield.uti differ diff --git a/gamma_age_v2/robohunter.utc b/gamma_age_v2/robohunter.utc new file mode 100644 index 00000000..54b295a5 Binary files /dev/null and b/gamma_age_v2/robohunter.utc differ diff --git a/gamma_age_v2/robotproperties.uti b/gamma_age_v2/robotproperties.uti new file mode 100644 index 00000000..947401ae Binary files /dev/null and b/gamma_age_v2/robotproperties.uti differ diff --git a/gamma_age_v2/rodcut.utc b/gamma_age_v2/rodcut.utc new file mode 100644 index 00000000..26aadbe8 Binary files /dev/null and b/gamma_age_v2/rodcut.utc differ diff --git a/gamma_age_v2/rodqas.utc b/gamma_age_v2/rodqas.utc new file mode 100644 index 00000000..e558601f Binary files /dev/null and b/gamma_age_v2/rodqas.utc differ diff --git a/gamma_age_v2/ruinedminds001.are b/gamma_age_v2/ruinedminds001.are new file mode 100644 index 00000000..441ba260 Binary files /dev/null and b/gamma_age_v2/ruinedminds001.are differ diff --git a/gamma_age_v2/ruinedminds001.gic b/gamma_age_v2/ruinedminds001.gic new file mode 100644 index 00000000..47674a94 Binary files /dev/null and b/gamma_age_v2/ruinedminds001.gic differ diff --git a/gamma_age_v2/ruinedminds001.git b/gamma_age_v2/ruinedminds001.git new file mode 100644 index 00000000..69afb685 Binary files /dev/null and b/gamma_age_v2/ruinedminds001.git differ diff --git a/gamma_age_v2/sarbis.utc b/gamma_age_v2/sarbis.utc new file mode 100644 index 00000000..6c3a6078 Binary files /dev/null and b/gamma_age_v2/sarbis.utc differ diff --git a/gamma_age_v2/sarbis001.utc b/gamma_age_v2/sarbis001.utc new file mode 100644 index 00000000..f9a09b47 Binary files /dev/null and b/gamma_age_v2/sarbis001.utc differ diff --git a/gamma_age_v2/sasquatch.utc b/gamma_age_v2/sasquatch.utc new file mode 100644 index 00000000..3c674b58 Binary files /dev/null and b/gamma_age_v2/sasquatch.utc differ diff --git a/gamma_age_v2/scale_lg.uti b/gamma_age_v2/scale_lg.uti new file mode 100644 index 00000000..1482bb71 Binary files /dev/null and b/gamma_age_v2/scale_lg.uti differ diff --git a/gamma_age_v2/scale_med.uti b/gamma_age_v2/scale_med.uti new file mode 100644 index 00000000..4d0ddc07 Binary files /dev/null and b/gamma_age_v2/scale_med.uti differ diff --git a/gamma_age_v2/scale_med_1.uti b/gamma_age_v2/scale_med_1.uti new file mode 100644 index 00000000..d278d74f Binary files /dev/null and b/gamma_age_v2/scale_med_1.uti differ diff --git a/gamma_age_v2/scale_sm.uti b/gamma_age_v2/scale_sm.uti new file mode 100644 index 00000000..31e7801e Binary files /dev/null and b/gamma_age_v2/scale_sm.uti differ diff --git a/gamma_age_v2/scale_st.uti b/gamma_age_v2/scale_st.uti new file mode 100644 index 00000000..714d01b1 Binary files /dev/null and b/gamma_age_v2/scale_st.uti differ diff --git a/gamma_age_v2/screamer.utc b/gamma_age_v2/screamer.utc new file mode 100644 index 00000000..abc74a26 Binary files /dev/null and b/gamma_age_v2/screamer.utc differ diff --git a/gamma_age_v2/screamerclaw.uti b/gamma_age_v2/screamerclaw.uti new file mode 100644 index 00000000..7bd84567 Binary files /dev/null and b/gamma_age_v2/screamerclaw.uti differ diff --git a/gamma_age_v2/screamerpropert.uti b/gamma_age_v2/screamerpropert.uti new file mode 100644 index 00000000..b07c526b Binary files /dev/null and b/gamma_age_v2/screamerpropert.uti differ diff --git a/gamma_age_v2/securitityrobot.utc b/gamma_age_v2/securitityrobot.utc new file mode 100644 index 00000000..26a657a4 Binary files /dev/null and b/gamma_age_v2/securitityrobot.utc differ diff --git a/gamma_age_v2/securityarmor.uti b/gamma_age_v2/securityarmor.uti new file mode 100644 index 00000000..2e496459 Binary files /dev/null and b/gamma_age_v2/securityarmor.uti differ diff --git a/gamma_age_v2/seeker.utc b/gamma_age_v2/seeker.utc new file mode 100644 index 00000000..6b74f0e7 Binary files /dev/null and b/gamma_age_v2/seeker.utc differ diff --git a/gamma_age_v2/sei_drop.ncs b/gamma_age_v2/sei_drop.ncs new file mode 100644 index 00000000..bb4daa4c Binary files /dev/null and b/gamma_age_v2/sei_drop.ncs differ diff --git a/gamma_age_v2/sei_drop.nss b/gamma_age_v2/sei_drop.nss new file mode 100644 index 00000000..af3b50b2 --- /dev/null +++ b/gamma_age_v2/sei_drop.nss @@ -0,0 +1,75 @@ +// +// NWDrop +// +// Script for when a character drops an item. +// Place in the OnUnAcquireItem module event. +// +// (c) Shir'le E. Illios, 2002 (shirle@drowwanderer.com) +// +//////////////////////////////////////////////////////// + + +// Script to place an item on the ground in front of a character. +// ARGUMENTS: +// a_oCharacter - The character dropping the item. +// a_oItem - The inventory item being dropped. +// a_sNewItem - ResRef of the new item to place. +// +void SEI_PlaceItem( object a_oCharacter, object a_oItem, string a_sNewItem ) +{ + + // Get information on where we want the object. + location lCharLocation = GetLocation( a_oCharacter ); + object oArea = GetAreaFromLocation( lCharLocation ); + vector vPosition = GetPositionFromLocation( lCharLocation ); + float fFacing = GetFacingFromLocation( lCharLocation ); + + // Face away from the character. + fFacing += 180.0f; + + // SEI_TODO: Change position to slightly in front of character. + + // Create the new location to place the object. + location lPlace = Location( oArea, vPosition, fFacing ); + + // First destroy the inventory item. + DestroyObject( a_oItem ); + + // And create the new object. + CreateObject( OBJECT_TYPE_PLACEABLE, a_sNewItem, lPlace ); + +} // End SEI_PlaceItem + + +void main() +{ + + // Get te item that was lost. + object oItem = GetModuleItemLost(); + + // Get the character who lost the item. + object oChar = GetModuleItemLostBy(); + + // SEI_Note: There seems to be a bug in GetModuleItemLostBy(), which + // returns the lost object, not the lost character holding the + // object. But strangely enough GetEnteringObject does return the + // character. Done like this for backwards compatibility if + // BioWare ever fixes the bug. + if( oChar == oItem ) + { + oChar = GetEnteringObject(); + } + + // Check if the dropped item is a chair. + if( GetTag( oItem ) == "Chair" ) + { + SEI_PlaceItem( oChar, oItem, "movechair" ); + } + // Check if the dropped item is a stool. + else if( GetTag( oItem ) == "Stool" ) + { + SEI_PlaceItem( oChar, oItem, "movestool" ); + } + +} // End main + diff --git a/gamma_age_v2/sei_move.dlg b/gamma_age_v2/sei_move.dlg new file mode 100644 index 00000000..c4dc5daa Binary files /dev/null and b/gamma_age_v2/sei_move.dlg differ diff --git a/gamma_age_v2/sei_pickup.ncs b/gamma_age_v2/sei_pickup.ncs new file mode 100644 index 00000000..6532bbf2 Binary files /dev/null and b/gamma_age_v2/sei_pickup.ncs differ diff --git a/gamma_age_v2/sei_pickup.nss b/gamma_age_v2/sei_pickup.nss new file mode 100644 index 00000000..412cc51d --- /dev/null +++ b/gamma_age_v2/sei_pickup.nss @@ -0,0 +1,43 @@ +// +// NWPickup +// +// Script to make the PC pick up an item. +// +// (c) Shir'le E. Illios, 2002 (shirle@drowwanderer.com) +// +//////////////////////////////////////////////////////// + + +// Script to place an item in the inventory of a character in place of this one. +// ARGUMENTS: +// a_oCharacter - The character picking up the item. +// a_sNewItem - ResRef of the new item in the character's inventory. +// +void SEI_PickupItem( object a_oCharacter, string a_sNewItem ) +{ + + // Make the object disappear. + DestroyObject( OBJECT_SELF ); + + // Put a new object in the character's inventory. + CreateItemOnObject( a_sNewItem, a_oCharacter, 1 ); + +} // End SEI_PickupItem + + +void main() +{ + + if( GetTag( OBJECT_SELF ) == "movechair" ) + { + // Put a chair in the PC's inventory. + SEI_PickupItem( GetPCSpeaker(), "Chair" ); + } + else if( GetTag( OBJECT_SELF ) == "movestool" ) + { + // Put a stool in the PC's inventory. + SEI_PickupItem( GetPCSpeaker(), "Stool" ); + } + +} // End main + diff --git a/gamma_age_v2/sei_sit.ncs b/gamma_age_v2/sei_sit.ncs new file mode 100644 index 00000000..e3a1bcb3 Binary files /dev/null and b/gamma_age_v2/sei_sit.ncs differ diff --git a/gamma_age_v2/sei_sit.nss b/gamma_age_v2/sei_sit.nss new file mode 100644 index 00000000..f1553165 --- /dev/null +++ b/gamma_age_v2/sei_sit.nss @@ -0,0 +1,34 @@ +// +// NWSit +// +// Script to make the PC using the object sit on it. +// +// (c) Shir'le E. Illios, 2002 (shirle@drowwanderer.com) +// +//////////////////////////////////////////////////////// + +void main() +{ + + // Get the character using the object. + object oPlayer = GetLastUsedBy(); + + // Make certain that the character is a PC. + if( GetIsPC( oPlayer ) ) + { + + // Get the object being sat on. + object oChair = OBJECT_SELF; + + // If the object is valid and nobody else is currently sitting on it. + if( GetIsObjectValid( oChair ) && + !GetIsObjectValid( GetSittingCreature( oChair ) ) ) + { + // Let the player sit on the object. + AssignCommand( oPlayer, ActionSit( oChair ) ); + } + + } // End if + +} // End main + diff --git a/gamma_age_v2/sei_ta_isoccu.ncs b/gamma_age_v2/sei_ta_isoccu.ncs new file mode 100644 index 00000000..f2e20626 Binary files /dev/null and b/gamma_age_v2/sei_ta_isoccu.ncs differ diff --git a/gamma_age_v2/sei_ta_isoccu.nss b/gamma_age_v2/sei_ta_isoccu.nss new file mode 100644 index 00000000..a130572f --- /dev/null +++ b/gamma_age_v2/sei_ta_isoccu.nss @@ -0,0 +1,14 @@ +// +// NWIsOccupied +// +// Check if the object is currently being sat on. +// +// (c) Shir'le E. Illios, 2002 (shirle@drowwanderer.com) +// +//////////////////////////////////////////////////////// + +int StartingConditional() +{ + return GetIsObjectValid( GetSittingCreature( OBJECT_SELF ) ); +} + diff --git a/gamma_age_v2/sei_talk.ncs b/gamma_age_v2/sei_talk.ncs new file mode 100644 index 00000000..388d6a9c Binary files /dev/null and b/gamma_age_v2/sei_talk.ncs differ diff --git a/gamma_age_v2/sei_talk.nss b/gamma_age_v2/sei_talk.nss new file mode 100644 index 00000000..c0e54753 --- /dev/null +++ b/gamma_age_v2/sei_talk.nss @@ -0,0 +1,14 @@ +// +// NWTalk +// +// Script to start a private conversation with the person using the object. +// +// (c) Shir'le E. Illios, 2002 (shirle@drowwanderer.com) +// +//////////////////////////////////////////////////////// + +void main() +{ + ActionStartConversation( GetLastUsedBy(), "", TRUE ); +} + diff --git a/gamma_age_v2/sentryrobot.utc b/gamma_age_v2/sentryrobot.utc new file mode 100644 index 00000000..d4842dc4 Binary files /dev/null and b/gamma_age_v2/sentryrobot.utc differ diff --git a/gamma_age_v2/sep.utc b/gamma_age_v2/sep.utc new file mode 100644 index 00000000..159acd69 Binary files /dev/null and b/gamma_age_v2/sep.utc differ diff --git a/gamma_age_v2/sepbite.uti b/gamma_age_v2/sepbite.uti new file mode 100644 index 00000000..caeacdca Binary files /dev/null and b/gamma_age_v2/sepbite.uti differ diff --git a/gamma_age_v2/serenlous.utc b/gamma_age_v2/serenlous.utc new file mode 100644 index 00000000..886475ad Binary files /dev/null and b/gamma_age_v2/serenlous.utc differ diff --git a/gamma_age_v2/serf.utc b/gamma_age_v2/serf.utc new file mode 100644 index 00000000..0fb310da Binary files /dev/null and b/gamma_age_v2/serf.utc differ diff --git a/gamma_age_v2/sergonpropertie.uti b/gamma_age_v2/sergonpropertie.uti new file mode 100644 index 00000000..adcb22a3 Binary files /dev/null and b/gamma_age_v2/sergonpropertie.uti differ diff --git a/gamma_age_v2/servficebot.uti b/gamma_age_v2/servficebot.uti new file mode 100644 index 00000000..fd471b60 Binary files /dev/null and b/gamma_age_v2/servficebot.uti differ diff --git a/gamma_age_v2/servicehead.uti b/gamma_age_v2/servicehead.uti new file mode 100644 index 00000000..51c6e693 Binary files /dev/null and b/gamma_age_v2/servicehead.uti differ diff --git a/gamma_age_v2/servicerobot.utc b/gamma_age_v2/servicerobot.utc new file mode 100644 index 00000000..ea6a0c8e Binary files /dev/null and b/gamma_age_v2/servicerobot.utc differ diff --git a/gamma_age_v2/set_death_def_nw.ncs b/gamma_age_v2/set_death_def_nw.ncs new file mode 100644 index 00000000..074f133d Binary files /dev/null and b/gamma_age_v2/set_death_def_nw.ncs differ diff --git a/gamma_age_v2/set_death_def_nw.nss b/gamma_age_v2/set_death_def_nw.nss new file mode 100644 index 00000000..f1d1a02e --- /dev/null +++ b/gamma_age_v2/set_death_def_nw.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) + SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_death_habd.ncs b/gamma_age_v2/set_death_habd.ncs new file mode 100644 index 00000000..c0c5c73a Binary files /dev/null and b/gamma_age_v2/set_death_habd.ncs differ diff --git a/gamma_age_v2/set_death_habd.nss b/gamma_age_v2/set_death_habd.nss new file mode 100644 index 00000000..43975d77 --- /dev/null +++ b/gamma_age_v2/set_death_habd.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) + SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_death_parth.ncs b/gamma_age_v2/set_death_parth.ncs new file mode 100644 index 00000000..1943e52a Binary files /dev/null and b/gamma_age_v2/set_death_parth.ncs differ diff --git a/gamma_age_v2/set_death_parth.nss b/gamma_age_v2/set_death_parth.nss new file mode 100644 index 00000000..7fd6143b --- /dev/null +++ b/gamma_age_v2/set_death_parth.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + + SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_death_res_pn.ncs b/gamma_age_v2/set_death_res_pn.ncs new file mode 100644 index 00000000..addcd7fb Binary files /dev/null and b/gamma_age_v2/set_death_res_pn.ncs differ diff --git a/gamma_age_v2/set_death_res_pn.nss b/gamma_age_v2/set_death_res_pn.nss new file mode 100644 index 00000000..dcc35423 --- /dev/null +++ b/gamma_age_v2/set_death_res_pn.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn + SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_resp_custom.ncs b/gamma_age_v2/set_resp_custom.ncs new file mode 100644 index 00000000..53a32f9c Binary files /dev/null and b/gamma_age_v2/set_resp_custom.ncs differ diff --git a/gamma_age_v2/set_resp_custom.nss b/gamma_age_v2/set_resp_custom.nss new file mode 100644 index 00000000..1275d3fb --- /dev/null +++ b/gamma_age_v2/set_resp_custom.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point + SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_resp_default.ncs b/gamma_age_v2/set_resp_default.ncs new file mode 100644 index 00000000..38b704cc Binary files /dev/null and b/gamma_age_v2/set_resp_default.ncs differ diff --git a/gamma_age_v2/set_resp_default.nss b/gamma_age_v2/set_resp_default.nss new file mode 100644 index 00000000..2870f1e0 --- /dev/null +++ b/gamma_age_v2/set_resp_default.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + + SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_resp_mod_st.ncs b/gamma_age_v2/set_resp_mod_st.ncs new file mode 100644 index 00000000..5c10a792 Binary files /dev/null and b/gamma_age_v2/set_resp_mod_st.ncs differ diff --git a/gamma_age_v2/set_resp_mod_st.nss b/gamma_age_v2/set_resp_mod_st.nss new file mode 100644 index 00000000..89f209ff --- /dev/null +++ b/gamma_age_v2/set_resp_mod_st.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location + SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_rest_def_nwn.ncs b/gamma_age_v2/set_rest_def_nwn.ncs new file mode 100644 index 00000000..a6ecccec Binary files /dev/null and b/gamma_age_v2/set_rest_def_nwn.ncs differ diff --git a/gamma_age_v2/set_rest_def_nwn.nss b/gamma_age_v2/set_rest_def_nwn.nss new file mode 100644 index 00000000..288dafc9 --- /dev/null +++ b/gamma_age_v2/set_rest_def_nwn.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) + SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_rest_dmfi.ncs b/gamma_age_v2/set_rest_dmfi.ncs new file mode 100644 index 00000000..9aef309b Binary files /dev/null and b/gamma_age_v2/set_rest_dmfi.ncs differ diff --git a/gamma_age_v2/set_rest_dmfi.nss b/gamma_age_v2/set_rest_dmfi.nss new file mode 100644 index 00000000..74b31974 --- /dev/null +++ b/gamma_age_v2/set_rest_dmfi.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting + SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_rest_none.ncs b/gamma_age_v2/set_rest_none.ncs new file mode 100644 index 00000000..917217f6 Binary files /dev/null and b/gamma_age_v2/set_rest_none.ncs differ diff --git a/gamma_age_v2/set_rest_none.nss b/gamma_age_v2/set_rest_none.nss new file mode 100644 index 00000000..b415fdbd --- /dev/null +++ b/gamma_age_v2/set_rest_none.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting + SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_rest_sbr.ncs b/gamma_age_v2/set_rest_sbr.ncs new file mode 100644 index 00000000..91c85daf Binary files /dev/null and b/gamma_age_v2/set_rest_sbr.ncs differ diff --git a/gamma_age_v2/set_rest_sbr.nss b/gamma_age_v2/set_rest_sbr.nss new file mode 100644 index 00000000..192bc541 --- /dev/null +++ b/gamma_age_v2/set_rest_sbr.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + +// SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest + SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/set_rest_time.ncs b/gamma_age_v2/set_rest_time.ncs new file mode 100644 index 00000000..25e69ea8 Binary files /dev/null and b/gamma_age_v2/set_rest_time.ncs differ diff --git a/gamma_age_v2/set_rest_time.nss b/gamma_age_v2/set_rest_time.nss new file mode 100644 index 00000000..6195e3c2 --- /dev/null +++ b/gamma_age_v2/set_rest_time.nss @@ -0,0 +1,33 @@ +// DMFI MP Starter Mod +// Module Control Settings scripts by Carlo +// Used in the mod_ruleset conversation +// Full text copied and then uncommented, to preserve my sanity +// in having to create all the different little convo setting scripts +// also helpful to see the different options all presented together + +void main() + +{ + +// ** Rest Systems ** + + SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + +// SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + +// SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +return; + +} diff --git a/gamma_age_v2/sibraspropertie.uti b/gamma_age_v2/sibraspropertie.uti new file mode 100644 index 00000000..5e4b3ed4 Binary files /dev/null and b/gamma_age_v2/sibraspropertie.uti differ diff --git a/gamma_age_v2/sleeth.utc b/gamma_age_v2/sleeth.utc new file mode 100644 index 00000000..e502525d Binary files /dev/null and b/gamma_age_v2/sleeth.utc differ diff --git a/gamma_age_v2/sm_on_act.ncs b/gamma_age_v2/sm_on_act.ncs new file mode 100644 index 00000000..5165a910 Binary files /dev/null and b/gamma_age_v2/sm_on_act.ncs differ diff --git a/gamma_age_v2/sm_on_act.nss b/gamma_age_v2/sm_on_act.nss new file mode 100644 index 00000000..11fc4d3b --- /dev/null +++ b/gamma_age_v2/sm_on_act.nss @@ -0,0 +1,55 @@ +// DMFI MP Starter Mod +// sm_on_act + +#include "habd_include" +#include "x2_inc_switches" + +void main() +{ + + object oItem=GetItemActivated(); + object oTarget=GetItemActivatedTarget(); + object oUser=GetItemActivator(); + location lTarLoc=GetItemActivatedTargetLocation(); + string sTag = GetTag(oItem); + + // * Generic Item Script Execution Code + // * If MODULE_SWITCH_EXECUTE_TAGBASED_SCRIPTS is set to TRUE on the module, + // * it will execute a script that has the same name as the item's tag + // * inside this script you can manage scripts for all events by checking against + // * GetUserDefinedItemEventNumber(). See x2_it_example.nss + if (GetModuleSwitchValue(MODULE_SWITCH_ENABLE_TAGBASED_SCRIPTS) == TRUE) + { + SetUserDefinedItemEventNumber(X2_ITEM_EVENT_ACTIVATE); + int nRet = ExecuteScriptAndReturnInt(GetUserDefinedItemEventScriptName(oItem),OBJECT_SELF); + if (nRet == X2_EXECUTE_SCRIPT_END) + { + return; + } + + } + +// HABD support +if (HABDOnActivateItem(GetItemActivator(), GetItemActivatedTarget(), GetItemActivated())) return; + + +// BESIE Widget support +if (sTag == "BESIEWidget") + { + if(!GetIsDM(oUser)) return; // exits if not a DM + AssignCommand(oUser, ActionStartConversation(oUser, "re_widget", TRUE)); + } + +// DM Book of Journal Entries support +if (sTag == "DMBookofJournalEntries") + { + if(!GetIsDM(oUser)) return; // exits if not a DM + AssignCommand(oUser, ActionStartConversation(oUser, "dm_journal_entry", TRUE)); + } + +// if nothing found... + +ClearAllActions(); +return; + +} diff --git a/gamma_age_v2/sm_on_client_ent.ncs b/gamma_age_v2/sm_on_client_ent.ncs new file mode 100644 index 00000000..2f8b9010 Binary files /dev/null and b/gamma_age_v2/sm_on_client_ent.ncs differ diff --git a/gamma_age_v2/sm_on_client_ent.nss b/gamma_age_v2/sm_on_client_ent.nss new file mode 100644 index 00000000..7c887ead --- /dev/null +++ b/gamma_age_v2/sm_on_client_ent.nss @@ -0,0 +1,170 @@ +// DMFI MP Starter Mod +// sm_on_client_ent +// +// Goes in the module's OnClientEnter event, or copy it into your own OnClientEnter script + + +// DMFI tool support +#include "dmfi_init_inc" + +// HABD support +#include "habd_include" + +// Horses support +#include "x3_inc_horse" + +void main() +{ + +// Following is HABD support +HABDGetDBOnClientEnter(GetEnteringObject()); + +// Uncomment the below if you want to give players the HABD bandages item on entry +// DelayCommand(6.0, HABDItemsOnClientEnter(GetEnteringObject())); + +object oPC=GetEnteringObject(); + +// ** Player Strip Settings ** +// To implement equipment stripping of entering PCs, set nStrip to TRUE +// and edit the levels of starting gold and XP as desired + +int nStrip = FALSE; +int nStartingGold = 400; +int nStartingXP = 1; + +// ** DM on module entry section ** + +// Checks if entering person is a DM and what DM items are in inventory +// Provides BESIE widget and the DMFI wands exploder if not there + +// Note that the DM Book of Journal Entries is not automatically given out +// Uncomment the line below for it, if you want that to occur + +int bBESIEWidget; +int bDMFIExploder; +int bDMbook; + +if(GetIsDM(oPC)) + { + SetLocalInt(GetModule(), "re_" + GetPCPlayerName(oPC), TRUE); + object oItem = GetFirstItemInInventory(oPC); + while(GetIsObjectValid(oItem)) + { + if(GetTag(oItem) == "BESIEWidget") bBESIEWidget = TRUE; + if(GetTag(oItem) == "dmfi_exploder") bDMFIExploder = TRUE; + if(GetTag(oItem) == "DMBookofJournalEntries") bDMbook = TRUE; + oItem = GetNextItemInInventory(oPC); + } + + if(!bBESIEWidget) CreateItemOnObject("besiewidget", oPC); // Creates Besie widget + if(!bDMFIExploder) CreateItemOnObject("dmfi_exploder", oPC); // Creates DMFI Exploder +// if(!bDMbook) CreateItemOnObject("dmbookofjournale", oPC); // Creates DM Book of Journal Entries + } + +// Initializes DMFI +if (GetIsDM(oPC)) +{ +dmfiInitialize(oPC); +return; +} + +// ** Player on module entry section ** + +// Checks to see if item stripping is enabled from above +// If so, strips equipped items and inventory of entering players +// strip script borrowed from Hard Core Modular + +if (nStrip) + { + +// Exits if the PC was previously stripped + int nStripped=GetLocalInt(GetModule(), "nStripped"+GetPCPlayerName(oPC)); + if (nStripped) return; + +// Now let's take all their stuff and destroy it + object oGear; + int nCt; + for(nCt=0;nCt0) sDB=GetLocalString(GetModule(),"X3_SADDLEBAG_DATABASE"); + if (HorseGetIsMounted(oPlayer)) + { // Dismount and then die + //SetCommandable(FALSE,oPlayer); + //ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectResurrection(),oPlayer); + DelayCommand(0.3,HORSE_SupportResetUnmountedAppearance(oPlayer)); + DelayCommand(3.0,HORSE_SupportCleanVariables(oPlayer)); + DelayCommand(1.0,HORSE_SupportRemoveACBonus(oPlayer)); + DelayCommand(1.0,HORSE_SupportRemoveHPBonus(oPlayer)); + DelayCommand(1.1,HORSE_SupportRemoveMountedSkillDecreases(oPlayer)); + DelayCommand(1.1,HORSE_SupportAdjustMountedArcheryPenalty(oPlayer)); + DelayCommand(1.2,HORSE_SupportOriginalSpeed(oPlayer)); + if (!GetLocalInt(GetModule(),"X3_HORSE_NO_CORPSES")) + { // okay to create lootable horse corpses + sR=GetSkinString(oPlayer,"sX3_HorseResRef"); + sT=GetSkinString(oPlayer,"sX3_HorseMountTag"); + nCH=GetSkinInt(oPlayer,"nX3_HorseAppearance"); + nST=GetSkinInt(oPlayer,"nX3_HorseTail"); + nC=GetLocalInt(oPlayer,"nX3_HorsePortrait"); + if (GetStringLength(sR)>0&&GetStringLeft(sR,GetStringLength(HORSE_PALADIN_PREFIX))!=HORSE_PALADIN_PREFIX) + { // create horse + oHorse=HorseCreateHorse(sR,GetLocation(oPlayer),oPlayer,sT,nCH,nST); + SetLootable(oHorse,TRUE); + SetPortraitId(oHorse,nC); + SetLocalInt(oHorse,"bDie",TRUE); + AssignCommand(oHorse,SetIsDestroyable(FALSE,TRUE,TRUE)); + } // create horse + } // okay to create lootable horse corpses + oInventory=GetLocalObject(oPlayer,"oX3_Saddlebags"); + sID=GetLocalString(oPlayer,"sDB_Inv"); + if (GetIsObjectValid(oInventory)) + { // drop horse saddlebags + if (!GetIsObjectValid(oHorse)) + { // no horse created + HORSE_SupportTransferInventory(oInventory,OBJECT_INVALID,GetLocation(oPlayer),TRUE); + } // no horse created + else + { // transfer to horse + HORSE_SupportTransferInventory(oInventory,oHorse,GetLocation(oHorse),TRUE); + //DelayCommand(2.0,PurgeSkinObject(oHorse)); + //DelayCommand(3.0,KillTheHorse(oHorse)); + //DelayCommand(1.8,PurgeSkinObject(oHorse)); + } // transfer to horse + } // drop horse saddlebags + else if (GetStringLength(sID)>0) + { // database based inventory + nC=GetCampaignInt(sDB,"nCO_"+sID); + while(nC>0) + { // restore inventory + sR=GetCampaignString(sDB,"sR"+sID+IntToString(nC)); + sT=GetCampaignString(sDB,"sT"+sID+IntToString(nC)); + nST=GetCampaignInt(sDB,"nS"+sID+IntToString(nC)); + nCH=GetCampaignInt(sDB,"nC"+sID+IntToString(nC)); + DeleteCampaignVariable(sDB,"sR"+sID+IntToString(nC)); + DeleteCampaignVariable(sDB,"sT"+sID+IntToString(nC)); + DeleteCampaignVariable(sDB,"nS"+sID+IntToString(nC)); + DeleteCampaignVariable(sDB,"nC"+sID+IntToString(nC)); + if (!GetIsObjectValid(oHorse)) + { // no lootable corpse + oItem=CreateObject(OBJECT_TYPE_ITEM,sR,GetLocation(oPlayer),FALSE,sT); + } // no lootable corpse + else + { // lootable corpse + oItem=CreateItemOnObject(sR,oHorse,nST,sT); + } // lootable corpse + if (GetItemStackSize(oItem)!=nST) SetItemStackSize(oItem,nST); + if (nCH>0) SetItemCharges(oItem,nCH); + nC--; + } // restore inventory + DeleteCampaignVariable(sDB,"nCO_"+sID); + //DelayCommand(2.0,PurgeSkinObject(oHorse)); + if (GetIsObjectValid(oHorse)&&GetLocalInt(oHorse,"bDie")) DelayCommand(3.0,KillTheHorse(oHorse)); + //DelayCommand(2.5,PurgeSkinObject(oHorse)); + } // database based inventory + else if (GetIsObjectValid(oHorse)) + { // no inventory + //DelayCommand(1.0,PurgeSkinObject(oHorse)); + DelayCommand(2.0,KillTheHorse(oHorse)); + //DelayCommand(1.8,PurgeSkinObject(oHorse)); + } // no inventory + //eEffect=EffectDeath(); + //DelayCommand(1.6,ApplyEffectToObject(DURATION_TYPE_INSTANT,eEffect,oPlayer)); + //DelayCommand(1.7,SetCommandable(TRUE,oPlayer)); + //return; + } // Dismount and then die + +// Now go to the main death system choices + +int deathchoice = GetLocalInt(GetModule(), "death_system"); + +if (deathchoice == 1) // Parthenon Easy Death System + ExecuteScript ("tz_ed_ondeath", oPlayer); + +if (deathchoice == 2) // HABD system, by default set to no respawn option + ExecuteScript ("habd_onpcdeath", oPlayer); + +if (deathchoice == 3 || deathchoice == 4) // standard death system with unlimited or penalty respawn + ExecuteScript("nw_o0_death", oPlayer); + +} + diff --git a/gamma_age_v2/sm_on_dying.ncs b/gamma_age_v2/sm_on_dying.ncs new file mode 100644 index 00000000..979087ee Binary files /dev/null and b/gamma_age_v2/sm_on_dying.ncs differ diff --git a/gamma_age_v2/sm_on_dying.nss b/gamma_age_v2/sm_on_dying.nss new file mode 100644 index 00000000..8ffc8986 --- /dev/null +++ b/gamma_age_v2/sm_on_dying.nss @@ -0,0 +1,27 @@ +// DMFI MP Starter Mod +// sm_on_dying +// used in the Parthenon Easy Death system or bleeding system selections + +void main() +{ + +int deathchoice = GetLocalInt(GetModule(), "death_system"); +object oPlayer = GetLastPlayerDying(); + +if (deathchoice == 1) // Parthenon Easy Death system + ExecuteScript("tz_ed_ondying", oPlayer); + +if (deathchoice == 2) // HABD system + ExecuteScript("habd_onpcdying", oPlayer); + +if (deathchoice == 3 || deathchoice == 4) // NWN:EE standard death system, with or without penalty respawn + { + effect eDeath = EffectDeath(FALSE, FALSE); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eDeath, oPlayer); + AssignCommand(oPlayer, ClearAllActions()); + return; + } + +} + + diff --git a/gamma_age_v2/sm_on_mod_ld.ncs b/gamma_age_v2/sm_on_mod_ld.ncs new file mode 100644 index 00000000..0a6df704 Binary files /dev/null and b/gamma_age_v2/sm_on_mod_ld.ncs differ diff --git a/gamma_age_v2/sm_on_mod_ld.nss b/gamma_age_v2/sm_on_mod_ld.nss new file mode 100644 index 00000000..6c4b0653 --- /dev/null +++ b/gamma_age_v2/sm_on_mod_ld.nss @@ -0,0 +1,177 @@ +// sm_on_mod_ld +// initializes mod variables per standardBioware scripts +// and allows for selecting DMFI base mod script systems + +#include "x2_inc_switches" +#include "x2_inc_restsys" +#include "x3_inc_horse" + +void main() +{ + +// Campaign initialization for persistence + +/* +Following are the DMFI Multiplayer Starter Mod settings +make sure the selection in each category that you want is uncommented, and that the others are commented +see the accompanying documentation for full details on each system +*/ + +// ** Rest Systems ** + + SetLocalInt(GetModule(), "rest_system", 1); // default - time-based rest +// SetLocalInt(GetModule(), "rest_system", 2); // supply-based resting +// SetLocalInt(GetModule(), "rest_system", 3); // DMFI rest system (alpha) +// SetLocalInt(GetModule(), "rest_system", 4); // standard NWN:EE resting +// SetLocalInt(GetModule(), "rest_system", 5); // disable resting + +// ** Dying/Death/Respawn Systems ** + + SetLocalInt(GetModule(), "death_system", 1); // default - Parthenon Easy Death System (PC can be revived unless entire party killed, no respawn) +// SetLocalInt(GetModule(), "death_system", 2); // HABD system for bleeding / death (no respawn by default) +// SetLocalInt(GetModule(), "death_system", 3); // standard NWN:EE death with unlimited respawn +// SetLocalInt(GetModule(), "death_system", 4); // standard NWN:EE death with respawn penalty + + SetLocalInt(GetModule(), "respawn_system", 1); // default - respawn location set to current PC location +// SetLocalInt(GetModule(), "respawn_system", 2); // respawn location set to module starting point +// SetLocalInt(GetModule(), "respawn_system", 3); // respawn at module waypoint "wp_respawn_loc" + +// Below are the standard module settings from the core x2_mod_def_load script, adjust as desired + + if (GetGameDifficulty() == GAME_DIFFICULTY_CORE_RULES || GetGameDifficulty() == GAME_DIFFICULTY_DIFFICULT) + { + // * Setting the switch below will enable a seperate Use Magic Device Skillcheck for + // * rogues when playing on Hardcore+ difficulty. This only applies to scrolls + + SetModuleSwitch (MODULE_SWITCH_ENABLE_UMD_SCROLLS, TRUE); + + // * Activating the switches below will make AOE spells hurt neutral NPCS and allies by default + // * comment them out if not desired + + SetModuleSwitch (MODULE_SWITCH_AOE_HURT_NEUTRAL_NPCS, TRUE); + } + + // * AI: Activating the switch below will make the creaures using the WalkWaypoint function + // * able to walk across areas + SetModuleSwitch (MODULE_SWITCH_ENABLE_CROSSAREA_WALKWAYPOINTS, TRUE); + + // * Spells: Activating the switch below will make the Glyph of Warding spell behave differently: + // * The visual glyph will disappear after 6 seconds, making them impossible to spot + // SetModuleSwitch (MODULE_SWITCH_ENABLE_INVISIBLE_GLYPH_OF_WARDING, TRUE); + + // * Craft Feats: Want 50 charges on a newly created wand? We found this unbalancing, + // * but since it is described this way in the book, here is the switch to get it back... + // SetModuleSwitch (MODULE_SWITCH_ENABLE_CRAFT_WAND_50_CHARGES, TRUE); + + // * Craft Feats: Use this to disable Item Creation Feats if you do not want + // * them in your module + // SetModuleSwitch (MODULE_SWITCH_DISABLE_ITEM_CREATION_FEATS, TRUE); + + // * Palemaster: Deathless master touch in PnP only affects creatures up to a certain size. + // * We do not support this check for balancing reasons, but you can still activate it... + // SetModuleSwitch (MODULE_SWITCH_SPELL_CORERULES_DMASTERTOUCH, TRUE); + + // * Epic Spellcasting: Some Epic spells feed on the liveforce of the caster. However this + // * did not fit into NWNs spell system and was confusing, so we took it out... + // SetModuleSwitch (MODULE_SWITCH_EPIC_SPELLS_HURT_CASTER, TRUE); + + // * Epic Spellcasting: Some Epic spells feed on the liveforce of the caster. However this + // * did not fit into NWNs spell system and was confusing, so we took it out... + // SetModuleSwitch (MODULE_SWITCH_RESTRICT_USE_POISON_TO_FEAT, TRUE); + + // * Spellcasting: Some people don't like caster's abusing combat expertise to raise their AC + // * Uncommenting this line will drop expertise mode whenever a spell is cast by a player + // SetModuleSwitch (MODULE_VAR_AI_STOP_EXPERTISE_ABUSE, TRUE); + + + // * Item Event Scripts: The game's default event scripts allow routing of all item related events + // * into a single file, based on the tag of that item. If an item's tag is "test", it will fire a + // * script called "test" when an item based event (equip, unequip, acquire, unacquire, activate,...) + // * is triggered. Check "x2_it_example.nss" for an example. + + + SetModuleSwitch (MODULE_SWITCH_ENABLE_TAGBASED_SCRIPTS, TRUE); + + // Enabling this causes tagbased scripting to use 7 different scripts for item events instead of + // having them packaged all in one. + // The scripts are postfixed with "_aq", "_ua", "_eq", "_ue", "_ac", "_ci", and "hc" + + if (GetModuleSwitchValue (MODULE_SWITCH_ENABLE_TAGBASED_SCRIPTS) == TRUE) + { + // * If Tagbased scripts are enabled, and you are running a Local Vault Server + // * you should use the line below to add a layer of security to your server, preventing + // * people to execute script you don't want them to. If you use the feature below, + // * all called item scrips will be the prefix + the Tag of the item you want to execute, up to a + // * maximum of 16 chars, instead of the pure tag of the object. + // * i.e. without the line below a user activating an item with the tag "test", + // * will result in the execution of a script called "test". If you uncomment the line below + // * the script called will be "1_test.nss" + + // SetUserDefinedItemEventPrefix("i_"); + + } + + + // * This initializes Bioware's wandering monster system as used in Hordes of the Underdark + // * You can deactivate it, making your module load faster if you do not use it. + // * If you want to use it, make sure you set "x2_mod_def_rest" as your module's OnRest Script + + // SetModuleSwitch (MODULE_SWITCH_USE_XP2_RESTSYSTEM, TRUE); + + if (GetModuleSwitchValue(MODULE_SWITCH_USE_XP2_RESTSYSTEM) == TRUE) + { + + // * This allows you to specify a different 2da for the wandering monster system. + // SetWanderingMonster2DAFile("des_restsystem"); + + //* Do not change this line. + WMBuild2DACache(); + } + + // * In the following section there are examples for setting various options + // * in horse package. For more information look in the "x3_inc_horse". + + // * Ignores terrain height differencies while deciding whether to play mounting + // * animation or not (if the elevation difference between rider and horse in + // * hilly terrain is large, clipping occurs and the rider animates either above + // * the horse or sinks in the horse during animation, which may look funny). + SetLocalInt(GetModule(),"bX3_MOUNT_NO_ZAXIS",TRUE); + + // * This tells how long you have left in seconds before you will be force-mounted + // * if you got stuck while moving to horse in mounting procedure, unless you + // * are using X3_HORSE_ACT_VS_DELAY method, where you can interrupt your movement + // * before reaching the mounting spot. + //SetLocalFloat(GetModule(),"fX3_TIMEOUT_TO_MOUNT",12.0f); + + // * Once per fX3_FREQUENCY (default = 1.0s) seconds character will retry to + // * get on the right path when moving to horse in case he gets stuck or + // * something makes him temporarily stuck, if he doesnt get to horse in + // * fX3_TIMEOUT_TO_MOUNT seconds, he is forced to mount. + //SetLocalFloat(GetModule(),"fX3_FREQUENCY",2.0); + + // * Use this if you want characters to be able to interrupt the mounting + // * procedure before they get to the horse (ie. by clicking on the ground). + //SetLocalInt(GetModule(),"X3_HORSE_ACT_VS_DELAY",TRUE); + + // * Use horse's inventory as a storage for saddlebag content. + //SetLocalInt(GetModule(),"X3_HORSE_ENABLE_SADDLEBAGS",TRUE); + + // * Dont forget to place the storage waypoint for this to work! + //SetLocalString(GetModule(),"X3_SADDLEBAG_DATABASE","NAME"); + + // * Doesnt apply speed bonus when mounted. + //SetLocalInt(GetModule(),"X3_HORSE_DISABLE_SPEED",TRUE); + + // * Mounts are allowed in exterior areas only. + SetLocalInt(GetModule(),"X3_MOUNTS_EXTERNAL_ONLY",TRUE); + + // * No horses are allowed underground. + //SetLocalInt(GetModule(),"X3_MOUNTS_NO_UNDERGROUND",TRUE); + + // * Possible trouble-shoot for situation when players would be left in an + // * uncommandable state (it should never happen however) + //SetLocalInt(GetModule(),"X3_NO_MOUNT_COMMANDABLE",TRUE); + +} + + diff --git a/gamma_age_v2/sm_on_respawn.ncs b/gamma_age_v2/sm_on_respawn.ncs new file mode 100644 index 00000000..28174117 Binary files /dev/null and b/gamma_age_v2/sm_on_respawn.ncs differ diff --git a/gamma_age_v2/sm_on_respawn.nss b/gamma_age_v2/sm_on_respawn.nss new file mode 100644 index 00000000..e32e4ec4 --- /dev/null +++ b/gamma_age_v2/sm_on_respawn.nss @@ -0,0 +1,83 @@ +// DMFI MP Starter Mod +// sm_on_respawn +// Modified version of the respawn script from Johan's Simple Balance System + +#include "NW_i0_plot" + +// Below is the function called by the main script to calculate XP penalty, if applicable + +int XPForLevel(int level) +{ + if (level > 0) + return ((level * (level - 1)) / 2) * 1000; + else + return 0; +} + +// main script + +void main() +{ + +// Checks which death and respawn options have been selected +// death systems without respawn will not show the Death GUI and therefore not call this script + +int deathchoice = GetLocalInt(GetModule(), "death_system"); // Which death system? +int rspchoice = GetLocalInt(GetModule(), "respawn_system"); // Which respawn location system? + +object oPlayer = GetLastRespawnButtonPresser(); + if (!GetIsObjectValid(oPlayer)) + return; + + if (deathchoice == 2) // HABD system respawn script called + ExecuteScript("habd_onpcrespawn", oPlayer); + + effect eRes = EffectResurrection(); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eRes, oPlayer); + + effect eHeal = EffectHeal(GetMaxHitPoints(oPlayer)); + ApplyEffectToObject(DURATION_TYPE_INSTANT, eHeal, oPlayer); + + RemoveEffects(oPlayer); + + if (deathchoice == 4) // if standard death system with respawn penalty, apply the penalty + { + // Set the level and gold loss penalties for respawn + int nLevelPenalty = 1; // default is lose one level; edit this number to change (2 = 2 levels, etc.) + float fGoldLoss = 0.10; // default is 10%; edit this number to change (0.20 = 20%, etc.) + + // Lose level(s) + + int iCurrentXP = GetXP(oPlayer); + int iExtraXP = iCurrentXP - XPForLevel(GetHitDice(oPlayer)); + int iNewXP = XPForLevel(GetHitDice(oPlayer) - nLevelPenalty) + iExtraXP; // lose + if (iNewXP < 0) + iNewXP = 0; + SetXP(oPlayer, iNewXP); + + // Lose gold + + int nGoldToTake = FloatToInt(fGoldLoss * GetGold(oPlayer)); // default is 10%, edit to 0.2 for 20%, etc. + AssignCommand(oPlayer, TakeGoldFromCreature(nGoldToTake, oPlayer, TRUE)); + AssignCommand(oPlayer, ClearAllActions()); + } + +location lRespawn; // initializes respawn location variable + + if (rspchoice == 1) // set to player's current location + lRespawn = GetLocation(oPlayer); + + if (rspchoice == 2) // set to module's starting location + lRespawn = GetStartingLocation(); + + if (rspchoice == 3) // set to custom waypoint location + { + // Place a waypoint in your module with the tag "wp_respawn_loc" + // or edit the below waypoint tag to use a different one + object oRespawn = GetWaypointByTag("wp_respawn_loc"); + lRespawn = GetLocation(oRespawn); + } + + AssignCommand(oPlayer, ActionJumpToLocation(lRespawn)); // Respawn at location + +} diff --git a/gamma_age_v2/sm_on_rest.ncs b/gamma_age_v2/sm_on_rest.ncs new file mode 100644 index 00000000..5afa7d27 Binary files /dev/null and b/gamma_age_v2/sm_on_rest.ncs differ diff --git a/gamma_age_v2/sm_on_rest.nss b/gamma_age_v2/sm_on_rest.nss new file mode 100644 index 00000000..cc997adf --- /dev/null +++ b/gamma_age_v2/sm_on_rest.nss @@ -0,0 +1,130 @@ +// DMFI MP Starter Mod +// sm_on_rest +// selectable resting systems + +void main() +{ + +int restchoice = GetLocalInt(GetModule(), "rest_system"); +object oPlayer = GetLastPCRested(); + +if (restchoice == 1) // Time-based rest limitation +{ +// Below is a modified resting script taken from Johan's Simple Balance System +// change nDuration below to modify the number of hours in-game between allowed rests + + int nDuration = 8; // number of in-game (*not* real-life) hours allowed between rests + + if (GetLastRestEventType() == REST_EVENTTYPE_REST_STARTED) + { + effect eSleep = EffectVisualEffect(VFX_IMP_SLEEP); + + int iLastHourRest = GetLocalInt(oPlayer, "LastHourRest"); + int iLastDayRest = GetLocalInt(oPlayer, "LastDayRest"); + int iLastYearRest = GetLocalInt(oPlayer, "LastYearRest"); + int iLastMonthRest = GetLocalInt(oPlayer, "LastMonthRest"); + int iHour = GetTimeHour(); + int iDay = GetCalendarDay(); + int iYear = GetCalendarYear(); + int iMonth = GetCalendarMonth(); + int iHowLong = 0; + int iSum = iLastHourRest + iLastDayRest + iLastYearRest + iLastMonthRest; + + if (iLastYearRest != iYear) + iMonth = iMonth + 12; + if (iLastMonthRest != iMonth) + iDay = iDay + 28; + if (iDay != iLastDayRest) + iHour = iHour + 24 * (iDay - iLastDayRest); + + iHowLong = iHour - iLastHourRest; + + if ((iHowLong < nDuration) && (iSum != 0)) + { + AssignCommand(oPlayer, ClearAllActions()); + string msg = "You may rest again in " + IntToString(nDuration-iHowLong) + " hours."; + SendMessageToPC(oPlayer, msg); + } + else + { + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eSleep, oPlayer, 7.0); + DelayCommand(9.0, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eSleep, oPlayer, 7.0)); + } + } + else if (GetLastRestEventType() == REST_EVENTTYPE_REST_FINISHED) + { + SetLocalInt(oPlayer, "LastHourRest", GetTimeHour()); + SetLocalInt(oPlayer, "LastDayRest", GetCalendarDay()); + SetLocalInt(oPlayer, "LastMonthRest", GetCalendarMonth()); + SetLocalInt(oPlayer, "LastYearRest", GetCalendarYear()); + } +} + +if (restchoice == 2) // Supply-Based Resting +{ +// this is a slightly modified version of the original script by Lichking +// called onrest_tst_food + +// requires the player to have an item in inventory with the rest_item tag in order to be able to rest +// any number of different items can be given this tag to function with the system, including stackable ones +// a sample "Rest Item" is included in module palette under Special/Custom 5 which can be renamed/copied/modified as desired + + object oItem = GetFirstItemInInventory(oPlayer); + int iFound = FALSE; + + //Loop through inventory to look for any tagged rest_item + while(iFound==FALSE && oItem!=OBJECT_INVALID) + { + if(GetTag(oItem)!="rest_item") + oItem = GetNextItemInInventory(oPlayer); + else + iFound = TRUE; + } + + if(iFound==TRUE) // found one! + { + //The rest item is removed and the PC is allowed to rest. + if(GetIsResting(oPlayer)) + { + int iStackSize = GetItemStackSize(oItem); + if(iStackSize==1) + DestroyObject(oItem); + else + SetItemStackSize(oItem, iStackSize-1); + + } + } + else // didn't find one +{ + //The PC isn't allowed to rest + if(GetLastRestEventType()==1) + { + AssignCommand(oPlayer, ClearAllActions()); + FloatingTextStringOnCreature("You lack the supplies to rest", oPlayer, FALSE); + } + } +} + +if (restchoice == 3) // DMFI resting system + ExecuteScript("dmfi_onrest", OBJECT_SELF); + + +if (restchoice == 4) // standard rest system (unlimited) +{ + effect eSleep = EffectVisualEffect(VFX_IMP_SLEEP); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eSleep, oPlayer, 7.0); + DelayCommand(9.0, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eSleep, oPlayer, 7.0)); +} + + +if (restchoice == 5) // disables all resting +{ + AssignCommand(oPlayer, ClearAllActions()); + string msg = "Resting is not possible"; // edit to send your own custom message + SendMessageToPC(oPlayer, msg); + return; +} + +} + + diff --git a/gamma_age_v2/sm_on_unacquire.ncs b/gamma_age_v2/sm_on_unacquire.ncs new file mode 100644 index 00000000..cb3bc8aa Binary files /dev/null and b/gamma_age_v2/sm_on_unacquire.ncs differ diff --git a/gamma_age_v2/sm_on_unacquire.nss b/gamma_age_v2/sm_on_unacquire.nss new file mode 100644 index 00000000..9fb5cada --- /dev/null +++ b/gamma_age_v2/sm_on_unacquire.nss @@ -0,0 +1,107 @@ +// DMFI MP Starter Mod +// sm_on_unacquire + +//:://///////////////////////////////////////////// +//:: includes x2_mod_def_unaqu +//:: Created By: Georg Zoeller +//:: Created On: 2003-07-16 +//::////////////////////////////////////////////// + +#include "x2_inc_switches" +#include "habd_include" + +// +// NWDrop +// +// Script for when a character drops an item. +// Place in the OnUnAcquireItem module event. +// +// (c) Shir'le E. Illios, 2002 (shirle@drowwanderer.com) +// +//////////////////////////////////////////////////////// + + +// Script to place an item on the ground in front of a character. +// ARGUMENTS: +// a_oCharacter - The character dropping the item. +// a_oItem - The inventory item being dropped. +// a_sNewItem - ResRef of the new item to place. +// +void SEI_PlaceItem( object a_oCharacter, object a_oItem, string a_sNewItem ) +{ + + // Get information on where we want the object. + location lCharLocation = GetLocation( a_oCharacter ); + object oArea = GetAreaFromLocation( lCharLocation ); + vector vPosition = GetPositionFromLocation( lCharLocation ); + float fFacing = GetFacingFromLocation( lCharLocation ); + + // Face away from the character. + fFacing += 180.0f; + + // SEI_TODO: Change position to slightly in front of character. + + // Create the new location to place the object. + location lPlace = Location( oArea, vPosition, fFacing ); + + // First destroy the inventory item. + DestroyObject( a_oItem ); + + // And create the new object. + CreateObject( OBJECT_TYPE_PLACEABLE, a_sNewItem, lPlace ); + +} // End SEI_PlaceItem + + + +void main() +{ + +// Original tag-based scripting support + + object oItem = GetModuleItemLost(); + // * Generic Item Script Execution Code + // * If MODULE_SWITCH_EXECUTE_TAGBASED_SCRIPTS is set to TRUE on the module, + // * it will execute a script that has the same name as the item's tag + // * inside this script you can manage scripts for all events by checking against + // * GetUserDefinedItemEventNumber(). See x2_it_example.nss + if (GetModuleSwitchValue(MODULE_SWITCH_ENABLE_TAGBASED_SCRIPTS) == TRUE) + { + SetUserDefinedItemEventNumber(X2_ITEM_EVENT_UNACQUIRE); + int nRet = ExecuteScriptAndReturnInt(GetUserDefinedItemEventScriptName(oItem),OBJECT_SELF); + if (nRet == X2_EXECUTE_SCRIPT_END) + { + return; + } + + } + +// HABD support +if (HABDOnUnAcquiredItem(GetModuleItemLostBy(), GetModuleItemLost())) return; + +// SEI placeables support + // Get the character who lost the item. + object oChar = GetModuleItemLostBy(); + + // SEI_Note: There seems to be a bug in GetModuleItemLostBy(), which + // returns the lost object, not the lost character holding the + // object. But strangely enough GetEnteringObject does return the + // character. Done like this for backwards compatibility if + // BioWare ever fixes the bug. + if( oChar == oItem ) + { + oChar = GetEnteringObject(); + } + + // Check if the dropped item is a chair. + if( GetTag( oItem ) == "Chair" ) + { + SEI_PlaceItem( oChar, oItem, "movechair" ); + } + // Check if the dropped item is a stool. + else if( GetTag( oItem ) == "Stool" ) + { + SEI_PlaceItem( oChar, oItem, "movestool" ); + } + +} diff --git a/gamma_age_v2/smovbai.utc b/gamma_age_v2/smovbai.utc new file mode 100644 index 00000000..f71a6ab0 Binary files /dev/null and b/gamma_age_v2/smovbai.utc differ diff --git a/gamma_age_v2/solblue.utp b/gamma_age_v2/solblue.utp new file mode 100644 index 00000000..b4d88084 Binary files /dev/null and b/gamma_age_v2/solblue.utp differ diff --git a/gamma_age_v2/soulbesh.utc b/gamma_age_v2/soulbesh.utc new file mode 100644 index 00000000..22b6ed8e Binary files /dev/null and b/gamma_age_v2/soulbesh.utc differ diff --git a/gamma_age_v2/soundpalcus.itp b/gamma_age_v2/soundpalcus.itp new file mode 100644 index 00000000..b0df2fcb Binary files /dev/null and b/gamma_age_v2/soundpalcus.itp differ diff --git a/gamma_age_v2/spawnpoint.utw b/gamma_age_v2/spawnpoint.utw new file mode 100644 index 00000000..b2e8eb8c Binary files /dev/null and b/gamma_age_v2/spawnpoint.utw differ diff --git a/gamma_age_v2/spiderbot.utc b/gamma_age_v2/spiderbot.utc new file mode 100644 index 00000000..ab6bbc14 Binary files /dev/null and b/gamma_age_v2/spiderbot.utc differ diff --git a/gamma_age_v2/spikedclub.uti b/gamma_age_v2/spikedclub.uti new file mode 100644 index 00000000..69d331a2 Binary files /dev/null and b/gamma_age_v2/spikedclub.uti differ diff --git a/gamma_age_v2/splint_lg.uti b/gamma_age_v2/splint_lg.uti new file mode 100644 index 00000000..7c9dbbac Binary files /dev/null and b/gamma_age_v2/splint_lg.uti differ diff --git a/gamma_age_v2/splint_med.uti b/gamma_age_v2/splint_med.uti new file mode 100644 index 00000000..8be3eb1f Binary files /dev/null and b/gamma_age_v2/splint_med.uti differ diff --git a/gamma_age_v2/splint_sm.uti b/gamma_age_v2/splint_sm.uti new file mode 100644 index 00000000..bbda24b5 Binary files /dev/null and b/gamma_age_v2/splint_sm.uti differ diff --git a/gamma_age_v2/splint_st.uti b/gamma_age_v2/splint_st.uti new file mode 100644 index 00000000..8cab73a4 Binary files /dev/null and b/gamma_age_v2/splint_st.uti differ diff --git a/gamma_age_v2/squeeker.utc b/gamma_age_v2/squeeker.utc new file mode 100644 index 00000000..47a1e36e Binary files /dev/null and b/gamma_age_v2/squeeker.utc differ diff --git a/gamma_age_v2/sreelon.utc b/gamma_age_v2/sreelon.utc new file mode 100644 index 00000000..1bd94083 Binary files /dev/null and b/gamma_age_v2/sreelon.utc differ diff --git a/gamma_age_v2/sreelonandroi001.utc b/gamma_age_v2/sreelonandroi001.utc new file mode 100644 index 00000000..a6a55742 Binary files /dev/null and b/gamma_age_v2/sreelonandroi001.utc differ diff --git a/gamma_age_v2/sreelonandroid.utc b/gamma_age_v2/sreelonandroid.utc new file mode 100644 index 00000000..f9f3037e Binary files /dev/null and b/gamma_age_v2/sreelonandroid.utc differ diff --git a/gamma_age_v2/sreeloncyborg.utc b/gamma_age_v2/sreeloncyborg.utc new file mode 100644 index 00000000..086c2f65 Binary files /dev/null and b/gamma_age_v2/sreeloncyborg.utc differ diff --git a/gamma_age_v2/sreeloncyborgh.uti b/gamma_age_v2/sreeloncyborgh.uti new file mode 100644 index 00000000..ff383ad1 Binary files /dev/null and b/gamma_age_v2/sreeloncyborgh.uti differ diff --git a/gamma_age_v2/sreelondronehead.uti b/gamma_age_v2/sreelondronehead.uti new file mode 100644 index 00000000..921336ae Binary files /dev/null and b/gamma_age_v2/sreelondronehead.uti differ diff --git a/gamma_age_v2/sreelonnegaswor.uti b/gamma_age_v2/sreelonnegaswor.uti new file mode 100644 index 00000000..5be0c10d Binary files /dev/null and b/gamma_age_v2/sreelonnegaswor.uti differ diff --git a/gamma_age_v2/sreelonrobot.utc b/gamma_age_v2/sreelonrobot.utc new file mode 100644 index 00000000..0dc4221b Binary files /dev/null and b/gamma_age_v2/sreelonrobot.utc differ diff --git a/gamma_age_v2/start_merchant.dlg b/gamma_age_v2/start_merchant.dlg new file mode 100644 index 00000000..1870eb40 Binary files /dev/null and b/gamma_age_v2/start_merchant.dlg differ diff --git a/gamma_age_v2/start_merchant.ncs b/gamma_age_v2/start_merchant.ncs new file mode 100644 index 00000000..b20bcc68 Binary files /dev/null and b/gamma_age_v2/start_merchant.ncs differ diff --git a/gamma_age_v2/start_merchant.nss b/gamma_age_v2/start_merchant.nss new file mode 100644 index 00000000..8c8eb6bd --- /dev/null +++ b/gamma_age_v2/start_merchant.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName start_merchant +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 3/23/2003 11:41:24 AM +//::////////////////////////////////////////////// +void main() +{ + + // Either open the store with that tag or let the user know that no store exists. + object oStore = GetNearestObjectByTag("start_merchant"); + if(GetObjectType(oStore) == OBJECT_TYPE_STORE) + OpenStore(oStore, GetPCSpeaker()); + else + ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK); +} diff --git a/gamma_age_v2/starting_area.are b/gamma_age_v2/starting_area.are new file mode 100644 index 00000000..ebc5e796 Binary files /dev/null and b/gamma_age_v2/starting_area.are differ diff --git a/gamma_age_v2/starting_area.gic b/gamma_age_v2/starting_area.gic new file mode 100644 index 00000000..291b57d7 Binary files /dev/null and b/gamma_age_v2/starting_area.gic differ diff --git a/gamma_age_v2/starting_area.git b/gamma_age_v2/starting_area.git new file mode 100644 index 00000000..807e6507 Binary files /dev/null and b/gamma_age_v2/starting_area.git differ diff --git a/gamma_age_v2/starting_clothes.uti b/gamma_age_v2/starting_clothes.uti new file mode 100644 index 00000000..46b2ec4e Binary files /dev/null and b/gamma_age_v2/starting_clothes.uti differ diff --git a/gamma_age_v2/startingmerchant.utc b/gamma_age_v2/startingmerchant.utc new file mode 100644 index 00000000..66e34b5f Binary files /dev/null and b/gamma_age_v2/startingmerchant.utc differ diff --git a/gamma_age_v2/startingmerchant.utm b/gamma_age_v2/startingmerchant.utm new file mode 100644 index 00000000..1d1b60cb Binary files /dev/null and b/gamma_age_v2/startingmerchant.utm differ diff --git a/gamma_age_v2/stool.uti b/gamma_age_v2/stool.uti new file mode 100644 index 00000000..d5abf340 Binary files /dev/null and b/gamma_age_v2/stool.uti differ diff --git a/gamma_age_v2/stool001.utp b/gamma_age_v2/stool001.utp new file mode 100644 index 00000000..cfce1942 Binary files /dev/null and b/gamma_age_v2/stool001.utp differ diff --git a/gamma_age_v2/store_gen_start.dlg b/gamma_age_v2/store_gen_start.dlg new file mode 100644 index 00000000..115e11af Binary files /dev/null and b/gamma_age_v2/store_gen_start.dlg differ diff --git a/gamma_age_v2/store_gen_start.ncs b/gamma_age_v2/store_gen_start.ncs new file mode 100644 index 00000000..27d07d5c Binary files /dev/null and b/gamma_age_v2/store_gen_start.ncs differ diff --git a/gamma_age_v2/store_gen_start.nss b/gamma_age_v2/store_gen_start.nss new file mode 100644 index 00000000..6bcfe052 --- /dev/null +++ b/gamma_age_v2/store_gen_start.nss @@ -0,0 +1,17 @@ +//:://///////////////////////////////////////////// +//:: FileName store_gen_start +//::////////////////////////////////////////////// +//::////////////////////////////////////////////// +//:: Created By: Script Wizard +//:: Created On: 2/7/2004 1:38:39 AM +//::////////////////////////////////////////////// +void main() +{ + + // Either open the store with that tag or let the user know that no store exists. + object oStore = GetNearestObjectByTag("gen_store"); + if(GetObjectType(oStore) == OBJECT_TYPE_STORE) + OpenStore(oStore, GetPCSpeaker()); + else + ActionSpeakStringByStrRef(53090, TALKVOLUME_TALK); +} diff --git a/gamma_age_v2/storepalcus.itp b/gamma_age_v2/storepalcus.itp new file mode 100644 index 00000000..e8b9755f Binary files /dev/null and b/gamma_age_v2/storepalcus.itp differ diff --git a/gamma_age_v2/stud_leath_lg.uti b/gamma_age_v2/stud_leath_lg.uti new file mode 100644 index 00000000..a9403490 Binary files /dev/null and b/gamma_age_v2/stud_leath_lg.uti differ diff --git a/gamma_age_v2/stud_leath_med.uti b/gamma_age_v2/stud_leath_med.uti new file mode 100644 index 00000000..d5b7d7c4 Binary files /dev/null and b/gamma_age_v2/stud_leath_med.uti differ diff --git a/gamma_age_v2/stud_leath_sm.uti b/gamma_age_v2/stud_leath_sm.uti new file mode 100644 index 00000000..1961fcd3 Binary files /dev/null and b/gamma_age_v2/stud_leath_sm.uti differ diff --git a/gamma_age_v2/stud_leath_st.uti b/gamma_age_v2/stud_leath_st.uti new file mode 100644 index 00000000..be069088 Binary files /dev/null and b/gamma_age_v2/stud_leath_st.uti differ diff --git a/gamma_age_v2/tarnzeb.utc b/gamma_age_v2/tarnzeb.utc new file mode 100644 index 00000000..4e6c55e4 Binary files /dev/null and b/gamma_age_v2/tarnzeb.utc differ diff --git a/gamma_age_v2/tarnzeb001.utc b/gamma_age_v2/tarnzeb001.utc new file mode 100644 index 00000000..ca320b75 Binary files /dev/null and b/gamma_age_v2/tarnzeb001.utc differ diff --git a/gamma_age_v2/tarnzebbark.uti b/gamma_age_v2/tarnzebbark.uti new file mode 100644 index 00000000..48bfacca Binary files /dev/null and b/gamma_age_v2/tarnzebbark.uti differ diff --git a/gamma_age_v2/tarnzebvine.uti b/gamma_age_v2/tarnzebvine.uti new file mode 100644 index 00000000..8975f38e Binary files /dev/null and b/gamma_age_v2/tarnzebvine.uti differ diff --git a/gamma_age_v2/tbrath.utc b/gamma_age_v2/tbrath.utc new file mode 100644 index 00000000..2df2a632 Binary files /dev/null and b/gamma_age_v2/tbrath.utc differ diff --git a/gamma_age_v2/teleport_auto.ncs b/gamma_age_v2/teleport_auto.ncs new file mode 100644 index 00000000..3ad1ae81 Binary files /dev/null and b/gamma_age_v2/teleport_auto.ncs differ diff --git a/gamma_age_v2/teleport_auto.nss b/gamma_age_v2/teleport_auto.nss new file mode 100644 index 00000000..e5528911 --- /dev/null +++ b/gamma_age_v2/teleport_auto.nss @@ -0,0 +1,76 @@ +// DMFI MP Starter Mod +// teleport_auto + +/*This is a simple script that can handle all of your +transitions from placeable objects. For example, ladders, +pull chains, etc.. Simply make the object usable, activate +"locked" and put the tag of the waypoint you want to jump +to in the key tag field.*/ + + + +///////////////////////////////////////////////// +// Ultimate Teleport Script 1.0 +///////////////////////////////////////////////// +// by Amurayi (mschdesign@hotmail.com) +// +// based on SirLestat's Secret Trapdoorscripts +///////////////////////////////////////////////// +/* The problem with most of the teleport scripts out there is that your companions +won't be teleported with you if you ar ebeing teleported within the same area. +This easy to configure script here is the solution for this old problem. Simply +alter the way how the teleport shall work by turning the options on and off be +setting the variables to 0 or 1 in the first ppart of this script. + +What this script can do: +- teleports player out of conversation, trigger or item +- teleports player with or without companions +- teleports player alone or the whole party (players) +*/ +void JumpAssociate(object i_oPC, int i_type, location l_iTrans) +{ + object oAssociate = GetAssociate(i_type, i_oPC); + if(GetIsObjectValid(oAssociate)) + AssignCommand(oAssociate, JumpToLocation(l_iTrans)); +} + +void main() +{ + // uncomment one of the next 3 lines depending where you use the script: + // object oPC = GetPCSpeaker(); // for conversations + // object oPC = GetEnteringObject; // for triggers + object oPC = GetLastUsedBy(); // for items/objects + + // set to 1 if you want the Associates of the player to be teleported as well, otherwise to 0: + int iTeleportAssociateToo = 1; + // Location determined by waypoint tag in lock field of object + location lTrans = GetLocation(GetObjectByTag(GetLockKeyTag(OBJECT_SELF))); + // Make the player say something on his departure (so others will now that he teleported but crashed): + string sGoodbye = "*fades out*"; + // Enter the message being send to the player when teleport starts: + string sTeleportmessage = "Your surroundings begin to fade..."; + + + // Don't start Teleport at all if activator isn't a player or DM + if(!GetIsPC(oPC)) + return; + + else + { + // Uncomment the next 2 lines if you like fancy animations (plays the summon monster 3 animation) + // effect eVis = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_3); + // ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oFM); + //AssignCommand(oPC, ActionSpeakString(sGoodbye)); + //SendMessageToPC(oPC, sTeleportmessage); + AssignCommand(oPC, DelayCommand(2.0, JumpToLocation(lTrans))); + if (iTeleportAssociateToo == 1) + { + // now send the players companions over as well: + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_ANIMALCOMPANION, lTrans)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_DOMINATED, lTrans)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_FAMILIAR, lTrans)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_HENCHMAN, lTrans)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_SUMMONED, lTrans)); + } + } +} diff --git a/gamma_age_v2/teleport_party.ncs b/gamma_age_v2/teleport_party.ncs new file mode 100644 index 00000000..e48da7a8 Binary files /dev/null and b/gamma_age_v2/teleport_party.ncs differ diff --git a/gamma_age_v2/teleport_party.nss b/gamma_age_v2/teleport_party.nss new file mode 100644 index 00000000..a9864ec9 --- /dev/null +++ b/gamma_age_v2/teleport_party.nss @@ -0,0 +1,94 @@ +///////////////////////////////////////////////// +// Ultimate Teleport Script 1.0 +///////////////////////////////////////////////// +// by Amurayi (mschdesign@hotmail.com) +// +// based on SirLestat's Secret Trapdoorscripts +///////////////////////////////////////////////// +/* The problem with most of the teleport scripts out there is that your companions +won't be teleported with you if you ar ebeing teleported within the same area. +This easy to configure script here is the solution for this old problem. Simply +alter the way how the teleport shall work by turning the options on and off be +setting the variables to 0 or 1 in the first ppart of this script. + +What this script can do: +- teleports player out of conversation, trigger or item +- teleports player with or without companions +- teleports player alone or the whole party (players) +*/ +void JumpAssociate(object i_oPC, int i_type, object i_oWP) +{ + object oAssociate = GetAssociate(i_type, i_oPC); + if(GetIsObjectValid(oAssociate)) + AssignCommand(oAssociate, JumpToObject(i_oWP)); +} + +// "Teleport_Party" +// this teleport script is pre-set to teleport the whole party +// edit the "INSERT TAG HERE" below to set a new destination +// then "Save As" a different script name. Place the script where needed. + +void main() +{ + // uncomment one of the next 3 lines depending where you use the script: + object oPC = GetPCSpeaker(); // for conversations + // object oPC = GetEnteringObject; // for triggers + // object oPC = GetLastUsedBy(); // for items/objects + + // set to 1 if you want to teleport the whole party of the player, whereever every member is: + int iTeleportWholeParty = 1; + // set to 1 if you want the Associates of the player to be teleported as well, otherwise to 0: + int iTeleportAssociateToo = 1; + // Enter the destination Waypoint in here: + object oDWP = GetWaypointByTag("INSERT TAG HERE"); + // Make the player say something on his departure (so others will now that he teleported but crashed): + string sGoodbye = "*fades out*"; + // Enter the message being send to the player when teleport starts: + string sTeleportmessage = "Your surroundings begin to fade..."; + + + // Don't start Teleport at all if activator isn't a player or DM + if(!GetIsPC(oPC)) + return; + + if (iTeleportWholeParty == 1) + { + object oFM = GetFirstFactionMember(oPC); + // Step through the party members. + while(GetIsObjectValid(oFM)) + { + AssignCommand(oFM, ActionSpeakString(sGoodbye)); + SendMessageToPC(oFM, sTeleportmessage); + AssignCommand(oFM, DelayCommand(2.0, JumpToObject(oDWP))); + if (iTeleportAssociateToo == 1) + { + // now send the players companions over as well: + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_ANIMALCOMPANION, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_DOMINATED, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_FAMILIAR, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_HENCHMAN, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_SUMMONED, oDWP)); + } + // Select the next member of the faction and loop. + oFM = GetNextFactionMember(oFM); + } + } + else + { + // Uncomment the next 2 lines if you like fancy animations (plays the summon monster 3 animation) + // effect eVis = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_3); + // ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oFM); + AssignCommand(oPC, ActionSpeakString(sGoodbye)); + SendMessageToPC(oPC, sTeleportmessage); + AssignCommand(oPC, DelayCommand(2.0, JumpToObject(oDWP))); + if (iTeleportAssociateToo == 1) + { + // now send the players companions over as well: + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_ANIMALCOMPANION, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_DOMINATED, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_FAMILIAR, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_HENCHMAN, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_SUMMONED, oDWP)); + } + } +} diff --git a/gamma_age_v2/teleport_start.ncs b/gamma_age_v2/teleport_start.ncs new file mode 100644 index 00000000..29224a67 Binary files /dev/null and b/gamma_age_v2/teleport_start.ncs differ diff --git a/gamma_age_v2/teleport_start.nss b/gamma_age_v2/teleport_start.nss new file mode 100644 index 00000000..10442d26 --- /dev/null +++ b/gamma_age_v2/teleport_start.nss @@ -0,0 +1,89 @@ +///////////////////////////////////////////////// +// Ultimate Teleport Script 1.0 +///////////////////////////////////////////////// +// by Amurayi (mschdesign@hotmail.com) +// +// based on SirLestat's Secret Trapdoorscripts +///////////////////////////////////////////////// +/* The problem with most of the teleport scripts out there is that your companions +won't be teleported with you if you ar ebeing teleported within the same area. +This easy to configure script here is the solution for this old problem. Simply +alter the way how the teleport shall work by turning the options on and off be +setting the variables to 0 or 1 in the first ppart of this script. + +What this script can do: +- teleports player out of conversation, trigger or item +- teleports player with or without companions +- teleports player alone or the whole party (players) +*/ +void JumpAssociate(object i_oPC, int i_type, object i_oWP) +{ + object oAssociate = GetAssociate(i_type, i_oPC); + if(GetIsObjectValid(oAssociate)) + AssignCommand(oAssociate, JumpToObject(i_oWP)); +} + +void main() +{ + // uncomment one of the next 3 lines depending where you use the script: + object oPC = GetPCSpeaker(); // for conversations + // object oPC = GetEnteringObject; // for triggers + // object oPC = GetLastUsedBy(); // for items/objects + + // set to 1 if you want to teleport the whole party of the player, whereever every member is: + int iTeleportWholeParty = 1; + // set to 1 if you want the Associates of the player to be teleported as well, otherwise to 0: + int iTeleportAssociateToo = 1; + // Enter the destination Waypoint in here: + object oDWP = GetWaypointByTag("wp_portal_start"); // edit this to change the waypoint destination + // Make the player say something on his departure (so others will now that he teleported but crashed): + string sGoodbye = "*fades out*"; + // Enter the message being send to the player when teleport starts: + string sTeleportmessage = "Your surroundings begin to fade..."; + + + // Don't start Teleport at all if activator isn't a player or DM + if(!GetIsPC(oPC)) + return; + + if (iTeleportWholeParty == 1) + { + object oFM = GetFirstFactionMember(oPC); + // Step through the party members. + while(GetIsObjectValid(oFM)) + { + AssignCommand(oFM, ActionSpeakString(sGoodbye)); + SendMessageToPC(oFM, sTeleportmessage); + AssignCommand(oFM, DelayCommand(2.0, JumpToObject(oDWP))); + if (iTeleportAssociateToo == 1) + { + // now send the players companions over as well: + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_ANIMALCOMPANION, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_DOMINATED, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_FAMILIAR, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_HENCHMAN, oDWP)); + DelayCommand(2.0, JumpAssociate(oFM, ASSOCIATE_TYPE_SUMMONED, oDWP)); + } + // Select the next member of the faction and loop. + oFM = GetNextFactionMember(oFM); + } + } + else + { + // Uncomment the next 2 lines if you like fancy animations (plays the summon monster 3 animation) + // effect eVis = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_3); + // ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oFM); + AssignCommand(oPC, ActionSpeakString(sGoodbye)); + SendMessageToPC(oPC, sTeleportmessage); + AssignCommand(oPC, DelayCommand(2.0, JumpToObject(oDWP))); + if (iTeleportAssociateToo == 1) + { + // now send the players companions over as well: + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_ANIMALCOMPANION, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_DOMINATED, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_FAMILIAR, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_HENCHMAN, oDWP)); + DelayCommand(2.0, JumpAssociate(oPC, ASSOCIATE_TYPE_SUMMONED, oDWP)); + } + } +} diff --git a/gamma_age_v2/thequietofthemin.are b/gamma_age_v2/thequietofthemin.are new file mode 100644 index 00000000..da327563 Binary files /dev/null and b/gamma_age_v2/thequietofthemin.are differ diff --git a/gamma_age_v2/thequietofthemin.gic b/gamma_age_v2/thequietofthemin.gic new file mode 100644 index 00000000..659a11dc Binary files /dev/null and b/gamma_age_v2/thequietofthemin.gic differ diff --git a/gamma_age_v2/thequietofthemin.git b/gamma_age_v2/thequietofthemin.git new file mode 100644 index 00000000..d9c10db7 Binary files /dev/null and b/gamma_age_v2/thequietofthemin.git differ diff --git a/gamma_age_v2/thisisthesmal001.utt b/gamma_age_v2/thisisthesmal001.utt new file mode 100644 index 00000000..0931a04d Binary files /dev/null and b/gamma_age_v2/thisisthesmal001.utt differ diff --git a/gamma_age_v2/thisisthesmallte.utt b/gamma_age_v2/thisisthesmallte.utt new file mode 100644 index 00000000..d432e739 Binary files /dev/null and b/gamma_age_v2/thisisthesmallte.utt differ diff --git a/gamma_age_v2/throneevil001.utp b/gamma_age_v2/throneevil001.utp new file mode 100644 index 00000000..f7af896b Binary files /dev/null and b/gamma_age_v2/throneevil001.utp differ diff --git a/gamma_age_v2/thronegood001.utp b/gamma_age_v2/thronegood001.utp new file mode 100644 index 00000000..8bb298e9 Binary files /dev/null and b/gamma_age_v2/thronegood001.utp differ diff --git a/gamma_age_v2/tridentsoldior.utc b/gamma_age_v2/tridentsoldior.utc new file mode 100644 index 00000000..ad8126d8 Binary files /dev/null and b/gamma_age_v2/tridentsoldior.utc differ diff --git a/gamma_age_v2/trigger_warn_dms.ncs b/gamma_age_v2/trigger_warn_dms.ncs new file mode 100644 index 00000000..155092c3 Binary files /dev/null and b/gamma_age_v2/trigger_warn_dms.ncs differ diff --git a/gamma_age_v2/trigger_warn_dms.nss b/gamma_age_v2/trigger_warn_dms.nss new file mode 100644 index 00000000..df966d4d --- /dev/null +++ b/gamma_age_v2/trigger_warn_dms.nss @@ -0,0 +1,17 @@ +// trigger_warn_dms + +// grabs the name of the entering object (usually a PC) and the area name +// and sends a message on the DM channel containing the information +// To use, place in an Area OnEnter handler or paint the custom "Trigger_Warn" + +void main() +{ +object oEntering=GetEnteringObject(); +string sEnteringName=GetName(oEntering); +object oArea = GetArea(oEntering); +string sAreaName = GetName(oArea); + +string sTellMe = sEnteringName + " just entered " + sAreaName; +SendMessageToAllDMs(sTellMe); + +} diff --git a/gamma_age_v2/triggerpalcus.itp b/gamma_age_v2/triggerpalcus.itp new file mode 100644 index 00000000..61a765c2 Binary files /dev/null and b/gamma_age_v2/triggerpalcus.itp differ diff --git a/gamma_age_v2/tsorsut.utc b/gamma_age_v2/tsorsut.utc new file mode 100644 index 00000000..35e46b20 Binary files /dev/null and b/gamma_age_v2/tsorsut.utc differ diff --git a/gamma_age_v2/tsorsut001.utc b/gamma_age_v2/tsorsut001.utc new file mode 100644 index 00000000..55624542 Binary files /dev/null and b/gamma_age_v2/tsorsut001.utc differ diff --git a/gamma_age_v2/tsorsutproperti.uti b/gamma_age_v2/tsorsutproperti.uti new file mode 100644 index 00000000..8e951c21 Binary files /dev/null and b/gamma_age_v2/tsorsutproperti.uti differ diff --git a/gamma_age_v2/tz_ed_ondeath.ncs b/gamma_age_v2/tz_ed_ondeath.ncs new file mode 100644 index 00000000..c8546735 Binary files /dev/null and b/gamma_age_v2/tz_ed_ondeath.ncs differ diff --git a/gamma_age_v2/tz_ed_ondeath.nss b/gamma_age_v2/tz_ed_ondeath.nss new file mode 100644 index 00000000..25b6e6bf --- /dev/null +++ b/gamma_age_v2/tz_ed_ondeath.nss @@ -0,0 +1,132 @@ +//:://///////////////////////////////////////////// +//:: Teiwaz's Easy Death On Death Script +//:: tz_ed_ondeath.nss +//::////////////////////////////////////////////// +/* +This is a version of the script meant for use in other mods. +Based on the death system used in the "Parthenon" multiplayer +campaign. Works as follows: + +- When a player is reduced to 0 HP or below, they fall + unconscious, and are unable to act. +- They will stay in this state until they are revived + by being healed to 1 HP or above. +- If the entire party dies, only then will the death GUI + popup, or, if there's a DM in the game, they will be + notified of the party's death, instead. + +The script are meant to keep the game running quickly and +smoothly, making it possible for the party to continue +adventuring rather than waiting for someone to respawn and +walk back to the party. + +To use the script, simply place it in the OnPlayerDeath event +in module properties, or call it from another module death event +using the ExecuteScript() function. + + +*/ +//::////////////////////////////////////////////// +//:: Created By: Teiwaz +//:: Created On: March 13, 2003 +//::////////////////////////////////////////////// + + +// Returns TRUE if all the PCs in the game are dead. +int AllPCsDead() +{ +int bAllDead = TRUE; +object oCurrentPC = GetFirstPC(); +while(GetIsObjectValid(oCurrentPC) && bAllDead) + { + if(GetCurrentHitPoints(oCurrentPC) > 0 && !GetIsDM(oCurrentPC)) + { + bAllDead = FALSE; + } + oCurrentPC = GetNextPC(); + } +return bAllDead; +} + +// Returns TRUE if there is a DM in the game. +int DMInGame() +{ +int bDMInGame = FALSE; +object oCurrentPC = GetFirstPC(); +while(GetIsObjectValid(oCurrentPC) && !bDMInGame) + { + if(GetIsDM(oCurrentPC)) + { + bDMInGame = TRUE; + } + oCurrentPC = GetNextPC(); + } +return bDMInGame; +} + +// Displays death messages to all the PCs when the entire party +// dies, or notifies the DM if one is present. +void DisplayDeathMessages() +{ +string ENTIRE_PARTY_DEAD_MESSAGE = "The entire party has been killed."; +object oCurrentPlayer = GetFirstPC(); +if(DMInGame()) + { + SendMessageToAllDMs(ENTIRE_PARTY_DEAD_MESSAGE); + } + else + { + while(GetIsObjectValid(oCurrentPlayer)) + { + if(!GetIsDM(oCurrentPlayer)) + { + PopUpDeathGUIPanel(oCurrentPlayer, FALSE, TRUE, 0, ENTIRE_PARTY_DEAD_MESSAGE); + } + oCurrentPlayer = GetNextPC(); + } + } +} + +// Recursive death function. Keeps raising PCs as they die, +// but keeps them unconscious. +void DeathLoop(object oPC) +{ +if(GetCurrentHitPoints(oPC) < -9) + { + SetLocalInt(oPC, "bJustRevived", TRUE); + ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectResurrection(),oPC); + ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDamage(GetCurrentHitPoints(oPC) + 9,DAMAGE_TYPE_MAGICAL,DAMAGE_POWER_PLUS_FIVE), oPC); + DelayCommand(0.3,SetLocalInt(oPC, "bJustRevived", FALSE)); + DelayCommand(6.0,DeathLoop(oPC)); + } + else if(GetCurrentHitPoints(oPC) < 1) + { + DelayCommand(6.0,DeathLoop(oPC)); + } +} + +void main() +{ +// Message displayed to PCs when they go below +// 0 HP for the first time. +string DISABLED_MESSAGE = "You have been disabled! Someone will have to revive you."; +// Get the last dying player +object oDyingPlayer = GetLastPlayerDied(); +AssignCommand(oDyingPlayer, ClearAllActions()); +// If they weren't just upgraded to unconscious from dead, +// notify them that they are disabled. +if(!GetLocalInt(oDyingPlayer, "bJustRevived")) + { + SendMessageToPC(oDyingPlayer, DISABLED_MESSAGE); + FloatingTextStringOnCreature("Disabled!", oDyingPlayer, FALSE); + // If the entire party is dead, display the death messages + if(AllPCsDead()) + { + DisplayDeathMessages(); + } + } +// Enter the recursive death loop +DeathLoop(oDyingPlayer); + + +} diff --git a/gamma_age_v2/tz_ed_ondying.ncs b/gamma_age_v2/tz_ed_ondying.ncs new file mode 100644 index 00000000..0e56d625 Binary files /dev/null and b/gamma_age_v2/tz_ed_ondying.ncs differ diff --git a/gamma_age_v2/tz_ed_ondying.nss b/gamma_age_v2/tz_ed_ondying.nss new file mode 100644 index 00000000..0718995e --- /dev/null +++ b/gamma_age_v2/tz_ed_ondying.nss @@ -0,0 +1,42 @@ +//:://///////////////////////////////////////////// +//:: Teiwaz's Easy Death On Dying Script +//:: tz_ed_ondying.nss +//::////////////////////////////////////////////// +/* +This is a version of the script meant for use in other mods. +Based on the death system used in the "Parthenon" multiplayer +campaign. Works as follows: + +- When a player is reduced to 0 HP or below, they fall + unconscious, and are unable to act. +- They will stay in this state until they are revived + by being healed to 1 HP or above. +- If the entire party dies, only then will the death GUI + popup, or, if there's a DM in the game, they will be + notified of the party's death, instead. + +The script are meant to keep the game running quickly and +smoothly, making it possible for the party to continue +adventuring rather than waiting for someone to respawn and +walk back to the party. + +To use the script, simply place it in the OnPlayerDying event +in module properties, or call it from another module dying event +using the ExecuteScript() function. + + +*/ +//::////////////////////////////////////////////// +//:: Created By: Teiwaz +//:: Created On: March 13, 2003 +//::////////////////////////////////////////////// + + +void main() +{ +object oDyingPlayer = GetLastPlayerDying(); +if(!GetLocalInt(oDyingPlayer, "bJustRevived")) + { + ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectDamage(GetCurrentHitPoints(oDyingPlayer) + 11, DAMAGE_TYPE_MAGICAL, DAMAGE_POWER_PLUS_FIVE), oDyingPlayer); + } +} diff --git a/gamma_age_v2/unsut.utc b/gamma_age_v2/unsut.utc new file mode 100644 index 00000000..09fc5243 Binary files /dev/null and b/gamma_age_v2/unsut.utc differ diff --git a/gamma_age_v2/utilityrobot.utc b/gamma_age_v2/utilityrobot.utc new file mode 100644 index 00000000..b79c4cef Binary files /dev/null and b/gamma_age_v2/utilityrobot.utc differ diff --git a/gamma_age_v2/vath.utc b/gamma_age_v2/vath.utc new file mode 100644 index 00000000..4c51c804 Binary files /dev/null and b/gamma_age_v2/vath.utc differ diff --git a/gamma_age_v2/vathbite.uti b/gamma_age_v2/vathbite.uti new file mode 100644 index 00000000..367b77cb Binary files /dev/null and b/gamma_age_v2/vathbite.uti differ diff --git a/gamma_age_v2/veneamub.utc b/gamma_age_v2/veneamub.utc new file mode 100644 index 00000000..92347578 Binary files /dev/null and b/gamma_age_v2/veneamub.utc differ diff --git a/gamma_age_v2/vibrosword.uti b/gamma_age_v2/vibrosword.uti new file mode 100644 index 00000000..e5d0f4ae Binary files /dev/null and b/gamma_age_v2/vibrosword.uti differ diff --git a/gamma_age_v2/warbot.utc b/gamma_age_v2/warbot.utc new file mode 100644 index 00000000..3bedf4bd Binary files /dev/null and b/gamma_age_v2/warbot.utc differ diff --git a/gamma_age_v2/waypoint001.utw b/gamma_age_v2/waypoint001.utw new file mode 100644 index 00000000..a2b2da7c Binary files /dev/null and b/gamma_age_v2/waypoint001.utw differ diff --git a/gamma_age_v2/waypointpalcus.itp b/gamma_age_v2/waypointpalcus.itp new file mode 100644 index 00000000..33eef2bf Binary files /dev/null and b/gamma_age_v2/waypointpalcus.itp differ diff --git a/gamma_age_v2/wedlxon.utc b/gamma_age_v2/wedlxon.utc new file mode 100644 index 00000000..dae31969 Binary files /dev/null and b/gamma_age_v2/wedlxon.utc differ diff --git a/gamma_age_v2/wedlxonbloom.utc b/gamma_age_v2/wedlxonbloom.utc new file mode 100644 index 00000000..42578ed6 Binary files /dev/null and b/gamma_age_v2/wedlxonbloom.utc differ diff --git a/gamma_age_v2/wedlxonspore.utc b/gamma_age_v2/wedlxonspore.utc new file mode 100644 index 00000000..32f23c59 Binary files /dev/null and b/gamma_age_v2/wedlxonspore.utc differ diff --git a/gamma_age_v2/winislean.utc b/gamma_age_v2/winislean.utc new file mode 100644 index 00000000..fd4a83a5 Binary files /dev/null and b/gamma_age_v2/winislean.utc differ diff --git a/gamma_age_v2/woon.utc b/gamma_age_v2/woon.utc new file mode 100644 index 00000000..f8dc3c37 Binary files /dev/null and b/gamma_age_v2/woon.utc differ diff --git a/gamma_age_v2/x2_sig_state.ncs b/gamma_age_v2/x2_sig_state.ncs new file mode 100644 index 00000000..6ef01265 Binary files /dev/null and b/gamma_age_v2/x2_sig_state.ncs differ diff --git a/gamma_age_v2/x2_sig_state.nss b/gamma_age_v2/x2_sig_state.nss new file mode 100644 index 00000000..a0287687 --- /dev/null +++ b/gamma_age_v2/x2_sig_state.nss @@ -0,0 +1,18 @@ +//:://///////////////////////////////////////////// +//:: x2_sig_state +//:: Copyright (c) 2001 Bioware Corp. +//::////////////////////////////////////////////// +/* + Sends an event to every party member + saying I've been put into a disabling state +*/ +//::////////////////////////////////////////////// +//:: Created By: Brent +//:: Created On: +//::////////////////////////////////////////////// +#include "x0_inc_henai" + +void main() +{ + //SendForHelp(); +} diff --git a/gamma_age_v2/yexil.utc b/gamma_age_v2/yexil.utc new file mode 100644 index 00000000..9ed6b778 Binary files /dev/null and b/gamma_age_v2/yexil.utc differ diff --git a/gamma_age_v2/yexilhide.uti b/gamma_age_v2/yexilhide.uti new file mode 100644 index 00000000..911f9850 Binary files /dev/null and b/gamma_age_v2/yexilhide.uti differ diff --git a/gamma_age_v2/zarn.utc b/gamma_age_v2/zarn.utc new file mode 100644 index 00000000..11dccf7c Binary files /dev/null and b/gamma_age_v2/zarn.utc differ diff --git a/gamma_age_v2/zarnbite.uti b/gamma_age_v2/zarnbite.uti new file mode 100644 index 00000000..cdf35db7 Binary files /dev/null and b/gamma_age_v2/zarnbite.uti differ diff --git a/gamma_age_v2/zarnproperties.uti b/gamma_age_v2/zarnproperties.uti new file mode 100644 index 00000000..4743cc73 Binary files /dev/null and b/gamma_age_v2/zarnproperties.uti differ