Destroyed Inventory Slots (markdown)

TurmoilToad 2019-09-18 08:28:54 -04:00
parent 56ab60fa49
commit 24f2c5608b

@ -1,240 +0,0 @@
## Server-recognized slots
### Equipment slots (worn)
* Charm = 0
* Ear1 = 1
* Head = 2
* Face = 3
* Ear2 = 4
* Neck = 5
* Shoulders = 6
* Arms = 7
* Back = 8
* Wrist1 = 9
* Wrist2 = 10
* Range = 11
* Hands = 12
* Primary = 13
* Secondary = 14
* Finger1 = 15
* Finger2 = 16
* Chest = 17
* Legs = 18
* Feet = 19
* Waist = 20
* PowerSource = 21
* Ammo = 22
### General slots (personal)
* General1 = 23
* General2 = 24
* General3 = 25
* General4 = 26
* General5 = 27
* General6 = 28
* General7 = 29
* General8 = 30
* General9 = 31
* General10 = 32
Bag slots in general inventory are:
* General1 : 251 -> 260
* General2 : 261 -> 270
* General3 : 271 -> 280
* General4 : 281 -> 290
* General5 : 291 -> 300
* General6 : 301 -> 310
* General7 : 311 -> 320
* General8 : 321 -> 330
* General9 : 331 -> 340
* General10 : 341 -> 350
### Cursor slot
* Cursor = 33
Bag slots in cursor inventory are:
* Cursor : 351 -> 360
### Tribute
Tribute items are slots 400 -> 404, these items are not visible, but are counted for stats/effects.
### Bank
Bank slots are 2000 -> 2023
Bags in the bank are:
* 2000 : 2031 -> 2040
* 2001 : 2041 -> 2050
* 2002 : 2051 -> 2060
* 2003 : 2061 -> 2070
* 2004 : 2071 -> 2080
* 2005 : 2081 -> 2090
* 2006 : 2091 -> 2100
* 2007 : 2101 -> 2110
* 2008 : 2111 -> 2120
* 2009 : 2121 -> 2130
* 2010 : 2131 -> 2140
* 2011 : 2141 -> 2150
* 2012 : 2151 -> 2160
* 2013 : 2161 -> 2170
* 2014 : 2171 -> 2180
* 2015 : 2181 -> 2190
* 2016 : 2191 -> 2200
* 2017 : 2201 -> 2210
* 2018 : 2211 -> 2220
* 2019 : 2221 -> 2230
* 2020 : 2231 -> 2240
* 2021 : 2241 -> 2250
* 2022 : 2251 -> 2260
* 2023 : 2261 -> 2270
### Shared Bank
Shared bank slots are 2500 and 2501
Note: These are stored in the sharedbank table, not the inventory table.
Bags in the shared bank are:
* 2500 : 2531 -> 2540
* 2501 : 2541 -> 2550
#### Note: Not all clients support all of the server-recognized slots. Care should be taken when attempting to hard-code slot values over the use of server-based free slot requests.
### Quest use references
* [[Perl|Perl Inventory Slot Identifiers]]
* [[Lua|Lua Constants]]
## Developer information on client-specific slot support
(in-work)
#### SoF Slots
### Equipped slots
(somebody should make this prettier some day)
* SLOT_CHARM= 0
* SLOT_EAR01= 1
* SLOT_HEAD= 2
* SLOT_FACE= 3
* SLOT_EAR02= 4
* SLOT_NECK= 5
* SLOT_SHOULDER= 6
* SLOT_ARMS= 7
* SLOT_BACK= 8
* SLOT_BRACER01= 9
* SLOT_BRACER02= 10
* SLOT_RANGE= 11
* SLOT_HANDS= 12
* SLOT_PRIMARY= 13
* SLOT_SECONDARY= 14
* SLOT_RING01= 15
* SLOT_RING02= 16
* SLOT_CHEST= 17
* SLOT_LEGS= 18
* SLOT_FEET= 19
* SLOT_WAIST= 20
* SLOT_POWERSOURCE= 21
* SLOT_AMMO= 22
### Inventory Slots
NOTE: Numbering for personal inventory goes top to bottom, then left to right
It's the opposite for inside bags: left to right, then top to bottom
Example:
inventory:containers:
* 1 51 2
* 2 63 4
* 3 75 6
* 4 87 8
*   9 10
### Personal Inventory
Personal inventory slots 23 through 30.
Bags in personal inventory are:
* 23: 262->271
* 24: 272->281
* 25: 282->291
* 26: 292->301
* 27: 302->311
* 28: 312->321
* 29: 322->331
* 30: 332->341
### Cursor
Cursor is slot 31, and the bag slots for the cursor are 342->351 (haven't confirmed slots inside bag on cursor for SoF yet).
### SoF Bank
Bank slots in SoF are 2000->2023
Bags in the bank are:
* 2000 2004 2008 2012 2016 2020
* 2001 2005 2009 2013 2017 2021
* 2002 2006 2010 2014 2018 2022
* 2003 2007 2011 2015 2019 2023
Slots inside those bags are:
Note: Other than the addition of the 8 new slots, the main bank slots are the same as Titanium, but slots inside bags are +1 to what Titanium uses.
* 2000 = 2032 - 2041
* 2001 = 2042 - 2051
* 2002 = 2052 - 2061
* 2003 = 2062 - 2071
* 2004 = 2072 - 2061
* 2005 = 2082 - 2091
* 2006 = 2092 - 2101
* 2007 = 2102 - 2111
* 2008 = 2112 - 2121
* 2009 = 2122 - 2131
* 2010 = 2132 - 2141
* 2011 = 2142 - 2151
* 2012 = 2152 - 2161
* 2013 = 2162 - 2171
* 2014 = 2172 - 2181
* 2015 = 2182 - 2191
* 8 New Bank Slots:
* 2016 = 2192 - 2201
* 2017 = 2202 - 2211
* 2018 = 2212 - 2221
* 2019 = 2222 - 2231
* 2020 = 2232 - 2241
* 2021 = 2242 - 2251
* 2022 = 2252 - 2261
* 2023 = 2262 - 2271
### SoF Shared Bank
Shared bank slots in SoF are 2500 and 2501
Note: These are the same as in Titanium, but the slots for inside bags are +1 to the ones in Titanium
Bags in the shared bank are:
* 2500 = 2532 - 2541
* 2501 = 2542 - 2551