This doesn't work. Knight does not change to Lord Knight
case 1:
if(readparam(Class) != Job_Knight) goto L_JbError;
specialeffect2 402;
jobchange 4008;
set JobLevel,1;
close;
Thanks, for your help.
No offense intended but, that didn't work.
if(readparam(Class) < Job_Knight) goto L_JbError;
That worked, its a stupid childish way of doing it but. It works -.-
Alright. So I am having issues with changing to trans classes.
The Problem is a Novice can instantly change to a trans class. I'm trying to make it so you have to be the 2nd class before you can go trans.
switch(select("Lord Knight:Paladin:High Wizard:Professor:Sniper:Clown:Gypsy:High Priest:Champion:Whitesmith:Creator:Assassin Cross:Stalker:Close"))
{
case 1:
if(readparam(Class) == Job_Knight) goto L_JbError;
specialeffect2 402;
jobchange 4008;
set JobLevel,1;
close;