• 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

Bug - Gained Event

Joined
Feb 24, 2005
RedCents
2,154¢
I lifted part of the Gained event from KissAssist (why re-invent the wheel ya know?)
I noticed that your Line.Find["ABILITY POINT!"] won't work when you gain multiple AAs in a single kill...
You have gained 2 alternate ability point(s)! doesn't match the string you are looking for.

Rich (BB code):
Sub Event_Gained(string Line,string text)
	/if (${Line.Find["ABILITY POINT!"]}) {
		/bct Overseer #GAIN#|AA|${Me.AAPointsTotal}
	} else /if (${Line.Find[LEVEL]}) {
		/bct Overseer #GAIN#|LEVEL|${Me.Level}
	} 
/return

should be

Rich (BB code):
Sub Event_Gained(string Line,string text)
	/if (${Line.Find["ABILITY POINT"]}) {
		/bct Overseer #GAIN#|AA|${Me.AAPointsTotal}
	} else /if (${Line.Find[LEVEL]}) {
		/bct Overseer #GAIN#|LEVEL|${Me.Level}
	} 
/return
 
I looked at the two Code boxes and reviewed the data in both a few times trying to find a difference. I don't see a difference between them.

Did you possibly copy/paste the same thing twice accidentally?
 
Bug - Gained Event

Users who are viewing this thread

Back
Top
Cart