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
402 B
Plaintext
19 lines
402 B
Plaintext
/*
|
|
Activates Master Wand
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
object oPC = OBJECT_SELF;
|
|
|
|
if(GetLocalInt(oPC, "MasterWand"))
|
|
{
|
|
FloatingTextStringOnCreature("Master Wand Deactivated.", oPC, FALSE);
|
|
DeleteLocalInt(oPC, "MasterWand");
|
|
}
|
|
else
|
|
{
|
|
FloatingTextStringOnCreature("Master Wand Activated.", oPC, FALSE);
|
|
SetLocalInt(oPC, "MasterWand", TRUE);
|
|
}
|
|
} |