SA-MP Forums Archive
How do I shake the screen? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How do I shake the screen? (/showthread.php?tid=153079)



How do I shake the screen? - NiiRV4N4 - 07.06.2010

I do I shake the screen like there is a earthquake going on? I've seen it done before.


Re: How do I shake the screen? - ViruZZzZ_ChiLLL - 07.06.2010

SetPlayerDrunkLevel?


Re: How do I shake the screen? - NiiRV4N4 - 07.06.2010

Quote:
Originally Posted by ViruZZzZ_ChiLLL
SetPlayerDrunkLevel?
How do I set everyone drunk level within a 30 meter distance of one player?


Re: How do I shake the screen? - ViruZZzZ_ChiLLL - 07.06.2010

Quote:
Originally Posted by NiiRV4N4
Quote:
Originally Posted by ViruZZzZ_ChiLLL
SetPlayerDrunkLevel?
How do I set everyone drunk level within a 30 meter distance of one player?
pawn Код:
stock Float:GetDistanceBetweenPlayers(p1,p2){
    new Float:x1,Float:y1,Float:z1,Float:x3,Float:y3,Float:z3;
    if (!IsPlayerConnected(p1) || !IsPlayerConnected(p2)){
        return -1.00;
    }
    GetPlayerPos(p1,x1,y1,z1);
    GetPlayerPos(p2,x3,y3,z3);
    return floatsqroot(floatpower(floatabs(floatsub(x3,x1)),2)+floatpower(floatabs(floatsub(y3,y1)),2)+floatpower(floatabs(floatsub(z3,z1)),2));
}

if (GetDistanceBetweenPlayers(playerid, giveplayerid) > 30) return SendClientMessage(playerid, red, "ERROR : Your not near the player!");
Use Sscanf



Re: How do I shake the screen? - NiiRV4N4 - 07.06.2010

Can I create a loop and substitute that for the Player (giveplayerid)? I need it to happen to everyone near by not just one player.


Re: How do I shake the screen? - TheChaoz - 07.06.2010

Quote:
Originally Posted by NiiRV4N4
Can I create a loop and substitute that for the Player (giveplayerid)? I need it to happen to everyone near by not just one player.
yes