// TMW2 script // Author: Jesusalva // // Magic Script: TMW2_ZARKOR // // Spawns a Cave Maggot. // This is to test stuff, more than to create anything really. - script sk#zarkor 32767,{ end; /* OnFriendlyDeath: emote 4; end; */ OnCall: // Other requeriments if (countitem(ZarkorScroll) < 1) { dispbottom l("You need @@ to cast this skill.", getitemlink(ZarkorScroll)); end; } // Check cooldown /* TODO */ // Summon Magic SummonMagic(TMW2_ZARKOR, 400, CaveMaggot, 75, 2); /* // set cooldown @skzarkor_cooldown=gettimetick(0)+20; */ end; OnInit: bindatcmd "sk-zarkor", "sk#zarkor::OnCall", 0, 100, 0; end; }