//@unloadnpc Strange Man#g
//@loadnpc npc/amatsu/gpack/entrance.txt

new_1-1,63,115,4	script	Strange Man#g	2_M_MOLGENSTEIN,{
	mes(.npc$);
	if(#GPACK){
		mes "Sorry, you already claimed this on one of your character. I can only allow one (1) character per account.";
		close;
	} 
	mes("I'm here to give your 1 time ^ff0000Instant Character^000000.");
	next;
	mes(.npc$);
	mes("After evaluation, you will be warped to a special area where you can receive:");
	mes "- Instant 99/50 ^ff00002nd Job^000000";
	mes "- Instant 99/50 ^ff0000Extended Job^000000";
	mes "- ^ff0000Weapons & Armors^000000 with ^ff0000Cards^000000";
	mes("- - -");
	mes("Important Note:");
	mes("- - -");
	mes("1. Only items that you can EQUIP may be brought outside.");
	mes "2. All EQUIPMENTS are all character bound.";
	mes "3. Trading, Vending and Mail is prohibited at the arena.";
	mes("Would you like to claim now?");
	next;
	switch(select(
		 " > ^0055FFYes, I'm ready!^000000:"+
		 " > ^777777Close^000000"
	)) {
	case 1:
		mes(.npc$);
		mes("Please wait ...");
		if(countitem(Green_Voucher)){
			hasgv = 1;
		}
		nude();
		atcommand("@itemreset");
		#GPACK = 1;	
		savepoint .mapName$,.warpx,.warpy;
		warp .mapName$,.warpx,.warpy;
		close();

	default:
		close();
	}
	close();


OnInit:
   .mapName$ = "tournament";
   .warpx = 43;
   .warpy = 105;	
   .npc$ = "[ Strange Man ]";
   end;
}	
