30 lines
858 B
Plaintext
30 lines
858 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name q2b_hb_pillar
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
When Created apply a coloured effect to the
|
|
pillar
|
|
Rod Colour
|
|
1 = Blue
|
|
2 = Green
|
|
3 = Red
|
|
4 = White
|
|
5 = Yellow
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Keith Warner
|
|
//:: Created On: June 16/03
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
ExecuteScript("nw_c2_default1", OBJECT_SELF);
|
|
if (GetLocalInt(OBJECT_SELF, "nDoOnce") == 1)
|
|
return;
|
|
SetLocalInt(OBJECT_SELF, "nDoOnce", 1);
|
|
|
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectVisualEffect(VFX_DUR_ICESKIN), OBJECT_SELF);
|
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectVisualEffect(VFX_DUR_LIGHT_BLUE_10), OBJECT_SELF);
|
|
}
|