Gamma Age module files
Added internal Gamma Age module files.
This commit is contained in:
32
gamma_age_v2/nw_s3_actitem01.nss
Normal file
32
gamma_age_v2/nw_s3_actitem01.nss
Normal file
@@ -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));
|
||||
}
|
Reference in New Issue
Block a user