WoR_PRC8/_module/nss/dg_blarg_taunt.nss

19 lines
480 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
void main()
{
object oPC = GetLastPerceived();
if (!GetIsPC(oPC)) return;
if (!GetLastPerceptionSeen()) return;
DelayCommand(3.0, ActionSpeakString("You will never take me! You don't have the power.."));
DelayCommand(4.0, AssignCommand(oPC, ActionSpeakString("Brutus sends his regards!")));
DelayCommand(5.0, ActionSpeakString("Pity you'll be too dead to send my regards back.."));
DelayCommand(6.0, AssignCommand(oPC, ActionSpeakString("We'll just see about that!")));
}