2026/06/09 Update

Moved Player Tool check from Heartbeat to onEnter & onLevelup.
Added Trash Barrel to several areas.
Updated ms_name_inc
This commit is contained in:
Jaysyn904
2026-06-09 08:41:07 -04:00
parent 0c2162046d
commit 22d435b0f1
147 changed files with 9533 additions and 183 deletions

View File

@@ -39,6 +39,22 @@ void main()
int bNWNxEE = NWNXGetIsAvailable();
while (GetIsObjectValid(oPC))
{
if (!GetHasFeat(FEAT_PLAYER_TOOL_01, oPC))
{
object oHide = GetItemInSlot(INVENTORY_SLOT_CARMOUR, oPC);
if (GetIsObjectValid(oHide))
{
FloatingTextStringOnCreature("Player Tool 1 acquired. Use this to direct companions.", oPC, FALSE);
AddItemProperty(DURATION_TYPE_PERMANENT, ItemPropertyBonusFeat(IP_CONST_FEAT_PLAYER_TOOL_01), oHide);
}
}
oPC = GetNextPC();
}
//:: NUI Magic by Daz
//Examine_DisablePanels(oPC);
GetObjectUUID(oPC);