i know how to make skills go up and down and all, but how do i block the construction of an item until you get to a certain level.
Like you can't make juice till your at level something in a skill
lockcombi "hammer";
on:start { 	... 	lockcombi "arbalest"; 	... }
on:kill { 	event "iskill_hunt","global"; }
on:iskill_hunt { 	incskill "hunt",1,"Hunting"; //inc. skill by 1 	$tmp=skillvalue("hunt"); //current skillvalue... 	... 	//if the skill reaches 150 then unlock arbalest-combi 	if ($tmp==150) { 		... 		unlockcombi "arbalest"; 	} }