first, you need to find recipenumber.
they are placed in craftsystem.
so, if you want to receive fieryblade's recipe, it must be placed in DefBlacksmith.cs
Now, you'll know exact number of item.
use this command
[add recipescroll (number)
command will generate a recipe scroll for fieryblade.
Int32 is a 32 bit real whole number, an integer. A signed int (which is what you will use 99% of the time) has a range of -2,147,483,648 to -2,147,483,647.
And unsigned int allows you to use the whole range of a 32bit number in the positive scale. The range being 0 to 4294967295.
Then there are longs which are 64bit numbers which are HUGE and also floats and doubles which are floating point numbers.