mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-16 16:27:15 -05:00
Further file organization
Further file organization
This commit is contained in:
16
nwn/nwnprc/trunk/scripts/prc_diabl_vdiab.nss
Normal file
16
nwn/nwnprc/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