Pets on login.

MrsMir

Dedicated Member
Dedicated Member
Mar 17, 2009
80
0
33
¿
I've used searched and found nothing. Thats why i'm posting here.

I've looked for a script that gives you 2 pets on login once you get to a curtain lvl.
I'm not to good at scripts.

[@login]
#IF
CHECKLEVELX 50
#ACT
recallmob (mob name) 2 0
break

2 been amount and 0 been lvl of pet.

Could this work?
 

Shabalabalong

Golden Oldie
Golden Oldie
Jul 1, 2006
1,067
30
154
Brighton
Qmanage is only run when you login i believe so put it in there

Aye and QFunction is something the server always checks - so the more stuff in the QFunction, usually is a contribution to the lagg (if any) so it's better to keep QFunction to a minimum.
 
Upvote 0

Weikster

LOMCN Veteran
Veteran
Jan 21, 2009
421
11
44
36th chamber
So > 50 checks if your 50 and over? < lower and = only lvl 50?

CHECKLEVELEX > 49 would be for level 50 and higher
CHECKLEVELEX = 50 would be for level 50 only
CHECKLEVEL 50 would be for 50 and higher
(When using checklevel command, no >, <, or = can be used. To use those you must use CHECKLEVELEX)

[@login]
#IF
CHECKLEVEL 50 (If they are level 50 or higher, then its true)
#ACT
recallmob (mob name) 2 0
break

To recall multiple mobs on Login you must repeat the line.
What you have above would recall a level 2 mob and stay tamed for 0 sec.
If you want to set a time limit, the second number is for seconds, if not put nothing there.

[@login]
#IF
CHECKLEVEL 50
#ACT
recallmob (mob name) 2 (the 2 here would be a level 2 mob)
recallmob (mob name) 2 600 (600 here would be 10 mins)
 
Last edited:
Upvote 0

MrsMir

Dedicated Member
Dedicated Member
Mar 17, 2009
80
0
33
¿
Ok thanks. By the way if i wanted to add a class in there whats the command? eg, if only i wanted wizzies to get pets on login and not other 2 class'? I'll sort other class' out later with pets lol.
 
Upvote 0

demonx

Golden Oldie
Golden Oldie
Aug 4, 2004
712
0
123
England
Ok thanks. By the way if i wanted to add a class in there whats the command? eg, if only i wanted wizzies to get pets on login and not other 2 class'? I'll sort other class' out later with pets lol.

You would use the CHECKJOB command:

#IF
CHECKJOB Wizard/Taoist/Warrior
CHECKLEVELEX > 50

hope this helps ^_^
 
Upvote 0