summaryrefslogblamecommitdiff
path: root/npc/002-2/ratto.txt
blob: 92dd857eff584119e4e4221af40f1aec16ed47d8 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                              


                   
                                                    
        

                


                                                                                                               


                


                                                                                                               


                


                                                                                                               


                


                                                                                                               


              




                                                      


              




                                                      


              




                                                      


              









                                                      

        
// TMW2 Script.
// Author:
//      Jesusalva
// Originally an Evol script authored by: Ablu, Alastrim, Reid
// Description:
//    Ratto killer.

002-2,0,0,0	script	RattosControl	NPC_HIDDEN,{
    end;

OnRatto1Respawn:
    .@q2=getq2(ShipQuests_Peter);
    setq2 ShipQuests_Peter, .@q2^1;
    areamonster @MAP_NAME$, 23, 19, 57, 40, strmobinfo(1, @pt_mob), @pt_mob, 1, "RattosControl::OnRatto1Death";
    end;

OnRatto2Respawn:
    .@q2=getq2(ShipQuests_Peter);
    setq2 ShipQuests_Peter, .@q2^2;
    areamonster @MAP_NAME$, 23, 19, 57, 40, strmobinfo(1, @pt_mob), @pt_mob, 1, "RattosControl::OnRatto2Death";
    end;

OnRatto3Respawn:
    .@q2=getq2(ShipQuests_Peter);
    setq2 ShipQuests_Peter, .@q2^4;
    areamonster @MAP_NAME$, 23, 19, 57, 40, strmobinfo(1, @pt_mob), @pt_mob, 1, "RattosControl::OnRatto3Death";
    end;

OnRatto4Respawn:
    .@q2=getq2(ShipQuests_Peter);
    setq2 ShipQuests_Peter, .@q2^8;
    areamonster @MAP_NAME$, 23, 19, 57, 40, strmobinfo(1, @pt_mob), @pt_mob, 1, "RattosControl::OnRatto4Death";
    end;

OnRatto1Death:
    .@q2=getq2(ShipQuests_Peter);
    setq2 ShipQuests_Peter, .@q2|1;
    if (.@q2 == 15)
        goto L_Victor;
    addtimer(65000, "RattosControl::OnRatto1Respawn");
    end;

OnRatto2Death:
    .@q2=getq2(ShipQuests_Peter);
    setq2 ShipQuests_Peter, .@q2|2;
    if (.@q2 == 15)
        goto L_Victor;
    addtimer(65000, "RattosControl::OnRatto2Respawn");
    end;

OnRatto3Death:
    .@q2=getq2(ShipQuests_Peter);
    setq2 ShipQuests_Peter, .@q2|4;
    if (.@q2 == 15)
        goto L_Victor;
    addtimer(65000, "RattosControl::OnRatto3Respawn");
    end;

OnRatto4Death:
    .@q2=getq2(ShipQuests_Peter);
    setq2 ShipQuests_Peter, .@q2|8;
    if (.@q2 == 15)
        goto L_Victor;
    addtimer(65000, "RattosControl::OnRatto4Respawn");
    end;

L_Victor:
    warp "002-1@"+LOCATION$, 35, 26;
    doevent("Peter::OnDone");
    end;
}