SA-MP Forums Archive
[Include] Ometer - 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: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+---- Forum: Includes (https://sampforum.blast.hk/forumdisplay.php?fid=83)
+---- Thread: [Include] Ometer (/showthread.php?tid=578185)



Ometer - UltraScripter - 17.06.2015

Hi everyone i just created a new include Ometer that gets vehicle speed (kmh, mph) and rpm!.

Example
pawn Код:
CMD:myspeed(playerid, params[])
{
    new Str[256], vehicleid;
    vehicleid = GetPlayerVehicleID(playerid);
    format(Str, 256, "You speed is %i kmh.", GetVehicleSpeedKmh(vehicleid));
    SendClientMessage(playerid, 0x00FF00FF, Str);
    return 1;
}
link: http://www.solidfiles.com/d/3893e6279e/

Pastebin: http://pastebin.com/eBYXkaeg



Re: Ometer - kalanerik99 - 22.06.2015

Hey nice one but please post include on http://www.pastebin.com


Re: Ometer - UltraScripter - 23.06.2015

Added