25 lines
577 B
Plaintext
25 lines
577 B
Plaintext
// Script for the pie's buyable in the museum. Adding strengh and constitution for 24 hours.
|
|
// primarely ment to aid the nonecaster melee classes.
|
|
// Tarashon
|
|
|
|
void main()
|
|
{
|
|
object oPC;
|
|
|
|
oPC = GetItemActivator();
|
|
|
|
object oCaster;
|
|
oCaster = oPC;
|
|
|
|
object oTarget;
|
|
oTarget = oPC;
|
|
|
|
AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_ENDURANCE, oTarget, METAMAGIC_ANY, TRUE, 24, PROJECTILE_PATH_TYPE_DEFAULT, TRUE));
|
|
|
|
oCaster = oPC;
|
|
|
|
AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_BULLS_STRENGTH, oTarget, METAMAGIC_ANY, TRUE, 24, PROJECTILE_PATH_TYPE_DEFAULT, TRUE));
|
|
|
|
}
|
|
|