Skip to content

Commit

Permalink
func to check we have flyers if war started as frat
Browse files Browse the repository at this point in the history
  • Loading branch information
HippoKingKoL committed Jan 26, 2025
1 parent f5aec62 commit 367b7b2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions RELEASE/scripts/autoscend/auto_routing.ash
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,18 @@ boolean auto_earlyRoutingHandling()
return true;
}
}

// Check we have flyers if war frat and war started
if(!in_koe() && internalQuestStatus("questL12War") == 1 && !get_property("auto_hippyInstead").to_boolean() &&
get_property("sidequestArenaCompleted")!="fratboy" && available_amount($item[rock band flyers])==0)
{
outfit("frat warrior fatigues"); // don't use the equipOutfit func here since this is just temporary, we don't want to adventure like this.
visit_url("bigisland.php?place=concert&pwd");
// Just make sure the other two quests are started too
visit_url("bigisland.php?place=lighthouse&action=pyro&pwd");
visit_url("bigisland.php?action=junkman&pwd");
}

return false;
}

Expand Down

0 comments on commit 367b7b2

Please sign in to comment.