This is a usable item that should completely restore the user's vitality. I'm sorry if the code might be a little wrong, I tried my best to check it for errors.
[Spoiler]
<?php
//adapted to md world
$instr['title'] = "Elixir of Revitalization";
$instr['description'] = "
The most important requirement for an Elixir of Revitalization is a glass bottle with a stopper to
contain the finished product. Once all ingredients and the container have been collected, one must
combine the feather of an Angien, nightshade extract, liquid silver, and a branch of white willow.
The final step is to mix it all together using high heat(400 degrees), then to let it cool and
pour it into a glass bottle";
$instr['startline'] = array(
"Lets make an ".$instr['Elixir of Revitalization'] => $instr['Elixir of Revitalization'],
"Lets prepare an ".$instr['Elixir of Revitalization']."" => $instr['Elixir of Revitalization'],
"I want to make an ".$instr['Elixir of Revitalization']."" => $instr['Elixir of Revitalization'],
);
$instr['endline'] = array(
"Stop cooking" => 'end_failed',
"Let's stop" => 'end_failed',
"Thank you for helping me make an ".$instr['Elixir of Revitalization']." => 'end_success',
"This is going nowhere" => 'end_frustration',
"Wait, where am I?" => 'end_crazy',
);
$instr['step_replies'] = array(
"start" => 'starts making an Elixir of Revitalization',
"stop" => 'gives up making an Elixir of Revitalization',
"current" => 'currently prepares '.$instr['Elixir of Revitalization'],
"device" => 'cooking using the '.$item['Cauldron'],
"end_success" => 'YAY, WE'RE DONE!',
"end_frustration" => 'is upset and stops creating',
"end_failed" => 'stops creating, recipe failed',
"end_crazy" => 'starts throwing things around randomly, recipe failed',
"ingredients" => 'To prepare the Elixir of Revitalization you need: %s ',
"ingredients_status" => 'We are currently preparing %s. We still need: %s. (Already provided: %s)',
"steps_status" => 'We are currently done with these steps: %s. We still need perform these steps: %s
"1" => 'Adds Angien Feather'
"2" => 'Adds Nightshade Extract'
"3" => 'Adds the liquid silver'
"4" => 'Adds White Willow'
"5" => 'Mixes ingredients over high heat'
"6" => 'Lets it cool'
"7" => 'Pours solution into a glass bottle'
"random" => 'It's so beautiful!',
"random numbers" => 'picks a random number: '.rand(1,99),
"description" => $item['Cauldron'].': '.$item['Creates many items, including this Elixir of Revitalization.'],
"provide_Angien_Feather" => "%s offers the Angien Feather (%s)",
"provide_Nightshade_Extract" => "%s offers the Nightshade Extract (%s)",
"provide_Liquid_Silver" => "%s offers the Liquid Silver (%s)",
"provide_White_Willow" => "%s offers the White Willow (%s)",
"provide_Glass_Bottle" => "%s offers the Glass Bottle (%s)",
"provide_undefined_item" => "%s tries to offer something but its not perfectly clear what (%s)",
"provide_otherway_item" => "%s tries to offer something the wrong way (%s)",
"provide_existing_item" => "%s tries to offer something (%s) that is already provided",
"What is current recipe?" => 'current',
"Whose being created?" => 'current',
"What are you playing with?" => 'device',
"Tell me a random number" => 'random numbers',
"Describe the ".$item['item'] => 'description',
REMOVED BY MUR
//NOT IN USE YET
$instr['step_actions'] = array(
"1" => 'start='.$instr['title'],
"2" => '',
"3" => '',
"4" => 'wait=3600'
$instr['provide_ingredients'] = array(
"/I will provide the (.*)/is" => 'Angien Feather, Nightshade Extract, Liquid Silver, White Willow, Glass Bottle',
"/I will bring the (.*)/is" => 'Angien Feather, Nightshade Extract, Liquid Silver, White Willow, Glass Bottle',
"/I will donate the (.*)/is" => 'Angien Feather, Nightshade Extract, Liquid Silver, White Willow, Glass Bottle',
"/Here are the (.*)/is" => 'Angien Feather, Nightshade Extract, Liquid Silver, White Willow, Glass Bottle',
"/Here is a (.*)/is" => 'Angien Feather, Nightshade Extract, Liquid Silver, White Willow, Glass Bottle',
);
$instr['ingredients'] = "
Angien Feather=1;
Nightshade Extract=1;
Liquid Silver=1;
White Willow=1;
Glass Bottle=1;
";
?>
[/Spoiler]
[b]MUR: I included this recipe in the testing phase. I removed the steps from here, they were supposed to be hidden and i was supposed to have the complete recipe with steps and all by pm not here. I will assume that because i didnt say you can send it you didnt, so ok. Some of the ingrediends will need adjusting but for the test are ok.[/b]