Home | History | Annotate | Download | only in sail

Lines Matching defs:crew

161 	int crew[3];
165 crew[0] = mc->crew1;
166 crew[1] = mc->crew2;
167 crew[2] = mc->crew3;
177 crew[0] = men/100 ? 0 : crew[0] != 0;
178 crew[1] = (men%100)/10 ? 0 : crew[1] != 0;
179 crew[2] = men%10 ? 0 : crew[2] != 0;
181 crew[0] = crew[0] != 0;
182 crew[1] = crew[1] != 0;
183 crew[2] = crew[2] != 0;
190 if (meleeing(ms, sp) && crew[2]) {
193 parties(sp, crew, 0, c);
194 } else if ((fouled2(ms, sp) || grappled2(ms, sp)) && crew[2]) {
195 c = sgetch("Crew sections to board the $$ (3 max) ?",
197 parties(sp, crew, 0, c);
200 if (crew[2]) {
203 parties(ms, crew, 1, c);
208 parties(struct ship *to, int *crew, int isdefense, int buf)
215 temp[k] = crew[k];
223 men += crew[k]
225 crew[k] = 0;
230 Msg("Sending all crew sections.");
239 temp[k] && !crew[k]);
244 temp[k] && !crew[k]);
248 Msg("Sending no crew sections.");