Orc Chasm (ASH)

cjswimmer

Member
Orc Chasm
Code:
void Quest_OrcChasm()
	{
	boolean GoForStatScript;
	GoForStatScript = false;
	int 334Count;
	int 30669Count;
	cli_execute("conditions clear");
	council();
	if (GoForStatScript == true) {334Count = 4;	30669Count = 2;	}
	else {334Count = 2;	30669Count = 1;	}
	if ( item_amount($item[334 scroll]) < 334Count || item_amount($item[30669 scroll]) < 30669Count || item_amount($item[33398 scroll]) < 1)
	  {
    if ( item_amount($item[334 scroll]) < 334Count ) { add_item_condition( 334Count - item_amount($item[334 scroll]), $item[334 scroll] ); }
    if ( item_amount($item[30669 scroll]) < 30669Count ) { add_item_condition( 30669Count - item_amount($item[30669 scroll]), $item[30669 scroll] ); }
    if ( item_amount($item[33398 scroll]) < 1 ) {	add_item_condition( 1, $item[33398 scroll] ); }
    adventure(my_adventures(), $location[Valley Beyond Orc Chasm] );
		}
  if (GoForStatScript == true) 
  	{
  	create( 1, $item[31337 scroll]);
		use( 1, $item[31337 scroll]);
		use( 1, $item[hermit script]);
		use( 1, $item[stat script]);
	}	
	create( 1, $item[64735 scroll]);
	use( 1, $item[64735 scroll]); 		
	}
 
Top