[2.3] pets not giving yet pet

KingOnMir

Dedicated Member
Dedicated Member
Sep 24, 2011
77
0
32
Hello all i been having a problem with this Qfun @pets

for some reason it keeps giving me the wrong pet at the lower lvl can any one put me right on this please


[@main]
#IF
CheckJOB TAOIST
CHECKLEVELEX > 34
#ACT
GOTO @pets2
#elseSAY
Sorry you are not the right class or level to use this feature.\
\
<close/@exit>\


[@pets2]
#IF
CHECKLEVELEX > 35
#ACT
GOTO @getpet
#ELSEACT
#IF
CHECKLEVEL > 45
#ACT
GOTO @getpet1
#ELSEACT
#IF
CHECKLEVELEX > 55
#ACT
GOTO @getpet2
#ELSESAY
you need to be in the set level range to have pets




[@getpet]
#IF
CHECKSLAVECOUNT = 1
#ACT
#SAY
You have pets all ready.
#ELSEACT
RECALLMOB TaoDevil 1 0
BREAK


[@getpet1]
#ACT
RECALLMOB TaosDevil 1 0
BREAK


[@getpet2]
#ACT
RECALLMOB TaosDevils 1 0
BREAK
 

Holmez

Dedicated Member
Dedicated Member
May 7, 2010
90
1
34
Hello all i been having a problem with this Qfun @pets

for some reason it keeps giving me the wrong pet at the lower lvl can any one put me right on this please


[@main]
#IF
CheckJOB TAOIST
CHECKLEVELEX > 34
#ACT
GOTO @pets2
#elseSAY
Sorry you are not the right class or level to use this feature.\
\
<close/@exit>\


[@pets2]
#IF
CHECKLEVELEX > 55
#ACT
GOTO @getpet2
#ELSEACT
goto @pets2_1

[@pets2_1]
#IF
CHECKLEVEL > 45
#ACT
GOTO @getpet1
#ELSEACT
goto @pet2_2

[@pets2_2]
#IF
CHECKLEVELEX > 35
#ACT
GOTO @getpet2
#ELSESAY
you need to be in the set level range to have pets




[@getpet]
#IF
CHECKSLAVECOUNT = 1
#ACT
#SAY
You have pets all ready.
#ELSEACT
RECALLMOB TaoDevil 1 0
BREAK


[@getpet1]
#IF
CHECKSLAVECOUNT = 1
#ACT
#SAY
You have pets already.
#ELSEACT
RECALLMOB TaosDevil 1 0
BREAK


[@getpet2]
#IF
CHECKSLAVECOUNT = 1
#SAY
You have pets already.
#ELSEACT
RECALLMOB TaosDevils 1 0
BREAK


That should fix it.
 
Upvote 0