From 97838f3a9db81bf83b0e746b827d46afcebdb393 Mon Sep 17 00:00:00 2001 From: Samuel Gaus Date: Sun, 10 Nov 2024 23:26:49 +0000 Subject: [PATCH 1/3] Keep yearbook camera in KOLHS (by equipping) (#1522) * Keep yearbook camera in KOLHS (by equipping) * Fix typo --- RELEASE/scripts/autoscend/quests/level_13.ash | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/RELEASE/scripts/autoscend/quests/level_13.ash b/RELEASE/scripts/autoscend/quests/level_13.ash index 1e51f8a36..7a64528f0 100644 --- a/RELEASE/scripts/autoscend/quests/level_13.ash +++ b/RELEASE/scripts/autoscend/quests/level_13.ash @@ -1830,6 +1830,12 @@ boolean L13_towerNSFinal() abort("Freeing the king will result in a path change. Go howl at the moon some more if you want."); } + // It is possible to keep your Yearbook Club Camera in KOLHS by having it equipped before breaking the prism + if (in_kolhs() && !have_equipped($item[Yearbook Club Camera]) && (item_amount($item[Yearbook Club Camera]) > 0)) + { + equip($slot[acc3], $item[Yearbook Club Camera]); + } + if(!($classes[Seal Clubber, Turtle Tamer, Pastamancer, Sauceror, Disco Bandit, Accordion Thief] contains my_class())) { abort("Freeing the king will result in a path change and we can barely handle The Sleazy Back Alley. Aborting, run the script again after selecting your aftercore path in order for it to clean up."); From c44af3e0e4d952f425e87e3141d32aec011bb005 Mon Sep 17 00:00:00 2001 From: Alium58 Date: Tue, 19 Nov 2024 10:01:33 -0600 Subject: [PATCH 2/3] Add contributors (#1525) --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index ef75cd926..5a95b282b 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,10 @@ Tokoeka (IGN: Asmodais (#2071543)) Alium (IGN: Alium (#1933235)) +dsimich (IGN: erct657 (#584803)) + +HippoKingKoL (IGN: HippoKing (#1716533)) + ## Special Thanks This script would obviously not be possible without the work of Cheesecookie and soolar. From 29d76132cbffbf86b83fe558f3ca7e0e502c85ff Mon Sep 17 00:00:00 2001 From: Alium58 Date: Tue, 19 Nov 2024 10:25:30 -0600 Subject: [PATCH 3/3] Reminder to update GitHub wiki pages (#1524) --- docs/PULL_REQUEST_TEMPLATE | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/PULL_REQUEST_TEMPLATE b/docs/PULL_REQUEST_TEMPLATE index fc956e6a9..032c20578 100644 --- a/docs/PULL_REQUEST_TEMPLATE +++ b/docs/PULL_REQUEST_TEMPLATE @@ -16,3 +16,4 @@ Testing ASH scripts is tricky and generally involves you doing multiple runs wit - [ ] I have performed a self-review of my own code. - [ ] I have commented my code, particularly in hard-to-understand areas. - [ ] I have based my pull request against the [main branch](https://github.com/loathers/autoscend/tree/main) or have a good reason not to. +- [ ] I have updated the GitHub wiki [path](https://github.com/loathers/autoscend/wiki/Path-Support) or [IOTM](https://github.com/loathers/autoscend/wiki/IOTM-Support) support pages, as appropriate.