manwitch
Member
The part in Fezziks script that deals with dropping the recipe scroll for the 3 tiered cake, is commented.
public override void OnDeath(Container c)
{
base.OnDeath(c);
/* if (0.2 > Utility.RandomDouble())
{
c.DropItem(new RecipeScroll(603));
} */
}
So I'm wondering can I uncomment this? is the scroll in game? I have a player who is doing cooking bods and swears he has killed him over and over and never gets the scroll.
I can not find where the scroll scripts are to check if it's even in the game.
Any input is welcomed!
ETA- I figured out the command " [add recipescroll 603" worked to add the 3 tier cake recipe scroll to the world. So I am guessing that I can just uncomment the above snippet and it should drop.
Still wondering why it was commented in the first place??? any one??
public override void OnDeath(Container c)
{
base.OnDeath(c);
/* if (0.2 > Utility.RandomDouble())
{
c.DropItem(new RecipeScroll(603));
} */
}
So I'm wondering can I uncomment this? is the scroll in game? I have a player who is doing cooking bods and swears he has killed him over and over and never gets the scroll.
I can not find where the scroll scripts are to check if it's even in the game.
Any input is welcomed!
ETA- I figured out the command " [add recipescroll 603" worked to add the 3 tier cake recipe scroll to the world. So I am guessing that I can just uncomment the above snippet and it should drop.
Still wondering why it was commented in the first place??? any one??
Last edited: