13 lines
565 B
Plaintext
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));
|
||
|
}
|