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

11 lines
186 B
Plaintext

#include "prc_inc_burn"
void main()
{
object oPC = OBJECT_SELF;
if(!BurnSpell(oPC))
return;
// Rod of Wonder
AssignCommand(oPC, ActionCastSpell(499));
}