16.02.2013, 14:12
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.
Thank you.
CMD:slow(playerid, params[])
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
CreatePickup(1241, 4, x, y, z);
return 1;
}
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;
}