View Single Post
  #6  
Old 05-26-2014, 01:58 PM
Zaela_S
Hill Giant
 
Join Date: Jun 2012
Posts: 216
Default

Did you read the line about removing the # in front of the line.

Change this
Code:
  if ($popupid == 6180) { #wallofslaughter
    #quest::movepc(300,-943,13,130);
  }
to this
Code:
  if ($popupid == 6180) { #wallofslaughter
    quest::movepc(300,-943,13,130);
  }
Reply With Quote