You can tame a raptor (with raw meat that you trou at em) or a monkey (with bananas same to throu at em)!
To plant first you plant some grain nest will be grapes and so on and so on untill you can grow a tree! and palms!
General
"I'm stuck / how to do XY" thread
) can i use as a trigger, that opens the gate when i approach it and then closes when i am far(from the gate)...if (inrange ("unit",1)==1){
	if (riding==1){
		local $gateopen;
		$gateopen=1;				play "vehicle_move.wav";
		model "gfx/gate_closed.b3d";
	}
}elseif ($gateopen==1){
	$gateopen=0;
	play "vehicle_move.wav";
	model "gfx/gate.b3d";
}