• 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 - TLO help

Jensen

New member
Joined
Mar 19, 2007
RedCents
926¢
Messing with a fishing mac and want it to keep tradeskill items, below is the current line to keep food items, but how do I cahnge that to keep TS items ??

Rich (BB code):
/if (${op_int_GotLootArray}==0) {
      /if (${Cursor.Type.Equal["Food"]}) {
         /autoinventory
      }

Changing "Food" to "Tradeskills" did not work as intended...
 
Put a tradeskill item on your cursor and type /echo ${Cursor.Type}
Report back what it says and I can tell you how to edit the macro.
 
try ${Cursor.Tradeskills}
It will return true/false.

Rich (BB code):
/if (${op_int_GotLootArray}==0) {
      /if (${Cursor.Tradeskills}||${Cursor.Type.Equal["Food"]}) {
         /autoinventory
      }

Should keep both tradeskill and food items.
 
Then you could replace "Food" with "Misc" and it will keep all of them...

Teach a man to fish etc... Appropriate for this thread I guess.

But I would just use hosierbillys code above.
 
Question - TLO help

Users who are viewing this thread

Back
Top
Cart