summaryrefslogblamecommitdiff
path: root/npc/003-3/malindou.txt
blob: ab8ff432145686f6ed3993397d757ef6621ffd16 (plain) (tree)
1
2
3
4
5
6
7
8
9
                

           
               

                                                                   

                                                   
                                       


          




                  
                       
                        





                                           
// TMW-2 Script.
// Author:
//    Saulc
//    Jesusalva
// Notes:
//    Also handle some PCLogin events: CheckClientVersion, and bank

003-3,36,34,0	script	Malindou	NPC_LLOYD,{
    Banker(.name$, "Tulimshar", 15000);
    close;

OnInit:
    .sex = G_MALE;
    .distance = 4;
    end;

OnPCLoginEvent:
    checkclientversion;
    if (#MerchantBank) {
        BankVault += max(0, #MerchantBank);
        #MerchantBank = 0;
    }
    end;
}