/* * * * * * * * * * * 
 * iRO Bounty Missions
 * - http://irowiki.org/wiki/Bounty_Board_Quests
 * 
 * ------- V 1.0 ------
 * Official iRO renewal repeatable Bounty Missions
 * --------------------
 * Credits: Smokexyz [sagunxp@gmail.com]
 * * * * * * * * * * */

yuno,207,143,4	script	Bounty Board 70-110#yun	2_BULLETIN_BOARD,{
	setarray .@questId[0],52556 // Goat
						,52557 // Harpy
						,52558 // Sleeper
						,52559; // Grand Peco
	setarray .@mobId[0],1372 // Goat
						,1376 // Harpy
						,1386 // Sleeper
						,1369; // Grand Peco
	callfunc "F_BountyBoard",.@questId,.@mobId,.min_lvl,.max_lvl;
	end;

OnPCLoadMapEvent:
	if (strcharinfo(3) == strnpcinfo(4)
		&& (BaseLevel >= .min_lvl && BaseLevel <= .max_lvl))
	showevent 1,1;
	end;

OnInit:
	set .min_lvl,70;
	set .max_lvl,99;
	end;
}

yuno,208,142,4	script	Bounty Board 101-150#yun	2_BULLETIN_BOARD,{
	setarray .@questId[0],52710 // Deleter (Ground)
						,52711 // Deleter (Sky)
						,52712; // Nightmare Terror

	setarray .@mobId[0],1385 // Deleter (Ground)
						,1384 // Deleter (Sky)
						,1379; // Nightmare Terror
	callfunc "F_BountyBoard",.@questId,.@mobId,.min_lvl,.max_lvl;
	end;

OnPCLoadMapEvent:
	if (strcharinfo(3) == strnpcinfo(4)
		&& (BaseLevel >= .min_lvl && BaseLevel <= .max_lvl))
	showevent 1,1;
	end;

OnInit:
	set .min_lvl,99;
	set .max_lvl,99;
	end;
}