#include "en5_misc" #include "en5_treasure" void CreateMiscHealingKit(object oTarget, int iItemLevel); void CreateMiscPotion(object oTarget, int iItemLevel); void CreateMiscJewel(object oTarget, int iItemLevel); void CreateMiscGem(object oTarget, int iItemLevel); void CreateMiscProjectile(object oTarget,int iLevel); void GiveSpecialItems(); void CreateAmmo(object oTarget, int iItemLevel); void main() { object oMob; int iItemLevel; int iRandom; int iRacialType; int iLevel; int iBoss; int iGoldHigh; int iGoldMedium; int iGoldLow; int iHealingKit; int iPotion; int iGem; int iJewel; int iProjectile; int iMagic; int iAmmo; int iItems; int iMagicLevel; oMob=OBJECT_SELF; iLevel=GetLocalInt(oMob,"EN5_iLevel"); iBoss=GetLocalInt(oMob,"EN5_iBoss"); iItemLevel=GetItemLevel(iLevel); iRacialType=GetRacialType(oMob); iGoldHigh=0; iGoldMedium=0; iGoldLow=0; iHealingKit=0; iPotion=0; iGem=0; iJewel=0; iProjectile=0; iMagic=0; iAmmo=0; iItems=0; if (iRacialType == RACIAL_TYPE_UNDEAD || iRacialType == RACIAL_TYPE_SHAPECHANGER) { iItems=1; if (iBoss==3) { iGoldHigh=0; iGoldMedium=0; iGoldLow=0; iHealingKit=0; iPotion=20; iGem=50; iJewel=25; iProjectile=0; iMagic=100; iAmmo=1; } else if (iBoss==1 || iBoss==2) { iGoldHigh=0; iGoldMedium=0; iGoldLow=0; iHealingKit=0; iPotion=10; iGem=40; iJewel=15; iProjectile=0; iMagic=iLevel/10+10; iAmmo=1; } else if (iBoss==0) { iGoldHigh=0; iGoldMedium=0; iGoldLow=0; iHealingKit=0; iPotion=5; iGem=20; iJewel=10; iProjectile=0; iMagic=iLevel/10; if (iLevel>4 && iMagic==0) iMagic=1; iAmmo=1; } } if (iRacialType == RACIAL_TYPE_DRAGON) { iItems=1; if (iBoss==3) { iGoldHigh=90; iGoldMedium=10; iGoldLow=1; iHealingKit=0; iPotion=20; iGem=50; iJewel=50; iProjectile=0; iMagic=100; } else if (iBoss==1 || iBoss==2) { iGoldHigh=50; iGoldMedium=30; iGoldLow=20; iHealingKit=0; iPotion=10; iGem=25; iJewel=25; iProjectile=0; iMagic=iLevel/10+10; } else if (iBoss==0) { iGoldHigh=20; iGoldMedium=30; iGoldLow=50; iHealingKit=0; iPotion=5; iGem=15; iJewel=15; iProjectile=0; iMagic=iLevel/10; if (iLevel>4 && iMagic==0) iMagic=1; } } if (iRacialType == RACIAL_TYPE_OUTSIDER) { iItems=1; if (iBoss==3) { iGoldHigh=90; iGoldMedium=10; iGoldLow=1; iHealingKit=0; iPotion=20; iGem=50; iJewel=50; iProjectile=0; iMagic=100; } else if (iBoss==1 || iBoss==2) { iGoldHigh=50; iGoldMedium=30; iGoldLow=20; iHealingKit=0; iPotion=10; iGem=25; iJewel=25; iProjectile=0; iMagic=iLevel/10+10; } else if (iBoss==0) { iGoldHigh=10; iGoldMedium=10; iGoldLow=10; iHealingKit=0; iPotion=5; iGem=25; iJewel=10; iProjectile=0; iMagic=iLevel/10; if (iLevel>4 && iMagic==0) iMagic=1; } } if (iRacialType == RACIAL_TYPE_DWARF || iRacialType ==RACIAL_TYPE_ELF || iRacialType == RACIAL_TYPE_FEY || iRacialType ==RACIAL_TYPE_GIANT || iRacialType == RACIAL_TYPE_GNOME || iRacialType == RACIAL_TYPE_HALFELF || iRacialType == RACIAL_TYPE_HALFLING || iRacialType == RACIAL_TYPE_HALFORC || iRacialType == RACIAL_TYPE_HUMAN || iRacialType == RACIAL_TYPE_HUMANOID_GOBLINOID || iRacialType == RACIAL_TYPE_HUMANOID_MONSTROUS || iRacialType == RACIAL_TYPE_HUMANOID_ORC || iRacialType == RACIAL_TYPE_HUMANOID_REPTILIAN) { iItems=1; if (iBoss==3) { iGoldHigh=65; iGoldMedium=35; iGoldLow=1; iHealingKit=10; iPotion=15; iGem=15; iJewel=10; iProjectile=4; iMagic=100; iAmmo=5; } else if (iBoss==1 || iBoss==2) { iGoldHigh=15; iGoldMedium=30; iGoldLow=50; iHealingKit=5; iPotion=10; iGem=10; iJewel=10; iProjectile=3; iMagic=iLevel/10+10; iAmmo=3; } else if (iBoss==0) { iGoldHigh=5; iGoldMedium=15; iGoldLow=40; iHealingKit=2; iPotion=5; iGem=3; iJewel=1; iProjectile=1; iMagic=iLevel/10; iAmmo=1; if (iLevel>4 && iMagic==0) iMagic=1; } } if (iItems==1) { iMagicLevel = GetLocalInt(GetModule(),"MagicLevel"); if (iMagicLevel == 1) { iPotion=iPotion+2; iGoldHigh=iGoldHigh+2; if (iBoss==1 || iBoss==2) iMagic=iMagic + iMagic/2; if (iBoss==0 && iLevel>20) iMagic=iMagic+1; } if (iMagicLevel == 2) { iPotion=iPotion+3; iGoldHigh=iGoldHigh+5; iAmmo=iAmmo+1; if (iBoss==1 || iBoss==2) iMagic=iMagic *2; if (iBoss==0 && iLevel>5) iMagic=iMagic+1; } if (iMagicLevel == 3) { iPotion=iPotion+4; iGoldHigh=iGoldHigh+8; iAmmo=iAmmo+2; if (iBoss==1 || iBoss==2) iMagic=iMagic * 3; if (iBoss==0 && iLevel<21) iMagic=iMagic+1; if (iBoss==0 && iLevel>20) iMagic=iMagic+2; } } iRandom=Random(100); if (iRandom0) { if (iRandom 2 && Random(5)==0) { if (Random(2)==0) sTag="x2_it_acidbomb"; else sTag="x2_it_firebomb"; CreateItemOnObject(sTag, oTarget, 1); } else { sTag="X1_WMGRENADE00" + IntToString(Random(7)+1); CreateItemOnObject(sTag, oTarget, Random(4)+1); } } void CreateAmmo(object oTarget, int iItemLevel) { string sAmmo = ""; if (iItemLevel==1) // * 200 gp max { int nRandom = d3(); switch (nRandom) { case 1: sAmmo = "nw_wamar001"; break; case 2: sAmmo = "nw_wambo001"; break; case 3: sAmmo = "nw_wambu001"; break; } } else if (iItemLevel==2) // * 800 gp max { int nRandom = d6(); switch (nRandom) { case 1: sAmmo = "nw_wamar001"; break; case 2: sAmmo = "nw_wambo001"; break; case 3: sAmmo = "nw_wambu001"; break; case 4: sAmmo = "nw_wammar001"; break; case 5: sAmmo = "nw_wammbo001"; break; case 6: sAmmo = "nw_wammbo002"; break; } } else if (iItemLevel==3) // * - 2500 gp { int nRandom = d20(); switch (nRandom) { case 1: sAmmo = "nw_wamar001"; break; case 2: sAmmo = "nw_wambo001"; break; case 3: sAmmo = "nw_wambu001"; break; case 4: sAmmo = "nw_wammar001"; break; case 5: sAmmo = "nw_wammbo001"; break; case 6: sAmmo = "nw_wammbo002"; break; case 7: sAmmo = "nw_wammbo003"; break; case 8: sAmmo = "nw_wammbu002"; break; case 9: sAmmo = "nw_wammar002"; break; case 10: sAmmo = "nw_wammar001"; break; case 11: sAmmo = "nw_wammar003"; break; case 12: sAmmo = "nw_wammar004"; break; case 13: sAmmo = "nw_wammar005"; break; case 14: sAmmo = "nw_wammar006"; break; case 15: sAmmo = "nw_wammbo004"; break; case 16: sAmmo = "nw_wammbo005"; break; case 17: sAmmo = "nw_wammbu004"; break; case 18: sAmmo = "nw_wammbu005"; break; case 19: sAmmo = "nw_wammbu006"; break; case 20: sAmmo = "nw_wammbu007"; break; } } else { int nRandom = d20(); switch (nRandom) { case 1: sAmmo = "nw_wamar001"; break; case 2: sAmmo = "nw_wammbu001"; break; case 3: sAmmo = "nw_wammbu003"; break; case 4: sAmmo = "nw_wammar001"; break; case 5: sAmmo = "nw_wammbo001"; break; case 6: sAmmo = "nw_wammbo002"; break; case 7: sAmmo = "nw_wammbo003"; break; case 8: sAmmo = "nw_wammbu002"; break; case 9: sAmmo = "nw_wammar002"; break; case 10: sAmmo = "nw_wammar001"; break; case 11: sAmmo = "nw_wammar003"; break; case 12: sAmmo = "nw_wammar004"; break; case 13: sAmmo = "nw_wammar005"; break; case 14: sAmmo = "nw_wammar006"; break; case 15: sAmmo = "nw_wammbo004"; break; case 16: sAmmo = "nw_wammbo005"; break; case 17: sAmmo = "nw_wammbu004"; break; case 18: sAmmo = "nw_wammbu005"; break; case 19: sAmmo = "nw_wammbu006"; break; case 20: sAmmo = "nw_wammbu007"; break; } } //dbSpeak("ammo"); CreateItemOnObject(sAmmo, oTarget, Random(20) + 5); // create up to 30 of the specified ammo type }