ServUO Version
Publish 57
Ultima Expansion
Endless Journey
Wondering if anyone has made any quests using the distillation system? I wanted something I can go off of as I'm not sure how item turn in would work since the barrels of liquors are all the same item basically so how would you detect what's "inside" the barrel?
 

This has wine crafting / brewing I do believe.
 
The LiquorBarrel class has an m_Liquor property that should be able to be used as a qualifier. It holds a Liquor enum with a Liquor accessor, so something like:

Code:
if (barrel.Liquor == Liquor.Whiskey)
{
    //Accept
}
else
{
    //Deny
}

1649094362090.png

1649094425418.png
 
Back