Page 1 of 1
Syrbal Pass Daily quest - Ritual Stones
Posted: Sat Jun 22, 2013 8:29 am
by Rintintin
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.
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Tue Jun 25, 2013 10:38 am
by Cindy
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
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Tue Jun 25, 2013 12:43 pm
by rock5
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.
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Thu Jun 27, 2013 1:38 pm
by Rintintin
Updated the file. Please redownload.
removed the silly
settings.profile.options.WAYPOINTS_REVERSE
thing.
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Tue Jul 09, 2013 10:52 am
by Cindy
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.
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Tue Jul 09, 2013 10:54 am
by rock5
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.
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Tue Jul 09, 2013 10:56 am
by Cindy
Ah, got it, thanks.
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Wed Jul 10, 2013 2:02 am
by gloover
I got this error:
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.
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Wed Jul 10, 2013 3:56 am
by rock5
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 =".
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Wed Jul 10, 2013 4:50 am
by gloover
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.
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Wed Oct 23, 2013 6:38 am
by spyfromsiochain
I am getting a Usegoodie error, am I missing any userfuntion?
plz check screenshot.
Best regards
Re: Syrbal Pass Daily quest - Ritual Stones
Posted: Wed Oct 23, 2013 7:29 am
by rock5
Yes usegoodie is a userfunction. You can use one of the versions here.
http://www.solarstrike.net/phpBB3/viewt ... 267#p20267