12 lines
300 B
Plaintext
12 lines
300 B
Plaintext
|
//::Distancecheck2
|
||
|
//::BY: Xovian
|
||
|
#include "nw_i0_generic"
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
if(GetAssociateState(NW_ASC_DISTANCE_2_METERS)&&(GetAssociateState(NW_ASC_DISTANCE_4_METERS)==FALSE)&&(GetAssociateState(NW_ASC_DISTANCE_6_METERS)==FALSE))
|
||
|
{
|
||
|
return FALSE;
|
||
|
}
|
||
|
return TRUE;
|
||
|
}
|