Frame 1
setProperty(this.ItemTip, _visible , false);
_global.movement = 0;
_global.PlayerGold = 2500;
_global.SelectedInventoryItem = 0;
_global.inventory = 0;
_global.ItemTip_Open = function (Item) {
_global.SetIcon(Item, _root.ItemTip.Item);
_root.ItemTip.test2.text = Item;
ItemTip._visible = true;
ItemTip.gotoAndPlay(2);
};
_global.ItemTip_Close = function () {
ItemTip._visible = false;
};
_global.SetIcon = function (Item, Path) {
if (Item == "0000") {
Path.ItemIcon.gotoAndStop(1);
Path._visible = false;
}
if (Item > "0000") {
Path._visible = true;
}
if (Item == "1001") {
Path.ItemIcon.gotoAndStop(1);
Path.ItemName.text = "Boots of Speed";
Path.ItemGold.text = "250";
Path.ItemDescription.text = "Increases bearer's movement speed by 30";
}
if (Item == "1004") {
Path.ItemIcon.gotoAndStop(2);
Path.ItemName.text = "Faerie Charm";
Path.ItemGold.text = "180";
Path.ItemDescription.text = "Increases mana regeneration rate by 0.6.";
}
if (Item == "1005") {
Path.ItemIcon.gotoAndStop(3);
Path.ItemName.text = "Meki Pendant";
Path.ItemGold.text = "460";
Path.ItemDescription.text = "Increases mana regeneration rate by 1.2.";
}
if (Item == "1006") {
Path.ItemIcon.gotoAndStop(4);
Path.ItemName.text = "Rejuvenation Bead";
Path.ItemGold.text = "185";
Path.ItemDescription.text = "Regenerates 2 HP per second.";
}
if (Item == "1007") {
Path.ItemIcon.gotoAndStop(5);
Path.ItemName.text = "Regrowth Pendant";
Path.ItemGold.text = "430";
Path.ItemDescription.text = "Regenerates 4 HP per second.";
}
if (Item == "1008") {
Path.ItemIcon.gotoAndStop(6);
Path.ItemName.text = "Sash of Valor";
Path.ItemGold.text = "80";
Path.ItemDescription.text = "Adds 3 damage and 50 health.";
}
if (Item == "1010") {
Path.ItemIcon.gotoAndStop(7);
Path.ItemName.text = "Belt of Brute Strength";
Path.ItemGold.text = "500";
Path.ItemDescription.text = "Adds 9 damage and 150 health.";
}
if (Item == "1011") {
Path.ItemIcon.gotoAndStop(8);
Path.ItemName.text = "Mighty Waistband of the Reaver";
Path.ItemGold.text = "1200";
Path.ItemDescription.text = "Adds 18 damage and 300 health.";
}
if (Item == "1012") {
Path.ItemIcon.gotoAndStop(9);
Path.ItemName.text = "Clever Hoop";
Path.ItemGold.text = "80";
Path.ItemDescription.text = "Adds 4 spell damage and 30 mana.";
}
if (Item == "1014") {
Path.ItemIcon.gotoAndStop(10);
Path.ItemName.text = "Sage's Ring";
Path.ItemGold.text = "500";
Path.ItemDescription.text = "Adds 12 spell damage and 120 mana.";
}
if (Item == "1015") {
Path.ItemIcon.gotoAndStop(11);
Path.ItemName.text = "Brilliant Circle of the Magi";
Path.ItemGold.text = "1200";
Path.ItemDescription.text = "Adds 24 spell damage and 240 mana.";
}
if (Item == "1018") {
Path.ItemIcon.gotoAndStop(12);
Path.ItemName.text = "Cloak of Agility";
Path.ItemGold.text = "560";
Path.ItemDescription.text = "Adds 4% critical strike and 15% increased attack rate.";
}
if (Item == "1019") {
Path.ItemIcon.gotoAndStop(13);
Path.ItemName.text = "Sleek Wrap of Celerity";
Path.ItemGold.text = "1200";
Path.ItemDescription.text = "Increases critical strike rate by 9% and attack rate by 30%.";
}
if (Item == "1020") {
Path.ItemIcon.gotoAndStop(14);
Path.ItemName.text = "Glowing Orb";
Path.ItemGold.text = "80";
Path.ItemDescription.text = "Adds 40 health and 30 mana.";
}
if (Item == "1022") {
Path.ItemIcon.gotoAndStop(15);
Path.ItemName.text = "Ancestral Pendant";
Path.ItemGold.text = "300";
Path.ItemDescription.text = "Increases health by 100 and mana by 60.";
}
if (Item == "1024") {
Path.ItemIcon.gotoAndStop(16);
Path.ItemName.text = "Byfire Bracer";
Path.ItemGold.text = "400";
Path.ItemDescription.text = "Adds 100 health and 3 armor.";
}
if (Item == "1026") {
Path.ItemIcon.gotoAndStop(17);
Path.ItemName.text = "Blasting Band";
Path.ItemGold.text = "700";
Path.ItemDescription.text = "Adds 25 spell damage.";
}
if (Item == "1027") {
Path.ItemIcon.gotoAndStop(18);
Path.ItemName.text = "Sapphire Sphere";
Path.ItemGold.text = "500";
Path.ItemDescription.text = "Increases mana by 250.";
}
if (Item == "1028") {
Path.ItemIcon.gotoAndStop(19);
Path.ItemName.text = "Ruby Sphere";
Path.ItemGold.text = "735";
Path.ItemDescription.text = "Adds 350 health.";
}
if (Item == "1029") {
Path.ItemIcon.gotoAndStop(20);
Path.ItemName.text = "Cloth Armor";
Path.ItemGold.text = "165";
Path.ItemDescription.text = "Adds 3 armor.";
}
if (Item == "1031") {
Path.ItemIcon.gotoAndStop(21);
Path.ItemName.text = "Chain Vest";
Path.ItemGold.text = "370";
Path.ItemDescription.text = "Adds 6 armor.";
}
if (Item == "1033") {
Path.ItemIcon.gotoAndStop(22);
Path.ItemName.text = "Elementium Threaded Cloak";
Path.ItemGold.text = "375";
Path.ItemDescription.text = "Adds 25 spell block.";
}
if (Item == "1034") {
Path.ItemIcon.gotoAndStop(23);
Path.ItemName.text = "Big Stick";
Path.ItemGold.text = "60";
Path.ItemDescription.text = "Adds 3 damage.";
}
if (Item == "1035") {
Path.ItemIcon.gotoAndStop(24);
Path.ItemName.text = "Short Sword";
Path.ItemGold.text = "255";
Path.ItemDescription.text = "Adds 8 damage.";
}
if (Item == "1036") {
Path.ItemIcon.gotoAndStop(25);
Path.ItemName.text = "Long Sword";
Path.ItemGold.text = "545";
Path.ItemDescription.text = "Increases attack damage by 16.";
}
if (Item == "1037") {
Path.ItemIcon.gotoAndStop(26);
Path.ItemName.text = "Broad Sword";
Path.ItemGold.text = "865";
Path.ItemDescription.text = "Increases attack damage by 24.";
}
if (Item == "1038") {
Path.ItemIcon.gotoAndStop(27);
Path.ItemName.text = "BF Sword";
Path.ItemGold.text = "1500";
Path.ItemDescription.text = "Increases attack damage by 50.";
}
if (Item == "1039") {
Path.ItemIcon.gotoAndStop(28);
Path.ItemName.text = "Bastard Sword";
Path.ItemGold.text = "1150";
Path.ItemDescription.text = "Increases attack damage by 28 and grants a 5% increased critical strike chance.";
}
if (Item == "1041") {
Path.ItemIcon.gotoAndStop(29);
Path.ItemName.text = "Long Staff";
Path.ItemGold.text = "540";
Path.ItemDescription.text = "Increases attack damage by 12 and attack speed by 10%.";
}
if (Item == "1042") {
Path.ItemIcon.gotoAndStop(30);
Path.ItemName.text = "Dagger";
Path.ItemGold.text = "330";
Path.ItemDescription.text = "Increases attack speed by 15%";
}
if (Item == "1043") {
Path.ItemIcon.gotoAndStop(31);
Path.ItemName.text = "Steel Stiletto";
Path.ItemGold.text = "960";
Path.ItemDescription.text = "Increases attack speed by 40%.";
}
if (Item == "1044") {
Path.ItemIcon.gotoAndStop(32);
Path.ItemName.text = "Composite Bow";
Path.ItemGold.text = "650";
Path.ItemDescription.text = "Increases attack damage by 14 and has a 20% chance to deal 50 extra damage (unaffected by armor).";
}
if (Item == "1048") {
Path.ItemIcon.gotoAndStop(33);
Path.ItemName.text = "Knife";
Path.ItemGold.text = "75";
_global.ItemDescription = "Increases movement speed by 5 (stackable).";
}
if (Item == "1051") {
Path.ItemIcon.gotoAndStop(34);
Path.ItemName.text = "Brawler's Gloves";
Path.ItemGold.text = "420";
Path.ItemDescription.text = "Adds 10 damage and increases critical strike rate by 2%.";
}
if (Item == "2001") {
Path.ItemIcon.gotoAndStop(35);
Path.ItemName.text = "Blue Pill";
Path.ItemGold.text = "60";
Path.ItemDescription.text = "Teleports the user back to the home base, 4 second prechannel.";
}
if (Item == "2002") {
Path.ItemIcon.gotoAndStop(36);
Path.ItemName.text = "Scroll of Teleport";
Path.ItemGold.text = "80";
Path.ItemDescription.text = "Teleports the user to any friendly structure, 4 second Prechannel.";
}
if (Item == "2003") {
Path.ItemIcon.gotoAndStop(37);
Path.ItemName.text = "Regeneration Potion";
Path.ItemGold.text = "45";
Path.ItemDescription.text = "Restores 300 hit points over 10 seconds. Damage taken dispels.";
}
if (Item == "2004") {
Path.ItemIcon.gotoAndStop(38);
Path.ItemName.text = "Flask of Crystal Water";
Path.ItemGold.text = "40";
Path.ItemDescription.text = "Restores 120 mana over 15 seconds. Damage taken dispels.";
}
if (Item == "2006") {
Path.ItemIcon.gotoAndStop(39);
Path.ItemName.text = "Tome of Retraining";
Path.ItemGold.text = "400";
Path.ItemDescription.text = "Allows the hero to respend his skill points.";
}
if (Item == "2008") {
Path.ItemIcon.gotoAndStop(40);
Path.ItemName.text = "Tome of Combat Mastery";
Path.ItemGold.text = "50";
Path.ItemDescription.text = "Gives the bearer a 10% greater chance to critical strike for 60 seconds.";
}
if (Item == "2009") {
Path.ItemIcon.gotoAndStop(41);
Path.ItemName.text = "Scroll of Speed";
Path.ItemGold.text = "75";
Path.ItemDescription.text = "Increases movement speed by 10 for 60 seconds.";
}
if (Item == "2017") {
Path.ItemIcon.gotoAndStop(42);
Path.ItemName.text = "Greater Healing Potion";
Path.ItemGold.text = "315";
Path.ItemDescription.text = "Heals the bearer for 450.";
}
if (Item == "2018") {
Path.ItemIcon.gotoAndStop(43);
Path.ItemName.text = "Greater Mana Potion";
Path.ItemGold.text = "260";
Path.ItemDescription.text = "Restores 300 mana instantly.";
}
if (Item == "2019") {
Path.ItemIcon.gotoAndStop(44);
Path.ItemName.text = "Eye of the Beholder";
Path.ItemGold.text = "75";
Path.ItemDescription.text = "Creates an invisible eye that grants vision for 5 minutes. Sees invisible units. Sight Range: 200";
}
if (Item == "2024") {
Path.ItemIcon.gotoAndStop(45);
Path.ItemName.text = "Loosely Packed Grenade";
Path.ItemGold.text = "80";
Path.ItemDescription.text = "Lob a grenade at a small AOE. Any unit caught in the AOE takes 200 damage.";
}
if (Item == "2026") {
Path.ItemIcon.gotoAndStop(46);
Path.ItemName.text = "Arcane Protection Potion";
Path.ItemGold.text = "40";
Path.ItemDescription.text = "Absorbs up to 200 magic damage. Lasts 40 seconds.";
}
if (Item == "2028") {
Path.ItemIcon.gotoAndStop(47);
Path.ItemName.text = "Exquisite Candy";
Path.ItemGold.text = "150";
Path.ItemDescription.text = "Increases spell damage by 65 for 60 seconds.";
}
if (Item == "2030") {
Path.ItemIcon.gotoAndStop(48);
Path.ItemName.text = "Sharpening Stone";
Path.ItemGold.text = "80";
Path.ItemDescription.text = "Increases physical damage dealt by 30 for 60 seconds.";
}
if (Item == "2032") {
Path.ItemIcon.gotoAndStop(49);
Path.ItemName.text = "Healing Totem";
Path.ItemGold.text = "100";
Path.ItemDescription.text = "Summons a totem that restores 1% HP/s to nearby friendlies. Lasts 30 seconds. 1 HP.";
}
if (Item == "2036") {
Path.ItemIcon.gotoAndStop(50);
Path.ItemName.text = "Tome of Minor Necrocompulsion";
Path.ItemGold.text = "50";
Path.ItemDescription.text = "Raises a nearby dead unit to fight for the user for 60 seconds.";
}
if (Item == "2037") {
Path.ItemIcon.gotoAndStop(51);
Path.ItemName.text = "Potion of Giant Strength";
Path.ItemGold.text = "750";
Path.ItemDescription.text = "Increases hit points by 350, increases damage dealt by 20, armor 8, spellblock by 20. Lasts up to 5 minutes and permeates death.";
}
if (Item == "2038") {
Path.ItemIcon.gotoAndStop(52);
Path.ItemName.text = "Potion of Elusiveness";
Path.ItemGold.text = "750";
Path.ItemDescription.text = "Increases attack speed by 25%, critical strike chance by 10%, movement speed by 5%, and dodge by 10% for up to 5 minutes. Permeates death.";
}
if (Item == "2039") {
Path.ItemIcon.gotoAndStop(53);
Path.ItemName.text = "Potion of Briliiance";
Path.ItemGold.text = "750";
Path.ItemDescription.text = "Increases mana by 500, spell damage by 100, and reduces cooldowns by 10%. Lasts up to 5 minutes and permeates death.";
}
if (Item == "2041") {
Path.ItemIcon.gotoAndStop(54);
Path.ItemName.text = "Bag of Tea";
Path.ItemGold.text = "75";
Path.ItemDescription.text = "Silences a target for 3 seconds.";
}
if (Item == "3001") {
Path.ItemIcon.gotoAndStop(55);
Path.ItemName.text = "Abyssal Sceptor";
Path.ItemGold.text = "3250";
Path.ItemDescription.text = "Adds 50 spell damage, 24 damage, 400 hit points, 150 mana, and a -5 armor, -45 spell block aura with 200 range.";
}
if (Item == "3002") {
Path.ItemIcon.gotoAndStop(56);
Path.ItemName.text = "Ahrimans Insight";
Path.ItemGold.text = "1870";
Path.ItemDescription.text = "Adds 32 damage, 30% increased attack rate, 150 mana, and 5% chance on attack for the next spell within the next 10 seconds to be free.";
}
if (Item == "3003") {
Path.ItemIcon.gotoAndStop(57);
Path.ItemName.text = "Archangels";
Path.ItemGold.text = "2570";
Path.ItemDescription.text = "Adds 240 mana, 32 spell damage, 150 hit points, 3.0 mana regeneration per second, and a castable Apocalypse, dealing 400 damage in a 150 AOE, including the caster. 200 mana cost, 15 cooldown. Has 255 charges. 0.5 spell damage ratio.";
}
if (Item == "3004") {
Path.ItemIcon.gotoAndStop(58);
Path.ItemName.text = "Assault Treads";
Path.ItemGold.text = "750";
Path.ItemDescription.text = "Adds 40 movement speed, 10 damage, and 4% increased critical strike rate.";
}
if (Item == "3005") {
Path.ItemIcon.gotoAndStop(59);
Path.ItemName.text = "Atmas Impaler";
Path.ItemGold.text = "2850";
Path.ItemDescription.text = "Adds +60 damage, 5% increased critical strike, +300 hit points, and adds 4% of the bearer's current hit points to his damage.";
}
if (Item == "3006") {
Path.ItemIcon.gotoAndStop(60);
Path.ItemName.text = "Berserkers Greaves";
Path.ItemGold.text = "1250";
Path.ItemDescription.text = "Adds 40 movement speed, 20 damage, 6% increased critical strike rate, and an activatable Berserk that increases movement speed by 15% and attack speed by 75% for 10 seconds, but you take 20% increased damage. 50 mana cost, 60 second cooldown.";
}
if (Item == "3007") {
Path.ItemIcon.gotoAndStop(61);
Path.ItemName.text = "Booms Guardian Armor";
Path.ItemGold.text = "1150";
Path.ItemDescription.text = "Adds 8 armor, 225 mana, and 10% cooldown reduction.";
}
if (Item == "3008") {
Path.ItemIcon.gotoAndStop(62);
Path.ItemName.text = "Boots of Swiftness";
Path.ItemGold.text = "750";
Path.ItemDescription.text = "Adds 55 movement speed.";
}
if (Item == "3009") {
Path.ItemIcon.gotoAndStop(63);
Path.ItemName.text = "Boots of Teleportation";
Path.ItemGold.text = "1250";
Path.ItemDescription.text = "Adds 40 movement speed, and an activatable Teleport that allows the user to teleport to any friendly nonhero unit on the map. 3 second casting time; 60 second cooldown; 50 mana cost.";
}
if (Item == "3010") {
Path.ItemIcon.gotoAndStop(64);
Path.ItemName.text = "Catalyst the Protector";
Path.ItemGold.text = "1800";
Path.ItemDescription.text = "300 health, and 100 spell block.";
}
if (Item == "3011") {
Path.ItemIcon.gotoAndStop(65);
Path.ItemName.text = "Dawnseeker";
Path.ItemGold.text = "1250";
Path.ItemDescription.text = "Adds 14 damage, 6% increased critical strike rate, 35% increased attack speed during the day, and a 100% chance on hit during the day to Blind the target, giving it a 20% miss chance.";
}
if (Item == "3013") {
Path.ItemIcon.gotoAndStop(66);
Path.ItemName.text = "Disruption Rod";
Path.ItemGold.text = "1970";
Path.ItemDescription.text = "Adds 32 spell damage, 24 damage, 350 hit points, and a 20% chance on hit and spell hit to reduce the target's armor by 4 and spell block by 35 for 15 seconds.";
}
if (Item == "3014") {
Path.ItemIcon.gotoAndStop(67);
Path.ItemName.text = "Doppleganker";
Path.ItemGold.text = "1280";
Path.ItemDescription.text = "Adds 25 damage, 260 health, and 7 charges of Dopplewalk, which turns your hero invisible and leaves a clone (deals 50% damage, takes an additional 50% damage) of him at the identical same spot, with the same order, in the same animation frame. The clones and invisibility last for 20 seconds. 0 mana cost, 30 second cooldown.";
}
if (Item == "3015") {
Path.ItemIcon.gotoAndStop(68);
Path.ItemName.text = "Duskbringer";
Path.ItemGold.text = "1250";
Path.ItemDescription.text = "Adds 16 damage, 15% increased attack rate, a 12% increase to movement speed at night, and a 100% chance on hit at night to deal 20 additional damage and gain 20 life.";
}
if (Item == "3016") {
Path.ItemIcon.gotoAndStop(69);
Path.ItemName.text = "Eaglestrike";
Path.ItemGold.text = "1150";
Path.ItemDescription.text = "Adds 26 damage and has a 20% chance to deal 80 bonus damage.";
}
if (Item == "3017") {
Path.ItemIcon.gotoAndStop(70);
Path.ItemName.text = "EgitaiTwinsoul";
Path.ItemGold.text = "2750";
Path.ItemDescription.text = "Adds +50 damage, 50% increased attack speed, and has a 20% chance to curse the enemy on hit, increasing damage taken by 20% for 4 seconds.";
}
if (Item == "3018") {
Path.ItemIcon.gotoAndStop(71);
Path.ItemName.text = "Elementium Woven Mantel";
Path.ItemGold.text = "775";
Path.ItemDescription.text = "Adds 100 health and 40 spell block.";
}
if (Item == "3020") {
Path.ItemIcon.gotoAndStop(72);
Path.ItemName.text = "Flamewalkers";
Path.ItemGold.text = "1250";
Path.ItemDescription.text = "Adds 40 movement speed, 30 spell damage, and an activatable Fire Trail that leaves a flaming wake behind the caster wherever he walks for 10 seconds. Costs 150 mana, 40 second cooldown. Deals 150 damage per second.";
}
if (Item == "3021") {
Path.ItemIcon.gotoAndStop(73);
Path.ItemName.text = "Fleshrender";
Path.ItemGold.text = "2660";
Path.ItemDescription.text = "Adds 35 damage, 20% increased attack rate, 400 hit points, and 8 charges of Hamstring, which reduces movement speed and attack speed by 75% for 4 seconds. Costs 0 mana, 15 second cooldown, 150 Range.";
}
if (Item == "3022") {
Path.ItemIcon.gotoAndStop(74);
Path.ItemName.text = "Frozen Heart";
Path.ItemGold.text = "3200";
Path.ItemDescription.text = "Adds 20 damage, 650 hit points, 30% Attack Speed, and attacks slow the enemy's movement and attack rates by 25%.";
}
if (Item == "3023") {
Path.ItemIcon.gotoAndStop(75);
Path.ItemName.text = "Galeforce";
Path.ItemGold.text = "2600";
Path.ItemDescription.text = "Adds 75 damage and has a 15% chance to knock the target back slightly (60 distance), and deals 120 bonus damage if the target is a nonstructure.";
}
if (Item == "3024") {
Path.ItemIcon.gotoAndStop(76);
Path.ItemName.text = "Glacial Shroud";
Path.ItemGold.text = "2670";
Path.ItemDescription.text = "Adds 8 armor, 4.5 HP/s regen, 2 MP/s regen, 225 mana, 15% reduction on all cooldowns, and an activatable Ice Barricade that makes the user unable to take any action for 8 seconds, but he/she is invulnerable for the duration and all debuffs are removed. Costs 200 mana, cooldown of 60 seconds. Clicking the ability again removes the Ice Barricade, putting it on cooldown.";
}
if (Item == "3025") {
Path.ItemIcon.gotoAndStop(77);
Path.ItemName.text = "Gladiators Pride";
Path.ItemGold.text = "2165";
Path.ItemDescription.text = "Adds 35 damage, 6 armor, returns 25% damage to melee attackers and has an activatable Taunt, which forces a single target to attack the bearer for 3 seconds. 100 range, 50 mana cost, 30 second cooldown.";
}
if (Item == "3026") {
Path.ItemIcon.gotoAndStop(78);
Path.ItemName.text = "Guardian Angel";
Path.ItemGold.text = "2625 ";
Path.ItemDescription.text = "Adds 10 armor, 600 hit points, 6 HP/s regeneration, and a 15% chance on being hit to heal friendly units within a 200 radius for 150. Maximum one proc per 1.5 seconds.";
}
if (Item == "3027") {
Path.ItemIcon.gotoAndStop(79);
Path.ItemName.text = "Guinsoos Rod of Oblivion";
Path.ItemGold.text = "3070";
Path.ItemDescription.text = "Adds 400 mana, 30 spell damage, 2.2 Mana Regeneration, and an activatable Oblivion ability, which banishes an enemy to the nether realm for 4 seconds, where it can take no actions and is invulnerable. Upon returning to the physical realm, it is stunned for 1 second. 150 mana cost, 200 range, 25 second cooldown.";
}
if (Item == "3028") {
Path.ItemIcon.gotoAndStop(80);
Path.ItemName.text = "Harmony Ring";
Path.ItemGold.text = "460";
Path.ItemDescription.text = "Adds 60 mana, 4 spell damage, and regenerates 0.6 mana per second, and also regenerates an additional 0.3 mana per second per 10% mana missing.";
}
if (Item == "3029") {
Path.ItemIcon.gotoAndStop(81);
Path.ItemName.text = "Hurricane";
Path.ItemGold.text = "1800";
Path.ItemDescription.text = "Adds 46 damage and a 20% chance to deal 120 bonus damage to a nonstructure.";
}
if (Item == "3030") {
Path.ItemIcon.gotoAndStop(82);
Path.ItemName.text = "Infernos Justice";
Path.ItemGold.text = "3300";
Path.ItemDescription.text = "Adds 30 damage, 45% increased attack speed, attacks have a 20% chance on attack to deal 180 bonus fire damage in a 100 area of effect, and has a 100% chance on death to deal 300 area of effect damage, 400 radius.";
}
if (Item == "3031") {
Path.ItemIcon.gotoAndStop(83);
Path.ItemName.text = "Infinity Edge";
Path.ItemGold.text = "3565";
Path.ItemDescription.text = "Adds 110 damage, increases critical strike rate by 5%, and increases the bearer's critical strike multiplier by 0.5.";
}
if (Item == "3032") {
Path.ItemIcon.gotoAndStop(84);
Path.ItemName.text = "Innervating Locket";
Path.ItemGold.text = "3000";
Path.ItemDescription.text = "Adds 35 spell damage, 450 hit points, 450 mana, and an activatable Refresh, which resets all of the character's cooldowns (except Refresh itself). 200 mana cost, 150 second cooldown.";
}
if (Item == "3033") {
Path.ItemIcon.gotoAndStop(85);
Path.ItemName.text = "Kardels Aim";
Path.ItemGold.text = "1550";
Path.ItemDescription.text = "Adds 24 damage, 15% increased attack rate, a 30% chance on hit to deal 50 bonus damage, and passively increases the bearer's attack range by 40 (ranged only).";
}
if (Item == "3034") {
Path.ItemIcon.gotoAndStop(86);
Path.ItemName.text = "Kenyus Kukri";
Path.ItemGold.text = "1235";
Path.ItemDescription.text = "";
}
if (Item == "3035") {
Path.ItemIcon.gotoAndStop(87);
Path.ItemName.text = "Last Whisper";
Path.ItemGold.text = "2160";
Path.ItemDescription.text = "Adds 20 damage, 40% Attack Speed, and an activatable Vanish that grants the user invisibility for 9 seconds, for 75 mana and with a 25 second cooldown.";
}
if (Item == "3036") {
Path.ItemIcon.gotoAndStop(88);
Path.ItemName.text = "Leeroys Charge";
Path.ItemGold.text = "2200";
Path.ItemDescription.text = "Adds 40 damage, 5% increased critical strike, 15% life steal, and has an activatable 'LEEROY' increasing critical strike rate by 25% and movement speed by 10% for 10 seconds, but you cannot control your character. 100 mana cost, 18 second cooldown.";
}
if (Item == "3037") {
Path.ItemIcon.gotoAndStop(89);
Path.ItemName.text = "Mana Manipulator";
Path.ItemGold.text = "550";
Path.ItemDescription.text = "Gives you a friendly aura that increases mana regeneration by 1.5 for nearby allied units within 200, and a negative aura that decreases mana regeneration by 1 for all nearby enemy units within 250.";
}
if (Item == "3038") {
Path.ItemIcon.gotoAndStop(90);
Path.ItemName.text = "Mech";
Path.ItemGold.text = "1220";
Path.ItemDescription.text = "Adds 1.5 MP/s regeneration, a 3 HP/s regeneration aura to friendly units within 200, 15% extra healing, and an activatable Mech Heal, restoring 250 health to a single friendly unit.";
}
if (Item == "3039") {
Path.ItemIcon.gotoAndStop(91);
Path.ItemName.text = "Mechanism";
Path.ItemGold.text = "2350";
Path.ItemDescription.text = "Adds 250 mana, 1.5 MP/s regeneration, a 3 HP/s regeneration aura to friendly units within 200, 30% bonus healing, and an activatable Mechanism Heal, restoring 250 HP to friendly units within 100 area.";
}
if (Item == "3040") {
Path.ItemIcon.gotoAndStop(92);
Path.ItemName.text = "Megaton mallet";
Path.ItemGold.text = "2300";
Path.ItemDescription.text = "Adds 50 damage and has a 18% chance on hit to Crush the enemy, stunning it for 1.25 seconds and dealing 50 bonus damage. Crush only takes effect if the bearer is a melee hero. Does not stack with Skull Crusher or Megaton Mallet.";
}
if (Item == "3041") {
Path.ItemIcon.gotoAndStop(93);
Path.ItemName.text = "Nejais Soulstealer";
Path.ItemGold.text = "1750";
Path.ItemDescription.text = "Adds 30 spell damage, 300 mana, and a clickable Soulsteal ability, which deals 350 damage to a target. Each hero kill increases Mejai's Soulstealer's spell damage by 10. Spell damage ratio of 1.0.";
}
if (Item == "3042") {
Path.ItemIcon.gotoAndStop(94);
Path.ItemName.text = "Netherrift Armor";
Path.ItemGold.text = "2000";
Path.ItemDescription.text = "Adds 6 armor, 45 spell block, a friendly aura that increases mana regeneration by 2.0 within 200, and an unfriendly aura that damages enemy spellcasters within 250 range whenever they cast a spell for 100% of the mana cost with a cooldown of 4 seconds.";
}
if (Item == "3043") {
Path.ItemIcon.gotoAndStop(95);
Path.ItemName.text = "Pablitos Wand of Humility";
Path.ItemGold.text = "1540";
Path.ItemDescription.text = "Adds 100 HP, 125 mana, 2.2 MP/s regen, and 7 charges of an activatable Tacomorph, which turns an enemy unit into a taco for 3 seconds, where it can take no actions. 12 second cooldown, no mana cost, 200 range.";
}
if (Item == "3044") {
Path.ItemIcon.gotoAndStop(96);
Path.ItemName.text = "Phage";
Path.ItemGold.text = "900";
Path.ItemDescription.text = "Adds 200 hit points, 20 damage, 5% chance on hit to Hamstring the target, reducing its armor by 5 and movement speed by 35% for 4 seconds.";
}
if (Item == "3045") {
Path.ItemIcon.gotoAndStop(97);
Path.ItemName.text = "Phage and Zeal";
Path.ItemGold.text = "2000";
Path.ItemDescription.text = "Adds 250 hit points, 20 Damage, 16 movement speed, 25% increased attack rate, 5% increased critical strike rate, and an 10% chance on hit to Hamstring the target, reducing armor by 5 and movement speed by 35% for 4 seconds.";
}
if (Item == "3046") {
Path.ItemIcon.gotoAndStop(98);
Path.ItemName.text = "Phantom Dancer";
Path.ItemGold.text = "3070";
Path.ItemDescription.text = "Adds 45 damage, 20% increased critical strike rate, and 25% increased dodge rate.";
}
if (Item == "3047") {
Path.ItemIcon.gotoAndStop(99);
Path.ItemName.text = "Phase Striders";
Path.ItemGold.text = "1250";
Path.ItemDescription.text = "Adds 40 movement speed and an activatable Blink, teleporting the hero up to 400 distance. Costs 75 mana, 30 second cooldown.";
}
if (Item == "3049") {
Path.ItemIcon.gotoAndStop(100);
Path.ItemName.text = "Prismatic Sphere";
Path.ItemGold.text = "1535";
Path.ItemDescription.text = "Adds 450 health and 350 mana.";
}
if (Item == "3050") {
Path.ItemIcon.gotoAndStop(101);
Path.ItemName.text = "Rallying Banner";
Path.ItemGold.text = "1360";
Path.ItemDescription.text = "Grants an aura that gives 15% increased attack rate to nearby units and 13% lifesteal to friendly units, and a clickable AOE buff (Morale Boost) that adds 20% damage to nearby friendly units in a 200 radius for 15 seconds. No mana cost, 45s cooldown.";
}
if (Item == "3051") {
Path.ItemIcon.gotoAndStop(102);
Path.ItemName.text = "Renewal Tunic";
Path.ItemGold.text = "450";
Path.ItemDescription.text = "Adds 3 armor, 2 HP regen, and 100% chance on being hit to increase HP regen by 3 for 6 seconds (nonstackable).";
}
if (Item == "3052") {
Path.ItemIcon.gotoAndStop(103);
Path.ItemName.text = "Reverb Coil";
Path.ItemGold.text = "1810";
Path.ItemDescription.text = "Adds 32 spell damage, 1.5 Mana Regeneration per second, and an activated Echo ability, which 'lights up' after the user casts a non-ultimate, non-item spell and is active for only 5 seconds, and is a duplicate of that spell, but it costs twice as much mana. 30 second cooldown.";
}
if (Item == "3054") {
Path.ItemIcon.gotoAndStop(104);
Path.ItemName.text = "Sceptor of Death";
Path.ItemGold.text = "600";
Path.ItemDescription.text = "Adds 10 damage and 10% life steal.";
}
if (Item == "3056") {
Path.ItemIcon.gotoAndStop(105);
Path.ItemName.text = "Shadows ire";
Path.ItemGold.text = "2520";
Path.ItemDescription.text = "Adds 40 damage, 15% increased attack speed, 260 life, an attack enchantment that whenever this unit attacks another unit, Open Wounds is placed on that unit, making it so that he takes 9 additional damage from each attack. Fully stackable.This unit can cast Split, creating 2 images of himself which take 200% damage and deal 40%, lasts for 20 seconds, 50 second cooldown, costs 75 mana.";
}
if (Item == "3057") {
Path.ItemIcon.gotoAndStop(106);
Path.ItemName.text = "Sheen";
Path.ItemGold.text = "900";
Path.ItemDescription.text = "Adds 150 mana, 15 spell damage, and whenever the bearer casts a spell, he is healed for 15% of the spell's mana cost.";
}
if (Item == "3058") {
Path.ItemIcon.gotoAndStop(107);
Path.ItemName.text = "Sheen and Phage";
Path.ItemGold.text = "2000";
Path.ItemDescription.text = "Adds 250 hit points, 20 Damage, 150 mana, 20 spell damage, whenever the bearer casts a spell, he is healed for 20% of the spell's mana cost, and an 10% chance on hit to Hamstring the target, reducing its armor by 5 and movement speed by 35%.";
}
if (Item == "3059") {
Path.ItemIcon.gotoAndStop(108);
Path.ItemName.text = "Sindoran Shielding Amulet";
Path.ItemGold.text = "2050";
Path.ItemDescription.text = "Adds 50 spell block, 280 hit points, 160 Mana, and an activatable Mana Shield that makes the caster immune to magic spells for the next 10 seconds. 75 second cooldown, 100 mana cost.";
}
if (Item == "3060") {
Path.ItemIcon.gotoAndStop(109);
Path.ItemName.text = "Skull Crusher";
Path.ItemGold.text = "1460";
Path.ItemDescription.text = "Adds 35 damage and has a 12% chance on hit to Crush the enemy, stunning it for 1.25 seconds and dealing 25 damage to it. Crush only works for melee characters. Does not stack with Skull Crusher or Megaton Mallet.";
}
if (Item == "3061") {
Path.ItemIcon.gotoAndStop(110);
Path.ItemName.text = "Scorcers Shoes";
Path.ItemGold.text = "750";
Path.ItemDescription.text = "Adds 40 movement speed and increases spell damage by 20.";
}
if (Item == "3062") {
Path.ItemIcon.gotoAndStop(111);
Path.ItemName.text = "Soul Pendant";
Path.ItemGold.text = "890";
Path.ItemDescription.text = "Adds 4.5 HP/s regen and 1.5 MP/s regen.";
}
if (Item == "3063") {
Path.ItemIcon.gotoAndStop(112);
Path.ItemName.text = "Soul Shroud";
Path.ItemGold.text = "520";
Path.ItemDescription.text = "";
}
if (Item == "3064") {
Path.ItemIcon.gotoAndStop(113);
Path.ItemName.text = "Spike the Ripper";
Path.ItemGold.text = "1800";
Path.ItemDescription.text = "Adds 35 damage, 300 hit points, and 5 charges of Gash, which slows a target enemy's movement speed by 75% for 4 seconds. Costs 0 mana, 15 second cooldown.";
}
if (Item == "3065") {
Path.ItemIcon.gotoAndStop(114);
Path.ItemName.text = "Spirit Visage";
Path.ItemGold.text = "2400";
Path.ItemDescription.text = "Adds 6 armor, 25 damage, 320 life, and can cast Mirror Form, which creates 1 clone of the caster, and damage is shared between the two equally, and they deal 60% damage and take 100%. Costs 75 Mana, 50 second cooldown, 20 second duration.";
}
if (Item == "3066") {
Path.ItemIcon.gotoAndStop(115);
Path.ItemName.text = "Starks Fervor";
Path.ItemGold.text = "3000";
Path.ItemDescription.text = "Adds 5% increased critical strike chance. Adds a 15% lifesteal aura and a 35% increaed attack speed aura. Has a clickable AOE buff that adds 25% damage and 15% movement speed to friendly units for 15 seconds. Costs 50 mana, 45 second cooldown, 200 radius.";
}
if (Item == "3067") {
Path.ItemIcon.gotoAndStop(116);
Path.ItemName.text = "Strygwyrs Reaver";
Path.ItemGold.text = "3125";
Path.ItemDescription.text = "Adds 32 damage, 40% increased attack rate, 9% Crit Strike, and a 10% chance on hit to leave a debuff that deals damage to the unit each 0.1 seconds, 0.8 damage per 1 distance moved since the last check.";
}
if (Item == "3068") {
Path.ItemIcon.gotoAndStop(117);
Path.ItemName.text = "Sunfire Cape";
Path.ItemGold.text = "2120";
Path.ItemDescription.text = "Adds 12% increased critical strike rate, 30% increased attack rate, 10 Damage, and adds a passive burning effect, which deals 45 damage per second in a 120 radius. Can be upgraded twice by purchasing another combine, which adds 6 Damage, 5% Attack Speed, and upgrades the burning effect by 15 damage per second.";
}
if (Item == "3069") {
Path.ItemIcon.gotoAndStop(118);
Path.ItemName.text = "Sword of Light and Shadow";
Path.ItemGold.text = "3000";
Path.ItemDescription.text = "Adds 30 damage, 25% increased attack rate, 8% increased critical strike rate, at Night: grants a 18% increased movement rate and a 100% chance on hit to Absorb Life from the target, absorbing an extra 30 health from the target; at Day: grants a 50% increased attack rate and a 100% chance on hit to Blind the target, increasing its chance to miss by 28%.";
}
if (Item == "3070") {
Path.ItemIcon.gotoAndStop(119);
Path.ItemName.text = "Tear of the Goddess";
Path.ItemGold.text = "2980";
Path.ItemDescription.text = "Adds 600 hit points, 400 mana, 6 HP/s regen, 2 MP/s regen, and an activatable Spell Reflect ability, which reflects the next single-target spell cast upon this unit to its caster. Lasts up to 15 seconds, 50 second cooldown, costs 100 mana.";
}
if (Item == "3071") {
Path.ItemIcon.gotoAndStop(120);
Path.ItemName.text = "The Black Cleaver";
Path.ItemGold.text = "2215";
Path.ItemDescription.text = "Adds 50 damage and lowers the target's armor by 2 per hit ('Black Death' debuff), stackable up to 6 times, renewable. 5 second duration.";
}
if (Item == "3072") {
Path.ItemIcon.gotoAndStop(121);
Path.ItemName.text = "The Bloodthirster";
Path.ItemGold.text = "3000";
Path.ItemDescription.text = "Adds 60 damage, 20% life steal, and each time the bearer kills a unit, the sword gains an additional +1 damage and +0.25% life steal. Maximum of +140 damage and 40% lifesteal. Bonuses halve upon death.";
}
if (Item == "3073") {
Path.ItemIcon.gotoAndStop(122);
Path.ItemName.text = "Verdant Force";
Path.ItemGold.text = "1600";
Path.ItemDescription.text = "Adds 550 hit points, 6 hit points regenerated per second, 100% chance on kill to restore 25 health";
}
if (Item == "3075") {
Path.ItemIcon.gotoAndStop(123);
Path.ItemName.text = "Thornmail";
Path.ItemGold.text = "700";
Path.ItemDescription.text = "Adds 6 armor and returns 20 damage to attackers.";
}
if (Item == "3076") {
Path.ItemIcon.gotoAndStop(124);
Path.ItemName.text = "Threshers Wrath";
Path.ItemGold.text = "1865";
Path.ItemDescription.text = "Adds 50 damage, 4 HP/s regen, 2.0 increased MP regen, and a 30% cleave attack (melee only) (30 Radius).";
}
if (Item == "3077") {
Path.ItemIcon.gotoAndStop(125);
Path.ItemName.text = "Tiamat";
Path.ItemGold.text = "3180";
Path.ItemDescription.text = "Adds 80 damage, +4 HP regeneration, 2.0 increased mana regeneration, and a 45% cleave that extends into a shockwave (60 radius).";
}
if (Item == "3078") {
Path.ItemIcon.gotoAndStop(126);
Path.ItemName.text = "Trinity Force";
Path.ItemGold.text = "3200";
Path.ItemDescription.text = "+250 Hit Points +150 Mana\n+25Damage +25 Spell Damage\n+20 flat movement speed +25% increased attack rate\n+5% increased critical strike rate, whenever the bearer casts a spell he is healed for 25% of the spell's mana cost, and attacks have a 15% chance on hit to reduce the target's armor by 5 and movement speed by 35%";
}
if (Item == "3081") {
Path.ItemIcon.gotoAndStop(127);
Path.ItemName.text = "Vindicators Embrace";
Path.ItemGold.text = "1200";
Path.ItemDescription.text = "Adds 200 health, 6 Armor, and a 25% chance on taking attack damage to prevent up to 60 of that damage, dealing that much damage to the attacker.";
}
if (Item == "3082") {
Path.ItemIcon.gotoAndStop(128);
Path.ItemName.text = "Wardens mail";
Path.ItemGold.text = "740";
Path.ItemDescription.text = "Adds 7 armor, 150 health, and 3 health regeneration";
}
if (Item == "3083") {
Path.ItemIcon.gotoAndStop(129);
Path.ItemName.text = "Warmog, Living Armor";
Path.ItemGold.text = "3100";
Path.ItemDescription.text = "Adds 1100 hit points, 11 hit points regenerated per second, and each time this unit gets a minion kill, it gains 5 hit points and 0.15 hit point regeneration per second. Hero kills count as 5 minion kills.";
}
if (Item == "3084") {
Path.ItemIcon.gotoAndStop(130);
Path.ItemName.text = "Widowmaker";
Path.ItemGold.text = "2900";
Path.ItemDescription.text = "Adds 80% increased attack rate, 10% increased critical strike rate, and a 100% chance on Critical Hit to leave a DOT on the target, dealing 150 damage over 3 seconds";
}
if (Item == "3085") {
Path.ItemIcon.gotoAndStop(131);
Path.ItemName.text = "Wraithfire Crossbow";
Path.ItemGold.text = "1745";
Path.ItemDescription.text = "Adds 35 damage and a 20% chance on hit to deal 130 bonus fire damage in a 80 area of effect.";
}
if (Item == "3086") {
Path.ItemIcon.gotoAndStop(132);
Path.ItemName.text = "Zeal";
Path.ItemGold.text = "900";
Path.ItemDescription.text = "Adds 5% increased critical strike chance, 25% increased attack speed, and 12 increased movement speed.";
}
if (Item == "3087") {
Path.ItemIcon.gotoAndStop(133);
Path.ItemName.text = "Zeal and Sheen";
Path.ItemGold.text = "2000";
Path.ItemDescription.text = "Adds 150 mana, 20 spell damage, whenever the bearer casts a spell he is healed for 20% of the spell's mana cost, 16 movement speed, 25% attack speed, and 5% crit rate.";
}
if (Item == "3088") {
Path.ItemIcon.gotoAndStop(134);
Path.ItemName.text = "Zettas Mana Stick";
Path.ItemGold.text = "1270";
Path.ItemDescription.text = "Adds 180 mana, 12 spell damage, and 3.0 Mana Regeneration per second, and gives you 4 charges of gain 250 mana.";
}
if (Item == "3089") {
Path.ItemIcon.gotoAndStop(135);
Path.ItemName.text = "Zhonyas Ring";
Path.ItemGold.text = "2500";
Path.ItemDescription.text = "Adds 300 mana, 75 spell damage, and an activatable Mindream, dealing 175 damage per second to a target for up to 3 seconds, which Silences it (channeled ability). 100 mana cost, 30 second cooldown. .25 spell damage ratio.";
}
if (Item == "3090") {
Path.ItemIcon.gotoAndStop(136);
Path.ItemName.text = "Thoughtbreaker";
Path.ItemGold.text = "1335";
Path.ItemDescription.text = "Adds 15 damage, 30% increased attack speed, a passive Mana Burn, burning up to 22 mana per hit, dealing 100% hit point damage.";
}
if (Item == "3091") {
Path.ItemIcon.gotoAndStop(137);
Path.ItemName.text = "Wits End";
Path.ItemGold.text = "2550";
Path.ItemDescription.text = "Adds 32 damage, 30% increased attack speed, a passive Mana Burn which burns up to 40 mana per hit, deailng 100% hit point damage, and gives the bearer the Mana Break ability, dealing 5 damage per 1% mana missing.";
}
if (Item == "3093") {
Path.ItemIcon.gotoAndStop(138);
Path.ItemName.text = "Avarice Blade";
Path.ItemGold.text = "850";
Path.ItemDescription.text = "Adds 20 damage and a passive Greed ability, instantly kill the next minion you attack (with under 700 max Hit Points), 25 second cooldown. Each kill this unit gets is worth 3 extra bounty.";
}
if (Item == "3094") {
Path.ItemIcon.gotoAndStop(139);
Path.ItemName.text = "Orb of Intellect";
Path.ItemGold.text = "250";
Path.ItemDescription.text = "Adds 8 spell damage, 50 health, and 80 mana";
}
if (Item == "3095") {
Path.ItemIcon.gotoAndStop(140);
Path.ItemName.text = "Orb of Valor";
Path.ItemGold.text = "250";
Path.ItemDescription.text = "Adds 6 damage, 110 health, and 40 mana";
}
};
_global.ItemNumber = function () {
if (_global.ItemFrame == 1) {
_global.CurrentItemNumber = 1001;
}
if (_global.ItemFrame == 2) {
_global.CurrentItemNumber = 1004;
}
if (_global.ItemFrame == 3) {
_global.CurrentItemNumber = 1005;
}
if (_global.ItemFrame == 4) {
_global.CurrentItemNumber = 1006;
}
if (_global.ItemFrame == 5) {
_global.CurrentItemNumber = 1007;
}
if (_global.ItemFrame == 6) {
_global.CurrentItemNumber = 1008;
}
if (_global.ItemFrame == 7) {
_global.CurrentItemNumber = 1010;
}
if (_global.ItemFrame == 8) {
_global.CurrentItemNumber = 1011;
}
if (_global.ItemFrame == 9) {
_global.CurrentItemNumber = 1012;
}
if (_global.ItemFrame == 10) {
_global.CurrentItemNumber = 1014;
}
if (_global.ItemFrame == 11) {
_global.CurrentItemNumber = 1015;
}
if (_global.ItemFrame == 12) {
_global.CurrentItemNumber = 1018;
}
if (_global.ItemFrame == 13) {
_global.CurrentItemNumber = 1019;
}
if (_global.ItemFrame == 14) {
_global.CurrentItemNumber = 1020;
}
if (_global.ItemFrame == 15) {
_global.CurrentItemNumber = 1022;
}
if (_global.ItemFrame == 16) {
_global.CurrentItemNumber = 1024;
}
if (_global.ItemFrame == 17) {
_global.CurrentItemNumber = 1026;
}
if (_global.ItemFrame == 18) {
_global.CurrentItemNumber = 1027;
}
if (_global.ItemFrame == 19) {
_global.CurrentItemNumber = 1028;
}
if (_global.ItemFrame == 20) {
_global.CurrentItemNumber = 1029;
}
if (_global.ItemFrame == 21) {
_global.CurrentItemNumber = 1031;
}
if (_global.ItemFrame == 22) {
_global.CurrentItemNumber = 1033;
}
if (_global.ItemFrame == 23) {
_global.CurrentItemNumber = 1034;
}
if (_global.ItemFrame == 24) {
_global.CurrentItemNumber = 1035;
}
if (_global.ItemFrame == 25) {
_global.CurrentItemNumber = 1036;
}
if (_global.ItemFrame == 26) {
_global.CurrentItemNumber = 1037;
}
if (_global.ItemFrame == 27) {
_global.CurrentItemNumber = 1038;
}
if (_global.ItemFrame == 28) {
_global.CurrentItemNumber = 1039;
}
if (_global.ItemFrame == 29) {
_global.CurrentItemNumber = 1041;
}
if (_global.ItemFrame == 30) {
_global.CurrentItemNumber = 1042;
}
if (_global.ItemFrame == 31) {
_global.CurrentItemNumber = 1043;
}
if (_global.ItemFrame == 32) {
_global.CurrentItemNumber = 1044;
}
if (_global.ItemFrame == 33) {
_global.CurrentItemNumber = 1048;
}
if (_global.ItemFrame == 34) {
_global.CurrentItemNumber = 1051;
}
if (_global.ItemFrame == 35) {
_global.CurrentItemNumber = 2001;
}
if (_global.ItemFrame == 36) {
_global.CurrentItemNumber = 2002;
}
if (_global.ItemFrame == 37) {
_global.CurrentItemNumber = 2003;
}
if (_global.ItemFrame == 38) {
_global.CurrentItemNumber = 2004;
}
if (_global.ItemFrame == 39) {
_global.CurrentItemNumber = 2006;
}
if (_global.ItemFrame == 40) {
_global.CurrentItemNumber = 2008;
}
if (_global.ItemFrame == 41) {
_global.CurrentItemNumber = 2009;
}
if (_global.ItemFrame == 42) {
_global.CurrentItemNumber = 2017;
}
if (_global.ItemFrame == 43) {
_global.CurrentItemNumber = 2018;
}
if (_global.ItemFrame == 44) {
_global.CurrentItemNumber = 2019;
}
if (_global.ItemFrame == 45) {
_global.CurrentItemNumber = 2024;
}
if (_global.ItemFrame == 46) {
_global.CurrentItemNumber = 2026;
}
if (_global.ItemFrame == 47) {
_global.CurrentItemNumber = 2028;
}
if (_global.ItemFrame == 48) {
_global.CurrentItemNumber = 2030;
}
if (_global.ItemFrame == 49) {
_global.CurrentItemNumber = 2032;
}
if (_global.ItemFrame == 50) {
_global.CurrentItemNumber = 2036;
}
if (_global.ItemFrame == 51) {
_global.CurrentItemNumber = 2037;
}
if (_global.ItemFrame == 52) {
_global.CurrentItemNumber = 2038;
}
if (_global.ItemFrame == 53) {
_global.CurrentItemNumber = 2039;
}
if (_global.ItemFrame == 54) {
_global.CurrentItemNumber = 2041;
}
if (_global.ItemFrame == 55) {
_global.CurrentItemNumber = 3001;
}
if (_global.ItemFrame == 56) {
_global.CurrentItemNumber = 3002;
}
if (_global.ItemFrame == 57) {
_global.CurrentItemNumber = 3003;
}
if (_global.ItemFrame == 58) {
_global.CurrentItemNumber = 3004;
}
if (_global.ItemFrame == 59) {
_global.CurrentItemNumber = 3005;
}
if (_global.ItemFrame == 60) {
_global.CurrentItemNumber = 3006;
}
if (_global.ItemFrame == 61) {
_global.CurrentItemNumber = 3007;
}
if (_global.ItemFrame == 62) {
_global.CurrentItemNumber = 3008;
}
if (_global.ItemFrame == 63) {
_global.CurrentItemNumber = 3009;
}
if (_global.ItemFrame == 64) {
_global.CurrentItemNumber = 3010;
}
if (_global.ItemFrame == 65) {
_global.CurrentItemNumber = 3011;
}
if (_global.ItemFrame == 66) {
_global.CurrentItemNumber = 3013;
}
if (_global.ItemFrame == 67) {
_global.CurrentItemNumber = 3014;
}
if (_global.ItemFrame == 68) {
_global.CurrentItemNumber = 3015;
}
if (_global.ItemFrame == 69) {
_global.CurrentItemNumber = 3016;
}
if (_global.ItemFrame == 70) {
_global.CurrentItemNumber = 3017;
}
if (_global.ItemFrame == 71) {
_global.CurrentItemNumber = 3018;
}
if (_global.ItemFrame == 72) {
_global.CurrentItemNumber = 3020;
}
if (_global.ItemFrame == 73) {
_global.CurrentItemNumber = 3021;
}
if (_global.ItemFrame == 74) {
_global.CurrentItemNumber = 3022;
}
if (_global.ItemFrame == 75) {
_global.CurrentItemNumber = 3023;
}
if (_global.ItemFrame == 76) {
_global.CurrentItemNumber = 3024;
}
if (_global.ItemFrame == 77) {
_global.CurrentItemNumber = 3025;
}
if (_global.ItemFrame == 78) {
_global.CurrentItemNumber = 3026;
}
if (_global.ItemFrame == 79) {
_global.CurrentItemNumber = 3027;
}
if (_global.ItemFrame == 80) {
_global.CurrentItemNumber = 3028;
}
if (_global.ItemFrame == 81) {
_global.CurrentItemNumber = 3029;
}
if (_global.ItemFrame == 82) {
_global.CurrentItemNumber = 3030;
}
if (_global.ItemFrame == 83) {
_global.CurrentItemNumber = 3031;
}
if (_global.ItemFrame == 84) {
_global.CurrentItemNumber = 3032;
}
if (_global.ItemFrame == 85) {
_global.CurrentItemNumber = 3033;
}
if (_global.ItemFrame == 86) {
_global.CurrentItemNumber = 3034;
}
if (_global.ItemFrame == 87) {
_global.CurrentItemNumber = 3035;
}
if (_global.ItemFrame == 88) {
_global.CurrentItemNumber = 3036;
}
if (_global.ItemFrame == 89) {
_global.CurrentItemNumber = 3037;
}
if (_global.ItemFrame == 90) {
_global.CurrentItemNumber = 3038;
}
if (_global.ItemFrame == 91) {
_global.CurrentItemNumber = 3039;
}
if (_global.ItemFrame == 92) {
_global.CurrentItemNumber = 3040;
}
if (_global.ItemFrame == 93) {
_global.CurrentItemNumber = 3041;
}
if (_global.ItemFrame == 94) {
_global.CurrentItemNumber = 3042;
}
if (_global.ItemFrame == 95) {
_global.CurrentItemNumber = 3043;
}
if (_global.ItemFrame == 96) {
_global.CurrentItemNumber = 3044;
}
if (_global.ItemFrame == 97) {
_global.CurrentItemNumber = 3045;
}
if (_global.ItemFrame == 98) {
_global.CurrentItemNumber = 3046;
}
if (_global.ItemFrame == 99) {
_global.CurrentItemNumber = 3047;
}
if (_global.ItemFrame == 100) {
_global.CurrentItemNumber = 3049;
}
if (_global.ItemFrame == 101) {
_global.CurrentItemNumber = 3050;
}
if (_global.ItemFrame == 102) {
_global.CurrentItemNumber = 3051;
}
if (_global.ItemFrame == 103) {
_global.CurrentItemNumber = 3052;
}
if (_global.ItemFrame == 104) {
_global.CurrentItemNumber = 3054;
}
if (_global.ItemFrame == 105) {
_global.CurrentItemNumber = 3056;
}
if (_global.ItemFrame == 106) {
_global.CurrentItemNumber = 3057;
}
if (_global.ItemFrame == 107) {
_global.CurrentItemNumber = 3058;
}
if (_global.ItemFrame == 108) {
_global.CurrentItemNumber = 3059;
}
if (_global.ItemFrame == 109) {
_global.CurrentItemNumber = 3060;
}
if (_global.ItemFrame == 110) {
_global.CurrentItemNumber = 3061;
}
if (_global.ItemFrame == 111) {
_global.CurrentItemNumber = 3062;
}
if (_global.ItemFrame == 112) {
_global.CurrentItemNumber = 3063;
}
if (_global.ItemFrame == 113) {
_global.CurrentItemNumber = 3064;
}
if (_global.ItemFrame == 114) {
_global.CurrentItemNumber = 3065;
}
if (_global.ItemFrame == 115) {
_global.CurrentItemNumber = 3066;
}
if (_global.ItemFrame == 116) {
_global.CurrentItemNumber = 3067;
}
if (_global.ItemFrame == 117) {
_global.CurrentItemNumber = 3068;
}
if (_global.ItemFrame == 118) {
_global.CurrentItemNumber = 3069;
}
if (_global.ItemFrame == 119) {
_global.CurrentItemNumber = 3070;
}
if (_global.ItemFrame == 120) {
_global.CurrentItemNumber = 3071;
}
if (_global.ItemFrame == 121) {
_global.CurrentItemNumber = 3072;
}
if (_global.ItemFrame == 122) {
_global.CurrentItemNumber = 3073;
}
if (_global.ItemFrame == 123) {
_global.CurrentItemNumber = 3075;
}
if (_global.ItemFrame == 124) {
_global.CurrentItemNumber = 3076;
}
if (_global.ItemFrame == 125) {
_global.CurrentItemNumber = 3077;
}
if (_global.ItemFrame == 126) {
_global.CurrentItemNumber = 3078;
}
if (_global.ItemFrame == 127) {
_global.CurrentItemNumber = 3081;
}
if (_global.ItemFrame == 128) {
_global.CurrentItemNumber = 3082;
}
if (_global.ItemFrame == 129) {
_global.CurrentItemNumber = 3083;
}
if (_global.ItemFrame == 130) {
_global.CurrentItemNumber = 3084;
}
if (_global.ItemFrame == 131) {
_global.CurrentItemNumber = 3085;
}
if (_global.ItemFrame == 132) {
_global.CurrentItemNumber = 3086;
}
if (_global.ItemFrame == 133) {
_global.CurrentItemNumber = 3087;
}
if (_global.ItemFrame == 134) {
_global.CurrentItemNumber = 3088;
}
if (_global.ItemFrame == 135) {
_global.CurrentItemNumber = 3089;
}
if (_global.ItemFrame == 136) {
_global.CurrentItemNumber = 3090;
}
if (_global.ItemFrame == 137) {
_global.CurrentItemNumber = 3091;
}
if (_global.ItemFrame == 138) {
_global.CurrentItemNumber = 3093;
}
if (_global.ItemFrame == 139) {
_global.CurrentItemNumber = 3094;
}
if (_global.ItemFrame == 140) {
_global.CurrentItemNumber = 3095;
}
};
_global.ItemPulse = function (Item) {
Item.gotoAndPlay(2);
};
_global.ItemPulseStop = function (Item) {
Item.gotoAndStop(1);
};
_global.ItemRollOver = function (Item) {
Item.Brightness.gotoAndPlay(2);
};
_global.ItemRollOut = function (Item) {
Item.Brightness.gotoAndPlay(6);
};
_global.SetItemTree = function (Item) {
if (Item == "0000") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1038") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3040;
_global.OutputItem2 = 3031;
_global.OutputItem3 = 3072;
_global.OutputItem4 = 3076;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1039") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3046;
_global.OutputItem2 = 3031;
_global.OutputItem3 = 3005;
_global.OutputItem4 = 3029;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1010") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3044;
_global.OutputItem2 = 3096;
_global.OutputItem3 = 3021;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1026") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3052;
_global.OutputItem2 = 3041;
_global.OutputItem3 = 3089;
_global.OutputItem4 = 3013;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1001") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3009;
_global.OutputItem2 = 3047;
_global.OutputItem3 = 3004;
_global.OutputItem4 = 3061;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1051") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3033;
_global.OutputItem2 = 3068;
_global.OutputItem3 = 3004;
_global.OutputItem4 = 3085;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1015") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3027;
_global.OutputItem2 = 3032;
_global.OutputItem3 = 3089;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1037") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3071;
_global.OutputItem2 = 3077;
_global.OutputItem3 = 3085;
_global.OutputItem4 = 3025;
_global.OutputItem5 = 3021;
_global.OutputItem6 = 0;
}
if (Item == "1031") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3075;
_global.OutputItem2 = 3007;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1012") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3094;
_global.OutputItem2 = 3028;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1018") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3033;
_global.OutputItem2 = 3084;
_global.OutputItem3 = 3086;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1029") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3082;
_global.OutputItem2 = 3051;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1042") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3091;
_global.OutputItem2 = 3021;
_global.OutputItem3 = 3050;
_global.OutputItem4 = 3086;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1033") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3059;
_global.OutputItem2 = 3065;
_global.OutputItem3 = 3042;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1004") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3028;
_global.OutputItem2 = 3037;
_global.OutputItem3 = 3076;
_global.OutputItem4 = 3057;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1020") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3095;
_global.OutputItem2 = 3094;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1041") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3091;
_global.OutputItem2 = 3056;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1036") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3091;
_global.OutputItem2 = 3035;
_global.OutputItem3 = 3071;
_global.OutputItem4 = 3023;
_global.OutputItem5 = 3065;
_global.OutputItem6 = 3013;
}
if (Item == "1005") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3003;
_global.OutputItem2 = 3088;
_global.OutputItem3 = 3062;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1011") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3026;
_global.OutputItem2 = 3022;
_global.OutputItem3 = 3005;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1007") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3073;
_global.OutputItem2 = 3010;
_global.OutputItem3 = 3062;
_global.OutputItem4 = 3096;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1006") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3076;
_global.OutputItem2 = 3051;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1028") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3022;
_global.OutputItem2 = 3083;
_global.OutputItem3 = 3001;
_global.OutputItem4 = 3049;
_global.OutputItem5 = 3073;
_global.OutputItem6 = 0;
}
if (Item == "1014") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3007;
_global.OutputItem2 = 3043;
_global.OutputItem3 = 3057;
_global.OutputItem4 = 3088;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1027") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3024;
_global.OutputItem2 = 3041;
_global.OutputItem3 = 3049;
_global.OutputItem4 = 3043;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1008") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3082;
_global.OutputItem2 = 3095;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1035") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3056;
_global.OutputItem2 = 3093;
_global.OutputItem3 = 3044;
_global.OutputItem4 = 3054;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1019") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3068;
_global.OutputItem2 = 3084;
_global.OutputItem3 = 3046;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "1043") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3035;
_global.OutputItem2 = 3056;
_global.OutputItem3 = 3030;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2002") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2003") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2004") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2006") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2019") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2026") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2037") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2038") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2039") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2041") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2042") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2043") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "2044") {
_global.InputItem1 = 0;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3001") {
_global.InputItem1 = 3013;
_global.InputItem2 = 1028;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3003") {
_global.InputItem1 = 3088;
_global.InputItem2 = 1005;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3004") {
_global.InputItem1 = 1001;
_global.InputItem2 = 1051;
_global.InputItem3 = 0;
_global.OutputItem1 = 3006;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3005") {
_global.InputItem1 = 1039;
_global.InputItem2 = 1011;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3093") {
_global.InputItem1 = 1035;
_global.InputItem2 = 1035;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3006") {
_global.InputItem1 = 3004;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3007") {
_global.InputItem1 = 1031;
_global.InputItem2 = 1014;
_global.InputItem3 = 0;
_global.OutputItem1 = 3024;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3009") {
_global.InputItem1 = 1001;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3010") {
_global.InputItem1 = 3062;
_global.InputItem2 = 1007;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3013") {
_global.InputItem1 = 1026;
_global.InputItem2 = 1036;
_global.InputItem3 = 0;
_global.OutputItem1 = 3001;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3020") {
_global.InputItem1 = 3061;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3022") {
_global.InputItem1 = 1028;
_global.InputItem2 = 1011;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3023") {
_global.InputItem1 = 3029;
_global.InputItem2 = 1036;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3024") {
_global.InputItem1 = 1027;
_global.InputItem2 = 3007;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3025") {
_global.InputItem1 = 3075;
_global.InputItem2 = 1037;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3026") {
_global.InputItem1 = 3051;
_global.InputItem2 = 1011;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3027") {
_global.InputItem1 = 3043;
_global.InputItem2 = 1015;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3028") {
_global.InputItem1 = 1004;
_global.InputItem2 = 1012;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3029") {
_global.InputItem1 = 1039;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3023;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3030") {
_global.InputItem1 = 3085;
_global.InputItem2 = 1043;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3031") {
_global.InputItem1 = 1038;
_global.InputItem2 = 1039;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3032") {
_global.InputItem1 = 3049;
_global.InputItem2 = 1015;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3033") {
_global.InputItem1 = 1018;
_global.InputItem2 = 1051;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3035") {
_global.InputItem1 = 1043;
_global.InputItem2 = 1036;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3097") {
_global.InputItem1 = 3054;
_global.InputItem2 = 3051;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3037") {
_global.InputItem1 = 1004;
_global.InputItem2 = 1004;
_global.InputItem3 = 0;
_global.OutputItem1 = 3042;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3040") {
_global.InputItem1 = 1038;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3041") {
_global.InputItem1 = 1026;
_global.InputItem2 = 1027;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3042") {
_global.InputItem1 = 3037;
_global.InputItem2 = 1033;
_global.InputItem3 = 1033;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3094") {
_global.InputItem1 = 1020;
_global.InputItem2 = 1012;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3095") {
_global.InputItem1 = 1020;
_global.InputItem2 = 1008;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3043") {
_global.InputItem1 = 1014;
_global.InputItem2 = 1027;
_global.InputItem3 = 0;
_global.OutputItem1 = 3027;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3044") {
_global.InputItem1 = 1010;
_global.InputItem2 = 1035;
_global.InputItem3 = 0;
_global.OutputItem1 = 3078;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3046") {
_global.InputItem1 = 1019;
_global.InputItem2 = 1039;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3047") {
_global.InputItem1 = 1001;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3049") {
_global.InputItem1 = 1028;
_global.InputItem2 = 1027;
_global.InputItem3 = 0;
_global.OutputItem1 = 3070;
_global.OutputItem2 = 3059;
_global.OutputItem3 = 3032;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3050") {
_global.InputItem1 = 3054;
_global.InputItem2 = 1042;
_global.InputItem3 = 0;
_global.OutputItem1 = 3066;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3051") {
_global.InputItem1 = 1029;
_global.InputItem2 = 1006;
_global.InputItem3 = 0;
_global.OutputItem1 = 3026;
_global.OutputItem2 = 3097;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3052") {
_global.InputItem1 = 3062;
_global.InputItem2 = 1026;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3054") {
_global.InputItem1 = 1035;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3097;
_global.OutputItem2 = 3072;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3056") {
_global.InputItem1 = 1043;
_global.InputItem2 = 1041;
_global.InputItem3 = 1035;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3057") {
_global.InputItem1 = 1014;
_global.InputItem2 = 1004;
_global.InputItem3 = 0;
_global.OutputItem1 = 3078;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3059") {
_global.InputItem1 = 3049;
_global.InputItem2 = 1033;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3061") {
_global.InputItem1 = 1001;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3020;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3062") {
_global.InputItem1 = 1007;
_global.InputItem2 = 1005;
_global.InputItem3 = 0;
_global.OutputItem1 = 3010;
_global.OutputItem2 = 3070;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3021") {
_global.InputItem1 = 1010;
_global.InputItem2 = 1037;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3065") {
_global.InputItem1 = 1036;
_global.InputItem2 = 1033;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3066") {
_global.InputItem1 = 3086;
_global.InputItem2 = 3050;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3068") {
_global.InputItem1 = 1019;
_global.InputItem2 = 1051;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3070") {
_global.InputItem1 = 3049;
_global.InputItem2 = 3062;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3071") {
_global.InputItem1 = 1037;
_global.InputItem2 = 1036;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3072") {
_global.InputItem1 = 1038;
_global.InputItem2 = 3054;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3075") {
_global.InputItem1 = 1031;
_global.InputItem2 = 0;
_global.InputItem3 = 0;
_global.OutputItem1 = 3025;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3076") {
_global.InputItem1 = 1038;
_global.InputItem2 = 1006;
_global.InputItem3 = 1004;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3077") {
_global.InputItem1 = 3076;
_global.InputItem2 = 1037;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3078") {
_global.InputItem1 = 3044;
_global.InputItem2 = 3057;
_global.InputItem3 = 3086;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3073") {
_global.InputItem1 = 1028;
_global.InputItem2 = 1007;
_global.InputItem3 = 0;
_global.OutputItem1 = 3083;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3082") {
_global.InputItem1 = 1029;
_global.InputItem2 = 1029;
_global.InputItem3 = 1008;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3083") {
_global.InputItem1 = 3073;
_global.InputItem2 = 1028;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3084") {
_global.InputItem1 = 1018;
_global.InputItem2 = 1019;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3085") {
_global.InputItem1 = 1051;
_global.InputItem2 = 1037;
_global.InputItem3 = 0;
_global.OutputItem1 = 3030;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3086") {
_global.InputItem1 = 1018;
_global.InputItem2 = 1042;
_global.InputItem3 = 0;
_global.OutputItem1 = 3078;
_global.OutputItem2 = 3066;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3088") {
_global.InputItem1 = 1005;
_global.InputItem2 = 1014;
_global.InputItem3 = 0;
_global.OutputItem1 = 3003;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
if (Item == "3089") {
_global.InputItem1 = 1015;
_global.InputItem2 = 1026;
_global.InputItem3 = 0;
_global.OutputItem1 = 0;
_global.OutputItem2 = 0;
_global.OutputItem3 = 0;
_global.OutputItem4 = 0;
_global.OutputItem5 = 0;
_global.OutputItem6 = 0;
}
};
_global.ItemClick = function (Item) {
if (_global.inventory == 0) {
_global.SelectedInventoryItem = 0;
}
_global.ItemFrame = Item.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.Requirements.TopItem);
_global.SetIcon(_global.InputItem1, _root.Shop.ItemDetails.Requirements.Component1);
_global.SetIcon(_global.InputItem2, _root.Shop.ItemDetails.Requirements.Component2);
_global.SetIcon(_global.InputItem3, _root.Shop.ItemDetails.Requirements.Component3);
_global.ItemFrame = _root.Shop.ItemDetails.Requirements.Component1.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.InputItem1, _root.Shop.ItemDetails.Requirements.Basic1);
_global.SetIcon(_global.InputItem2, _root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemFrame = _root.Shop.ItemDetails.Requirements.Component2.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.InputItem1, _root.Shop.ItemDetails.Requirements.Basic3);
_global.SetIcon(_global.InputItem2, _root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemFrame = _root.Shop.ItemDetails.Requirements.Component3.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.InputItem1, _root.Shop.ItemDetails.Requirements.Basic5);
_global.SetIcon(_global.InputItem2, _root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemTip_Close();
};
Instance of Symbol 348 MovieClip "Shop" in Frame 1
onClipEvent (load) {
this.Shop_Drag.onPress = function () {
startDrag (_root.Shop);
};
this.Shop_Drag.onRelease = function () {
stopDrag();
};
}
Frame 2
_root.ItemTip._x = _xmouse;
_root.ItemTip._y = _ymouse;
if (_root.ItemTip._y > 800) {
_root.ItemTip._y = _root.ItemTip._y - 160;
}
if (_root.ItemTip._x > 940) {
_root.ItemTip._x = _root.ItemTip._x - 360;
}
_root.Shop.PlayerGold.text = _global.PlayerGold;
if (Number(_root.Shop.PlayerGold.text) > Number(_root.Shop.ItemDetails.MainItem.ItemGold.text)) {
_root.Shop.BuyBlocker._visible = false;
} else {
_root.Shop.BuyBlocker._visible = true;
}
if (_global.SelectedInventoryItem < 1) {
_root.Shop.SellBlocker._visible = true;
} else {
_root.Shop.SellBlocker._visible = false;
_root.Shop.BuyBlocker._visible = true;
}
Frame 3
gotoAndPlay (2);
Symbol 6 Button
on (release) {
_global.ItemFrame = _root.Shop.ItemDetails.MainItem.ItemIcon._currentframe;
_global.ItemNumber();
if (_global.InventoryIcon1 == 0) {
_global.InventoryIcon1 = _global.CurrentItemNumber;
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.Inventory.InventoryItem1);
_global.PlayerGold = _global.PlayerGold - Number(_root.Shop.ItemDetails.MainItem.ItemGold.text);
fscommand ("Buy " + _global.CurrentItemNumber);
} else if (_global.InventoryIcon2 == 0) {
_global.InventoryIcon2 = _global.CurrentItemNumber;
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.Inventory.InventoryItem2);
_global.PlayerGold = _global.PlayerGold - Number(_root.Shop.ItemDetails.MainItem.ItemGold.text);
fscommand ("Buy " + _global.CurrentItemNumber);
} else if (_global.InventoryIcon2 == 0) {
_global.InventoryIcon2 = _global.CurrentItemNumber;
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.Inventory.InventoryItem2);
_global.PlayerGold = _global.PlayerGold - Number(_root.Shop.ItemDetails.MainItem.ItemGold.text);
fscommand ("Buy " + _global.CurrentItemNumber);
} else if (_global.InventoryIcon3 == 0) {
_global.InventoryIcon3 = _global.CurrentItemNumber;
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.Inventory.InventoryItem3);
_global.PlayerGold = _global.PlayerGold - Number(_root.Shop.ItemDetails.MainItem.ItemGold.text);
fscommand ("Buy " + _global.CurrentItemNumber);
} else if (_global.InventoryIcon4 == 0) {
_global.InventoryIcon4 = _global.CurrentItemNumber;
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.Inventory.InventoryItem4);
_global.PlayerGold = _global.PlayerGold - Number(_root.Shop.ItemDetails.MainItem.ItemGold.text);
fscommand ("Buy " + _global.CurrentItemNumber);
} else if (_global.InventoryIcon5 == 0) {
_global.InventoryIcon5 = _global.CurrentItemNumber;
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.Inventory.InventoryItem5);
_global.PlayerGold = _global.PlayerGold - Number(_root.Shop.ItemDetails.MainItem.ItemGold.text);
fscommand ("Buy " + _global.CurrentItemNumber);
} else if (_global.InventoryIcon6 == 0) {
_global.InventoryIcon6 = _global.CurrentItemNumber;
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.Inventory.InventoryItem6);
_global.PlayerGold = _global.PlayerGold - Number(_root.Shop.ItemDetails.MainItem.ItemGold.text);
fscommand ("Buy " + _global.CurrentItemNumber);
}
}
Symbol 9 Button
on (release) {
if (_global.SelectedInventoryItem == 1) {
fscommand ("Sell " + _global.InventoryIcon1);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem1);
_global.InventoryIcon1 = 0;
_global.SelectedInventoryItem = 0;
_global.PlayerGold = Number(_root.Shop.Inventory.InventoryItem1.ItemGold.text) + _global.PlayerGold;
}
if (_global.SelectedInventoryItem == 2) {
fscommand ("Sell " + _global.InventoryIcon2);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem2);
_global.InventoryIcon2 = 0;
_global.SelectedInventoryItem = 0;
_global.PlayerGold = Number(_root.Shop.Inventory.InventoryItem2.ItemGold.text) + _global.PlayerGold;
}
if (_global.SelectedInventoryItem == 3) {
fscommand ("Sell " + _global.InventoryIcon3);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem3);
_global.InventoryIcon3 = 0;
_global.SelectedInventoryItem = 0;
_global.PlayerGold = Number(_root.Shop.Inventory.InventoryItem3.ItemGold.text) + _global.PlayerGold;
}
if (_global.SelectedInventoryItem == 4) {
fscommand ("Sell " + _global.InventoryIcon4);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem4);
_global.InventoryIcon4 = 0;
_global.SelectedInventoryItem = 0;
_global.PlayerGold = Number(_root.Shop.Inventory.InventoryItem4.ItemGold.text) + _global.PlayerGold;
}
if (_global.SelectedInventoryItem == 5) {
fscommand ("Sell " + _global.InventoryIcon5);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem5);
_global.InventoryIcon5 = 0;
_global.SelectedInventoryItem = 0;
_global.PlayerGold = Number(_root.Shop.Inventory.InventoryItem5.ItemGold.text) + _global.PlayerGold;
}
if (_global.SelectedInventoryItem == 6) {
fscommand ("Sell " + _global.InventoryIcon6);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem6);
_global.InventoryIcon6 = 0;
_global.SelectedInventoryItem = 0;
_global.PlayerGold = Number(_root.Shop.Inventory.InventoryItem6.ItemGold.text) + _global.PlayerGold;
}
}
Symbol 19 MovieClip Frame 1
stop();
Symbol 19 MovieClip Frame 5
stop();
Symbol 19 MovieClip Frame 9
stop();
Symbol 19 MovieClip Frame 16
stop();
Instance of Symbol 19 MovieClip "Button1" in Symbol 20 MovieClip Frame 1
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.Loc_Chevron2 = this.CategoryText.text;
_global.backwards = 0;
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.gotoAndPlay(11);
};
}
Instance of Symbol 19 MovieClip "Button2" in Symbol 20 MovieClip Frame 1
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.Loc_Chevron2 = this.CategoryText.text;
_global.backwards = 0;
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.gotoAndPlay(11);
};
}
Instance of Symbol 19 MovieClip "Button3" in Symbol 20 MovieClip Frame 1
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.Loc_Chevron2 = this.CategoryText.text;
_global.backwards = 0;
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.gotoAndPlay(11);
};
}
Instance of Symbol 19 MovieClip "Button4" in Symbol 20 MovieClip Frame 1
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.Loc_Chevron2 = this.CategoryText.text;
_global.backwards = 0;
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.gotoAndPlay(11);
};
}
Instance of Symbol 19 MovieClip "Button5" in Symbol 20 MovieClip Frame 1
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.Loc_Chevron2 = this.CategoryText.text;
_global.backwards = 0;
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.gotoAndPlay(11);
};
}
Symbol 20 MovieClip Frame 10
stop();
Symbol 20 MovieClip Frame 20
_root.Shop.NoobShop.CategoryButtons.gotoAndPlay(2);
stop();
Symbol 20 MovieClip Frame 31
stop();
Symbol 25 MovieClip Frame 1
stop();
Symbol 25 MovieClip Frame 5
stop();
Symbol 25 MovieClip Frame 9
stop();
Symbol 25 MovieClip Frame 15
stop();
Instance of Symbol 19 MovieClip "Button1" in Symbol 26 MovieClip Frame 1
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.Loc_Chevron3 = this.CategoryText.text;
_global.backwards = 0;
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(11);
};
}
Instance of Symbol 19 MovieClip "Button2" in Symbol 26 MovieClip Frame 1
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.Loc_Chevron3 = this.CategoryText.text;
_global.backwards = 0;
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(11);
};
}
Instance of Symbol 19 MovieClip "Button3" in Symbol 26 MovieClip Frame 1
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.Loc_Chevron3 = this.CategoryText.text;
_global.backwards = 0;
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(11);
};
}
Instance of Symbol 19 MovieClip "Button4" in Symbol 26 MovieClip Frame 1
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.Loc_Chevron3 = this.CategoryText.text;
_global.backwards = 0;
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(11);
};
}
Instance of Symbol 19 MovieClip "Button5" in Symbol 26 MovieClip Frame 1
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.Loc_Chevron3 = this.CategoryText.text;
_global.backwards = 0;
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(11);
};
}
Symbol 26 MovieClip Frame 10
stop();
Symbol 26 MovieClip Frame 20
_root.Shop.NoobShop.CategoryButtons.gotoAndPlay(3);
stop();
Symbol 26 MovieClip Frame 30
_root.Shop.NoobShop.CategoryButtons.gotoAndPlay(1);
stop();
Symbol 26 MovieClip Frame 40
stop();
Symbol 26 MovieClip Frame 60
_root.Shop.NoobShop.CategoryButtons.gotoAndPlay(1);
stop();
Symbol 28 MovieClip Frame 1
stop();
Symbol 28 MovieClip Frame 5
stop();
Symbol 28 MovieClip Frame 10
gotoAndStop (1);
Symbol 31 MovieClip Frame 1
stop();
Symbol 31 MovieClip Frame 5
stop();
Symbol 31 MovieClip Frame 10
gotoAndStop (1);
Symbol 32 MovieClip Frame 1
stop();
Symbol 32 MovieClip Frame 2
stop();
Symbol 36 MovieClip Frame 1
stop();
Symbol 36 MovieClip Frame 2
stop();
Symbol 36 MovieClip Frame 3
stop();
Symbol 36 MovieClip Frame 4
stop();
Symbol 317 MovieClip Frame 1
stop();
Symbol 317 MovieClip Frame 2
stop();
Symbol 317 MovieClip Frame 3
stop();
Symbol 317 MovieClip Frame 4
stop();
Symbol 317 MovieClip Frame 5
stop();
Symbol 317 MovieClip Frame 6
stop();
Symbol 317 MovieClip Frame 7
stop();
Symbol 317 MovieClip Frame 8
stop();
Symbol 317 MovieClip Frame 9
stop();
Symbol 317 MovieClip Frame 10
stop();
Symbol 317 MovieClip Frame 11
stop();
Symbol 317 MovieClip Frame 12
stop();
Symbol 317 MovieClip Frame 13
stop();
Symbol 317 MovieClip Frame 14
stop();
Symbol 317 MovieClip Frame 15
stop();
Symbol 317 MovieClip Frame 16
stop();
Symbol 317 MovieClip Frame 17
stop();
Symbol 317 MovieClip Frame 18
stop();
Symbol 317 MovieClip Frame 19
stop();
Symbol 317 MovieClip Frame 20
stop();
Symbol 317 MovieClip Frame 21
stop();
Symbol 317 MovieClip Frame 22
stop();
Symbol 317 MovieClip Frame 23
stop();
Symbol 317 MovieClip Frame 24
stop();
Symbol 317 MovieClip Frame 25
stop();
Symbol 317 MovieClip Frame 26
stop();
Symbol 317 MovieClip Frame 27
stop();
Symbol 317 MovieClip Frame 28
stop();
Symbol 317 MovieClip Frame 29
stop();
Symbol 317 MovieClip Frame 30
stop();
Symbol 317 MovieClip Frame 31
stop();
Symbol 317 MovieClip Frame 32
stop();
Symbol 317 MovieClip Frame 33
stop();
Symbol 317 MovieClip Frame 34
stop();
Symbol 317 MovieClip Frame 35
stop();
Symbol 317 MovieClip Frame 36
stop();
Symbol 317 MovieClip Frame 37
stop();
Symbol 317 MovieClip Frame 38
stop();
Symbol 317 MovieClip Frame 39
stop();
Symbol 317 MovieClip Frame 40
stop();
Symbol 317 MovieClip Frame 41
stop();
Symbol 317 MovieClip Frame 42
stop();
Symbol 317 MovieClip Frame 43
stop();
Symbol 317 MovieClip Frame 44
stop();
Symbol 317 MovieClip Frame 45
stop();
Symbol 317 MovieClip Frame 46
stop();
Symbol 317 MovieClip Frame 47
stop();
Symbol 317 MovieClip Frame 48
stop();
Symbol 317 MovieClip Frame 49
stop();
Symbol 317 MovieClip Frame 50
stop();
Symbol 317 MovieClip Frame 51
stop();
Symbol 317 MovieClip Frame 52
stop();
Symbol 317 MovieClip Frame 53
stop();
Symbol 317 MovieClip Frame 54
stop();
Symbol 317 MovieClip Frame 55
stop();
Symbol 317 MovieClip Frame 56
stop();
Symbol 317 MovieClip Frame 57
stop();
Symbol 317 MovieClip Frame 58
stop();
Symbol 317 MovieClip Frame 59
stop();
Symbol 317 MovieClip Frame 60
stop();
Symbol 317 MovieClip Frame 61
stop();
Symbol 317 MovieClip Frame 62
stop();
Symbol 317 MovieClip Frame 63
stop();
Symbol 317 MovieClip Frame 64
stop();
Symbol 317 MovieClip Frame 65
stop();
Symbol 317 MovieClip Frame 66
stop();
Symbol 317 MovieClip Frame 67
stop();
Symbol 317 MovieClip Frame 68
stop();
Symbol 317 MovieClip Frame 69
stop();
Symbol 317 MovieClip Frame 70
stop();
Symbol 317 MovieClip Frame 71
stop();
Symbol 317 MovieClip Frame 72
stop();
Symbol 317 MovieClip Frame 73
stop();
Symbol 317 MovieClip Frame 74
stop();
Symbol 317 MovieClip Frame 75
stop();
Symbol 317 MovieClip Frame 76
stop();
Symbol 317 MovieClip Frame 77
stop();
Symbol 317 MovieClip Frame 78
stop();
Symbol 317 MovieClip Frame 79
stop();
Symbol 317 MovieClip Frame 80
stop();
Symbol 317 MovieClip Frame 81
stop();
Symbol 317 MovieClip Frame 82
stop();
Symbol 317 MovieClip Frame 83
stop();
Symbol 317 MovieClip Frame 84
stop();
Symbol 317 MovieClip Frame 85
stop();
Symbol 317 MovieClip Frame 86
stop();
Symbol 317 MovieClip Frame 87
stop();
Symbol 317 MovieClip Frame 88
stop();
Symbol 317 MovieClip Frame 89
stop();
Symbol 317 MovieClip Frame 90
stop();
Symbol 317 MovieClip Frame 91
stop();
Symbol 317 MovieClip Frame 92
stop();
Symbol 317 MovieClip Frame 93
stop();
Symbol 317 MovieClip Frame 94
stop();
Symbol 317 MovieClip Frame 95
stop();
Symbol 317 MovieClip Frame 96
stop();
Symbol 317 MovieClip Frame 97
stop();
Symbol 317 MovieClip Frame 98
stop();
Symbol 317 MovieClip Frame 99
stop();
Symbol 317 MovieClip Frame 100
stop();
Symbol 317 MovieClip Frame 101
stop();
Symbol 317 MovieClip Frame 102
stop();
Symbol 317 MovieClip Frame 103
stop();
Symbol 317 MovieClip Frame 104
stop();
Symbol 317 MovieClip Frame 105
stop();
Symbol 317 MovieClip Frame 106
stop();
Symbol 317 MovieClip Frame 107
stop();
Symbol 317 MovieClip Frame 108
stop();
Symbol 317 MovieClip Frame 109
stop();
Symbol 317 MovieClip Frame 110
stop();
Symbol 317 MovieClip Frame 111
stop();
Symbol 317 MovieClip Frame 112
stop();
Symbol 317 MovieClip Frame 113
stop();
Symbol 317 MovieClip Frame 114
stop();
Symbol 317 MovieClip Frame 115
stop();
Symbol 317 MovieClip Frame 116
stop();
Symbol 317 MovieClip Frame 117
stop();
Symbol 317 MovieClip Frame 118
stop();
Symbol 317 MovieClip Frame 119
stop();
Symbol 317 MovieClip Frame 120
stop();
Symbol 317 MovieClip Frame 121
stop();
Symbol 317 MovieClip Frame 122
stop();
Symbol 317 MovieClip Frame 123
stop();
Symbol 317 MovieClip Frame 124
stop();
Symbol 317 MovieClip Frame 125
stop();
Symbol 317 MovieClip Frame 126
stop();
Symbol 317 MovieClip Frame 127
stop();
Symbol 317 MovieClip Frame 128
stop();
Symbol 317 MovieClip Frame 129
stop();
Symbol 317 MovieClip Frame 130
stop();
Symbol 317 MovieClip Frame 131
stop();
Symbol 317 MovieClip Frame 132
stop();
Symbol 317 MovieClip Frame 133
stop();
Symbol 317 MovieClip Frame 134
stop();
Symbol 317 MovieClip Frame 135
stop();
Symbol 317 MovieClip Frame 136
stop();
Symbol 317 MovieClip Frame 137
stop();
Symbol 317 MovieClip Frame 138
stop();
Symbol 317 MovieClip Frame 139
stop();
Symbol 317 MovieClip Frame 140
stop();
Symbol 319 MovieClip Frame 1
stop();
Symbol 319 MovieClip Frame 5
stop();
Symbol 323 MovieClip Frame 1
stop();
Symbol 323 MovieClip Frame 5
stop();
Symbol 323 MovieClip Frame 11
gotoAndPlay (2);
Instance of Symbol 323 MovieClip "Item1" in Symbol 324 MovieClip Frame 1
onClipEvent (load) {
ItemDescription._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Item4" in Symbol 324 MovieClip Frame 1
onClipEvent (load) {
ItemDescription._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Item2" in Symbol 324 MovieClip Frame 1
onClipEvent (load) {
ItemDescription._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Item5" in Symbol 324 MovieClip Frame 1
onClipEvent (load) {
ItemDescription._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Item3" in Symbol 324 MovieClip Frame 1
onClipEvent (load) {
ItemDescription._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Item6" in Symbol 324 MovieClip Frame 1
onClipEvent (load) {
ItemDescription._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Item9" in Symbol 324 MovieClip Frame 1
onClipEvent (load) {
ItemDescription._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Item7" in Symbol 324 MovieClip Frame 1
onClipEvent (load) {
ItemDescription._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Item10" in Symbol 324 MovieClip Frame 1
onClipEvent (load) {
ItemDescription._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Item8" in Symbol 324 MovieClip Frame 1
onClipEvent (load) {
ItemDescription._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Symbol 324 MovieClip Frame 10
stop();
Symbol 324 MovieClip Frame 20
stop();
Symbol 324 MovieClip Frame 30
_root.Shop.NoobShop.CategoryButtons.gotoAndPlay(2);
Symbol 326 MovieClip Frame 1
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.Button1.CategoryText.text = "Survival";
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.Button2.CategoryText.text = "Attack";
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.Button3.CategoryText.text = "Magical";
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.Button4.CategoryText.text = "Movement";
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.Button5.CategoryText.text = "Cantrips";
if (_global.backwards == 0) {
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.gotoAndPlay(2);
_global.backwards = 0;
}
if (_global.backwards == 1) {
_root.Shop.NoobShop.CategoryButtons.Level1_Buttons.gotoAndPlay(21);
_global.backwards = 0;
}
stop();
Symbol 326 MovieClip Frame 2
_global.Loc_Chevron1 = "Home";
this.Chevron1.ChevronText.text = _global.Loc_Chevron1;
this.Chevron1.gotoAndStop(1);
this.Chevron2.ChevronText.text = _global.Loc_Chevron2;
this.Chevron2.gotoAndStop(2);
if (_global.movement == 1) {
_global.movement = 0;
_global.backwards = 1;
this.gotoAndPlay(1);
}
if (_global.backwards == 0) {
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(2);
}
if (_global.backwards == 1) {
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(21);
}
if (_global.backwards == 2) {
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(31);
}
if (_global.backwards == 3) {
_global.backwards = 1;
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(41);
}
if (Chevron2.ChevronText.text == "Survival") {
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button1.CategoryText.text = "Health";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button2.CategoryText.text = "Spell Block";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button3.CategoryText.text = "Health Regen";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button4.CategoryText.text = "Armor";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button5.CategoryText.text = "Hybrid";
}
if (Chevron2.ChevronText.text == "Attack") {
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button1.CategoryText.text = "Damage";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button2.CategoryText.text = "Critical Strike";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button3.CategoryText.text = "Attack Speed";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button4.CategoryText.text = "Life Steal";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button5.CategoryText.text = "Hybrid";
}
if (Chevron2.ChevronText.text == "Magical") {
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button1.CategoryText.text = "Spell Damage";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button2.CategoryText.text = "Mana";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button3.CategoryText.text = "Mana Regen";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button4.CategoryText.text = "Hybrid";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button5._visible = false;
}
if (Chevron2.ChevronText.text == "Movement") {
_global.movement = 1;
_root.Shop.NoobShop.CategoryButtons.gotoAndPlay(3);
}
if (Chevron2.ChevronText.text == "Cantrips") {
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button1.CategoryText.text = "Permanent Items";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button2.CategoryText.text = "Consumables";
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button3._visible = false;
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button4._visible = false;
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.Button5._visible = false;
}
stop();
Instance of Symbol 25 MovieClip in Symbol 326 MovieClip Frame 2
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.backwards = 1;
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(21);
};
}
Instance of Symbol 32 MovieClip "Chevron1" in Symbol 326 MovieClip Frame 2
onClipEvent (load) {
this.onRollOver = function () {
this.ChevronSquare.gotoAndPlay(2);
};
this.onRollOut = function () {
this.ChevronSquare.gotoAndPlay(6);
};
this.onDragOut = function () {
this.ChevronSquare.gotoAndPlay(6);
};
this.onRelease = function () {
_global.backwards = 1;
_root.Shop.NoobShop.CategoryButtons.Level2_Buttons.gotoAndPlay(21);
};
}
Symbol 326 MovieClip Frame 3
_root.Shop.NoobShop.CategoryButtons.Chevron3._visible = true;
this.Chevron1.ChevronText.text = _global.Loc_Chevron1;
this.Chevron1.gotoAndStop(1);
this.Chevron2.ChevronText.text = _global.Loc_Chevron2;
this.Chevron2.gotoAndStop(2);
this.Chevron3.ChevronText.text = _global.Loc_Chevron3;
this.Chevron3.gotoAndStop(2);
if (_global.backwards == 0) {
_root.Shop.NoobShop.CategoryButtons.ItemList.gotoAndPlay(1);
}
if (_global.backwards == 1) {
_root.Shop.NoobShop.CategoryButtons.ItemList.gotoAndPlay(21);
}
if (_global.backwards == 2) {
_root.Shop.NoobShop.CategoryButtons.ItemList.gotoAndPlay(21);
}
if (Chevron2.ChevronText.text == "Survival") {
if (Chevron3.ChevronText.text == "Health") {
_global.SetIcon(3022, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3026, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3095, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(3073, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(3083, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(1028, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Spell Block") {
_global.SetIcon(3042, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3065, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(1033, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(2026, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Health Regen") {
_global.SetIcon(3010, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3096, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3051, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(1007, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(1006, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(2003, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(2043, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Armor") {
_global.SetIcon(3025, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3075, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3082, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(1031, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(1029, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Hybrid") {
_global.SetIcon(3052, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3059, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3021, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(3070, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(3078, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
}
if (Chevron2.ChevronText.text == "Attack") {
if (Chevron3.ChevronText.text == "Damage") {
_global.SetIcon(3093, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3023, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3029, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(3040, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(3044, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(3071, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(3076, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(3077, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(3085, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(1037, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Critical Strike") {
_global.SetIcon(3031, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3033, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3046, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(3068, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(3084, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(1019, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Attack Speed") {
_global.SetIcon(3030, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3035, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3056, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(3091, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(1042, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(1041, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(1043, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Life Steal") {
_global.SetIcon(3097, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3050, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3054, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(3066, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(3072, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Hybrid") {
_global.SetIcon(3021, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
}
if (Chevron2.ChevronText.text == "Magical") {
if (Chevron3.ChevronText.text == "Spell Damage") {
_global.SetIcon(3001, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3013, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3041, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(3057, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(3089, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(1026, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Mana") {
_global.SetIcon(3007, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3024, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3027, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(3032, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(3094, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(3043, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(1027, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Mana Regen") {
_global.SetIcon(3003, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3028, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3037, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(1004, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(1005, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(2004, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(2044, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Hybrid") {
_global.SetIcon(3052, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3059, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3070, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(3078, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
}
if (Chevron2.ChevronText.text == "Movement") {
_root.Shop.NoobShop.CategoryButtons.Chevron3._visible = false;
_global.movement = 1;
_global.SetIcon(3004, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(3006, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(3009, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(3020, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(3047, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(3061, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(1001, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(2002, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron2.ChevronText.text == "Cantrips") {
if (Chevron3.ChevronText.text == "Permanent Items") {
_global.SetIcon(1001, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(1004, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(1020, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(1006, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(1005, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(1007, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(0, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
if (Chevron3.ChevronText.text == "Consumables") {
_global.SetIcon(2002, _root.Shop.NoobShop.CategoryButtons.ItemList.Item1);
_global.SetIcon(2003, _root.Shop.NoobShop.CategoryButtons.ItemList.Item2);
_global.SetIcon(2004, _root.Shop.NoobShop.CategoryButtons.ItemList.Item3);
_global.SetIcon(2006, _root.Shop.NoobShop.CategoryButtons.ItemList.Item4);
_global.SetIcon(2019, _root.Shop.NoobShop.CategoryButtons.ItemList.Item5);
_global.SetIcon(2026, _root.Shop.NoobShop.CategoryButtons.ItemList.Item6);
_global.SetIcon(2037, _root.Shop.NoobShop.CategoryButtons.ItemList.Item7);
_global.SetIcon(2038, _root.Shop.NoobShop.CategoryButtons.ItemList.Item8);
_global.SetIcon(2039, _root.Shop.NoobShop.CategoryButtons.ItemList.Item9);
_global.SetIcon(2041, _root.Shop.NoobShop.CategoryButtons.ItemList.Item10);
}
}
stop();
Instance of Symbol 25 MovieClip in Symbol 326 MovieClip Frame 3
onClipEvent (load) {
this.onRollOver = function () {
this.gotoAndPlay(2);
};
this.onRollOut = function () {
this.gotoAndPlay(6);
};
this.onRelease = function () {
this.gotoAndPlay(10);
_global.backwards = 2;
_root.Shop.NoobShop.CategoryButtons.ItemList.gotoAndPlay(21);
};
}
Instance of Symbol 32 MovieClip "Chevron1" in Symbol 326 MovieClip Frame 3
onClipEvent (load) {
this.onRollOver = function () {
this.ChevronSquare.gotoAndPlay(2);
};
this.onRollOut = function () {
this.ChevronSquare.gotoAndPlay(6);
};
this.onDragOut = function () {
this.ChevronSquare.gotoAndPlay(6);
};
this.onRelease = function () {
_global.backwards = 3;
_root.Shop.NoobShop.CategoryButtons.ItemList.gotoAndPlay(21);
};
}
Instance of Symbol 32 MovieClip "Chevron2" in Symbol 326 MovieClip Frame 3
onClipEvent (load) {
this.onRollOver = function () {
if (_global.movement == 1) {
} else {
this.ChevronArrow.gotoAndPlay(2);
}
};
this.onRollOut = function () {
if (_global.movement == 1) {
} else {
this.ChevronArrow.gotoAndPlay(6);
}
};
this.onDragOut = function () {
if (_global.movement == 1) {
} else {
this.ChevronArrow.gotoAndPlay(6);
}
};
this.onRelease = function () {
if (_global.movement == 1) {
} else {
_global.backwards = 2;
_root.Shop.NoobShop.CategoryButtons.ItemList.gotoAndPlay(21);
}
};
}
Instance of Symbol 32 MovieClip "Chevron3" in Symbol 326 MovieClip Frame 3
/* no clip actions */
Symbol 327 MovieClip Frame 1
_global.backwards == 0;
Symbol 327 MovieClip Frame 3
gotoAndPlay (2);
Symbol 328 MovieClip Frame 1
_global.InventoryIcon1 = 0;
_global.InventoryIcon2 = 0;
_global.InventoryIcon3 = 0;
_global.InventoryIcon4 = 0;
_global.InventoryIcon5 = 0;
_global.InventoryIcon6 = 0;
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem1);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem2);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem3);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem4);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem5);
_global.SetIcon(0, _root.Shop.Inventory.InventoryItem6);
Instance of Symbol 323 MovieClip "InventoryItem1" in Symbol 328 MovieClip Frame 1
onClipEvent (load) {
this.ItemName._visible = false;
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 1;
_global.inventory = 1;
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "InventoryItem2" in Symbol 328 MovieClip Frame 1
onClipEvent (load) {
this.ItemName._visible = false;
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 2;
_global.inventory = 1;
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "InventoryItem3" in Symbol 328 MovieClip Frame 1
onClipEvent (load) {
this.ItemName._visible = false;
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 3;
_global.inventory = 1;
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "InventoryItem4" in Symbol 328 MovieClip Frame 1
onClipEvent (load) {
this.ItemName._visible = false;
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 4;
_global.inventory = 1;
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "InventoryItem5" in Symbol 328 MovieClip Frame 1
onClipEvent (load) {
this.ItemName._visible = false;
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 5;
_global.inventory = 1;
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "InventoryItem6" in Symbol 328 MovieClip Frame 1
onClipEvent (load) {
this.ItemName._visible = false;
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 6;
_global.inventory = 1;
_global.ItemClick(this);
};
}
Symbol 328 MovieClip Frame 3
gotoAndPlay (2);
Instance of Symbol 323 MovieClip "Recommend1" in Symbol 334 MovieClip Frame 1
onClipEvent (load) {
_global.SetIcon(3009, this);
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Recommend2" in Symbol 334 MovieClip Frame 1
onClipEvent (load) {
_global.SetIcon(3003, this);
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Recommend3" in Symbol 334 MovieClip Frame 1
onClipEvent (load) {
_global.SetIcon(3026, this);
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Recommend4" in Symbol 334 MovieClip Frame 1
onClipEvent (load) {
_global.SetIcon(3023, this);
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Recommend5" in Symbol 334 MovieClip Frame 1
onClipEvent (load) {
_global.SetIcon(3030, this);
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Recommend6" in Symbol 334 MovieClip Frame 1
onClipEvent (load) {
_global.SetIcon(3078, this);
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "OutputItem5" in Symbol 336 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "OutputItem6" in Symbol 336 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "OutputItem3" in Symbol 336 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "OutputItem2" in Symbol 336 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "OutputItem4" in Symbol 336 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "OutputItem1" in Symbol 336 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.ItemClick(this);
};
}
Instance of Symbol 323 MovieClip "Basic1" in Symbol 339 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 0;
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemPulse(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemTip_Close();
};
}
Instance of Symbol 323 MovieClip "Basic2" in Symbol 339 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 0;
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemPulse(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemTip_Close();
};
}
Instance of Symbol 323 MovieClip "Basic3" in Symbol 339 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 0;
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemPulse(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemTip_Close();
};
}
Instance of Symbol 323 MovieClip "Basic4" in Symbol 339 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 0;
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemPulse(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemTip_Close();
};
}
Instance of Symbol 323 MovieClip "Basic5" in Symbol 339 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 0;
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemPulse(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemTip_Close();
};
}
Instance of Symbol 323 MovieClip "Basic6" in Symbol 339 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 0;
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemPulse(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemTip_Close();
};
}
Instance of Symbol 323 MovieClip "Component1" in Symbol 339 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 0;
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemPulse(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemTip_Close();
};
}
Instance of Symbol 323 MovieClip "Component2" in Symbol 339 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 0;
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemPulse(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemTip_Close();
};
}
Instance of Symbol 323 MovieClip "Component3" in Symbol 339 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 0;
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemPulse(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemTip_Close();
};
}
Instance of Symbol 323 MovieClip "TopItem" in Symbol 339 MovieClip Frame 1
onClipEvent (load) {
this.ItemDescription._visible = false;
this.ItemGold._visible = false;
this.ItemName._visible = false;
this.onRollOver = function () {
_global.ItemRollOver(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.ItemTip_Open(_global.CurrentItemNumber);
};
this.onRollOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onDragOut = function () {
_global.ItemRollOut(this);
_global.ItemTip_Close();
};
this.onRelease = function () {
_global.SelectedInventoryItem = 0;
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.TopItem);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Component3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Requirements.Basic6);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem1);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem2);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem3);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem4);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem5);
_global.ItemPulseStop(_root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem1);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem2);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem3);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem4);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem5);
_global.ItemPulseStop(_root.Shop.Inventory.InventoryItem6);
_global.ItemPulse(this);
_global.ItemFrame = this.ItemIcon._currentframe;
_global.ItemNumber();
_global.SetIcon(_global.CurrentItemNumber, _root.Shop.ItemDetails.MainItem);
_root.Shop.ItemDetails.test1.text = _global.CurrentItemNumber;
_global.SetItemTree(_global.CurrentItemNumber);
_global.SetIcon(_global.OutputItem1, _root.Shop.ItemDetails.Outputs.OutputItem1);
_global.SetIcon(_global.OutputItem2, _root.Shop.ItemDetails.Outputs.OutputItem2);
_global.SetIcon(_global.OutputItem3, _root.Shop.ItemDetails.Outputs.OutputItem3);
_global.SetIcon(_global.OutputItem4, _root.Shop.ItemDetails.Outputs.OutputItem4);
_global.SetIcon(_global.OutputItem5, _root.Shop.ItemDetails.Outputs.OutputItem5);
_global.SetIcon(_global.OutputItem6, _root.Shop.ItemDetails.Outputs.OutputItem6);
_global.ItemTip_Close();
};
}
Symbol 342 MovieClip Frame 1
_global.ItemClick(_root.Shop.RecommendedItems.Recommend6);
Instance of Symbol 323 MovieClip "MainItem" in Symbol 342 MovieClip Frame 1
onClipEvent (load) {
this.ItemName._visible = true;
this.ItemGold._visible = true;
this.ItemDescription._visible = true;
}
Instance of Symbol 339 MovieClip "Requirements" in Symbol 342 MovieClip Frame 1
/* no clip actions */
Symbol 342 MovieClip Frame 3
gotoAndPlay (2);
Symbol 347 Button
on (release) {
fscommand ("CloseShop");
}
Symbol 348 MovieClip Frame 1
this.ExpertShop._visible = false;
Instance of Symbol 11 MovieClip "BuyBlocker" in Symbol 348 MovieClip Frame 1
onClipEvent (load) {
this.onRelease = function () {
};
}
Instance of Symbol 11 MovieClip "SellBlocker" in Symbol 348 MovieClip Frame 1
onClipEvent (load) {
this.onRelease = function () {
};
}
Instance of Symbol 328 MovieClip "Inventory" in Symbol 348 MovieClip Frame 1
onClipEvent (load) {
this.Inventory_Drag.onPress = function () {
startDrag (_root.Inventory);
};
this.Inventory_Drag.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 344 MovieClip "Shop_Drag" in Symbol 348 MovieClip Frame 1
onClipEvent (load) {
}
Symbol 349 MovieClip Frame 1
stop();
Symbol 349 MovieClip Frame 11
stop();