06.11.2010, 22:11
There is always the 'turbo' option!
}
if(strcmp(cmdtext, "/turbo",true) == 0)
{
if(PlayerInfo[playerid][pAdmin] >= 8 || IsPlayerAdmin(playerid))
{
if(Turbo[playerid] == false)
{
Turbo[playerid] = true;
SendClientMessage(playerid,COLOR_ORANGE,"You enabled boost mode");
}
else
{
Turbo[playerid] = false;
SendClientMessage(playerid,COLOR_ORANGE,"You disabled boost mode");
}
}
return 1;
}
I apologize if the spacing is wrong, but I think you would be clever enough to work it out
}
if(strcmp(cmdtext, "/turbo",true) == 0)
{
if(PlayerInfo[playerid][pAdmin] >= 8 || IsPlayerAdmin(playerid))
{
if(Turbo[playerid] == false)
{
Turbo[playerid] = true;
SendClientMessage(playerid,COLOR_ORANGE,"You enabled boost mode");
}
else
{
Turbo[playerid] = false;
SendClientMessage(playerid,COLOR_ORANGE,"You disabled boost mode");
}
}
return 1;
}
I apologize if the spacing is wrong, but I think you would be clever enough to work it out