From e6849481bf62bd9050c70496cd8d987736b97955 Mon Sep 17 00:00:00 2001 From: potato Date: Sat, 12 Sep 2026 21:48:06 -0500 Subject: [PATCH 1/3] Restored functionality to all(?) remaining deposit boxes --- .../kandarin/ardougne/east_ardougne.objs.toml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/data/area/kandarin/ardougne/east_ardougne.objs.toml b/data/area/kandarin/ardougne/east_ardougne.objs.toml index 06b5d126a4..4d02b161de 100644 --- a/data/area/kandarin/ardougne/east_ardougne.objs.toml +++ b/data/area/kandarin/ardougne/east_ardougne.objs.toml @@ -216,3 +216,31 @@ examine = "Handy for boarding the ship." [captain_barnaby_ship_ladder] id = 9745 examine = "A sturdy wooden ladder." + +[bank_deposit_box_east_ardougne] +id = 34755 +examine = "It lets you put the items into your bank." + +# I'm identifying each of the remaining deposit boxes, the final number representing their string ID. +# I'm adding the string ID to the examine text to let us know that it's a lost deposit box, and needs to be properly assigned +# To an area. +# This allows all deposit boxes to work functionally, even if they're not all properly identified. +[bank_deposit_box_6836] +id = 6836 +examine = "It lets you put the items into your bank. 6836" + +[bank_deposit_box_9398] +id = 9398 +examine = "It lets you put the items into your bank. 9398" + +[bank_deposit_box_20228] +id = 20228 +examine = "It lets you put the items into your bank. 20228" + +[bank_deposit_box_25937] +id = 25937 +examine = "It lets you put the items into your bank. 25937" + +[bank_deposit_box_39830] +id = 39830 +examine = "It lets you put the items into your bank. 39830" \ No newline at end of file From edc8485f099d7e512b1ee1891c63879bbad8dc71 Mon Sep 17 00:00:00 2001 From: potato Date: Sat, 12 Sep 2026 21:49:41 -0500 Subject: [PATCH 2/3] Changed comment --- data/area/kandarin/ardougne/east_ardougne.objs.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/data/area/kandarin/ardougne/east_ardougne.objs.toml b/data/area/kandarin/ardougne/east_ardougne.objs.toml index 4d02b161de..f0666d5b36 100644 --- a/data/area/kandarin/ardougne/east_ardougne.objs.toml +++ b/data/area/kandarin/ardougne/east_ardougne.objs.toml @@ -222,8 +222,7 @@ id = 34755 examine = "It lets you put the items into your bank." # I'm identifying each of the remaining deposit boxes, the final number representing their string ID. -# I'm adding the string ID to the examine text to let us know that it's a lost deposit box, and needs to be properly assigned -# To an area. +# I'm adding the string ID to the examine text to let us know that it's a lost deposit box, and needs to be properly assigned to an area. # This allows all deposit boxes to work functionally, even if they're not all properly identified. [bank_deposit_box_6836] id = 6836 From 38da591545e1c82e02768db1dcec291ef29d0bf5 Mon Sep 17 00:00:00 2001 From: GregHib Date: Mon, 14 Sep 2026 14:24:24 +0100 Subject: [PATCH 3/3] Add all deposit box names --- .../sandwich_lady/sandwich_lady.objs.toml | 3 +++ .../kandarin/ardougne/east_ardougne.objs.toml | 25 +------------------ .../seers_village/seers_village.objs.toml | 4 +++ .../misthalin/lumbridge/lumbridge.objs.toml | 6 ++++- .../barbarian_assault.objs.toml | 3 +++ .../stealing_creation.objs.toml | 3 +++ 6 files changed, 19 insertions(+), 25 deletions(-) create mode 100644 data/activity/event/random/sandwich_lady/sandwich_lady.objs.toml create mode 100644 data/minigame/barbarian_assault/barbarian_assault.objs.toml create mode 100644 data/minigame/stealing_creation/stealing_creation.objs.toml diff --git a/data/activity/event/random/sandwich_lady/sandwich_lady.objs.toml b/data/activity/event/random/sandwich_lady/sandwich_lady.objs.toml new file mode 100644 index 0000000000..dde235f92b --- /dev/null +++ b/data/activity/event/random/sandwich_lady/sandwich_lady.objs.toml @@ -0,0 +1,3 @@ +[bank_deposit_box_sandwich_lady_shop] +id = 6836 +examine = "Lets you put items into your bank." diff --git a/data/area/kandarin/ardougne/east_ardougne.objs.toml b/data/area/kandarin/ardougne/east_ardougne.objs.toml index f0666d5b36..1f21f93664 100644 --- a/data/area/kandarin/ardougne/east_ardougne.objs.toml +++ b/data/area/kandarin/ardougne/east_ardougne.objs.toml @@ -219,27 +219,4 @@ examine = "A sturdy wooden ladder." [bank_deposit_box_east_ardougne] id = 34755 -examine = "It lets you put the items into your bank." - -# I'm identifying each of the remaining deposit boxes, the final number representing their string ID. -# I'm adding the string ID to the examine text to let us know that it's a lost deposit box, and needs to be properly assigned to an area. -# This allows all deposit boxes to work functionally, even if they're not all properly identified. -[bank_deposit_box_6836] -id = 6836 -examine = "It lets you put the items into your bank. 6836" - -[bank_deposit_box_9398] -id = 9398 -examine = "It lets you put the items into your bank. 9398" - -[bank_deposit_box_20228] -id = 20228 -examine = "It lets you put the items into your bank. 20228" - -[bank_deposit_box_25937] -id = 25937 -examine = "It lets you put the items into your bank. 25937" - -[bank_deposit_box_39830] -id = 39830 -examine = "It lets you put the items into your bank. 39830" \ No newline at end of file +examine = "Lets you put items into your bank." diff --git a/data/area/kandarin/seers_village/seers_village.objs.toml b/data/area/kandarin/seers_village/seers_village.objs.toml index dd4b2ec036..a847d86a4a 100644 --- a/data/area/kandarin/seers_village/seers_village.objs.toml +++ b/data/area/kandarin/seers_village/seers_village.objs.toml @@ -5,3 +5,7 @@ examine = "The bank teller will serve you from here." [spinning_wheel_seers_village] id = 25824 examine = "Used for spinning thread." + +[bank_deposit_box_seers_village] +id = 25937 +examine = "Lets you put items into your bank." diff --git a/data/area/misthalin/lumbridge/lumbridge.objs.toml b/data/area/misthalin/lumbridge/lumbridge.objs.toml index ad6e7d9a94..e4f8dacfaf 100644 --- a/data/area/misthalin/lumbridge/lumbridge.objs.toml +++ b/data/area/misthalin/lumbridge/lumbridge.objs.toml @@ -138,10 +138,14 @@ examine = "A table used by bank customers." id = 45504 examine = "'Pay back all your debts by borrowing more money from us!' Clever." -[bank_deposit_box] +[bank_deposit_box_falador_lumbridge] id = 36788 examine = "It lets you put the items into your bank." +[bank_deposit_box] +id = 9398 +examine = "Lets you put items into your bank." + [lumbridge_closed_bank_booth] id = 36787 examine = "This booth is closed." diff --git a/data/minigame/barbarian_assault/barbarian_assault.objs.toml b/data/minigame/barbarian_assault/barbarian_assault.objs.toml new file mode 100644 index 0000000000..cba37ac506 --- /dev/null +++ b/data/minigame/barbarian_assault/barbarian_assault.objs.toml @@ -0,0 +1,3 @@ +[bank_deposit_box_barbarian_assault] +id = 20228 +examine = "Lets you put items into your bank." diff --git a/data/minigame/stealing_creation/stealing_creation.objs.toml b/data/minigame/stealing_creation/stealing_creation.objs.toml new file mode 100644 index 0000000000..97ea1aea86 --- /dev/null +++ b/data/minigame/stealing_creation/stealing_creation.objs.toml @@ -0,0 +1,3 @@ +[bank_deposit_box_stealing_creation] +id = 39830 +examine = "Lets you put items into your bank."