-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Normal dialogue box for New game intro, instant Autorun message
- Loading branch information
Showing
8 changed files
with
107 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,15 @@ | ||
.global EventScript_DisableAutoRun | ||
.global EventScript_EnableAutoRun | ||
|
||
EventScript_DisableAutoRun: | ||
lockall | ||
msgbox Text_DisableAutoRun, MSGBOX_AUTOCLOSE | ||
releaseall | ||
end | ||
|
||
EventScript_EnableAutoRun: | ||
lockall | ||
msgbox Text_EnableAutoRun, MSGBOX_AUTOCLOSE | ||
releaseall | ||
.global EventScript_CloseAutorunMessage | ||
|
||
EventScript_CloseAutorunMessage: | ||
lockall | ||
waitmessage | ||
waitbuttonpress | ||
callnative HideFieldMessageBoxInstant | ||
releaseall | ||
end | ||
|
||
Text_DisableAutoRun: | ||
Text_DisabledAutoRun: | ||
.string "Autorun {COLOR RED}disabled{COLOR DARK_GREY}.$" | ||
|
||
Text_EnableAutoRun: | ||
Text_EnabledAutoRun: | ||
.string "Autorun {COLOR GREEN}enabled{COLOR DARK_GREY}.$" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
.if BIRCH_SPEECH_DBOX | ||
|
||
.org 0x800A3A0 | ||
.area 0x800A3AC - 0x800A3A0, 0x0 | ||
bl 0x8071ffc | ||
.endarea | ||
|
||
.org 0x800A3AE | ||
mov r1, #2 | ||
mov r2, #0xf | ||
|
||
.org 0x800A3F6 | ||
mov r1, #2 | ||
mov r2, #0xf | ||
|
||
.org 0x800A53C | ||
mov r1, #2 | ||
mov r2, #0xf | ||
|
||
.org 0x800a576 | ||
.area 0x800a582 - 0x800a576, 0x0 | ||
bl 0x8071ffc | ||
.endarea | ||
|
||
.org 0x800a584 | ||
mov r1, #2 | ||
mov r2, #0xf | ||
|
||
.org 0x800a764 | ||
.area 0x800a770 - 0x800a764, 0x0 | ||
bl 0x8071ffc | ||
.endarea | ||
|
||
.org 0x800a772 | ||
mov r1, #2 | ||
mov r2, #0xf | ||
|
||
.org 0x800a97c | ||
.area 0x800a988 - 0x800a97c, 0x0 | ||
bl 0x8071ffc | ||
.endarea | ||
|
||
.org 0x800a98a | ||
mov r1, #2 | ||
mov r2, #0xf | ||
|
||
.org 0x800aaf4 | ||
.area 0x800ab00 - 0x800aaf4, 0x0 | ||
bl 0x8071ffc | ||
.endarea | ||
|
||
.org 0x800ab0c | ||
mov r1, #2 | ||
mov r2, #0xf | ||
|
||
.org 0x800ad08 | ||
.area 0x800ad14 - 0x800ad08, 0x0 | ||
bl 0x8071ffc | ||
.endarea | ||
|
||
.org 0x800ad20 | ||
mov r1, #2 | ||
mov r2, #0xf | ||
|
||
.org 0x800aeaa | ||
.area 0x800aeb6 - 0x800aeaa, 0x0 | ||
bl 0x8071ffc | ||
.endarea | ||
|
||
.org 0x800aeb8 | ||
mov r1, #2 | ||
mov r2, #0xf | ||
.endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters