// TMW2 script // Author: Jesusalva // // Magic Script: TMW2_ZARKOR // // Spawns a Cave Maggot. // This is to test stuff, more than to create anything really. function script SK_zarkor { // Set skill @sk=TMW2_ZARKOR; // Summon Magic SummonMagic(@sk, CaveMaggot, 2, @skillLv); // Get a single mana experience point (this is NOT used by Mana Stone) GetManaExp(@sk, 1); return; } - script sk#zarkor 32767,{ end; /* OnFriendlyDeath: emote 4; end; */ OnCall: // Deprecated dispbottom l("The usage of @sk-commands was deprecated"); end; OnInit: bindatcmd "sk-zarkor", "sk#zarkor::OnCall", 1, 100, 0; end; }