Home | History | Annotate | Download | only in rogue

Lines Matching defs:tried

323 	boolean tried[6];
396 for (i = 0; i <= 5; i++) tried[i] = 0;
402 if (!tried[n] && mtry(monster, row, monster->col-1)) {
407 if (!tried[n] && mtry(monster, row, monster->col)) {
412 if (!tried[n] && mtry(monster, row, monster->col+1)) {
417 if (!tried[n] && mtry(monster, monster->row-1, col)) {
422 if (!tried[n] && mtry(monster, monster->row, col)) {
427 if (!tried[n] && mtry(monster, monster->row+1, col)) {
432 if (!tried[n]) {
433 tried[n] = 1;