summaryrefslogblamecommitdiff
path: root/npc/001-1/doors.txt
blob: ebcafb97358b1159d0c3fa5b6f8e0cd5d35a3f06 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                            

                                                

                                      
                     

                   
                                                                        






                                





                                 
                                                    


          
                                      
                     
     
                               

            
                           


              
                                      
                     


            





                
             

 
// Evol scripts.
// Authors:
//    4144, Reid
// Description:
//    Doors warp and animations in map 001-1
//

001-1,57,41,0	script	#Warp20	NPC_HIDDEN,0,0,{
OnTouch:
    .@enora = getq(ArtisQuests_Enora);

    if (.@enora < 11)
    {
        narrator 4,
            l("The door to the legion building is temporarily closed.");
    }
    else
    {
        warp "001-2-33", 34, 46;
    }

    closedialog;
    close;

OnUnTouch:
    doevent "#Door20::OnUnTouch";
}

001-1,57,41,0	script	#Door20	NPC_ARTIS_DOOR,2,3,{
    close;

OnTouch:
    .@enora = getq(ArtisQuests_Enora);
    if (.@enora < 11)
    {
        setfakecells 57, 41, 1;
        end;
    }
    setfakecells 57, 41, 0;
    doorTouch;

OnUnTouch:
    .@enora = getq(ArtisQuests_Enora);
    if (.@enora < 11)
    {
        end;
    }
    doorUnTouch;

OnTimer340:
    doorTimer;

OnInit:
    doorInit;
}