summaryrefslogblamecommitdiff
path: root/npc/magic/zarkor.txt
blob: 18718c8111f107e2bb86b0a343867df62fee918c (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;

/*
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 */
    // This will only vanish upon logout =/
    if (@zark_caveat) {
        dispbottom l("Skill is in cooldown.");
        end;
    }

    // Summon Magic
    SummonMagic(TMW2_ZARKOR, 400, CaveMaggot, 75, 2);

    // Get a single mana experience point (this is NOT used by Soul Menhir)
    GetManaExp(TMW2_ZARKOR, 1);

    /*
    // set cooldown
    @skzarkor_cooldown=gettimetick(2)+20;
    */
    @zark_caveat=1;
    end;

OnInit:
    bindatcmd "sk-zarkor", "sk#zarkor::OnCall", 0, 100, 0;
    end;
}