Nightmist - Orc Chasm (ASH)

Nightmist

Member
Note: Just read the forum standards (Note number 4 about separate scripts), moved from a reply to its own topic.

Doesn't have a "get stat script" like cjswimmer but I guess ill post in here anyway. Variety is always a good thing.

Code:
void Quest_Chasm()
{
 while( item_amount( $item[334 scroll]) < 2 || item_amount( $item[30669 scroll]) < 1 || item_amount( $item[33398 scroll]) < 1)
 {
 adventure( 1, $location[Beyond]);
 }
 if( item_amount( $item[334 scroll]) >= 2 || item_amount( $item[30669 scroll]) >= 1 || item_amount( $item[33398 scroll]) >= 1)
 {
 create( 1, $item[668 scroll]);
 create( 1, $item[64067 scroll]);
 create( 1, $item[64735 scroll]);
 use( 1, $item[64735 scroll]);
 council();
 }
}
 
Top