Initial upload.
Adding base PRC 4.19a files to repository.
This commit is contained in:
16
trunk/scripts/prc_diabl_vdiab.nss
Normal file
16
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