Author Topic: Monger Quest, Small Create property reading  (Read 8901 times)

0 Members and 1 Guest are viewing this topic.

Offline Endless Night

  • Global Moderator
  • *
  • *
  • Posts: 5467
  • Activity:
    0%
  • Reputation Power: 62
  • Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!
  • Respect: +393
  • Referrals: 1
    • View Profile
Re: Monger Quest, Small Create property reading
« Reply #15 on: October 18, 2011, 05:43:19 PM »
0
it scan all the property,  I run it with F7 to ensure that it look at all the right line and it find,  the ID still all correct,  not sure what change in the last 4hrs that I run it. 

when that sort of thing happens... i always quit the client and euo and reboot and start again. and if that doesnt fix it then its your code and you need to debug.
Outlaw Josey Wales - "Manwink, A Long Gone Scripty, and Endless are always teasing us with their private sections lol. What there realy saying is scripters rule and users drool."
Briza - "Your a living breathing vortex of usefulness."

Offline camotbik

  • Sr. Member
  • *
  • Posts: 349
  • Activity:
    0%
  • Reputation Power: 3
  • camotbik has no influence.
  • Gender: Male
  • Hello! I'm a UO addict.
  • Respect: +38
  • Referrals: 0
    • View Profile
Re: Monger Quest, Small Create property reading
« Reply #16 on: October 18, 2011, 11:50:20 PM »
0
Sorry but why are you using Fish ID, not type? If you drag one fish/mark it/finish the quest, you have to rewrite the particular fishes id.. Why not just use types and property to determine the right fish?
What you witness -- is whatver..
uogamers hybrid.

Offline The GhostTopic starter

  • Elite
  • *
  • *
  • Posts: 1917
  • Activity:
    0%
  • Reputation Power: 25
  • The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.
  • Respect: +245
  • Referrals: 0
    • View Profile
Re: Monger Quest, Small Create property reading
« Reply #17 on: October 19, 2011, 10:23:33 AM »
0
I have try to use the type ( RMZ,NMZ, etc) but to many fish have the same one, so I ID the stack, this way it  grab the right one every time.     I need just to ensure that my stack never get empty so the ID wont change.  If you know of an easy way to grab the right fish, I'm all ears.  I'm still learning all this.   

Offline camotbik

  • Sr. Member
  • *
  • Posts: 349
  • Activity:
    0%
  • Reputation Power: 3
  • camotbik has no influence.
  • Gender: Male
  • Hello! I'm a UO addict.
  • Respect: +38
  • Referrals: 0
    • View Profile
Re: Monger Quest, Small Create property reading
« Reply #18 on: October 19, 2011, 02:09:01 PM »
0
Just use something like this
Code: [Select]
Sub TypeNameContainer
  finditem %1 C_ , %3
  for #findindex 1 #findcnt
  {
    event property #findid
    if %2 in #property
    {
      exevent drag #findid
      exevent dropc #backpackid
      wait 20
    }
  }
return

Gosub TypeNameContainer RMZ Stinky , #spc , brass %container
What you witness -- is whatver..
uogamers hybrid.

Offline The GhostTopic starter

  • Elite
  • *
  • *
  • Posts: 1917
  • Activity:
    0%
  • Reputation Power: 25
  • The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.
  • Respect: +245
  • Referrals: 0
    • View Profile
Re: Monger Quest, Small Create property reading
« Reply #19 on: October 19, 2011, 04:06:30 PM »
0
WOW  now you just lost me,  What did you associated those % 1,%2,%3  to.  
; %1 = This is the fish type you want to find  Example: ZYZ_MZ_DQZ_WYZ
; %2 = The name of the fish you are looking for.  You have to use proper formatting such as:     Black , #spc , Seabass
; %3 = This is what you want to search which for you I believe is %container1

In that example, I notice you didn't enter any amount to drags, is that mean Property will pick the right amount on his own.  
« Last Edit: October 19, 2011, 07:58:28 PM by The Ghost »

Offline Crome969

  • Elite
  • *
  • *
  • Posts: 2098
  • Activity:
    0%
  • Reputation Power: 25
  • Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.
  • Gender: Male
  • UO Enthusiast
  • Respect: +211
  • Referrals: 10
    • View Profile
    • ScriptSDK
Re: Monger Quest, Small Create property reading
« Reply #20 on: October 19, 2011, 11:50:20 PM »
0
WOW  now you just lost me,  What did you associated those % 1,%2,%3  to.  
; %1 = This is the fish type you want to find  Example: ZYZ_MZ_DQZ_WYZ
; %2 = The name of the fish you are looking for.  You have to use proper formatting such as:     Black , #spc , Seabass
; %3 = This is what you want to search which for you I believe is %container1

In that example, I notice you didn't enter any amount to drags, is that mean Property will pick the right amount on his own.  
They are Parameters for the Subfunction.
Code: [Select]
Gosub TypeNameContainer %Type %Wanted Property %Container would be to use the Sub.
ofc all the % in the Line can be changed by you. It would pick the full amount he get via #findstack

Offline camotbik

  • Sr. Member
  • *
  • Posts: 349
  • Activity:
    0%
  • Reputation Power: 3
  • camotbik has no influence.
  • Gender: Male
  • Hello! I'm a UO addict.
  • Respect: +38
  • Referrals: 0
    • View Profile
Re: Monger Quest, Small Create property reading
« Reply #21 on: October 20, 2011, 01:33:48 AM »
0
WOW  now you just lost me,  What did you associated those % 1,%2,%3  to.  
; %1 = This is the fish type you want to find  Example: ZYZ_MZ_DQZ_WYZ
; %2 = The name of the fish you are looking for.  You have to use proper formatting such as:     Black , #spc , Seabass
; %3 = This is what you want to search which for you I believe is %container1

In that example, I notice you didn't enter any amount to drags, is that mean Property will pick the right amount on his own.  


1) type
2) name
3) the container in which should we search for the stinky brass

Yeah it was nearly 4 o'clock in the morning, so I've missed the ammount. Anyway, it was just an example, if you want you can add %4 parameter as ammount( exevent drag #findid %4 ), and you should be set.

« Last Edit: October 20, 2011, 02:51:32 AM by camotbik »
What you witness -- is whatver..
uogamers hybrid.

Tags: