Fishing, Begging, Foraging, and tradeskills

Moderator: MacroQuest Developers

eolewis
orc pawn
orc pawn
Posts: 26
Joined: Tue Oct 04, 2005 4:11 pm

Fishing, Begging, Foraging, and tradeskills

Post by eolewis » Thu Dec 01, 2005 5:58 pm

Basically, Im toying around with the feedme script trying to figure out how to use it in game... What I'd really like to see though is a script for fishing, begging, and foraging.

I'd also like to see a tradeskill script(s) to work on all the tradeskills in EQ.

I know its alot of work, and if I could somehow understand what I was looking at more in the macros/scripts, I'd attempt to try and make one on my own (starting with begging since it seems like the easiest way to go) but even looking at the Wiki, I get lost.

Thanks for any info in advance.

onetimehero
a ghoul
a ghoul
Posts: 105
Joined: Fri Sep 05, 2003 2:42 pm

Post by onetimehero » Thu Dec 01, 2005 6:22 pm

untested

beggar.iss

Code: Select all

function main() 
{ 
  do 
  { 
    Wait 10
    if "${Me.Combat} && ${Me.AbilityReady[Beg]}"
    {
       EQExecute /attack off
       Wait 5
       doability "Beg"
       Wait 5
       EQExecute /attack on
    }
  } 
  while "1" 
} 
Hmm. That's odd.

eolewis
orc pawn
orc pawn
Posts: 26
Joined: Tue Oct 04, 2005 4:11 pm

Post by eolewis » Fri Dec 02, 2005 12:41 pm

didn't want to work for me... and since I mostly sit back and just plunk arrows, I'd actually want one that didn't nessicarily attacked the mobs... hehehe...

btw, tried to modify it a little (changed beg to begging and removed the attacks and pause) but stil get the RunScript "beggar" failed error I got from the unmodified version you posted.

onetimehero
a ghoul
a ghoul
Posts: 105
Joined: Fri Sep 05, 2003 2:42 pm

Post by onetimehero » Fri Dec 02, 2005 2:42 pm

Code: Select all

function main() 
{ 
  do 
  { 
    Wait 10 
    if "${Me.Combat} && ${Me.AbilityReady[Begging]}" 
    { 
       EQExecute /attack off 
       Wait 5 
       doability "Begging" 
       Wait 5 
       EQExecute /attack on 
    } 
  } 
  while "1" 
} 
Works like a champ for me. Did you put the beggar.iss in the "Scripts" folder of innerspace?
Hmm. That's odd.

eolewis
orc pawn
orc pawn
Posts: 26
Joined: Tue Oct 04, 2005 4:11 pm

Post by eolewis » Fri Dec 02, 2005 4:46 pm

yea, its in the scripts folder and ISXEQ is even loaded... still get RunScript 'beggar' failed

onetimehero
a ghoul
a ghoul
Posts: 105
Joined: Fri Sep 05, 2003 2:42 pm

Post by onetimehero » Fri Dec 02, 2005 5:13 pm

and it's called beggar.iss, right?
Hmm. That's odd.

eolewis
orc pawn
orc pawn
Posts: 26
Joined: Tue Oct 04, 2005 4:11 pm

Post by eolewis » Fri Dec 02, 2005 5:31 pm

correct. even tried the second code you posted and it stiull fails

Lax
We're not worthy!
We're not worthy!
Posts: 3524
Joined: Thu Oct 17, 2002 1:01 pm
Location: ISBoxer
Contact:

Post by Lax » Fri Dec 02, 2005 5:39 pm

Does it say something above that? It should give an error indication, like "could not find file for preprocessing" or something about invalid text, etc.
Did you make sure the file is correctly saved as beggar.iss and not .. say... beggar.iss.txt? Did you save it as UTF-8 (which is fine in the next Inner Space build, but not the current stable build) or unicode instead of ANSI/DOS?
Lax Lacks
Master of MQ2 Disaster
Purveyor of premium, EULA-safe MMORPG Multiboxing Software
* Multiboxing with ISBoxer: Quick Start Video
* EQPlayNice, WinEQ 2.0

eolewis
orc pawn
orc pawn
Posts: 26
Joined: Tue Oct 04, 2005 4:11 pm

Post by eolewis » Fri Dec 02, 2005 8:07 pm

I get no error message with it... and its also saved as beggar.iss and i ansi format.... is it possible that maybe isxeq got updated on me without me knowing so I'd have to have someone compile it for me again and use a new version?