Syrbal Pass Daily quest - Ritual Stones

Additional botting resources. Addons may be either for the game itself or for the RoM bot.
Forum rules
Only post additional bot resources here. Please do not ask unrelated questions.
Post Reply
Message
Author
User avatar
Rintintin
Posts: 55
Joined: Tue Jan 01, 2013 7:45 am
Location: Germany

Syrbal Pass Daily quest - Ritual Stones

#1 Post by Rintintin » Sat Jun 22, 2013 8:29 am

This is my WP File, for the Daily close to the housemaid. It'll take about 10mins to accomplish.
This WP is fully localized and should work in any language.
You can start this WP somewhere between Sturopur and the Questgiver. There's noo need to be at a specific place.

Questgiver is : Losak (44.4/72.7)

Currently it's undefined what to do when all dailys are done.


:!: UPDATED File :!:
+ You can now start at Sturopur in Varanas
+ The WP you take you back to Varanas when all Dailys done.

TODO:
ChangeClass when leveling the 2nd or 3rd class.
Attachments
Rituelle_Steine.xml
Version 0.2
-- Takes you back to Sturopur in Varanas when alls TQs done
(4.25 KiB) Downloaded 308 times
Last edited by Rintintin on Thu Jun 27, 2013 3:01 pm, edited 1 time in total.

Cindy
Posts: 237
Joined: Fri Sep 28, 2012 4:23 pm

Re: Syrbal Pass Daily quest - Ritual Stones

#2 Post by Cindy » Tue Jun 25, 2013 10:38 am

Code: Select all

	if not settings.profile.options.WAYPOINTS_REVERSE then
		if (not player.Mounted) then
					 useGoodie(207204);
					 player:mount()
					 yrest(1000)
					 player:update();
		end;
	else
		player:sleep();
	
	end
I don't think I have this WAYPOINTS_REVERSE in my profile... should I? (I can't figure out from the script whats the purpose). Thanks

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Syrbal Pass Daily quest - Ritual Stones

#3 Post by rock5 » Tue Jun 25, 2013 12:43 pm

I'm not familiar with the waypoint file but what that code means is if you have WAYPOINTS_REVERSE set to something like "true" in your profile then at that point in the waypoint file it will go to sleep instead of continuing. It's probably so the user can take manual control for some reason.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

User avatar
Rintintin
Posts: 55
Joined: Tue Jan 01, 2013 7:45 am
Location: Germany

Re: Syrbal Pass Daily quest - Ritual Stones

#4 Post by Rintintin » Thu Jun 27, 2013 1:38 pm

Updated the file. Please redownload.
removed the silly

settings.profile.options.WAYPOINTS_REVERSE

thing.

Cindy
Posts: 237
Joined: Fri Sep 28, 2012 4:23 pm

Re: Syrbal Pass Daily quest - Ritual Stones

#5 Post by Cindy » Tue Jul 09, 2013 10:52 am

Perez Turner wrote:
Rintintin wrote:Updated the file. Please redownload.
removed the silly
settings.profile.options.WAYPOINTS_REVERSE
thing.
Thanks for sharing this tip. Its looks cool with instant source. I appreciates you for this support.

Hanging Scales
Very lame spam.. Rock plz remove, along with my quote.

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Syrbal Pass Daily quest - Ritual Stones

#6 Post by rock5 » Tue Jul 09, 2013 10:54 am

Administrator administrates the site. I've already reported him. In future you can easily reports spam posts by clicking the little exclamation in the bottom right corner of the post.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

Cindy
Posts: 237
Joined: Fri Sep 28, 2012 4:23 pm

Re: Syrbal Pass Daily quest - Ritual Stones

#7 Post by Cindy » Tue Jul 09, 2013 10:56 am

Ah, got it, thanks.

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

Re: Syrbal Pass Daily quest - Ritual Stones

#8 Post by gloover » Wed Jul 10, 2013 2:02 am

I got this error:

Code: Select all

"Argument needs to be a table!"
so what exactly do this function?

Code: Select all

function _sturoport (zones)
	if type(zones) ~= "table" then
		error ("Argument needs to be a table!",0);
	end
	table.print (zones);
	for __,v in pairs(zones) do
			player:target_NPC(getTEXT("Sys111256_name"));
			yrest(50);
			ChoiceOptionByName(getTEXT(v));
			yrest(50);
			RoMScript("StaticPopup_OnClick(StaticPopup1, 1);");
			waitForLoadingScreen(7);
	end
end	
Is there any userfunction needed to create a table or whats going wrong. Have tryed to start the script near ther Varanas Sturobold.

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Syrbal Pass Daily quest - Ritual Stones

#9 Post by rock5 » Wed Jul 10, 2013 3:56 am

It looks like the function is supposed to do multiple npc teleports until it reaches it's destination. The reason for the error are these line

Code: Select all

		zones = {"ZONE_Z22_OLD_ROJAN_KINGDOM","Syrbalpass"}
		_sturoport(zonenames);
"zones =" is supposed to be "zonenames =".
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

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

Re: Syrbal Pass Daily quest - Ritual Stones

#10 Post by gloover » Wed Jul 10, 2013 4:50 am

Ah, You've right rock - now after the second check I see this too - some syntax contains such failures or there're not really optimized.

thx again rock - will rewrite this code a little bit.

spyfromsiochain
Posts: 84
Joined: Sun Aug 18, 2013 9:57 am

Re: Syrbal Pass Daily quest - Ritual Stones

#11 Post by spyfromsiochain » Wed Oct 23, 2013 6:38 am

I am getting a Usegoodie error, am I missing any userfuntion?

plz check screenshot.

Best regards
Attachments
usegoodie error.JPG
I look at those fans with no blades and it amazes me everytime, how can they push air without using blades lol - lisa (pro sentence :D)

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Syrbal Pass Daily quest - Ritual Stones

#12 Post by rock5 » Wed Oct 23, 2013 7:29 am

Yes usegoodie is a userfunction. You can use one of the versions here.
http://www.solarstrike.net/phpBB3/viewt ... 267#p20267
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests