'0-1 BOT	by d-EVO
'Very Simple Neural Network Bot
'It can easily be compressed but it is meant to be as understandable as possable

'RESETTING MEMORY

cond
start
0 50 store
0 51 store
0 52 store
0 100 store
0 101 store
0 102 store
stop

'STORING INPUTS

'can I see something?

cond
*.eye5 0 >
start
1 50 store
stop

'is what I see an enemy

cond
*.refeye *.myeye !=
start
1 51 store
stop

'how close am I to what I see

cond
*.eye5 50 >
start
1 52 store
stop

'PROCESSING

'am I in range to fire ?

cond
*50 1 =
*51 1 =
*52 1 =
start
1 100 store
stop

'do I need to go closer ?

cond
*50 1 =
*51 1 =
*52 0 =
start
1 101 store
stop

'do I see anything of significance ?

cond
*50 0 =
*51 0 = or
start
1 102 store
stop

'EXECUTING OUTPUT

cond
*100 1 =
start
-1 .shoot store
stop

cond
*101 1 =
start
2 .up store
stop

cond
*102 1 =
start
35 .aimdx store
stop

end