mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-28 03:47:16 -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:
16
nwn/trunk/scripts/prc_rune_cntone.nss
Normal file
16
nwn/trunk/scripts/prc_rune_cntone.nss
Normal file
@@ -0,0 +1,16 @@
|
||||
// Written by Stratovarius
|
||||
// Turns Blood Component on and off.
|
||||
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = OBJECT_SELF;
|
||||
string nMes = "";
|
||||
|
||||
int nCount = GetLocalInt(oPC, "RuneCounter");
|
||||
nCount += 1;
|
||||
if (nCount > 50) nCount = 50;
|
||||
SetLocalInt(oPC, "RuneCounter", nCount);
|
||||
nMes = "*Rune Counter Value is: " + IntToString(nCount) + "*";
|
||||
FloatingTextStringOnCreature(nMes, oPC, FALSE);
|
||||
}
|
||||
Reference in New Issue
Block a user