
MassEffect
By: a guest on
Jun 8th, 2012 | syntax:
C# | size: 0.66 KB | hits: 13 | expires: Never
int mass_effect_storyline(Hero commander_sheppard)
{
while (reaper_threat)
{
while (!commander_sheppard.hit_by_beam())
{
commander_sheppard.hold_the_line();
if (obstacle)
commander_sheppard.get_the_job_done();
if (commander_sheppard.jobs_done() > obstacles)
commander_sheppard.hit_by_beam();
}
while (commander_sheppard.hit_by_beam())
{
if (commander_sheppard.allys() == max_allys)
{
commander_sheppard.refuse_indoctrination();
commander_sheppard.hit_by_beam(false);
else
{
commander_sheppard.accept_indoctrination();
return 0;
}
}
commander_sheppard.hold_the_line();
return 1;
}
}