Vice City Multiplayer

VC:MP 0.3 => mIRC/pawn Scripting => Topic started by: Jancis71 on August 05, 2010, 03:05:38 pm

Title: Need help with speedometer.
Post by: Jancis71 on August 05, 2010, 03:05:38 pm
code:

@ OnGameModeInit: SetTimer("Speed",250,1);

Code: [Select]
public Speed()
{
for(new i = 0; i <= USERCOUNT; i++)
    {
        if(IsPlayerConnected(i))
{
new Float:x, Float:y, Float:z, distance,result,resultx[256];
    x=PlayerInfo[i][PosX];
y=PlayerInfo[i][PosY];
z=PlayerInfo[i][PosZ];
distance=GetDistance(i, x, y, z);
result=distance*6;
 format(resultx,256,"%dkm/h",result);
GameTextForPlayerBottom(i,resultx);

new Float:x2,Float:y2,Float:z2;
GetPlayerPos(i,x2,y2,z2);
PlayerInfo[i][PosX]=x2;
PlayerInfo[i][PosY]=y2;
PlayerInfo[i][PosZ]=z2;

}

}
}

but function is not working well, it needs improvements.
sorry for my english.
Title: Re: Need help with speedometer.
Post by: Tonys on August 05, 2010, 04:53:14 pm
Check your PM, the one I sent you should work without problems.
Title: Re: Need help with speedometer.
Post by: MISHA123152 on August 28, 2010, 10:02:11 pm
please write her answer... how can i do speedometer?
Title: Re: Need help with speedometer.
Post by: Madara on August 29, 2010, 12:25:23 am
What is your server?