[HI]can i have a script like this

leloush

New member
Messages
269
Points
0
Location
in front of my laptop =)
Emulator
a player must register his novice lvl 1.. to this npc ( after that npc will give a mission to this player to be lvl 150 )

after that the npc will make announcement to the whole server that this " character " has reached lvl 150 and will give something reward


thanks in advanced
default_biggrin.png
 

 
I've written this from scratch and I haven't tested it, just edit it to your liking.

Code:
prontera,123,123,1	script	150Q	100,{ if(StartQuest > 0 && BaseLevel >= 150) goto L_150;else if(BaseLevel > 1 || Class != Job_Novice) {	mes "You're not a Level 1 Novice.";	close;	}else end; mes "Here's your quest, talk to me when you've reach Level 150";set StartQuest,1;close;  L_150:	announce strcharinfo(0)+" has reached level 150",bc_all;	getitem 609,1;	set StartQuest,0;	close; }
 
Back
Top