Further file organization
Further file organization
This commit is contained in:
23
nwn/nwnprc/trunk/scripts/prc_rune_max.nss
Normal file
23
nwn/nwnprc/trunk/scripts/prc_rune_max.nss
Normal file
@@ -0,0 +1,23 @@
|
||||
// Written by Stratovarius
|
||||
// Turns Blood Component on and off.
|
||||
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = OBJECT_SELF;
|
||||
string nMes = "";
|
||||
|
||||
if(!GetLocalInt(oPC, "MaximizeRune"))
|
||||
{
|
||||
SetLocalInt(oPC, "MaximizeRune", TRUE);
|
||||
nMes = "*Maximize Rune Activated*";
|
||||
}
|
||||
else
|
||||
{
|
||||
// Removes effects
|
||||
DeleteLocalInt(oPC, "MaximizeRune");
|
||||
nMes = "*Maximize Rune Deactivated*";
|
||||
}
|
||||
|
||||
FloatingTextStringOnCreature(nMes, oPC, FALSE);
|
||||
}
|
Reference in New Issue
Block a user