forked from Jaysyn/PRC8
Updated Release Archive
Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
This commit is contained in:
16
nwn/trunk/scripts/prc_diabl_vdiab.nss
Normal file
16
nwn/trunk/scripts/prc_diabl_vdiab.nss
Normal file
@@ -0,0 +1,16 @@
|
||||
void main()
|
||||
{
|
||||
object oCaster = OBJECT_SELF;
|
||||
|
||||
if (GetLocalInt(oCaster, "VileDiabolism") == FALSE)
|
||||
{
|
||||
SetLocalInt(oCaster, "VileDiabolism", TRUE);
|
||||
FloatingTextStringOnCreature("Vile Diabolism On", oCaster, FALSE);
|
||||
}
|
||||
else
|
||||
{
|
||||
SetLocalInt(oCaster, "VileDiabolism", FALSE);
|
||||
FloatingTextStringOnCreature("Vile Diabolism Off", oCaster, FALSE);
|
||||
}
|
||||
//FloatingTextStringOnCreature(IntToString(GetLocalInt(oCaster, "VileDiabolism")), oCaster, FALSE);
|
||||
}
|
||||
Reference in New Issue
Block a user