Slow Mod ?
#1

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.
Reply
#2

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;
}
Reply
#3

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

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;
    }
Reply
#5

Thank you a lot!
Reply
#6

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


Forum Jump:


Users browsing this thread: 2 Guest(s)