2026/03/17 Update

Added DMFI components
Updated dynamic conversations.
This commit is contained in:
Jaysyn904
2026-03-17 17:20:49 -04:00
parent 440b020e08
commit dc174e1aaa
63 changed files with 29489 additions and 3478 deletions

26
src/dmfi/dmfi_univ_2.nss Normal file
View File

@@ -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;
}
}