Hello, I'm fooling around with vendors and what items they stock.

In the GenericBuyInfo method, it refers to one of its arguments to a typeID. How does one determine what a typeID is?

The file reference is SBCook.cs in the vendorInfo folder line #61

This.Add(new GenericBuyInfo(typeof(FlourSifter),2, 20, 0x103X, 0));

The typeID is : 2
 
I think the breakdown is as follows.
(typeof = type type
(FlourSifter) = string name
2 = int price
20 = int amount
0x103x = int ItemID
0 = int hue
 
Back