summaryrefslogblamecommitdiff
path: root/npc/magic/zarkor.txt
blob: 35f625055aeeaa4fea9b16435f321dfc180af5b7 (plain) (tree)
1
2
3
4
5
6
7





                                     
                                                              








                                       
                         

                                                                                   
            
     
 

                     
 
                   
                                                     
 
 
      

                                         
      





                                                          
// TMW2 script
// Author: Jesusalva <admin@tmw2.org>
//
// Magic Script: TMW2_ZARKOR
// 
// Spawns a Cave Maggot.
// This is to test stuff, more than to create anything really.


-	script	sk#zarkor	32767,{
    end;

OnNone:
    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;
}