changecolor timer
#4

Quote:
Originally Posted by rfr
Посмотреть сообщение
Код:
CMD:rainbow(playerid, params[])
{
    if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER)
    {
        SendClientMessage(playerid, -1, "[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;
}
Yea, I've tried making it like that too. It still just changes the car color once and that's all.
It's like the timer doesn't effect or exist.
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)