You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Script commands don't have underscores
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
Script_ForcedMovement:: ; 0x1253d
|
||||
checkcode VAR_FACING
|
||||
if_equal DOWN, .down
|
||||
if_equal UP, .up
|
||||
if_equal LEFT, .left
|
||||
if_equal RIGHT, .right
|
||||
ifequal DOWN, .down
|
||||
ifequal UP, .up
|
||||
ifequal LEFT, .left
|
||||
ifequal RIGHT, .right
|
||||
end
|
||||
; 0x12550
|
||||
|
||||
|
||||
@@ -1044,7 +1044,7 @@ Script_UsedStrength: ; 0xcd2d
|
||||
AskStrengthScript:
|
||||
callasm TryStrengthOW
|
||||
iffalse .AskStrength
|
||||
if_equal $1, .DontMeetRequirements
|
||||
ifequal $1, .DontMeetRequirements
|
||||
jump .AlreadyUsedStrength
|
||||
|
||||
.DontMeetRequirements: ; 0xcd59
|
||||
@@ -1413,7 +1413,7 @@ UnknownText_0xcf58: ; 0xcf58
|
||||
|
||||
AskRockSmashScript: ; 0xcf5d
|
||||
callasm HasRockSmash
|
||||
if_equal 1, .no
|
||||
ifequal 1, .no
|
||||
|
||||
opentext
|
||||
writetext UnknownText_0xcf77
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -20,7 +20,7 @@ Script_Whiteout: ; 0x124ce
|
||||
farscall Script_AbortBugContest
|
||||
special WarpToSpawnPoint
|
||||
newloadmap MAPSETUP_WARP
|
||||
end_all
|
||||
endall
|
||||
|
||||
.bug_contest
|
||||
jumpstd bugcontestresultswarp
|
||||
|
||||
Reference in New Issue
Block a user