changecolor timer
#1

Код:
CMD:rainbow(playerid, params[])
{
if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER)
{
SendClientMessage(playerid, COLOR_RED, "[ERROR]: You need to be a driver in a vehicle to use that command.");
}
else
{
new vehicleid;
GetPlayerVehicleID(playerid);
ChangeVehicleColor(vehicleid,-1,-1);
SetTimerEx("RainBow", 2000, true, "i", playerid);
}
return 1;
}
forward RainBow(playerid);
public RainBow(playerid)
{
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
new vehicleid;
GetPlayerVehicleID(playerid);
ChangeVehicleColor(vehicleid,-1,-1);
SetTimerEx("RainBow", 2000, true, "i", playerid);
}
return 1;
}
I've tried making a command that changes the car color every 2 seconds.

The command doesn't effect at all, not even changing the color once, can someone help me with that?
Reply


Messages In This Thread
changecolor timer - by rakinz - 23.02.2018, 08:16
Re: changecolor timer - by RogueDrifter - 23.02.2018, 08:18
Re: changecolor timer - by rfr - 23.02.2018, 08:22
Re: changecolor timer - by rakinz - 23.02.2018, 08:28
Re: changecolor timer - by rfr - 23.02.2018, 08:30
Re: changecolor timer - by PepsiCola23 - 23.02.2018, 08:33
Re: changecolor timer - by rakinz - 23.02.2018, 08:39
Re: changecolor timer - by RogueDrifter - 23.02.2018, 08:44
Re: changecolor timer - by rfr - 23.02.2018, 08:48
Re: changecolor timer - by RogueDrifter - 23.02.2018, 08:49

Forum Jump:


Users browsing this thread: 1 Guest(s)