
* Fixes #4708. * kRO Changelog: http://ro.gnjoy.com/news/update/View.asp?seq=243&curpage=1 Thanks to @ecdarreola, @Litro, @Haydrich, and @LordWhiplash!
22 lines
587 B
Plaintext
22 lines
587 B
Plaintext
// Item Stacking Restriction File
|
|
// Prevents an item to be stacked more than x times in given
|
|
// inventory types. Generally used by 3rd class related skill items.
|
|
//
|
|
// Structure of Database:
|
|
// ItemID,MaxStackAmount,Type
|
|
//
|
|
// MaxStackAmount:
|
|
// Stack limit for the item. Use 0 to disable a restriction.
|
|
//
|
|
// Type mask values:
|
|
// &1: Character inventory restriction
|
|
// &2: Character cart restriction
|
|
// &4: Account storage restriction
|
|
// &8: Guild storage restriction
|
|
//
|
|
// Example:
|
|
// 512,4,12 // Will not allow more than 4 Apples in storages.
|
|
|
|
// Arch Bishop
|
|
12333,3,1 // Ancilla
|