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.
should be
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

