Page 1 of 1
elf daily quest from blinsik help plz
Posted: Sun Oct 11, 2009 12:00 am
by ginokid
Hi
I have 20 lvl 10 elfs that i want to do NPC "Blinsik" daily quest called "helping them grow" very easy daily you have to click a globe in the water by the water fall and turn it in.
But.......... I tried the create path options to try and automate this daily and I cant get it to work, I tried everything. Can someone please make me a waypoint profile for this simple daily quest.
Thanks
Gino

Re: elf daily quest from blinsik help plz
Posted: Sun Oct 11, 2009 1:56 am
by d003232
ginokid wrote:Hi
I have 20 lvl 10 elfs that i want to do NPC "Blinsik" daily quest called "helping them grow" very easy daily you have to click a globe in the water by the water fall and turn it in.
But.......... I tried the create path options to try and automate this daily and I cant get it to work, I tried everything. Can someone please make me a waypoint profile for this simple daily quest.
Thanks
Gino

Post your best 'everything' waypoint file. Perhaps we can help.

Re: elf daily quest from blinsik help plz
Posted: Sun Oct 11, 2009 7:56 am
by ginokid
TY!!!!!!!
Its a daily quest in the elf starting area, NPC "Blinsik" daily quest called "helping them grow" very easy daily you have to click a globe in the water by the water fall and turn it in.
It wont click the NPC & wont choose the daily & wont turn it in, also wont click the quest item, the wuest item is a clickie yanno with a gear to click to get it.
I tried for hours and cant get it to work at all. LOL!
Here it is ><
Code: Select all
<waypoints>
<!-- # 1 --><waypoint x="31844" z="4588">
player:target_NPC("Blinsik");
player:mouseclickL(420, 285, 819, 569);
player:merchant("Blinsik");
</waypoint>
<!-- # 4 --><waypoint x="31844" z="4588"> </waypoint>
<!-- # 5 --><waypoint x="31901" z="4646"> </waypoint>
<!-- # 6 --><waypoint x="31857" z="4844"> </waypoint>
<!-- # 7 --><waypoint x="31717" z="5030"> </waypoint>
<!-- # 8 --><waypoint x="31626" z="5176"> </waypoint>
<!-- # 9 --><waypoint x="31419" z="5720"> player:mouseclickL(417, 270, 819, 569);
</waypoint>
<!-- # 11 --><waypoint x="31436" z="5690"> </waypoint>
<!-- # 12 --><waypoint x="31922" z="4694"> </waypoint>
<!-- # 13 --><waypoint x="31880" z="4584"> </waypoint>
<!-- # 14 --><waypoint x="31844" z="4592"> player:target_NPC("Blinsik");
</waypoint>
</waypoints>
Re: elf daily quest from blinsik help plz
Posted: Sun Oct 11, 2009 2:29 pm
by d003232
ginokid wrote:TY!!!!!!!
Its a daily quest in the elf starting area, NPC "Blinsik" daily quest called "helping them grow" very easy daily you have to click a globe in the water by the water fall and turn it in.
Perhaps you could use the 'ChoiceOption(1);' function from the RoM API at the NPC. And am adaptet harvesting function for scanning the globe object. I will perhaps try do to something like that. Not in the next days. Perhaps end of the week.
Re: elf daily quest from blinsik help plz
Posted: Sun Oct 11, 2009 5:09 pm
by d003232
I changed the harvesting function:
We use player:harvest() also to scan quest objects, use
to show id's while standing in front of the object and
to scan/open for a given id,
is still the normal harvesting
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 3:28 am
by deibi
I wonder if there is any possibility that once caught the quest item not rescan
<!-- # 1 --><waypoint x="31421" z="5721">
player:rest(5);
player:harvest(112976)
</waypoint>
thank you very much and excuse my bad English.
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 3:33 am
by d003232
deibi wrote:I wonder if there is any possibility that once caught the quest item not rescan
<!-- # 1 --><waypoint x="31421" z="5721">
player:rest(5);
player:harvest(112976)
</waypoint>
thank you very much and excuse my bad English.
Sorry, I don't understand what you mean. Could you explain your situtation a little bit more?
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 4:43 am
by deibi
forgive me, I use a translator, because I have no knowledge of English.
My problem is that once you got the item, still trying to get more items and stays hooked up losing the point.
I wonder if there is any option when the item tubiera cut the harvest.
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 4:58 am
by d003232
deibi wrote:forgive me, I use a translator, because I have no knowledge of English.
My problem is that once you got the item, still trying to get more items and stays hooked up losing the point.
I wonder if there is any option when the item tubiera cut the harvest.
I understand. The object did not disappear? So we need a counter or timer how long to 'harvest' or how many items to harvest?
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 5:14 am
by deibi
accurate does not disappear, and still leaves collected.
You could say that I have to add to weakpoint not to continue collecting?
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 5:51 am
by d003232
deibi wrote:accurate does not disappear, and still leaves collected.
You could say that I have to add to weakpoint not to continue collecting?
I suppose the easiest way would be to add a time option to the harvest function. So you can say how long you maximum want try to harvest.
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 6:02 am
by d003232
There is a new profile option in SVN 358
Code: Select all
<option name="HARVEST_TIME" value="45" />
. Default is 45. You can set that also directly in your wp file with:
Code: Select all
changeProfileOption("HARVEST_TIME", 10);
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 6:21 am
by deibi
Thank you very much with that I think I can solve the problem
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 7:25 am
by deibi

The problem is not resolved, continues to collect, put it in the profile and waitpoint and continues to collect, but any way.
<!-- # 1 --><waypoint x="31421" z="5721">
player:rest(5);
changeProfileOption("HARVEST_TIME", 10);
player:harvest(112976)
</waypoint>
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 7:44 am
by d003232
deibi wrote:
The problem is not resolved, continues to collect, put it in the profile and waitpoint and continues to collect, but any way.
<!-- # 1 --><waypoint x="31421" z="5721">
player:rest(5);
changeProfileOption("HARVEST_TIME", 10);
player:harvest(112976)
</waypoint>
Did you the SVN update?
Re: elf daily quest from blinsik help plz
Posted: Sat Oct 17, 2009 9:13 am
by deibi
Sorry,

had not updated,
thank you very much again