HoS_PRC8/_mod/_module/nss/potionofmaskalig.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

13 lines
565 B
Plaintext

///////////////////////////////////////////////////////////////////////////////
// Potion of Mask Alignment
// By Deva Bryson Winblood
///////////////////////////////////////////////////////////////////////////////
void main()
{
object oPC=GetItemActivator();
SetLocalInt(oPC,"nMaskAlignment",TRUE);
SendMessageToPC(oPC,"You feel no different after drinking that vile concoction.");
DelayCommand(HoursToSeconds(4),SendMessageToPC(oPC,"Your alignment is no longer masked."));
DelayCommand(HoursToSeconds(4),SetLocalInt(oPC,"nMaskAlignment",FALSE));
}