Author Topic: ScriptUO Heartwood Quester 1.29 with Advanced CLAw support  (Read 433865 times)

0 Members and 7 Guests are viewing this topic.

Offline Hollywood_Shono

  • Full Member
  • ***
  • Posts: 113
  • Activity:
    0%
  • Reputation Power: 0
  • Hollywood_Shono has no influence.
  • Respect: +19
  • Referrals: 0
    • View Profile
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #135 on: March 24, 2009, 02:45:40 PM »
0

So are you saying just go  Set %vendortype trinket Ciala$     or Set %vendortype trinket , #spc , Ciala , #spc the , #spc Arborist

What I'm saying is take a look at the function that is utilizing the value contained within %vendortype and try to understand what the function is doing.
'


%vendortype is determining the type of vendor that you are trying to look for right?

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13302
  • Activity:
    0.2%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #136 on: March 24, 2009, 02:47:23 PM »
0

If i just run set %vendortype trinket , #spc , arborist$

it fails to find any vendor

Think for a second.....

Is there any object around you that's named "trinket arborist"?  I don't think so.  I don't think there's anything with that in the title anywhere....

Remember that
trinket , #spc , arborist
is equal to
trinket arborist
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline Hollywood_Shono

  • Full Member
  • ***
  • Posts: 113
  • Activity:
    0%
  • Reputation Power: 0
  • Hollywood_Shono has no influence.
  • Respect: +19
  • Referrals: 0
    • View Profile
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #137 on: March 24, 2009, 02:51:22 PM »
0

If i just run set %vendortype trinket , #spc , arborist$

it fails to find any vendor

Think for a second.....

Is there any object around you that's named "trinket arborist"?  I don't think so.  I don't think there's anything with that in the title anywhere....

Remember that
trinket , #spc , arborist
is equal to
trinket arborist


So your saying put Ciala , #spc , arborist and it will only look for Ciala but because it was set to Trinket , #spc , weaver$arborist$ it was finding the nearest one npc that was an arborist or weaver?



Goddd dammmit this is so simple and i cant figure it out...


Wouldn't it be....

set %vendortype Ciala , #spc , the , #spc , arborist

Meaning The Vendor Type should be set to Ciala The Arborist ?
« Last Edit: March 24, 2009, 02:58:24 PM by Hollywood_Shono »

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13302
  • Activity:
    0.2%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #138 on: March 24, 2009, 03:00:03 PM »
0
Again it comes down to what you want to do with the script.  And that you really need to understand what the subroutine findvendor is doing.  Here's another hint....

The script is setup to look for *2* different kinds of venders(arguments separated by "$" in the variable %vendortype), Trinket weavers AND arborists.  What happens if you only want to look for one type?

Again, this is all in the code, there's no magic in what findvendor is doing. 

But really this sub can be used to locate anything with a specific text. You just have to specify the text correctly.  And for that you have to understand how strings are "strung" together in EasyUO.

I'm sorry this is painful for you, but it's pretty important for you to know how these work.  When that happens you can learn how to do these yourself, and perhaps help me answer all these questions in the future.  ;)
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13302
  • Activity:
    0.2%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #139 on: March 24, 2009, 03:03:34 PM »
0

set %vendortype Ciala , #spc , the , #spc , arborist

Meaning The Vendor Type should be set to Ciala The Arborist ?

If this value is found somewhere in the text of the item you are looking for then you are very close.  However, you seem to be missing an important character *cough-$* at the end of the text.  Again, if you look at findvendor you'll see it relies on this character to be able to see how many different things you are trying to search for.
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline Hollywood_Shono

  • Full Member
  • ***
  • Posts: 113
  • Activity:
    0%
  • Reputation Power: 0
  • Hollywood_Shono has no influence.
  • Respect: +19
  • Referrals: 0
    • View Profile
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #140 on: March 24, 2009, 03:20:32 PM »
0
Again it comes down to what you want to do with the script.  And that you really need to understand what the subroutine findvendor is doing.  Here's another hint....

The script is setup to look for *2* different kinds of venders(arguments separated by "$" in the variable %vendortype), Trinket weavers AND arborists.  What happens if you only want to look for one type?

Again, this is all in the code, there's no magic in what findvendor is doing. 

But really this sub can be used to locate anything with a specific text. You just have to specify the text correctly.  And for that you have to understand how strings are "strung" together in EasyUO.

I'm sorry this is painful for you, but it's pretty important for you to know how these work.  When that happens you can learn how to do these yourself, and perhaps help me answer all these questions in the future.  ;)

TM this is driving me f'en crazy i've added things removed thinkgs i got rid of the weavers its stiill finding the other arbormist if i remove teh trinket and it doesnt find any vendor if i add any names it doesnt find any vendors I add the full name it doenst do anything what the hell i do it doesnt work i cant stand it i know its something fricken simple

Offline Hollywood_Shono

  • Full Member
  • ***
  • Posts: 113
  • Activity:
    0%
  • Reputation Power: 0
  • Hollywood_Shono has no influence.
  • Respect: +19
  • Referrals: 0
    • View Profile
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #141 on: March 24, 2009, 03:25:01 PM »
0
set %vendortype Ciala , #spc , the , #spc , arborist$

I did that and still says vendor cant be located..

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13302
  • Activity:
    0.2%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #142 on: March 24, 2009, 03:30:03 PM »
0
Have you tried to transfer the quests to the other one?  That just might be easier..
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline Hollywood_Shono

  • Full Member
  • ***
  • Posts: 113
  • Activity:
    0%
  • Reputation Power: 0
  • Hollywood_Shono has no influence.
  • Respect: +19
  • Referrals: 0
    • View Profile
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #143 on: March 24, 2009, 03:37:50 PM »
0
Have you tried to transfer the quests to the other one?  That just might be easier..

Well way too torcher me you big meanie but that means i didnt learn anything! I still want to know how i go about doing it...

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13302
  • Activity:
    0.2%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #144 on: March 24, 2009, 03:44:55 PM »
0
Lol, well you mostly had it by making sure you were looking for just the specific one, either arbotist$ or trinket, #SPC , weaver$ and making sure the text you had in the variable appears EXACTLY like it does in the item/vendor description.

*shrugs*

So something else it up, and that can be due to mis-spelling, vendor out of range, or any one of a whole host of things.  Since I can't see your setup, you just have to shift to what you know that works and use that instead.
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline koski1977

  • Newbie
  • *
  • Posts: 8
  • Activity:
    0%
  • Reputation Power: 0
  • koski1977 has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #145 on: March 27, 2009, 06:15:23 AM »
0
This is quite possibly the awesomest thing ever, thanks TM!!! :D

Offline Petkiller

  • Full Member
  • ***
  • Posts: 112
  • Activity:
    0%
  • Reputation Power: 0
  • Petkiller has no influence.
  • Respect: +7
  • Referrals: 2
    • View Profile
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #146 on: March 30, 2009, 06:06:09 AM »
0
I tried to set up the heartwood quester for lethal darts because a friend of mine has 20k of bolts to waste.  I tried and tried but it would just cycle through the quest without stopping on lethal darts.  I then gave him the old craftamatic script(just had to change item id from darts to bolts) but his backpack filled up with shatchels in bout an 2 hours.  I "borrowed" part of heartwood quester that looked for runics kits in the shatchels and then dumped them in the trash.  He has used bout 4k of bolts so far and has recieved 1 oak 2 ash and 1 yew kit.  The good part is 4k of bolts will last him almost 13 hours and he can stay hidden and not have a bug visable.  I wasted bout 1k of bolts testing the script and only ended up with an oak kit.  Here is what I included into the craftmatic script:

 wait 50
  finditem ZJF C_ , #BACKPACKID
  if #findkind <> -1
  {
      wait 20
      set %bag #findid
      set #lobjectid %bag
      event macro 17
      wait 40
      finditem ZFG C_ , %bag
      set %kit #findid
      exevent drag %kit 1
      wait 20
      exevent dropc #backpackid
      wait 20
      finditem UFG C_ , %bag
      set %kit #findid
      exevent drag %kit 1
      wait 20
      exevent dropc #backpackid
      wait 20
  }
  finditem JKF G_3
  set %trash #findid
  set #lobjectid %trash
  event macro 17
  wait 20
  finditem ZJF C_ , #backpackid
     set #lobjectid %bag
     exevent drag %bag
     wait 20
     exevent dropc %trash
wait 50

Offline dennislcf

  • Newbie
  • *
  • Posts: 3
  • Activity:
    0%
  • Reputation Power: 0
  • dennislcf has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #147 on: April 05, 2009, 07:11:12 PM »
0
TM. it looks good n i'll try it....thank you for your script

Offline koski1977

  • Newbie
  • *
  • Posts: 8
  • Activity:
    0%
  • Reputation Power: 0
  • koski1977 has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #148 on: April 08, 2009, 11:31:01 AM »
0
I installed this script and used it for a bit, then it got hung up on a bow quest (for crossbows) and for some reason after this initial time ( I didn't change anything within the script, as I know 0 about scripting) it wont work?

Any Ideas why?

Brilliant script though, if I can get it to work for me it will be awesome!! :)

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13302
  • Activity:
    0.2%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: ScriptUO Heartwood Quester 1.22 with Advanced CLAw support
« Reply #149 on: April 08, 2009, 11:31:53 AM »
0
What's "hung up" mean?
Please read the ScriptUO site RULES
Come play RIFT with me!