Help Me in MPH
#4

Quote:
Originally Posted by Neos07
Посмотреть сообщение
Show The lines befire these lines
PHP код:
#include <a_samp>
#include <ZCMD>
new Text:Speedometer[MAX_PLAYERS//This will create a textdraw for every player
new Float:svx[MAX_PLAYERS];//This is for getting the speed of the car
new Float:svy[MAX_PLAYERS];//This is for getting the speed of the car
new Float:svz[MAX_PLAYERS];//This is for getting the speed of the car
new Float:s1[MAX_PLAYERS];
new 
s2[MAX_PLAYERS];
new 
s3[MAX_PLAYERS];
new 
stimer[MAX_PLAYERS];
forward speedometer(playerid);
public 
OnPlayerSpawn(playerid)
{
    
Speedometer[playerid] = TextDrawCreate(335.000000434.000000"");
    
TextDrawBackgroundColor(Speedometer[playerid], 255);
    
TextDrawFont(Speedometer[playerid], 1);
    
TextDrawLetterSize(Speedometer[playerid], 0.2300001.100000);
    
TextDrawColor(Speedometer[playerid], -1);
    
TextDrawSetOutline(Speedometer[playerid], 1);
    
TextDrawSetProportional(Speedometer[playerid], 1);
    
    
TextDrawShowForPlayer(playeridSpeedometer[playerid]); //This gotta be in there otherwise speedometer wont show up.
    
return 1;
}
public 
speedometer(playerid)
{
    
GetVehicleVelocity(GetPlayerVehicleID(playerid), svx[playerid], svy[playerid], svz[playerid]); // This Saves Our Velocitys To Our Varibles
    
s1[playerid] = floatsqroot(((svx[playerid]*svx[playerid])+(svy[playerid]*svy[playerid]))+(svz[playerid]*svz[playerid]))*100// This Is Our Forumula ( I Don't Know How It Works but i found it on internet )
    
s2[playerid] = floatround(s1[playerid],floatround_round); // Round the output off to a whole number
    
format(s3[playerid],32,"%i"s2[playerid]); // The textdraw string
    
TextDrawSetString(sdisplay[playerid], s3[playerid]); // The actual changing of the textdraw
    
return 1;
}
public 
OnPlayerStateChange(playeridnewstateoldstate)
// This Is The Callback That Is Called When A Person Changes State
    
KillTimer(stimer[playerid]); // This Stops Our Timer For When You Get Out Of Your Vehicle Your Speed Doesn't Keep Going
    
TextDrawSetString(Speedometer[playerid], " "); // This Sets Our Textdraw To Blank And Freezes Because We Stop The Timer ^
    
if(newstate == 2stimer[playerid] = SetTimerEx("speedometer"255true"i"playerid); // This Starts The Timer When The Player Changes His/Her State To Being The Driver
    
else if(newstate == 3stimer[playerid] = SetTimerEx("speedometer"250true"i"playerid); // This Start The Timer When The Player Changes His/Her Start To Being The Passenger
    
return 1;

all code my MPH
Reply


Messages In This Thread
Help Me in MPH - by Desha1 - 01.01.2015, 18:55
Re: Help Me in MPH - by Desha1 - 01.01.2015, 19:19
Re: Help Me in MPH - by Neos07 - 01.01.2015, 19:22
Re: Help Me in MPH - by Desha1 - 01.01.2015, 19:24
Re: Help Me in MPH - by Neos07 - 01.01.2015, 19:26
Re: Help Me in MPH - by Desha1 - 01.01.2015, 19:29
Re: Help Me in MPH - by Neos07 - 01.01.2015, 19:34
Re: Help Me in MPH - by Desha1 - 01.01.2015, 19:41
Re: Help Me in MPH - by Desha1 - 01.01.2015, 19:43
Re: Help Me in MPH - by Schneider - 01.01.2015, 19:46

Forum Jump:


Users browsing this thread: 2 Guest(s)