Hi all,
I'm writing a beer brewing script, nothing special just some additional crafting possibilities for Alchemists...
So, this is the item which has to be crafted, resource is a new item which can be harvested ("i_bier_gerste", which is barley) and 30 Alchemy skill.
Quote:[ITEMDEF i_bier_malz]
NAME=Gerstenmalz
ID=i_gem_citrine_2
VALUE=2
WEIGHT=0.1
TYPE=t_normal
RESOURCES=1 i_bier_gerste
SKILLMAKE=Alchemy 30.0
ON=@CREATE
COLOR=004ac
This is my Skillmenu:
Skillmenu "sm_bier" is called by DClicking an item (a kettle for brewing) by "SRC.SKILLMENU sm_bier".
This menu has a subsection called "Bierzutaten" (which are ingredients) -> here the new item "i_bier_malz" (which is malted barley) should be crafted...
Quote:[SKILLMENU sm_bier]
Bier brauen
ON=i_wheat_sheaf Bierzutaten
SKILLMENU=sm_bier_zutaten
[SKILLMENU sm_bier_zutaten]
Bierzutaten
ON=i_bier_malz <name> (<resmake>)
MAKEITEM=i_bier_malz
The problem is, every time I try to open the skillmenu "sm_bier", I get a sysmessage "You can't make anything with what you have".
Alchemy is set to 100.0, I have 5 resources (one needed) in my BP...
So, I think sphere doesn't like beer brewers...