26 lines
671 B
Plaintext
26 lines
671 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Associate On Attacked
|
||
|
//:: NW_CH_AC5
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
If already fighting then ignore, else determine
|
||
|
combat round
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Preston Watamaniuk
|
||
|
//:: Created On: Oct 16, 2001
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// Don't do anything if we have have been recently commanded
|
||
|
if (GetLocalInt(OBJECT_SELF, "bmc_active"))
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
ExecuteScript("nw_ch_ac5", OBJECT_SELF);
|
||
|
}
|