SA-MP Forums Archive
towing cmd problem - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: towing cmd problem (/showthread.php?tid=228656)



towing cmd problem - THE_KNOWN - 20.02.2011

Код:
stock GetDistanceBetweenVehicles(vehicleid,vehicleid2)
{
    new Float:x1,Float:y1,Float:z1,Float:x2,Float:y2,Float:z2;
    new Float:tmpdis;
    GetVehiclePos(vehicleid,x1,y1,z1);
    GetVehiclePos(vehicleid2,x2,y2,z2);
    tmpdis = floatsqroot(floatpower(floatabs(floatsub(x2,x1)),2)+floatpower(floatabs(floatsub(y2,y1)),2)+floatpower(floatabs(floatsub(z2,z1)),2));
    return floatround(tmpdis);
}

CMD:attach(playerid,params[])
{
	new veh,tra;
	veh=GetPlayerVehicleID(playerid);
	for(new i=0;i<MAX_VEHICLES;i++)
	{
		if(GetDistanceBetweenVehicles(veh,i)>7) return SendClientMessage(playerid, red, "no vehicles.");
  		if(i != veh)
	 		{
		    tra=i;
		    AttachTrailerToVehicle(tra,veh);
		    }
	}
	return 1;
}
says no vehs near by and doesnt tow. no probs too