PRC8_fork/nwn/nwnprc/trunk/scripts/prc_ft_sudmax.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

18 lines
598 B
Plaintext

//::///////////////////////////////////////////////
//:: Sudden Maximize
//:: prc_ft_sudmax.nss
//:://////////////////////////////////////////////
//:: Applies Maximize to next spell cast.
//:://////////////////////////////////////////////
//:: Created By: Stratovarius
//:: Created On: 24/06/2007
//:://////////////////////////////////////////////
void main()
{
object oPC = OBJECT_SELF;
int nMeta = GetLocalInt(oPC, "SuddenMeta");
nMeta |= METAMAGIC_MAXIMIZE;
SetLocalInt(oPC, "SuddenMeta", nMeta);
FloatingTextStringOnCreature("Sudden Maximize Activated", oPC, FALSE);
}