Page 1 of 1

KS - Regin

Posted: Fri Dec 09, 2011 7:08 am
by spawni
Searched arround found only one not answered topic about it.
I wonder, if it is possible to do regin - the last boss of KS.

Anyone tried? Or is it impossible cause you have to click him?

Re: KS - Regin

Posted: Fri Dec 09, 2011 7:17 am
by lisa
last time I went to that boss I thought it activated when I got close to it, maybe I clicked it without knowing I guess.

Re: KS - Regin

Posted: Mon Dec 19, 2011 3:25 pm
by kanta
It's been ages since I've done KS but I still have my old waypoint for it. Maybe you could play around with this old, ugly code of mine:

Code: Select all

	<!-- #141 --><waypoint x="1974" z="6551" y="175">
		player:restrnd(101, 100, 120);
      player:findTarget("Regin");
      local target = player:getTarget();
      if(target.Name == "Regin") then
               yrest(300);
         player:cast("SCOUT_COMBO_SHOT");
               yrest(300);
         player:cast("SCOUT_SHOT");
               yrest(300);
         player:cast("SCOUT_PIERCING_ARROW");
               yrest(300);
         player:cast("SCOUT_REPELLING_ARROW");
               yrest(300);
         player:cast("SCOUT_WIND_ARROWS");
               yrest(300);
         player:cast("SCOUT_REFLECTED_SHOT");
               yrest(300);
               player:clearTarget();
               BossBuff();
      end;
		yrest(5000)
      player:findTarget("Ensia");
      local target = player:getTarget();
      if(target.Name == "Ensia") or (target.Name == "Iron Rune Warrior") then
               yrest(300);
         player:cast("SCOUT_COMBO_SHOT");
      end;
	</waypoint>

Re: KS - Regin

Posted: Tue Dec 20, 2011 1:32 am
by spawni
ty - I will give it a try :D