//@unloadnpc compensation
//@loadnpc npc/valhalla/compensation.txt

-	script	compensation	-1,{
end;

OnPCLoginEvent:
	if(countitem(Light_White_Pot_F) > 1000){
		delitem Light_White_Pot_F,countitem(Light_White_Pot_F);
		getitembound Light_White_Pot_F,1000,4;
	}
	if(countitem(Light_Blue_Pot_F) > 1000){
		delitem Light_Blue_Pot_F,countitem(Light_Blue_Pot_F);
		getitembound Light_Blue_Pot_F,1000,4;
	}
	if(countitem(Bubble_Gum) > 20){
		delitem Bubble_Gum,countitem(Bubble_Gum);
		getitembound Bubble_Gum,5,4;
	}
	if(countitem(Battle_Manual100) > 20){
		delitem Battle_Manual100,countitem(Battle_Manual100);
		getitembound Battle_Manual100,5,4;
	}
	if(countitem(Blessing_10_Scroll) > 20){
		delitem Blessing_10_Scroll,countitem(Blessing_10_Scroll);
		getitembound Blessing_10_Scroll,10,4;
	}
	if(countitem(Inc_Agi_10_Scroll) > 20){
		delitem Inc_Agi_10_Scroll,countitem(Inc_Agi_10_Scroll);
		getitembound Inc_Agi_10_Scroll,10,4;
	}	
	end;
}