how to set skills when player logs on first time

Mike_BE

Dedicated Member
Dedicated Member
Aug 1, 2008
34
0
52
Hey, id like to make it so when warr, wiz, tao log on to the game for there first time they get spells lvl 3. how can i do that ?
 

Liandrin2

Golden Oldie
Golden Oldie
Loyal Member
Jan 14, 2004
890
6
125
in qfunction something like:

Code:
#if
ISNEWHUMAN
checkjob Warrior
#act
addskill Fencing 3
addskill Slaying 3
break

#if
ISNEWHUMAN
checkjob Wizard
#act
addskill Fireball 3
etc
etc
break

Check the all of the commands as I cba doing it myself but they look right off the top of my head. I'd check the Warrior, Wizard as well, might be war, wiz or something.
 
Upvote 0