summaryrefslogblamecommitdiff
path: root/npc/functions/shake.txt
blob: 2c3c58a55bafb6281db4dc58ba6cbfa0d96d5fcc (plain) (tree)
1
2
3
4
5
6
7

                    
                      

                                   
 
                                                 





                                           


                        

           







                                       
                        

                              
                                       
            
                 


                    




                       
                           











                                                                       
// Author: Jesusalva

// Shake player screen
// Usage:
// set @max_shake then call OnShake

// sshake( {max_shake=6,10}, {closedialog=true} )
function	script	sshake	{
    @max_shake=abs(getarg(0, rand2(6,10)));
    for (.@s=0; .@s < @max_shake; .@s++) {
        movecam rand(-20,20), rand(-20,20);
        sleep2(50);
    }
    restorecam;
    if (getarg(1,false))
        closedialog;
    return;
}

-	script	shake	32767,{
    end;

// Loops until @shake is @max_shake
OnShake:
    @shake+=1;
    movecam rand(-20,20), rand(-20,20);
    //closeclientdialog;

    if (@shake < @max_shake) {
        addtimer(50, "shake::OnShake");
    } else {
        @shake=0;
        restorecam;
        closedialog;
    }
    end;

// Called by GM Command
OnGM:
    @shake=0;
    @max_shake=rand2(6,10);
    addtimer(50, "shake::OnShake");
    end;

OnCall:
    getmapxy(.@m$,.@x,.@y,0);
    areatimer(.@m$, .@x-15, .@y-15, .@x+15, .@y+15, 10, "shake::OnGM");
    end;

OnInit:
    bindatcmd "shake", "shake::OnCall", 80, 80, 1;
    end;
}