SA-MP Forums Archive
speed - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: speed (/showthread.php?tid=581767)



speed - alexanderjb918 - 15.07.2015

Код:
if (IsSpeedoVehicle(vehicleid) && !PlayerData[playerid][pDisableSpeedo]) for (new i = 34; i < 39; i ++) {
			PlayerTextDrawShow(playerid, PlayerData[playerid][pTextdraws][i]);


How do i change it so it only uses textdraw 34


Re: speed - TonyVk - 15.07.2015

Код:
if (IsSpeedoVehicle(vehicleid) && !PlayerData[playerid][pDisableSpeedo])
{
			PlayerTextDrawShow(playerid, PlayerData[playerid][pTextdraws][34]);
}