Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
/*
|
|
Activates Double Wand
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
object oPC = OBJECT_SELF;
|
|
|
|
if(GetLocalInt(oPC, "DoubleWand"))
|
|
{
|
|
FloatingTextStringOnCreature("Double Wand Wielder Deactivated.", oPC, FALSE);
|
|
DeleteLocalInt(oPC, "DoubleWand");
|
|
}
|
|
else
|
|
{
|
|
FloatingTextStringOnCreature("Double Wand Wielder Activated.", oPC, FALSE);
|
|
SetLocalInt(oPC, "DoubleWand", TRUE);
|
|
}
|
|
} |