View Single Post
  #1  
Old 02-11-2013, 02:24 AM
liquest
"Special" Member
 
Join Date: Jul 2007
Posts: 373
Default GM Easter Egg Title Quest

I was a Co-Developer on a server called Harbingers Safehaven. An aspect about the server that players like is throughout our content we had very hidden NPC's scaling in difficulty so player hub was the easiest one to fine, and T2 was the hardest. These NPC's where based upon the names of the GM's and Donators alike.

Code:
#Starf the Drowning (Starf the Drowning)
sub EVENT_SAY
{
	
	my $Drag = quest::saylink("Drag", 1);
	my $NPCName = $npc->GetCleanName();
	
	if ($text =~/hail/i)
	{
		$client->Message(315, "$NPCName says to you through telepathy, 'Please save me. I've been stuck under here for some time now. [$Drag] Me out of here please?'"); 
		quest::emote("lets out his last air bubble.");
	}

	if ($text =~/drag/i)
	{
		$client->Message(315, "$NPCName says to you through telepathy, 'Thank you, it will be good to see my family again.'");
		##quest::enabletitleset("998");
		quest::depop();
	}
}
__________________
Also Knows as Tavish

Liquest Auctions, WTB AA's up to the current compatable clients PST with offer.

"A casual stroll through a lunatic asylum shows that faith does not prove anything." ~Fredrick Nietzsche

"Insanity: doing the same thing over and over again and expecting different results.." ~Albert Einstein
Reply With Quote