Bank: Difference between revisions

(User:Draedon: Reviewed page and updated version to 1.1. Added the fact that locked chests/containers can't be "double-clicked/tapped to open" if they are locked.)
 
(14 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{V|1.1}}
{{V|1.2.2}}
[[File:Bank Slot (upgrade).svg|thumb|right|Bank]]
[[File:Bank Slot (upgrade).svg|thumb|right|Bank]]
The '''{{PAGENAME}}''' is where the player's [[Table of Items|items]] are stored.
The '''{{PAGENAME}}''' is where the player's [[Table of Items|items]] are stored.


The bank can be sorted using the "Sort" button or by clicking and dragging items (long press and drag on mobile). The sort order used may be changed by first clicking the gear tab within the rightmost panel, then selecting an option within the "Set Default Bank Sorting" drop-down.
The bank can be sorted using the "Sort" button or by clicking and dragging items (long press and drag on mobile). The sort order used may be changed by first clicking the gear tab within the rightmost panel, then selecting an option within the "Set Default Bank Sorting" drop-down.
Items can be moved between tabs by either dragging each item onto the desired tab or by using the "Move Items to new Tab" button to move many items at once. Any new items that haven't been found previously will be highlighted with a green glow and will appear in the first tab by default.


The "Search Bank" input can be used to look for specific items. When searching, the current tab will display only matching items while any inactive tabs containing items found by the search will be highlighted.
The "Search Bank" input can be used to look for specific items. When searching, the current tab will display only matching items while any inactive tabs containing items found by the search will be highlighted.
Line 12: Line 10:
* All items have the option to be sold for [[GP]]. The number to be sold can be changed by either clicking on the quantity slider, typing the desired quantity, or clicking on "All but 1"/"All". Many items can be sold at once using the "Toggle Sell Mode" button near the top of the bank.
* All items have the option to be sold for [[GP]]. The number to be sold can be changed by either clicking on the quantity slider, typing the desired quantity, or clicking on "All but 1"/"All". Many items can be sold at once using the "Toggle Sell Mode" button near the top of the bank.
* Locking prevents items from accidentally getting sold, prevents accidental burying of [[Prayer#Bones|Bones]], and prevents accidental opening of [[Chest Loot Tables|Chests and containers]] through double-clicking/tapping them in the bank. This can be done by clicking the lock icon while an item is selected. To sell locked items, unlock them first.
* Locking prevents items from accidentally getting sold, prevents accidental burying of [[Prayer#Bones|Bones]], and prevents accidental opening of [[Chest Loot Tables|Chests and containers]] through double-clicking/tapping them in the bank. This can be done by clicking the lock icon while an item is selected. To sell locked items, unlock them first.
* [[Equipment#Weapons|Weapons]], [[Equipment#Helmets|armour]] and [[food]] can be equipped for use in [[combat]], or to assist with skills. Double clicking an item will also equip it to the active equipment set.
* [[Weapons]], [[Platebodies|armour]] and [[food]] can be equipped for use in [[combat]], or to assist with skills. Double clicking an item will also equip it to the active equipment set.
* [[Prayer#Bones|Bones]] can be buried to gain [[prayer]] points, note that bones must be unlocked before they can be buried.
* [[Prayer#Bones|Bones]] can be buried to gain [[prayer]] points, note that bones must be unlocked before they can be buried.
* [[Mastery Tokens]] give 0.1% of the maximum [[Mastery#The Mastery Pool|mastery pool]] XP to the mastery pool of the corresponding skill when they are claimed. They cannot be used if the mastery pool is full.
* [[Mastery Tokens]] give 0.1% of the maximum [[Mastery#The Mastery Pool|mastery pool]] XP to the mastery pool of the corresponding skill when they are claimed. They cannot be used if the mastery pool is full.
Line 18: Line 16:
* Certain items can be [[Upgrading Items|upgraded]] into other items.
* Certain items can be [[Upgrading Items|upgraded]] into other items.


==Categories==
== Bank Slots ==
At the start of the game only 20 bank slots are available, but the player can purchase more bank slots from the [[Shop]]. The cost of bank slots increases after every purchase to a cap of {{GP|5000000}}, which occurs when 118 bank slots have been purchased. In addition, {{ItemIcon|Bank Slot Token|Bank Slot Tokens}} can be used to increase your bank capacity by 1, using these tokens does not increase the cost of bank slots purchased from the [[Shop]]. [[Hardcore|Hardcore Mode]] has a {{HardcoreBankMax}} bank slot limit from the Shop, but {{ItemIcon|Bank Slot Token|Bank Slot Tokens}} can still be used.
 
{| class="wikitable sortable"
!Upgrade
!Name
!Description
!Cost
|-
| style ="text-align: left;" |[[File:Bank Slot (upgrade).svg|50px|center]]
| style ="text-align: left;" |Bank Slot
| style ="text-align: right;" |+1 Bank Capacity
| style ="text-align: right;" |[[File:Coins.svg|25px|middle]] <math>C_b</math>*
|}
 
<nowiki>*</nowiki>The cost of bank slots, <math> C_b </math> increases with the number of slots purchased, <math> n </math> by:<br>
<math>C_b = \left \lfloor \frac{132\,728\,500 \times (n+2)}{142\,015^{\left (\frac{163}{122+n} \right )}}\right \rfloor</math>
 
Note that the denominator function is 142,015 raised to the exponent of <math>\frac{163}{122 + n}</math>, not a multiplication.
 
{{Template:BankCostTable}}
 
After reaching the limit, each new bank slot will cost {{GP|5000000}}.
 
== Bank Tabs ==
The player starts with 12 bank tabs, but can get up to {{#expr:12 + {{PurchaseStat|Extra Bank Tab|buyLimit}}}} tabs by purchasing more from the {{Icon|Shop}} for {{PurchaseStat|Extra Bank Tab|cost}} each. Purchasing a bank tab '''will not''' increase your bank slots.
 
Items can be moved between tabs by either dragging each item onto the desired tab or by using the "Move Items to new Tab" button to move many items at once. Any new items that haven't been found previously will be highlighted with a green glow and will appear in the first tab by default.
 
By default, tabs display the icon of the first item in said tab, but this can be changed by pressing the gear icon on any item, and selecting a tab from the drop-down list. You don't need to have the item in the same tab for it to display the selected icon.
 
== Categories ==
In addition to searching for items by name, it is possible to search by category. The list of categories is as follows:
In addition to searching for items by name, it is possible to search by category. The list of categories is as follows:


<!-- Generated using the following JS:
<!-- Generated using the following JS:
var bankSearchCat = new Set();
var bankSearchCat = new Set();
items.forEach((i, idx) => {
game.items.forEach((i, idx) => {
if (i.category !== undefined) bankSearchCat.add(i.category);
if (i.category !== undefined && i.category !== 'TODO') {
if (i.type !== undefined) bankSearchCat.add(i.type);
const s = i.category.split(":");
bankSearchCat.add(s[s.length - 1]);
}
if (i.type !== undefined && i.type !== 'TODO') {
const s = i.type.split(":");
bankSearchCat.add(s[s.length - 1]);
}
});
});
console.log('* ' + Array.from(bankSearchCat).sort((a, b) => a > b).join('\n\r* '));
console.log('* ' + Array.from(bankSearchCat).sort((a, b) => a > b).join('\n* '));
--><div style="column-count: 3">
--><div style="column-count: 3">
* Ammo
* Ammo
Line 54: Line 89:
* Dungeons
* Dungeons
* Easter
* Easter
* Enchanted Urn
* Equipment
* Equipment
* Essence
* Events
* Events
* Familiar
* Familiar
* Farming
* Farming
* Firemaking
* Fish
* Fish
* Fishing
* Fishing
Line 68: Line 106:
* General
* General
* Golbin Raid
* Golbin Raid
* Hats
* Helmet
* Helmet
* Herb
* Herb
Line 77: Line 116:
* Leather
* Leather
* Lemon
* Lemon
* Lime
* Limes
* Logs
* Logs
* Magic Armour
* Magic Armour
Line 95: Line 136:
* Ranged Weapon
* Ranged Weapon
* Raw Fish
* Raw Fish
* Resource
* Ring
* Ring
* Rune
* Rune
Line 109: Line 151:
* Special Ring
* Special Ring
* Summoning
* Summoning
* Superior Gem
* Thieving
* Thieving
* Token
* Token
* Township
* Trimmed Armour
* Trimmed Armour
* Unstrung Bows
* Unstrung Bows
* Urn
* Weapon
* Weapon
* Woodcutting</div>
* Woodcutting</div>
== Bank Slots ==
At the start of the game only 12 bank slots are available, but the player can purchase more bank slots from the [[Shop]]. The cost of bank slots increases after every purchase to a cap of {{GP|5000000}}, which occurs when 118 bank slots have been purchased. In addition, {{ItemIcon|Bank Slot Token|Bank Slot Tokens}} can be used to increase your bank capacity by 1, using these tokens does not increase the cost of bank slots purchased from the [[Shop]]. [[Hardcore|Hardcore Mode]] has a {{HardcoreBankMax}} bank slot limit from the Shop, but {{ItemIcon|Bank Slot Token|Bank Slot Tokens}} can still be used.
[[Category:Manual Tables]]
{| class="wikitable sortable"
!Upgrade
!Name
!Description
!Cost
|-
| style ="text-align: left;" |[[File:Bank Slot (upgrade).svg|50px|center]]
| style ="text-align: left;" |Bank Slot
| style ="text-align: right;" |+1 Bank Capacity
| style ="text-align: right;" |[[File:Coins.svg|25px|middle]] <math>C_b</math>*
|}
<nowiki>*</nowiki>The cost of bank slots, <math> C_b </math> increases with the number of slots purchased, <math> n </math> by:<br>
<math>C_b = \left \lfloor \frac{132\,728\,500 \times (n+2)}{142\,015^{\left (\frac{163}{122+n} \right )}}\right \rfloor</math>
Note that the denominator function is 142,015 raised to the exponent of <math>\frac{163}{122 + n}</math>, not a multiplication.
{{:Bank/CostTable}}


{{Menu}}
{{Menu}}
915

edits