Bonaccorso
Member
I'm trying to add an item BottleOfLiquor from \Scripts\Services\New Magincia\Distillation\Items to Waiter vendor with a line:
Add(new BeverageBuyInfo(typeof(BottleOfLiquor), Liquor.Bourbon, 7, 20, 0x99B, 0));
but I get two errors at once:
1. that the type or namespace BottleOfLiquor can't be found
2. that it's not a vaild property for Liquor, despite with [props i can set this value :-(
I tried removing the condition Liquor.Bourbon but still get the type or namespace error.
Add(new BeverageBuyInfo(typeof(BottleOfLiquor), Liquor.Bourbon, 7, 20, 0x99B, 0));
but I get two errors at once:
1. that the type or namespace BottleOfLiquor can't be found
2. that it's not a vaild property for Liquor, despite with [props i can set this value :-(
I tried removing the condition Liquor.Bourbon but still get the type or namespace error.