Faites-les taire (Chupura Daily in xaviera)

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
fox66
Posts: 11
Joined: Sun Jul 29, 2012 3:55 am
Location: france

Faites-les taire (Chupura Daily in xaviera)

#1 Post by fox66 » Sun Jul 29, 2012 4:20 am

bonjour
jai fait un waypoint sur la zone de Xaviera pour la Quêtes journalières de Sofie Paichu Tuer 5 Chupuras charognards.
pour et vous m aide a voir cet qui va pas
en faite le perso me s arête pas pour tue le mob voila se que jai fait..

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints  type="RUN">
	<!-- #  1 --><waypoint x="10113" z="9368" y="4">
		 do player:target_NPC("Sofie Paichu");
               sendMacro("OnClick_QuestListButton(1,1)");	
			sendMacro("CompleteQuest()");		
			sendMacro("CloseWindows()");
		end
			do player:target_NPC("Sofie Paichu");			
			sendMacro("OnClick_QuestListButton(1,1)");	
			sendMacro("AcceptQuest()");			
			sendMacro("CloseWindows()");			
	
		end
		local dqc1, dqm1 = RoMScript("Daily_count()");
		printf("Daily quests: %d / %d\n", dqc1, dqm1);
		if (dqc1 == dqm1)
		then
			yrest(5000);
			local dqc2, dqm2 = RoMScript("Daily_count()");
			if (dqc2 == dqm2)
			then
				player:logout();
			end
		end
        </waypoint>
	<!-- #  2 --><waypoint x="10045" z="9374" y="0">player:harvest();</waypoint>
	<!-- #  3 --><waypoint x="10034" z="9626" y="0">player:harvest();</waypoint>
	<!-- #  4 --><waypoint x="10045" z="9784" y="-7" type="RUN">
		 player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- #  5 --><waypoint x="10104" z="9941" y="-27" type="RUN">
         player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- #  7 --><waypoint x="10306" z="10060" y="-55" type="RUN">
		 player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- #  9 --><waypoint x="10085" z="10078" y="-46">
        player:harvest()player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- # 11 --><waypoint x="10002" z="10112" y="-37" type="RUN">

         player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- # 13 --><waypoint x="9763" z="10153" y="-27" type="RUN">
	
         player:target_NPC("Chupura charognard");
	</waypoint>
        <!-- # 14 --><waypoint x="9679" z="9955" y="-10" type="RUN">
		  player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- # 15 --><waypoint x="10004" z="9656" y="-1">player:harvest();</waypoint>
	<!-- # 16 --><waypoint x="10035" z="9370" y="0">player:harvest();</waypoint>
	<!-- # 17 --><waypoint x="10110" z="9379" y="4">
		player:target_NPC("Sofie Paichu");
	</waypoint>
</waypoints>

_hirondelle
Posts: 72
Joined: Thu Mar 08, 2012 7:22 am

Re: Faites-les taire

#2 Post by _hirondelle » Sun Jul 29, 2012 4:35 am

Merci d'écrire en anglais, ce forum n'est pas francophone.

Ton waypoint est de type RUN. Selon la documentation, le type RUN permet d'aller rapidement d'un point à un autre sans s'arrêter même si attaque de mobs.

Donc change le type en TRAVEL.


Thanks to write in english. This forum isn't a french-speaking portal.
Your waypoint is of RUN type. The documentation say that RUN able to go between two points without arresting if you aggro mobs.
So, change your type in TRAVEL and it will be ok.

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Faites-les taire

#3 Post by lisa » Sun Jul 29, 2012 5:07 am

this works

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints  type="NORMAL">
<onload>
settings.profile.mobs = {"Chupura"}
questname = RoMScript('TEXT("Sys424165_name")')
</onload>
   <!-- #  1 --><waypoint x="10113" z="9368" y="4">
		player:target_NPC(118060);         
		CompleteQuestByName()        
		local dqc1, dqm1 = RoMScript("Daily_count()");
		printf("Daily quests: %d / %d\n", dqc1, dqm1);
		if (dqc1 == dqm1) then
			yrest(5000);
			local dqc2, dqm2 = RoMScript("Daily_count()");
			if (dqc2 == dqm2) then
				player:logout();
			end
		end
		
		player:target_NPC(118060);
		AcceptQuestByName()
    </waypoint>
	<!-- #  2 --><waypoint x="10045" z="9374" y="0"></waypoint>
	<!-- #  3 --><waypoint x="10034" z="9626" y="0" tag="startloop"></waypoint>
	<!-- #  4 --><waypoint x="10045" z="9784" y="-7" type="NORMAL"></waypoint>
	<!-- #  5 --><waypoint x="10104" z="9941" y="-27" type="NORMAL"></waypoint>
	<!-- #  6 --><waypoint x="10306" z="10060" y="-55" type="NORMAL"></waypoint>
	<!-- #  7 --><waypoint x="10085" z="10078" y="-46"></waypoint>
	<!-- # 8 --><waypoint x="10002" z="10112" y="-37" type="NORMAL"></waypoint>
	<!-- # 9 --><waypoint x="9763" z="10153" y="-27" type="NORMAL"></waypoint>
	<!-- # 10 --><waypoint x="9679" z="9955" y="-10" type="NORMAL"></waypoint>
	<!-- # 11 --><waypoint x="10004" z="9656" y="-1">
	local queststate = getQuestStatus(questname)
	if queststate and queststate ~= "complete" then
		__WPL:setWaypointIndex(__WPL:findWaypointTag("startloop"));
	end
	</waypoint>
	<!-- # 12 --><waypoint x="10035" z="9370" y="0"></waypoint>
	<!-- # 13 --><waypoint x="10110" z="9379" y="4"></waypoint>
</waypoints>  
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

fox66
Posts: 11
Joined: Sun Jul 29, 2012 3:55 am
Location: france

Re: Faites-les taire (Chupura Daily in xaviera)

#4 Post by fox66 » Sun Jul 29, 2012 12:29 pm

fox66 wrote:bonjour
jai fait un waypoint sur la zone de Xaviera pour la Quêtes journalières de Sofie Paichu Tuer 5 Chupuras charognards.
pour et vous m aide a voir cet qui va pas
en faite le perso me s arête pas pour tue le mob voila se que jai fait..

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints  type="RUN">
	<!-- #  1 --><waypoint x="10113" z="9368" y="4">
		 do player:target_NPC("Sofie Paichu");
               sendMacro("OnClick_QuestListButton(1,1)");	
			sendMacro("CompleteQuest()");		
			sendMacro("CloseWindows()");
		end
			do player:target_NPC("Sofie Paichu");			
			sendMacro("OnClick_QuestListButton(1,1)");	
			sendMacro("AcceptQuest()");			
			sendMacro("CloseWindows()");			
	
		end
		local dqc1, dqm1 = RoMScript("Daily_count()");
		printf("Daily quests: %d / %d\n", dqc1, dqm1);
		if (dqc1 == dqm1)
		then
			yrest(5000);
			local dqc2, dqm2 = RoMScript("Daily_count()");
			if (dqc2 == dqm2)
			then
				player:logout();
			end
		end
        </waypoint>
	<!-- #  2 --><waypoint x="10045" z="9374" y="0">player:harvest();</waypoint>
	<!-- #  3 --><waypoint x="10034" z="9626" y="0">player:harvest();</waypoint>
	<!-- #  4 --><waypoint x="10045" z="9784" y="-7" type="RUN">
		 player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- #  5 --><waypoint x="10104" z="9941" y="-27" type="RUN">
         player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- #  7 --><waypoint x="10306" z="10060" y="-55" type="RUN">
		 player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- #  9 --><waypoint x="10085" z="10078" y="-46">
        player:harvest()player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- # 11 --><waypoint x="10002" z="10112" y="-37" type="RUN">

         player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- # 13 --><waypoint x="9763" z="10153" y="-27" type="RUN">
	
         player:target_NPC("Chupura charognard");
	</waypoint>
        <!-- # 14 --><waypoint x="9679" z="9955" y="-10" type="RUN">
		  player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- # 15 --><waypoint x="10004" z="9656" y="-1">player:harvest();</waypoint>
	<!-- # 16 --><waypoint x="10035" z="9370" y="0">player:harvest();</waypoint>
	<!-- # 17 --><waypoint x="10110" z="9379" y="4">
		player:target_NPC("Sofie Paichu");
	</waypoint>
</waypoints>

il y a un forum francophone ?
et sa dérange que je soit la !!
et merci a lisa qui ma aide
mai il se promène beaucoup le preso peux ton faire mieux !!
Last edited by fox66 on Sun Jul 29, 2012 6:26 pm, edited 1 time in total.

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Faites-les taire (Chupura Daily in xaviera)

#5 Post by lisa » Sun Jul 29, 2012 5:55 pm

vous êtes les bienvenus

http://translate.google.com/#auto/fr/
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

fox66
Posts: 11
Joined: Sun Jul 29, 2012 3:55 am
Location: france

Re: Faites-les taire (Chupura Daily in xaviera)

#6 Post by fox66 » Mon Jul 30, 2012 2:48 am

fox66 wrote:bonjour
jai fait un waypoint sur la zone de Xaviera pour la Quêtes journalières de Sofie Paichu Tuer 5 Chupuras charognards.
pour et vous m aide a voir cet qui va pas
en faite le perso me s arête pas pour tue le mob voila se que jai fait..

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints  type="RUN">
	<!-- #  1 --><waypoint x="10113" z="9368" y="4">
		 do player:target_NPC("Sofie Paichu");
               sendMacro("OnClick_QuestListButton(1,1)");	
			sendMacro("CompleteQuest()");		
			sendMacro("CloseWindows()");
		end
			do player:target_NPC("Sofie Paichu");			
			sendMacro("OnClick_QuestListButton(1,1)");	
			sendMacro("AcceptQuest()");			
			sendMacro("CloseWindows()");			
	
		end
		local dqc1, dqm1 = RoMScript("Daily_count()");
		printf("Daily quests: %d / %d\n", dqc1, dqm1);
		if (dqc1 == dqm1)
		then
			yrest(5000);
			local dqc2, dqm2 = RoMScript("Daily_count()");
			if (dqc2 == dqm2)
			then
				player:logout();
			end
		end
        </waypoint>
	<!-- #  2 --><waypoint x="10045" z="9374" y="0">player:harvest();</waypoint>
	<!-- #  3 --><waypoint x="10034" z="9626" y="0">player:harvest();</waypoint>
	<!-- #  4 --><waypoint x="10045" z="9784" y="-7" type="RUN">
		 player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- #  5 --><waypoint x="10104" z="9941" y="-27" type="RUN">
         player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- #  7 --><waypoint x="10306" z="10060" y="-55" type="RUN">
		 player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- #  9 --><waypoint x="10085" z="10078" y="-46">
        player:harvest()player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- # 11 --><waypoint x="10002" z="10112" y="-37" type="RUN">

         player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- # 13 --><waypoint x="9763" z="10153" y="-27" type="RUN">
	
         player:target_NPC("Chupura charognard");
	</waypoint>
        <!-- # 14 --><waypoint x="9679" z="9955" y="-10" type="RUN">
		  player:target_NPC("Chupura charognard");
	</waypoint>
	<!-- # 15 --><waypoint x="10004" z="9656" y="-1">player:harvest();</waypoint>
	<!-- # 16 --><waypoint x="10035" z="9370" y="0">player:harvest();</waypoint>
	<!-- # 17 --><waypoint x="10110" z="9379" y="4">
		player:target_NPC("Sofie Paichu");
	</waypoint>
</waypoints>

bonjour j ai revue le waypoint de lisa voila la vr fr

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints  type="NORMAL">
<onload>
settings.profile.mobs = {"Chupura charognard"}
questname = RoMScript('TEXT("Sys424165_name")')
</onload>
   <!-- #  1 --><waypoint x="10113" z="9368" y="4">
      player:target_NPC(118060);         
      CompleteQuestByName()        
      local dqc1, dqm1 = RoMScript("Daily_count()");
      printf("Daily quests: %d / %d\n", dqc1, dqm1);
      if (dqc1 == dqm1) then
         yrest(5000);
         local dqc2, dqm2 = RoMScript("Daily_count()");
         if (dqc2 == dqm2) then
            player:logout();
         end
      end
      
      player:target_NPC("Chupura charognard");
      AcceptQuestByName()
    </waypoint>
   <!-- #  2 --><waypoint x="10045" z="9374" y="0"></waypoint>
   <!-- #  3 --><waypoint x="10034" z="9626" y="0" tag="startloop"></waypoint>
   <!-- #  4 --><waypoint x="10045" z="9784" y="-7" type="NORMAL">player:target_NPC("Chupura charognard");</waypoint>
   <!-- #  5 --><waypoint x="10104" z="9941" y="-27" type="NORMAL">player:target_NPC("Chupura charognard");</waypoint>
   <!-- #  6 --><waypoint x="10306" z="10060" y="-55" type="NORMAL">player:target_NPC("Chupura charognard");</waypoint>
   <!-- #  7 --><waypoint x="10085" z="10078" y="-46">player:target_NPC("Chupura charognard");</waypoint>
   <!-- # 8 --><waypoint x="10002" z="10112" y="-37" type="NORMAL">player:target_NPC("Chupura charognard");</waypoint>
   <!-- # 9 --><waypoint x="9763" z="10153" y="-27" type="NORMAL">player:target_NPC("Chupura charognard");</waypoint>
   <!-- # 10 --><waypoint x="9679" z="9955" y="-10" type="NORMAL">player:target_NPC("Chupura charognard");</waypoint>
   <!-- # 11 --><waypoint x="10004" z="9656" y="-1">
   local queststate = getQuestStatus(questname)
   if queststate and queststate ~= "complete" then
      __WPL:setWaypointIndex(__WPL:findWaypointTag("startloop"));
   end
   </waypoint>
   <!-- # 12 --><waypoint x="10035" z="9370" y="0"></waypoint>
   <!-- # 13 --><waypoint x="10110" z="9379" y="4"></waypoint>
</waypoints>

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Faites-les taire (Chupura Daily in xaviera)

#7 Post by lisa » Mon Jul 30, 2012 3:00 am

vous n'avez pas besoin de cette

Code: Select all

player:target_NPC("Chupura charognard");
cela rendra seulement tuer chupura

Code: Select all

settings.profile.mobs = {"Chupura"}
si elle n'a pas l'habitude de tuer le chupura alors vous avez un problème dans votre profil
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

fox66
Posts: 11
Joined: Sun Jul 29, 2012 3:55 am
Location: france

Re: Faites-les taire (Chupura Daily in xaviera)

#8 Post by fox66 » Mon Jul 30, 2012 4:29 am

lisa wrote:vous n'avez pas besoin de cette

Code: Select all

player:target_NPC("Chupura charognard");
cela rendra seulement tuer chupura

Code: Select all

settings.profile.mobs = {"Chupura"}
si elle n'a pas l'habitude de tuer le chupura alors vous avez un problème dans votre profil
lisa
si je fait pas sa le perso fait que passe devant le mob et le tue pas !!!

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Faites-les taire (Chupura Daily in xaviera)

#9 Post by lisa » Mon Jul 30, 2012 5:37 am

in profile

Code: Select all

		<!-- Attack monsters 3 levels above or 10 below your level -->
		<option name="TARGET_LEVELDIF_ABOVE" value="3" />
		<option name="TARGET_LEVELDIF_BELOW" value="10" />
-10 and +3 your level

change it to suit your needs
"le changer en fonction de vos besoins"
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

fox66
Posts: 11
Joined: Sun Jul 29, 2012 3:55 am
Location: france

Re: Faites-les taire (Chupura Daily in xaviera)

#10 Post by fox66 » Mon Jul 30, 2012 6:57 am

lisa wrote:in profile

Code: Select all

		<!-- Attack monsters 3 levels above or 10 below your level -->
		<option name="TARGET_LEVELDIF_ABOVE" value="3" />
		<option name="TARGET_LEVELDIF_BELOW" value="10" />
-10 and +3 your level

change it to suit your needs
"le changer en fonction de vos besoins"
lisa
je me voir pas ou va se code
faite un autre waypoint avec se code merci
---------

I see no will or code
made another waypoint is coded with thank you

si la tradution et bomme!!
Last edited by fox66 on Mon Jul 30, 2012 9:17 am, edited 2 times in total.

User avatar
gloover
Posts: 304
Joined: Wed Jul 07, 2010 4:31 am

Re: Faites-les taire (Chupura Daily in xaviera)

#11 Post by gloover » Mon Jul 30, 2012 8:11 am

fox, this is a english support forum, if you expect, that we help you - so please, write down your problem in english!

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Faites-les taire (Chupura Daily in xaviera)

#12 Post by lisa » Mon Jul 30, 2012 9:23 am

I think the issue was solved, moved it to normal runes of magic section.

This is an english forum so yes please atleast try to post in english, I added a link for google translator earlier, it's not perfect but it helps.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

fox66
Posts: 11
Joined: Sun Jul 29, 2012 3:55 am
Location: france

Re: Faites-les taire (Chupura Daily in xaviera)

#13 Post by fox66 » Mon Jul 30, 2012 9:36 am

lisa wrote:I think the issue was solved, moved it to normal runes of magic section.

This is an english forum so yes please atleast try to post in english, I added a link for google translator earlier, it's not perfect but it helps.
waypoint made ​​thank you

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints  type="NORMAL">
<onload>
settings.profile.mobs = {"Chupura"}
questname = RoMScript('TEXT("Sys424165_name")')
</onload>
   <!-- #  1 --><waypoint x="10113" z="9368" y="4">
      player:target_NPC(118060);         
      CompleteQuestByName()        
      local dqc1, dqm1 = RoMScript("Daily_count()");
      printf("Daily quests: %d / %d\n", dqc1, dqm1);
      if (dqc1 == dqm1) then
         yrest(5000);
         local dqc2, dqm2 = RoMScript("Daily_count()");
         if (dqc2 == dqm2) then
            player:logout();
         end
      end
      player:target_NPC(118060);
      AcceptQuestByName()
      <!-- Attack monsters 3 levels above or 10 below your level -->
      <option name="TARGET_LEVELDIF_ABOVE" value="3" />
      <option name="TARGET_LEVELDIF_BELOW" value="10" />
    </waypoint>
   <!-- #  2 --><waypoint x="10045" z="9374" y="0"></waypoint>
   <!-- #  3 --><waypoint x="10034" z="9626" y="0" tag="startloop"></waypoint>
   <!-- #  4 --><waypoint x="10045" z="9784" y="-7" type="NORMAL"></waypoint>
   <!-- #  5 --><waypoint x="10104" z="9941" y="-27" type="NORMAL"></waypoint>
   <!-- #  6 --><waypoint x="10306" z="10060" y="-55" type="NORMAL"></waypoint>
   <!-- #  7 --><waypoint x="10085" z="10078" y="-46"></waypoint>
   <!-- # 8 --><waypoint x="10002" z="10112" y="-37" type="NORMAL"></waypoint>
   <!-- # 9 --><waypoint x="9763" z="10153" y="-27" type="NORMAL"></waypoint>
   <!-- # 10 --><waypoint x="9679" z="9955" y="-10" type="NORMAL"></waypoint>
   <!-- # 11 --><waypoint x="10004" z="9656" y="-1">
   local queststate = getQuestStatus(questname)
   if queststate and queststate ~= "complete" then
      __WPL:setWaypointIndex(__WPL:findWaypointTag("startloop"));
   end
   </waypoint>
   <!-- # 12 --><waypoint x="10035" z="9370" y="0"></waypoint>
   <!-- # 13 --><waypoint x="10110" z="9379" y="4"></waypoint>
</waypoints>

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot], Bing [Bot] and 4 guests