Alangara_PRC8/_module/nss/it_mpotion017.nss

20 lines
300 B
Plaintext
Raw Permalink Normal View History

2024-06-05 21:21:06 -04:00
// Special script for the Shaman potion in alangara.
// Heals user for 75 hitpoints.
// Tarashon
void main()
{
object oPC;
oPC = GetItemActivator();
object oTarget;
oTarget = oPC;
effect eEffect;
eEffect = EffectHeal(75);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eEffect, oTarget, 1.0f);
}