In my grand plan to rewrite alchemy, I am removing the entire original skill menu and replacing it with recipes gumps. Basically, you create the potions off the "recipe gump" instead of the skill menu.
I completely disabled the normal alchemy skillmenu, and the only way to trigger MAKEITEM is via the recipe scrolls I created. But, I'm having one small problem.
When the player moves away from the recipe item, I'd like the gump to close (Like how containers do when you walk away from them). Because I can't get the gump to close when someone leaves behind the recipe, it's allowing players to just leave the gump open. Assuming they never close the gump, the recipe itself is no longer required in the process and can be left behind.
To get around that, I have to do a RESTEST to see if they have the recipe on their person. That works great! But I'd like people to "read" recipes locked down in the alchemy stores or in other player's houses so they can "borrow" the recipes assuming they stay in the area while they're mixing. But, I can't do that because they can DClick the scroll and run off, and continue to make the potions as long as they never close the gump.
Here's the current gump, with the RESTEST to check if they have the recipe on their person.
Code:
[ITEMDEF i_alchemy_recipe_weak_poison]
ID=I_MAP_ROLLED
VALUE=50
NAME=Weak Poison Recipe
WEIGHT=1
CATEGORY=Infinity Items
SUBSECTION=Alchemy Recipes
DESCRIPTION=Weak Poison
ON=@DCLICK
SRC.DIALOG d_alchemy_recipe_weak_poison
RETURN 1
[DIALOG d_alchemy_recipe_weak_poison]
0,0
page 0
resizepic 34 59 9380 259 281
button 251 291 30009 30008 1 0 1
text 69 100 984 0
text 77 143 984 1
text 77 163 100 2
text 224 288 58 3
text 69 288 984 4
gumppic 250 95 1227
gumppic 58 125 2091
gumppic 58 273 2091
gumppic 60 145 2087
gumppic 60 165 2087
text 77 183 58 5
gumppic 60 185 2087
[DIALOG d_alchemy_recipe_weak_poison text]
Weak Poison
Mortar and Pestle
Small Bottle of Water
Mix
Skill Required: 15
3 Nightshade
[DIALOG d_alchemy_recipe_weak_poison button]
ON=1
// Button 1
//
IF (<SRC.ALCHEMY> < 15.0)
SRC.SYSMESSAGENEG You lack the skill to make this poison.
DIALOG d_alchemy_recipe_weak_poison
ELSE
IF (<SRC.RESTEST i_mortar_pestle>) && (<SRC.RESTEST 3 i_reag_nightshade>) && (<SRC.RESTEST 1 i_bottle_small_water>) && (<SRC.RESTEST 1 i_alchemy_recipe_weak_poison>)
SRC.EMOTE starts making a Weak Poison
SRC.SOUND 578
MAKEITEM=i_potion_weak_poison
DIALOG d_alchemy_recipe_weak_poison
ELSE
SRC.SYSMESSAGENEG you don't have all the required materials!
DIALOG d_alchemy_recipe_weak_poison
ENDIF
RETURN 1
Attached is a screenshot of the gump.
![[Image: 4_Logo.png]](http://aetharia.com/public/style_images/4_Logo.png)
An MMORPG based on the Ultima Online engine.
Completely Custom Map, GUI, AI, Combat, Skills, Crafts, Art, Music and so much more.
http://aetharia.com - Home of Ambition!