Recallmon command

Jicaa

Pooslice
Golden Oldie
Jul 9, 2003
2,386
36
204
Whenever i try recalling a mob, it will do it but then untame after about 5 seconds.

My first script was:

[@main]
#SAY
Which pet would you like to summon?\ \
<Pet1/@newpet1> - Level 300\

[@newpet1]
#IF
checklevel 300
checkmonrecall
#ACT
monrecall Pet1
close
#ELSESAY
You are not high enough level or have too many pets...

Then i tried:

[@main]
#SAY
Which pet would you like to summon?\ \
<Pet1/@newpet1(999,1)> - Level 300\

[@newpet1()]
#IF
checklevel 300
checkmonrecall
#ACT
monrecall Pet1
close
#ELSESAY
You are not high enough level or have too many pets...

But the mob still untamed regardless of what mob it is
 

chimera

LOMCN VIP
VIP
Jul 30, 2003
1,054
23
235
UK
This is a little test thing I wrote which should solve your problem :)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;mob time(hours) level
[@tamingtest]
#IF
#ACT
monrecall oma 1 7
 
Upvote 0