void Makemeat (int nTotal, object oPC, object oMeat); void Makedragon (int nTotal, object oPC, object oMeat); void main() { object oMeat; object oPC; int nIntbonus; int nRoll; int nTotal; if (GetInventoryDisturbType()==INVENTORY_DISTURB_TYPE_ADDED) { oPC=GetLastDisturbed(); if (!GetIsObjectValid(oPC)||!GetIsPC(oPC)) { return; } oMeat=GetInventoryDisturbItem(); if (GetTag(oMeat)=="jw_dragon_meat") { AssignCommand(oPC,SetFacingPoint(GetPosition(OBJECT_SELF))); AssignCommand(oPC,PlayAnimation(ANIMATION_LOOPING_GET_LOW,1.0,5.0)); AssignCommand(oPC,FloatingTextStringOnCreature("Cooking",oPC)); PlaySound("al_cv_firesmldr1"); nIntbonus=GetAbilityModifier(ABILITY_INTELLIGENCE,oPC)+GetSkillRank(SKILL_LORE,oPC); nRoll=d20(1); nTotal=nRoll+nIntbonus; SetLocalInt(oPC,"cooking",1); AssignCommand(GetNearestObjectByTag("jw_fire_effect"),PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); DelayCommand(0.9,RecomputeStaticLighting(GetArea(OBJECT_SELF))); DelayCommand(5.0,SendMessageToPC(oPC,"Rolled "+IntToString(nRoll)+" + lore and intelligence bonus "+IntToString(nIntbonus)+" = "+IntToString(nTotal)+" vs minimum DC 15")); DelayCommand(5.0, Makedragon ( nTotal, oPC, oMeat)); return; } if (GetTag(oMeat)!="jw_meat"&&GetTag(oMeat)!="jw_berry") { return; } AssignCommand(oPC,SetFacingPoint(GetPosition(OBJECT_SELF))); AssignCommand(oPC,PlayAnimation(ANIMATION_LOOPING_GET_LOW,1.0,5.0)); AssignCommand(oPC,FloatingTextStringOnCreature("Cooking",oPC)); PlaySound("al_cv_firesmldr1"); nIntbonus=GetAbilityModifier(ABILITY_INTELLIGENCE,oPC)+GetSkillRank(SKILL_LORE,oPC); nRoll=d20(1); nTotal=nRoll+nIntbonus; SetLocalInt(oPC,"cooking",1); AssignCommand(GetNearestObjectByTag("jw_fire_effect"),PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE)); DelayCommand(0.9,RecomputeStaticLighting(GetArea(OBJECT_SELF))); DelayCommand(5.0,SendMessageToPC(oPC,"Rolled "+IntToString(nRoll)+" + lore and intelligence bonus "+IntToString(nIntbonus)+" = "+IntToString(nTotal)+" vs minimum DC 9")); DelayCommand(5.0, Makemeat ( nTotal, oPC, oMeat)); } } void Makemeat (int nTotal, object oPC, object oMeat) { if (nTotal<9) { SendMessageToPC(oPC,"The food is ruined"); DestroyObject(oMeat); SetLocalInt(oPC,"cooking",0); AssignCommand(GetNearestObjectByTag("jw_fire_effect"),PlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); DelayCommand(1.2,RecomputeStaticLighting(GetArea(OBJECT_SELF))); return; } if (nTotal<14) { SendMessageToPC(oPC,"You don't do the best job of cooking it, but you create an edible meal."); DestroyObject(oMeat); CreateItemOnObject("jw_food1",oPC); SetLocalInt(oPC,"cooking",0); AssignCommand(GetNearestObjectByTag("jw_fire_effect"),PlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); DelayCommand(1.2,RecomputeStaticLighting(GetArea(OBJECT_SELF))); return; } if (nTotal<18) { SendMessageToPC(oPC,"You're not a bad cook and make a meal that will last you some time."); DestroyObject(oMeat); CreateItemOnObject("jw_food2",oPC); SetLocalInt(oPC,"cooking",0); AssignCommand(GetNearestObjectByTag("jw_fire_effect"),PlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); DelayCommand(1.2,RecomputeStaticLighting(GetArea(OBJECT_SELF))); return; } SendMessageToPC(oPC,"You really know what you're doing and create some fine food."); DestroyObject(oMeat); CreateItemOnObject("jw_food3",oPC); SetLocalInt(oPC,"cooking",0); AssignCommand(GetNearestObjectByTag("jw_fire_effect"),PlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE)); DelayCommand(1.2,RecomputeStaticLighting(GetArea(OBJECT_SELF))); return; } void Makedragon (int nTotal, object oPC, object oMeat) { if (nTotal<15) { SendMessageToPC(oPC,"The meat is ruined"); DestroyObject(oMeat); SetLocalInt(oPC,"cooking",0); return; } { SendMessageToPC(oPC,"This meat is now fit to eat."); DestroyObject(oMeat); CreateItemOnObject("jw_dragon_potion",oPC); SetLocalInt(oPC,"cooking",0); return; } }