Why doesnt this work?
#1

public OnPlayerStateChange(playerid, newstate, oldstate)
{
new vehicleid = GetPlayerVehicleID(playerid);

if(newstate == PLAYER_STATE_DRIVER)
{
AddVehicleComponent(vehicleid, 1010);
NOS = SetTimerEx("NOSGiver", 1000, 1, "i", vehicleid);
}
else if(oldstate == PLAYER_STATE_DRIVER)
{
KillTimer(NOS);
}
return 1;
}

forward NOSGiver(vehicleid);
public NOSGiver(vehicleid)
{
AddVehicleComponent(vehicleid, 1010);
return 1;
}



it doesnt give me errors but nos doesnt work in game!
it works except its not unlimited:/
Reply


Messages In This Thread
Why doesnt this work? - by BigAl - 27.10.2010, 18:14
Re: Why doesnt this work? - by pater - 27.10.2010, 18:51

Forum Jump:


Users browsing this thread: 1 Guest(s)