Hi,
I have a script here that has an item, a crystal, it is an addon. I want to do:

[add crystal 500

but it will only let me do
[add crystal

Where in the code would be the setting for that?
 
should look something like this one
[Constructable]
public CrystalShards(int amount)
: base(0x5738)
{
this.Stackable = true;
this.Amount = amount;
}
or

[Constructable]
public Gold(int amount)
: base(0xEED)
{
this.Stackable = true;
this.Amount = amount;
}
[doublepost=1551994981][/doublepost]Actually since it is an addon I am not sure it can be stackable.. should have to say [add crystaladdon
 
Back