SA-MP Forums Archive
Slow Mod ? - 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)
+--- Thread: Slow Mod ? (/showthread.php?tid=416227)



Slow Mod ? - Saw® - 16.02.2013

Hey , Can we make a slow mod for a player ? I'm speaking about the effect we get once we eat a medicine in GTA Game , if yes , how to do it ?

Thank you.


Re: Slow Mod ? - DaRk_RaiN - 16.02.2013

It's the slow-mo pickup, here a little command for it
pawn Code:
CMD:slow(playerid, params[])
{
    new Float:x, Float:y, Float:z;
    GetPlayerPos(playerid, x, y, z);
    CreatePickup(1241, 4, x, y, z);
    return 1;
}



Re: Slow Mod ? - Saw® - 16.02.2013

thx ,Will it slow players who tape the command or everyplayer in the server?


Re: Slow Mod ? - DaRk_RaiN - 16.02.2013

Yep
pawn Code:
CMD:slow(playerid, params[])
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
    if(i != playerid)
    {
    new Float:x, Float:y, Float:z;
    GetPlayerPos(i, x, y, z);
    CreatePickup(1241, 4, x, y, z);
    }
    }
    return 1;
    }



Re: Slow Mod ? - Saw® - 16.02.2013

Thank you a lot!


Re: Slow Mod ? - MP2 - 16.02.2013

That actually makes the game fast-motion, and doesn't work 100% correctly. It USED to make it slow-mo (back in 0.2).