KrissHouse → PlayersHouse
This commit is contained in:
@@ -171,7 +171,7 @@ PC_WaitPlaySFX: ; 156d0
|
||||
ret
|
||||
; 156d9
|
||||
|
||||
_KrissHousePC: ; 156d9
|
||||
_PlayersHousePC: ; 156d9
|
||||
call PC_PlayBootSound
|
||||
ld hl, UnknownText_0x156ff
|
||||
call PC_DisplayText
|
||||
@@ -212,7 +212,7 @@ Function15715: ; 15715
|
||||
xor a
|
||||
ld [wPCItemsCursor], a
|
||||
ld [wPCItemsScrollPosition], a
|
||||
ld hl, KrissPCMenuData
|
||||
ld hl, PlayersPCMenuData
|
||||
call LoadMenuDataHeader
|
||||
.asm_15722
|
||||
call UpdateTimePals
|
||||
@@ -230,28 +230,28 @@ Function15715: ; 15715
|
||||
ret
|
||||
; 15736
|
||||
|
||||
KrissPCMenuData: ; 0x15736
|
||||
PlayersPCMenuData: ; 0x15736
|
||||
db MENU_BACKUP_TILES ; flags
|
||||
db 0, 0 ; top left corner coords (y, x)
|
||||
db 12, 15 ; bottom right corner coords (y, x)
|
||||
dw .KrissPCMenuData2
|
||||
dw .PlayersPCMenuData2
|
||||
db 1 ; default selected option
|
||||
|
||||
.KrissPCMenuData2:
|
||||
.PlayersPCMenuData2:
|
||||
db STATICMENU_CURSOR | STATICMENU_WRAP ; flags
|
||||
db 0 ; # items?
|
||||
dw .KrissPCMenuList1
|
||||
dw .PlayersPCMenuList1
|
||||
dw PlaceNthMenuStrings
|
||||
dw .KrissPCMenuPointers
|
||||
dw .PlayersPCMenuPointers
|
||||
|
||||
.KrissPCMenuPointers: ; 0x15746
|
||||
dw KrisWithdrawItemMenu, .WithdrawItem
|
||||
dw KrisDepositItemMenu, .DepositItem
|
||||
dw KrisTossItemMenu, .TossItem
|
||||
dw KrisMailBoxMenu, .MailBox
|
||||
dw KrisDecorationMenu, .Decoration
|
||||
dw KrisLogOffMenu, .LogOff
|
||||
dw KrisLogOffMenu, .TurnOff
|
||||
.PlayersPCMenuPointers: ; 0x15746
|
||||
dw PlayerWithdrawItemMenu, .WithdrawItem
|
||||
dw PlayerDepositItemMenu, .DepositItem
|
||||
dw PlayerTossItemMenu, .TossItem
|
||||
dw PlayerMailBoxMenu, .MailBox
|
||||
dw PlayerDecorationMenu, .Decoration
|
||||
dw PlayerLogOffMenu, .LogOff
|
||||
dw PlayerLogOffMenu, .TurnOff
|
||||
|
||||
.WithdrawItem: db "WITHDRAW ITEM@"
|
||||
.DepositItem: db "DEPOSIT ITEM@"
|
||||
@@ -269,7 +269,7 @@ DECORATION EQU 4
|
||||
TURN_OFF EQU 5
|
||||
LOG_OFF EQU 6
|
||||
|
||||
.KrissPCMenuList1:
|
||||
.PlayersPCMenuList1:
|
||||
db 5
|
||||
db WITHDRAW_ITEM
|
||||
db DEPOSIT_ITEM
|
||||
@@ -278,7 +278,7 @@ LOG_OFF EQU 6
|
||||
db TURN_OFF
|
||||
db -1
|
||||
|
||||
.KrissPCMenuList2:
|
||||
.PlayersPCMenuList2:
|
||||
db 6
|
||||
db WITHDRAW_ITEM
|
||||
db DEPOSIT_ITEM
|
||||
@@ -305,7 +305,7 @@ UnknownText_0x157cc: ; 0x157cc
|
||||
db "@"
|
||||
; 0x157d1
|
||||
|
||||
KrisWithdrawItemMenu: ; 0x157d1
|
||||
PlayerWithdrawItemMenu: ; 0x157d1
|
||||
call LoadStandardMenuDataHeader
|
||||
farcall ClearPCItemScreen
|
||||
.loop
|
||||
@@ -370,18 +370,18 @@ KrisWithdrawItemMenu: ; 0x157d1
|
||||
ret
|
||||
|
||||
.HowManyText: ; 0x15850
|
||||
text_jump _KrissPCHowManyWithdrawText
|
||||
text_jump _PlayersPCHowManyWithdrawText
|
||||
db "@"
|
||||
|
||||
.WithdrewText: ; 0x15855
|
||||
text_jump _KrissPCWithdrewItemsText
|
||||
text_jump _PlayersPCWithdrewItemsText
|
||||
db "@"
|
||||
|
||||
.NoRoomText: ; 0x1585a
|
||||
text_jump _KrissPCNoRoomWithdrawText
|
||||
text_jump _PlayersPCNoRoomWithdrawText
|
||||
db "@"
|
||||
|
||||
KrisTossItemMenu: ; 0x1585f
|
||||
PlayerTossItemMenu: ; 0x1585f
|
||||
call LoadStandardMenuDataHeader
|
||||
farcall ClearPCItemScreen
|
||||
.loop
|
||||
@@ -397,8 +397,8 @@ KrisTossItemMenu: ; 0x1585f
|
||||
ret
|
||||
; 0x1587d
|
||||
|
||||
KrisDecorationMenu: ; 0x1587d
|
||||
farcall _KrisDecorationMenu
|
||||
PlayerDecorationMenu: ; 0x1587d
|
||||
farcall _PlayerDecorationMenu
|
||||
ld a, c
|
||||
and a
|
||||
ret z
|
||||
@@ -406,13 +406,13 @@ KrisDecorationMenu: ; 0x1587d
|
||||
ret
|
||||
; 0x15888
|
||||
|
||||
KrisLogOffMenu: ; 0x15888
|
||||
PlayerLogOffMenu: ; 0x15888
|
||||
xor a
|
||||
scf
|
||||
ret
|
||||
; 0x1588b
|
||||
|
||||
KrisDepositItemMenu: ; 0x1588b
|
||||
PlayerDepositItemMenu: ; 0x1588b
|
||||
call .CheckItemsInBag
|
||||
jr c, .nope
|
||||
call DisableSpriteUpdates
|
||||
@@ -532,19 +532,19 @@ KrisDepositItemMenu: ; 0x1588b
|
||||
ret
|
||||
|
||||
.HowManyText: ; 0x1596e
|
||||
text_jump _KrissPCHowManyDepositText
|
||||
text_jump _PlayersPCHowManyDepositText
|
||||
db "@"
|
||||
|
||||
.DepositText: ; 0x15973
|
||||
text_jump _KrissPCDepositItemsText
|
||||
text_jump _PlayersPCDepositItemsText
|
||||
db "@"
|
||||
|
||||
.NoRoomText: ; 0x15978
|
||||
text_jump _KrissPCNoRoomDepositText
|
||||
text_jump _PlayersPCNoRoomDepositText
|
||||
db "@"
|
||||
|
||||
KrisMailBoxMenu: ; 0x1597d
|
||||
farcall _KrisMailBoxMenu
|
||||
PlayerMailBoxMenu: ; 0x1597d
|
||||
farcall _PlayerMailBoxMenu
|
||||
xor a
|
||||
ret
|
||||
; 0x15985
|
||||
|
Reference in New Issue
Block a user