edit:rizwank added brackets
Code: Select all
#Event Trivial "You can no longer advance your skill from making this item."
#Event Success "You have fashioned the items together to create something new!"
#event Failed "You lacked the skills to fashion the items together."
Sub Main
:mainloop
/doevents
/if "$v1"=="0" /echo Failed
/if "$v1"=="1" /echo Success
/if "$v2"=="1" /echo Trivial
/goto :mainloop
/return
Sub Event_Trivial
/if "$p0"=="You can no longer advance your skill from making this item." {
/varset v2 1
}
/return
Sub Event_Success
/if "$p0"=="Your have fashioned the items together to create something new" {
/varset v1 1
}
/return
Sub Event_ Failed
/if "$p0"=="Your lacked the skills to fashion the items together." {
/varset v1 0
}
/return
Another question is if you have filter skills all and it's spamming screen (and I do believe that I need to have that on to be able to use this event thing) Does it slow down the macro preformance?

