• 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

the "parse" errors help plz

Lichd2

New member
Joined
Jun 2, 2007
RedCents
when running this macro : http://www.redguides.com/community/showthread.php?t=17626

I get all kinds of erros with Parsing or parse or parsable involved.

such as

unparsable in calculation: 'S'
failed to parse /if condition(shaman), non-numeric encountered
Docommand- couldnt parse /moveto 20
also, says could not find reqard at (null)
Current macro has ended.


Any help?
 
Ok got rid of the parse things with moveutils.

but i still get this error:

Failed to parse /if condition '(Shaman)', non-numeric encountered
 
Rich (BB code):
    "bard", 8,
    "beastlord", 15,
    "berserkers", 16,
    "cleric", 2,
    "druid", 6,
    "enchanter", 14,
    "magician", 13,
    "monk", 7,
    "necromancer", 11,
    "paladin", 3,
    "ranger", 4,
    "rogue", 9,
    "shadow knight", 5,
    "shaman", 10,
    "warrior", 1,
    "wizard", 12,
so basically you need to change all of the
Rich (BB code):
${Me.Class[Shaman]}
to
Rich (BB code):
${Me.Class.ID}==10
or
Rich (BB code):
${Me.Class[Bard]}
to
Rich (BB code):
${Me.Class.ID}==8
 
Ok, well i got rid of all of it except the shaman (my class)

turned it into

Rich (BB code):
/if ${Me.Class.ID}==10 /call SoW
 
the "parse" errors help plz

Users who are viewing this thread

Back
Top
Cart