event defines:
Code: Select all
#event COMBINE_LackedSkills "You lacked the skills to fashion the items together."
#event COMBINE_Success "You have fashioned the items together to create something new!"Code: Select all
:WaitforCombine2
/doevents Combine_LackedSkills
/doevents Combine_Success
/if $return=="fail1" /goto :Make
/if $return=="fail2" /goto :MakeBlock
/if $return=="success1" /goto :ClickAuto1
/if $return=="success2" /goto :ClickAuto2
/goto :Combine2Code: Select all
Sub Event_Combine_LackedSkills
/varadd COMBINE_LackedSkills 1
/if @y==1 /return "fail2"
/return "fail1"
Sub Event_Combine_Success
/varadd COMBINE_Success 1
/if @y==1 /return "success2"
/return "success1"thanks in advance

