• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - Post removed?

the forum was undergoing an update and ran in zombie mode which meant that for a time period of about 9-10 hours any post would not make it into the update.

but if i remember right it was something about potions.mac?
 
try this potion.mac this is an updated version by me, if you have any question i am allways on discord so i can answer real time.
 

Attachments

Ahh, thanks. Lack of looking at the details on my part... very bad for someone trying to learn how to code. lol
 
try this potion.mac this is an updated version by me, if you have any question i am always on discord so i can answer real time.

Thank you. That looks just like the one I was trying to convert to different TS macros. It works great for potions and most other TS combines I have converted but it won't search for a recipe name with parentheses. Do you know a way to make it do an exact search?

/varset wood1[1,1] Ellis|1 Wood Point Arrow (S

It leaves the "(" out of the search and ends up finding nothing.

Thanks for the quick replies

Looks like it IS trying to search with the "(" but.... it's not calling for a shift key in this... I think... lol

Code:
| --------------------------------------------------------------------------------------------
| SUB: Type
| --------------------------------------------------------------------------------------------
  Sub Type(InStr)
  TEXT trying to enter : ${recipe}
  /declare char string local
  /declare loopctr int local
  /for loopctr 1 to ${InStr.Length}
    /varset char ${InStr.Mid[${loopctr},1]}
    /if (!${char.Length}) {
      /nomodkey /keypress space chat
    } else {
      /nomodkey /keypress ${char} chat
    }
  /next loopctr
  /return
 
Last edited:
call it with quotes i think

/call TypeIn "Wood Point Arrow (S"

you can also just search for wood point arrow, then using the Window TLO to select the correct recipe

Code:
/varset recipe CLASS 1 Wood Point Arrow (small nock)
/notify TradeskillWnd RecipeList listselect ${Window[TradeskillWnd].Child[RecipeList].List[${recipe}]}
something like that.
 
Thanks kaen. I've tried this and things are getting closer.

I can see that it says "Trying to enter - 1 wood point arrow (s" but it never types the "(" in the search field and throws this error:

Invalid mappable command or key combo "("

Thanks for your help!
 
Question - Post removed?

Users who are viewing this thread

Back
Top
Cart