summaryrefslogtreecommitdiff
path: root/data/maps/MtChimney/scripts.inc
AgeCommit message (Collapse)Author
2021-11-18Reformat compare + goto_if/call_if to single statementsGriffinR
2021-11-15Start event macro comment updatesGriffinR
2021-11-05Rename movement scripts to use Faster over Fastestcbt6
2021-07-20Remove address commentsGriffinR
2021-05-21Document second parameter of playbgmExpoSeed
2020-08-20Give songs meaningful english namesGriffinR
2020-06-22Add local object event ids for referenced objectsGriffinR
2020-01-13Merge branch 'master' of https://github.com/pret/pokeemerald into fix-eventobjGriffinR
2020-01-13Merge pull request #953 from GriffinRichards/sync-scripthuderlem
Port some macro/script fixes from pokefirered
2020-01-12Give/Take to Add/Remove for silent script macrosGriffinR
2020-01-12Merge branch 'master' into fix-eventobjGriffinR
2020-01-12Some script clean up, document secret base secrets showGriffinR
2020-01-11Port some macro/script fixes from pokefireredGriffinR
2020-01-08Merge branch 'master' into fix-eventobjGriffinR
2019-12-25Labels betterFontbane
2019-12-18Merge branch 'master' into fix-eventobjGriffinR
2019-12-15Use fadescreen constantsGriffinR
2019-11-20Standardize EVENT_OBJECT to OBJECT_EVENTGriffinR
2019-11-07Fold nops into hidemoneyboxGriffinR
2019-11-04Rename Grunts to use location-specific namesGriffinR
2019-11-02Use YES/NO constants for MSGBOX_YESNOGriffinR
2019-11-01Document aqua/magma area scriptsGriffinR
2019-11-01Document aqua/magma hideout scriptsGriffinR
2019-10-31Merge branch 'master' into doc-partymenuGriffinR
2019-10-25Document party_menu first passGriffinR
2019-10-16Merge branch 'master' into document-gyms2GriffinR
2019-10-15Document Petalburg, Fortree, Sootopolis, and some of Mossdeep GymsGriffinR
2019-10-07Merge branch 'master' into doc-incGriffinR
2019-10-07Use VAR_FACING constantsGriffinR
2019-10-06Document common movementsGriffinR
2019-09-16Use misc ScrCmd constantsGriffinR
2019-08-17Review fixesTustin2121
2019-08-17Folded nops into hidemoneybox and updatemoneyboxTustin2121
The nops are essential to the hidemoneybox and updatemoneybox commands when using vanilla versions of those commands. Even though they're not actually used parameters in the command implementation, they are still consumed, which means if someone were to get rid of the nops (as I did in TriHard) it causes the commands to consume bytecode that are not theirs, resulting in undefined behavior usually leading to softlocks. Folding the extra bytes into the macros means there's no chance of the extra bytes getting losts in scripts.
2019-04-22Fix some labels and include decorations.hFontbane
Include decorations.h in shop.c Include decorations.h in event_scripts.s
2019-04-22Doc most OnTransitionsFontbane
2019-02-25Merge pull request #574 from Phlosioneer/event-varshuderlem
Event vars
2019-02-25Update map script filesPhlosioneer
2019-02-25Merge branch 'master' into event-varsPhlosioneer
2019-02-24Name some common single-entry movementsPhlosioneer
2019-02-24Name a ton of commonly used event scriptsPhlosioneer
2019-02-22Finish moving pokeruby varsPhlosioneer
2019-01-02Finish off labelling flagsTetrable
2018-12-21improve call_if macrosMelody
2018-12-21improve goto_if macrosMelody
2018-12-19update applymovement to remove magic numbersMelody
2018-12-07Use normal apostrophes like adultsMelody
2018-12-02trainerbattle_normal → trainerbattle_singleMelody
* trainerbattle_normal → trainerbattle_single * TRAINER_BATTLE_NORMAL → TRAINER_BATTLE_SINGLE * improves the macro documentation a little
2018-12-02cleans up trainer battle scriptsMelody
* adds battle type macros * adds `trainerbattle_normal` macro * adds `trainerbattle_double` macro * adds rematch macros * adds no intro macro
2018-12-02defines `register_matchcall` macroMelody
2018-12-02adds constants, cleans up callstd and msgbox codeMelody
* adds some constants for standard script names and messagebox types * replaces some callstd calls with msgbox calls where equivalent * replaces msgbox and callstd calls using raw digits with versions that use the constants