View Single Post
  #8  
Old 10-23-2018, 10:02 PM
prestanneth
Fire Beetle
 
Join Date: Jul 2015
Posts: 25
Default

mmm your affinity should be set to single yes, as to OC modes, mines currently running at 5.19Gz with no issues, i guess keep playing with settings and hopefully find a happy medium that works.

if it helps, here's a script i use for my kids pc's which i could never get lift working on.
Allows you to just hail the guard to port up. You can shorten it if want to look up a specific npcid to port to, rather than iterating a list. I've other stuff going on that i ripped out of it for the sake of cleanliness.


Guard_Rainstrider.pl

Code:
sub EVENT_SAY
{
    if($text=~/hail/i)
		{
		plugin::Whisper("Welcome to Elvandar, Do you wish to " . quest::saylink("attend",1) . " the lady of the trees?");
		}
	if($text=~/attend/i)	
	{
		my @nlist = $entity_list->GetNPCList();
		foreach my $n (@nlist)
		{
			if ($n->GetCleanName() =~/Vaelias/i )
			{
			quest::shout("$name is heading up to the city, let him pass!");
			quest::movepc($zoneid, $n->GetX() -2, $n->GetY() -2, $n->GetZ() + 1,$n->GetHeading() - 360);
			}
		}
	}
}
Reply With Quote