mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-28 15:37:14 -05:00
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:
32
nwn/trunk/scripts/prc_breath_spred.nss
Normal file
32
nwn/trunk/scripts/prc_breath_spred.nss
Normal file
@@ -0,0 +1,32 @@
|
||||
//::///////////////////////////////////////////////
|
||||
//:: Metabreath - Spreading Breath
|
||||
//:: prc_breath_spred.nss
|
||||
//::///////////////////////////////////////////////
|
||||
/*
|
||||
Toggles the Spreading Breath feat on and off.
|
||||
*/
|
||||
//:://////////////////////////////////////////////
|
||||
//:: Created By: Fox
|
||||
//:: Created On: Jan 22, 2008
|
||||
//:://////////////////////////////////////////////
|
||||
|
||||
#include "prc_alterations"
|
||||
|
||||
void main()
|
||||
{
|
||||
string sMes = "";
|
||||
object oPC = OBJECT_SELF;
|
||||
|
||||
if(GetLocalInt(oPC, "SpreadingBreath"))
|
||||
{
|
||||
sMes = "*Spreading Breath Deactivated*";
|
||||
DeleteLocalInt(oPC,"SpreadingBreath");
|
||||
}
|
||||
else
|
||||
{
|
||||
sMes = "*Spreading Breath Activated*";
|
||||
SetLocalInt(oPC, "SpreadingBreath", TRUE);
|
||||
}
|
||||
|
||||
FloatingTextStringOnCreature(sMes, oPC, FALSE);
|
||||
}
|
||||
Reference in New Issue
Block a user