Alangara_PRC8/_module/nss/museumdrink.nss

21 lines
435 B
Plaintext
Raw Permalink Normal View History

2024-06-05 21:21:06 -04:00
// This is for the museum's nectar, and grants the used a 24 hour monstreous regeneration.
// Main purpose is to help the nonecasters on lower levels.
// Tarashon
void main()
{
object oPC;
oPC = GetItemActivator();
object oCaster;
oCaster = oPC;
object oTarget;
oTarget = oPC;
AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_MONSTROUS_REGENERATION, oTarget, METAMAGIC_ANY, TRUE, 24, PROJECTILE_PATH_TYPE_DEFAULT, TRUE));
}