How to make npc just for novice,baby novice and high novice?

hadiesyafiq

New member
Messages
160
Points
0
Age
35
Location
Malaysia
Github
hadiesyafiq
Emulator
hello hercules

How to make npc just for novice,baby novice and high novice?

here some of my script

if(Class !=0) || Class !=4001 || Class !=4023) goto Lnotnovice;

mes "Hi novice";

Lnotnovice:
    mes "you are not novice";

i try this but still not work

only novice can access high novice and baby novice cannot?

how to fix this?

 
Code:
prontera,155,185,5	script	shdfksjhf	1_F_MARIA,{
	if (Class == Job_Novice || Class == Job_Novice_High || Class == Job_Baby) {
		mes "Hi Novice";
		close;
	}
	end;
}
 
prontera,155,185,5 script shdfksjhf 1_F_MARIA,{
if (Class == Job_Novice || Class == Job_Novice_High || Class == Job_Baby) {
mes "Hi Novice";
close;
}
end;
}

prontera,155,185,5 script shdfksjhf 1_F_MARIA,{
if (Class == Job_Novice || Class == Job_Novice_High || Class == Job_Baby) {
mes "Hi Novice";
close;
}
end;
}

Thank you idol *winks

 
Back
Top