04.01.2012, 17:01
Quote:
Can you add the comand /speed to show and hide the speedometer pls?
|
pawn Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp("/speed", cmdtext, true))
{
TextDrawHideForPlayer(playerid,Speed_Meter_Textdraw);
return 1;
}
return 0;
}