03.10.2011, 15:08
(
Последний раз редактировалось shady001; 04.10.2011 в 14:18.
)
Hi i have a problem .. i'm trying to solve it from 3 days ... I'l post here the part of code and the problem, i hope that you can help me .
Problem : I have a car system in my gamemode , and when it load the cars from file it loads 1 more cars with the same coord as the precedent but whit car model 0 . I hope that code will explain better ( Sorry For my bad english , i'm from europe)
This is the load function... -->
Here it saves the cars .-->
This is the cars file before read it and saves it.-->>
<<---And this is after read it and save it .
Please help me if you know how i realy need help i just can't figure it out
Please help !! i do enything!!
Problem : I have a car system in my gamemode , and when it load the cars from file it loads 1 more cars with the same coord as the precedent but whit car model 0 . I hope that code will explain better ( Sorry For my bad english , i'm from europe)
This is the load function... -->
pawn Код:
public LoadCar()
{
new arrCoords[13][64];
new strFromFile2[256];
new File: file = fopen("cars.cfg", io_read);
if (file)
{
new idx = 283;
while (idx < sizeof(CarInfo))
{
fread(file, strFromFile2);
split(strFromFile2, arrCoords, ',');
CarInfo[idx][cModel] = strval(arrCoords[0]);
CarInfo[idx][cLocationx] = floatstr(arrCoords[1]);
CarInfo[idx][cLocationy] = floatstr(arrCoords[2]);
CarInfo[idx][cLocationz] = floatstr(arrCoords[3]);
CarInfo[idx][cAngle] = floatstr(arrCoords[4]);
CarInfo[idx][cColorOne] = strval(arrCoords[5]);
CarInfo[idx][cColorTwo] = strval(arrCoords[6]);
strmid(CarInfo[idx][cOwner], arrCoords[7], 0, strlen(arrCoords[7]), 255);
strmid(CarInfo[idx][cDescription], arrCoords[8], 0, strlen(arrCoords[8]), 255);
CarInfo[idx][cValue] = strval(arrCoords[9]);
CarInfo[idx][cLicense] = strval(arrCoords[10]);
CarInfo[idx][cOwned] = strval(arrCoords[11]);
CarInfo[idx][cLock] = strval(arrCoords[12]);
idx++;
}
printf("[SCRIPT]: Loaded %d Cars", idx);
}
return 1;
}
pawn Код:
idx = 283;
while (idx < sizeof(CarInfo))
{
new coordsstring[256];
format(coordsstring, sizeof(coordsstring), "%d,%f,%f,%f,%f,%d,%d,%s,%s,%d,%s,%d,%d,\n\n",
CarInfo[idx][cModel],//
CarInfo[idx][cLocationx],//
CarInfo[idx][cLocationy],//
CarInfo[idx][cLocationz],//
CarInfo[idx][cAngle],//
CarInfo[idx][cColorOne],//
CarInfo[idx][cColorTwo],//
CarInfo[idx][cOwner],//
CarInfo[idx][cDescription],//
CarInfo[idx][cValue],//
CarInfo[idx][cLicense],//
CarInfo[idx][cOwned],//
CarInfo[idx][cLock]);
if(idx == 283)
{
file2 = fopen("cars.cfg", io_write);
}
else
{
file2 = fopen("cars.cfg", io_append);
}
fwrite(file2, coordsstring);
idx++;
fclose(file2);
}
Код:
402,2157.584228,-1794.220214,13.190355,270.314849,0,0,The State,Buffalo,120000,,0,0 411,627.308715,-1216.430908,17.829303,284.524658,169,170,sh@dy,Infernus,170000,,0,1 415,-1344.096923,455.144531,6.957304,1.015226,0,0,The State,Cheetah,150000,,0,0 429,1107.798828,-306.589263,73.671875,90.291862,-1,-1,The State,Banshee,140000,,0,0 451,1737.867187,-1346.436035,15.471385,267.543182,145,1,The State,Turismo,160000,,0,0 477,1110.277832,-732.222106,100.069496,92.876762,-1,-1,The State,ZR-350,140000,,0,0 506,-1985.772338,156.437423,27.376977,359.841186,145,1,The State,Super-Gt,130000,,0,0 541,1765.862426,-1348.397094,15.383557,268.881652,169,3,The State,Bullet,160000,,0,0 415,-2490.951171,401.311279,27.552494,323.473876,166,166,Dealership,Cheetah,150000,,0,0 541,1463.876464,-1025.250854,23.452381,27.998304,-1,-1,The State,Bullet,160000,,0,0 451,1596.605102,-1606.862182,13.133049,178.631072,-1,-1,[The]The State,Turismo,160000,,0,1 411,545.190490,-1267.829223,16.970729,219.612762,-1,-1,Dealership,Infernus,170000,,0,0 559,1585.488403,-1010.662963,23.562540,1.871996,-1,-1,The State,Jester,90000,,0,0 560,743.484924,-1241.207153,13.256333,179.210937,0,1,The State,Sultan,95000,,0,0 562,2156.255859,-1198.855224,23.545206,220.803466,-1,-1,The State,Elegy,100000,,0,0 565,2148.824707,-1189.537597,23.512243,270.000000,-1,-1,The State,Flash,91000,,0,0 558,2149.111816,-1184.813964,23.524105,270.000000,-1,-1,Dealership,Uranus,92000,,0,0 602,2148.876708,-1180.163208,23.720312,270.000000,-1,-1,Dealership,Alpha,75000,,0,0 603,2148.661621,-1175.462890,23.822986,270.000000,-1,-1,Dealership,Phoenix,63000,,0,0 410,2148.629150,-1170.810546,23.570304,270.000000,-1,-1,Dealership,The State,50000,,0,0 474,2148.731933,-1166.148071,23.720312,270.000000,-1,-1,Dealership,Hermes,56000,,0,0 545,2155.121582,-1159.887329,23.639404,176.640045,164,132,Dealership,Hustler,60000,,0,0 475,2148.866455,-1157.315795,23.745483,270.000000,-1,-1,Dealership,Sabre,74000,,0,0 535,2148.992431,-1152.896484,23.745420,270.000000,-1,-1,Dealership,Slamvan,90000,,0,0 536,1101.264404,-316.721496,73.662002,359.298767,-1,-1,The State,Blade,79000,,0,0 567,2157.427001,-1798.476196,13.231412,270.565185,16,16,The State,Savanna,70000,,0,1 575,2149.498779,-1138.351196,25.243221,270.000000,-1,-1,Dealership,Broadway,70000,,0,0 576,2149.636962,-1133.964965,25.318067,268.000000,-1,-1,Dealership,Tornado,60000,,0,0 402,555.342468,-1264.605712,17.073879,7.384878,-1,-1,Dealership,Buffalo,120000,,0,1 411,1778.756103,-1350.364013,15.463874,93.416671,169,169,The State,Infernus,170000,,0,1 415,1711.435302,-1945.880249,13.333188,88.760597,0,0,The State,Cheetah,150000,,0,0 429,563.887023,-1274.654907,16.929306,106.168861,-1,-1,Dealership,Banshee,140000,,0,1 451,1589.592285,-1009.912780,23.624105,8.286931,-1,-1,Co$min,Turismo,160000,,0,0 477,563.017456,-1268.495239,16.998556,105.842330,6,6,Dealership,ZR-350,140000,,0,1 480,1768.256835,-1365.407714,15.530006,268.765991,4,4,The State,Comet,120000,,0,0 506,533.342956,-1276.804443,16.946773,219.369812,-1,-1,Dealership,Super GT,130000,,0,0 541,741.683471,-1261.010253,13.183569,277.079101,151,182,The State,Bullet,160000,,0,0 555,763.723693,-1241.168823,13.240322,149.932907,-1,-1,The State,Windsor,130000,,0,1 558,1591.038208,-1711.222412,5.520627,358.936492,3,3,The State,Uranus,92000,,0,0 559,548.456909,-1290.927490,16.909700,0.000000,-1,-1,Dealership,Jester,90000,,0,0 560,566.066772,-1282.867553,16.951955,111.960052,182,145,Dealership,Sultan,95000,,0,0 562,1736.992553,-1351.309082,15.424192,273.109588,-1,-1,The State,Elegy,96000,,0,0 565,538.725891,-1290.578979,16.879135,359.999816,-1,-1,Dealership,Flash,91000,,0,0 587,549.445129,-1264.924194,16.969102,218.008316,9,1,Dealership,Euros,135000,,0,1 602,1759.908691,-1356.676879,15.566532,271.234497,0,0,The State,Alpha,75000,,0,1 603,1769.155395,-1356.831665,15.599637,270.127777,-1,-1,KeNnY,Phoenix,63000,,0,0 412,513.789001,-1299.674194,17.192188,90.000000,-1,-1,Dealership,Voodoo,84000,,0,0 419,513.589721,-1303.212646,17.172187,90.000000,-1,-1,Dealership,Esperanto,67000,,0,0 518,513.772827,-1306.488159,17.036994,90.000000,-1,-1,Dealership,Buccaneer,50000,,0,0 534,1245.796142,-2052.929199,59.554241,268.085845,2,3,The State,Remington,53000,,0,0 535,517.143920,-1289.681152,17.003871,312.098663,-1,-1,Dealership,Slamvan,90000,,0,0 536,1755.070922,-1357.454467,15.499551,268.483886,0,0,The State,Blade,79000,,0,1 567,1467.570800,-1025.004516,23.704185,35.579982,-1,-1,The State,Savanna,70000,,0,0 575,528.249145,-1317.582885,16.982187,182.000000,-1,-1,Dealership,Broadway,70000,,0,0 576,531.198059,-1317.838745,16.992187,180.000000,-1,-1,Dealership,Tornado,65000,,0,0 411,742.367126,-1255.720092,13.285923,271.679016,151,0,Piero,Infernus,170000,,0,0 415,555.790893,-1290.766723,17.018600,0.000000,-1,-1,Dealership,Cheetah,150000,,0,0 562,768.265197,-1241.355346,13.209403,144.761138,-1,-1,The State,Elegy,100000,,0,1 541,541.922546,-1269.625366,16.868787,224.079788,11,3,Dealership,Bullet,180000,,0,0 560,-1980.141601,254.977066,34.876251,308.067718,2,3,Dealership,Sultan,110000,,0,0 400,2127.746582,-1129.830200,25.631341,188.215637,-1,-1,Dealership,Landstalker,67000,,0,0 489,2534.771972,-1518.955200,24.293668,90.000000,-1,-1,Dealership,Rancher,90000,,0,0 495,2534.679687,-1522.637329,24.431554,90.000000,-1,-1,Dealership,Sandking,93000,,0,0 500,2534.947021,-1526.507812,24.008247,88.000000,-1,-1,Dealership,Mesa,76000,,0,0 579,2534.885253,-1530.215698,23.822849,88.000000,-1,-1,Dealership,Huntley,79000,,0,0 400,2535.124511,-1533.832641,23.783065,88.000000,-1,-1,Dealership,Landstalker,67000,,0,0 495,2533.519775,-1537.741699,24.161323,46.000000,-1,-1,Dealership,Sandking,93000,,0,0 489,2529.146972,-1539.651489,23.881172,0.000000,-1,-1,Dealership,Rancher,90000,,0,0 579,2525.582519,-1539.600708,23.619483,357.994995,-1,-1,Dealership,Huntley,79000,,0,0 500,2521.878417,-1539.705688,23.741256,357.994995,-1,-1,Dealership,Mesa,76000,,0,0 413,2518.447998,-1540.024536,23.685308,358.000000,-1,-1,Dealership,Pony,45000,,0,0 482,2514.817138,-1540.041381,23.784589,358.000000,-1,-1,Dealership,Burrito,95000,,0,0 579,2510.936523,-1537.073730,23.760141,306.000000,-1,-1,Dealership,Huntley,79000,,0,0 500,2509.728515,-1532.427001,23.956302,268.000000,-1,-1,Dealership,Mesa,75000,,0,0 400,2510.108642,-1529.000366,23.944007,268.000000,-1,-1,Dealership,Landstalker,67000,,0,0 482,2510.140869,-1525.462524,24.123455,265.994995,-1,-1,Dealership,Burrito,96000,,0,0 413,2510.054199,-1521.994628,24.084976,267.994995,-1,-1,Dealership,Pony,50000,,0,0 495,2125.012695,-1225.316650,24.240282,88.674591,-1,-1,IuLiK,Sandking,93000,,0,0 461,2136.428466,-1126.147460,25.180862,84.000000,-1,-1,Dealership,PCJ-600,97000,,0,0 461,2136.419433,-1127.723022,25.238597,83.995971,-1,-1,Dealership,PCJ-600,97000,,0,0 461,2136.512939,-1129.259155,25.298341,83.995971,-1,-1,Dealership,PCJ-600,97000,,0,0 463,1099.292968,-298.107635,73.532356,134.557418,-1,-1,TechnoO,Freeway,120000,,0,0 463,775.370483,-1157.137939,22.606401,114.872245,125,125,TraxZ0R,Freeway,120000,,0,1 463,1097.554443,-296.157440,73.532485,136.851699,-1,-1,KeNNN,Freeway,120000,,0,0 468,2136.645996,-1134.642456,25.460197,78.000000,-1,-1,Dealership,Sanchez,60000,,0,0 468,540.455200,-1271.449462,16.911317,228.213714,-1,-1,Dealership,Sanchez,60000,,0,0 468,2136.723144,-1137.167846,25.418117,77.997436,-1,-1,Dealership,Sanchez,60000,,0,0 471,2136.861083,-1138.752319,25.066513,84.000000,-1,-1,Dealership,Quad,67000,,0,0 471,2122.620117,-1135.516601,24.832544,177.836898,-1,-1,Dealership,Quad,67000,,0,0 471,2136.732666,-1142.754394,24.631561,83.995971,-1,-1,Dealership,Quad,67000,,0,0 521,2136.613769,-1144.574340,24.515764,64.000000,-1,-1,Dealership,FCR-900,93000,,0,0 521,2136.438964,-1146.180053,24.337478,63.995361,-1,-1,Dealership,FCR-900,93000,,0,0 521,2136.392333,-1147.814697,24.157466,63.995361,-1,-1,Dealership,FCR-900,93000,,0,0 522,1487.020996,-687.359924,94.319465,126.346221,-1,-1,Mr.Paul,NRG-500,140000,,0,1 522,564.838256,-1278.840209,16.812004,100.171501,-1,-1,Dealership,NRG-500,140000,,0,0 522,1717.236816,-1947.705566,13.230228,9.471837,-1,-1,The State,NRG-500,140000,,0,0 522,2152.314208,-1197.594482,23.441762,173.165679,3,0,Addy,NRG-500,140000,,0,0 581,2118.025878,-1128.891357,24.966192,284.000000,-1,-1,Dealership,BF-400,90000,,0,0 581,1589.188110,-1607.568115,12.981060,179.874099,-1,-1,[The]The State,BF-400,90000,,0,1 581,2117.966796,-1132.432006,24.930479,283.996582,-1,-1,Dealership,BF-400,90000,,0,0 586,2117.976318,-1134.467651,24.805608,286.000000,-1,-1,Dealership,Wayfarer,86000,,0,0 586,2118.099365,-1136.521972,24.788717,285.996093,-1,-1,The State,Wayfarer,86000,,0,0 586,2118.000244,-1138.622436,24.719596,285.996093,-1,-1,Dealership,Wayfarer,86000,,0,0 401,-1972.480590,241.946105,35.047168,340.000000,-1,-1,Dealership,Bravura,60000,,0,0 410,-1975.822875,242.158264,34.921867,338.000000,-1,-1,Dealership,Manana,60000,,0,0 436,-1978.969726,242.423065,35.049869,340.000000,-1,-1,Dealership,Previon,60000,,0,0 474,-1982.372558,242.647766,35.071876,342.000000,-1,-1,Dealership,Hermes,56000,,0,0 491,-1985.917602,242.682693,35.071876,342.000000,-1,-1,Dealership,Virgo,68000,,0,0 496,1600.177978,-1700.749633,5.606863,89.583869,86,1,The State,Blista Compact,44000,,0,0 517,-1992.826538,242.188430,35.107540,342.000000,-1,-1,Dealership,Majestic,70000,,0,0 526,-1992.642578,249.035949,35.021873,284.000000,-1,-1,Dealership,Fortune,50000,,0,0 527,-1992.319091,252.333007,34.955024,284.000000,-1,-1,Dealership,Cadrona,50000,,0,0 533,-1991.421752,255.839523,34.971874,288.000000,-1,-1,Dealership,Feltzer,75000,,0,0 545,47.831840,-1541.748291,4.996335,263.982727,6,1,The State,Hustler,78000,,0,0 549,-1990.734130,262.343261,35.040832,286.000000,-1,-1,Dealership,Tampa,67000,,0,0 439,-1990.238769,265.923278,35.179355,288.000000,-1,-1,Dealership,Stallion,150000,,0,0 475,-1990.063720,269.464935,35.071876,290.000000,-1,-1,Dealership,Sabre,74000,,0,0 542,-1989.875488,273.235931,35.015274,290.000000,-1,-1,Dealership,Clover,50000,,0,0 412,-1987.148681,300.652435,35.129356,272.000000,-1,-1,Dealership,Voodoo,84000,,0,0 534,764.756530,-1233.724853,13.278255,2.676403,3,400,Pen_Dalion,Remington,67000,,0,1 535,-1944.860595,258.664398,35.233787,90.159072,-1,-1,The State,Slamvan,90000,,0,0 536,-1977.968261,305.972839,35.021873,182.000000,-1,-1,Dealership,Blade,90000,,0,0 567,-2496.279052,379.855834,35.004642,214.172042,-1,-1,Dealership,Savanna,67000,,0,0 575,-1971.510009,305.953521,34.911876,180.000000,-1,-1,Dealership,Broadway,70000,,0,0 402,-2477.050781,391.201477,27.717218,322.000000,-1,-1,Dealership,Buffalo,120000,,0,0 411,1768.268798,-1361.695922,15.484889,270.666473,4,4,Unknown,Infernus,170000,,0,0 415,-2483.182128,396.470703,27.627370,320.000000,-1,-1,Dealership,Cheetah,150000,,0,0 429,-2487.778320,398.128906,27.466501,153.256561,-1,-1,Dealership,Banshee,140000,,0,0 451,1600.212646,-1703.758178,5.597074,91.110183,0,0,The State,Turismo,160000,,0,0 477,528.302368,-1291.093383,16.998031,8.820734,-1,-1,Dealership,ZR-350,130000,,0,1 480,-2498.244384,402.388336,27.553022,147.548355,-1,-1,Dealership,Comet,120000,,0,0 506,538.229492,-1272.973999,16.946659,214.763580,-1,-1,Dealership,Super GT,90000,,0,0 541,746.600158,-1241.595947,13.181056,179.244354,166,454,Alica,Bullet,160000,,0,0 558,520.428283,-1291.825073,16.874534,319.107391,1,2,Dealership,Uranus,90000,,0,1 559,-2470.677490,407.275695,27.535312,140.000000,-1,-1,Dealership,Jester,90000,,0,0 560,-2474.054199,410.010589,27.578550,140.000000,-1,-1,The State,Sultan,70000,,0,0 562,-1329.606933,442.979125,7.842871,356.014221,-1,-1,The State,Elegy,83000,,0,0 565,-2480.810302,415.920684,27.473180,138.000000,-1,-1,Dealership,Flash,91000,,0,0 603,-2485.074707,418.414215,27.632110,143.471954,-1,-1,The State,Phoenix,64000,,0,0 529,-2486.920654,421.558959,27.519138,139.999877,-1,-1,Dealership,Willard,45000,,0,0 540,-2490.320556,424.379943,27.753076,140.000000,-1,-1,Dealership,Vincent,65000,,0,0 546,-2493.596191,427.164306,27.623098,137.999877,-1,-1,Dealership,Intruder,50000,,0,0 547,-2496.418945,430.205627,27.613573,140.000000,-1,-1,Dealership,Primo,43000,,0,0 566,-2499.638427,433.385925,27.681249,140.000000,-1,-1,Dealership,Tahoma,65000,,0,0 400,-2497.258056,389.002807,35.255432,236.000000,-1,-1,Dealership,Landstalker,70000,,0,0 489,-2499.519775,385.052215,35.486560,236.000000,-1,-1,Dealership,Rancher,90000,,0,0 495,-2501.520751,381.452789,35.680736,238.000000,-1,-1,Dealership,Sandking,93000,,0,0 500,-2503.629394,378.410614,35.340702,238.000000,-1,-1,Dealership,Mesa,79000,,0,0 579,-2505.250732,374.798950,35.215824,238.000000,-1,-1,Dealership,Huntley,70000,,0,0 400,-2507.407470,371.019348,35.247417,242.000000,-1,-1,Dealership,Landstalker,70000,,0,0 489,-2509.273193,366.969482,35.477313,242.000000,-1,-1,Dealership,Rancher,90000,,0,0 495,-2495.388671,416.554656,28.130901,175.176971,-1,-1,The State,Sandking,93000,,0,1 500,528.934326,-1279.854980,17.341093,211.503402,-1,-1,Dealership,Mesa,79000,,0,0 579,-2514.432861,355.496185,35.209941,246.000000,-1,-1,Dealership,Huntley,70000,,0,0
Код:
402,2157.584228,-1794.220214,13.190355,270.314849,0,0,The State,Buffalo,120000,,0,0, 0,2157.584228,-1794.220214,13.190355,270.314849,0,0,The State,Buffalo,120000,,0,0, 411,627.308715,-1216.430908,17.829303,284.524658,169,170,sh@dy,Infernus,170000,,0,1, 0,627.308715,-1216.430908,17.829303,284.524658,169,170,sh@dy,Infernus,170000,,0,1, 415,-1344.096923,455.144531,6.957304,1.015226,0,0,The State,Cheetah,150000,,0,0, 0,-1344.096923,455.144531,6.957304,1.015226,0,0,The State,Cheetah,150000,,0,0, 429,1107.798828,-306.589263,73.671875,90.291862,-1,-1,The State,Banshee,140000,,0,0, 0,1107.798828,-306.589263,73.671875,90.291862,-1,-1,The State,Banshee,140000,,0,0, 451,1737.867187,-1346.436035,15.471385,267.543182,145,1,The State,Turismo,160000,,0,0, 0,1737.867187,-1346.436035,15.471385,267.543182,145,1,The State,Turismo,160000,,0,0, 477,1110.277832,-732.222106,100.069496,92.876762,-1,-1,The State,ZR-350,140000,,0,0, 0,1110.277832,-732.222106,100.069496,92.876762,-1,-1,The State,ZR-350,140000,,0,0, 506,-1985.772338,156.437423,27.376977,359.841186,145,1,The State,Super-Gt,130000,,0,0, 0,-1985.772338,156.437423,27.376977,359.841186,145,1,The State,Super-Gt,130000,,0,0, 541,1765.862426,-1348.397094,15.383557,268.881652,169,3,The State,Bullet,160000,,0,0, 0,1765.862426,-1348.397094,15.383557,268.881652,169,3,The State,Bullet,160000,,0,0, 415,-2490.951171,401.311279,27.552494,323.473876,166,166,Dealership,Cheetah,150000,,0,0, 0,-2490.951171,401.311279,27.552494,323.473876,166,166,Dealership,Cheetah,150000,,0,0, 541,1463.876464,-1025.250854,23.452381,27.998304,-1,-1,The State,Bullet,160000,,0,0, 0,1463.876464,-1025.250854,23.452381,27.998304,-1,-1,The State,Bullet,160000,,0,0, 451,1596.605102,-1606.862182,13.133049,178.631072,-1,-1,[The]The State,Turismo,160000,,0,1, 0,1596.605102,-1606.862182,13.133049,178.631072,-1,-1,[The]The State,Turismo,160000,,0,1, 411,545.190490,-1267.829223,16.970729,219.612762,-1,-1,Dealership,Infernus,170000,,0,0, 0,545.190490,-1267.829223,16.970729,219.612762,-1,-1,Dealership,Infernus,170000,,0,0, 559,1585.488403,-1010.662963,23.562540,1.871996,-1,-1,The State,Jester,90000,,0,0, 0,1585.488403,-1010.662963,23.562540,1.871996,-1,-1,The State,Jester,90000,,0,0, 560,743.484924,-1241.207153,13.256333,179.210937,0,1,The State,Sultan,95000,,0,0, 0,743.484924,-1241.207153,13.256333,179.210937,0,1,The State,Sultan,95000,,0,0, 562,2156.255859,-1198.855224,23.545206,220.803466,-1,-1,The State,Elegy,100000,,0,0, 0,2156.255859,-1198.855224,23.545206,220.803466,-1,-1,The State,Elegy,100000,,0,0, 565,2148.824707,-1189.537597,23.512243,270.000000,-1,-1,The State,Flash,91000,,0,0, 0,2148.824707,-1189.537597,23.512243,270.000000,-1,-1,The State,Flash,91000,,0,0, 558,2149.111816,-1184.813964,23.524105,270.000000,-1,-1,Dealership,Uranus,92000,,0,0, 0,2149.111816,-1184.813964,23.524105,270.000000,-1,-1,Dealership,Uranus,92000,,0,0, 602,2148.876708,-1180.163208,23.720312,270.000000,-1,-1,Dealership,Alpha,75000,,0,0, 0,2148.876708,-1180.163208,23.720312,270.000000,-1,-1,Dealership,Alpha,75000,,0,0, 603,2148.661621,-1175.462890,23.822986,270.000000,-1,-1,Dealership,Phoenix,63000,,0,0, 0,2148.661621,-1175.462890,23.822986,270.000000,-1,-1,Dealership,Phoenix,63000,,0,0, 410,2148.629150,-1170.810546,23.570304,270.000000,-1,-1,Dealership,The State,50000,,0,0, 0,2148.629150,-1170.810546,23.570304,270.000000,-1,-1,Dealership,The State,50000,,0,0, 474,2148.731933,-1166.148071,23.720312,270.000000,-1,-1,Dealership,Hermes,56000,,0,0, 0,2148.731933,-1166.148071,23.720312,270.000000,-1,-1,Dealership,Hermes,56000,,0,0, 545,2155.121582,-1159.887329,23.639404,176.640045,164,132,Dealership,Hustler,60000,,0,0, 0,2155.121582,-1159.887329,23.639404,176.640045,164,132,Dealership,Hustler,60000,,0,0, 475,2148.866455,-1157.315795,23.745483,270.000000,-1,-1,Dealership,Sabre,74000,,0,0, 0,2148.866455,-1157.315795,23.745483,270.000000,-1,-1,Dealership,Sabre,74000,,0,0, 535,2148.992431,-1152.896484,23.745420,270.000000,-1,-1,Dealership,Slamvan,90000,,0,0, 0,2148.992431,-1152.896484,23.745420,270.000000,-1,-1,Dealership,Slamvan,90000,,0,0, 536,1101.264404,-316.721496,73.662002,359.298767,-1,-1,The State,Blade,79000,,0,0, 0,1101.264404,-316.721496,73.662002,359.298767,-1,-1,The State,Blade,79000,,0,0, 567,2157.427001,-1798.476196,13.231411,270.565185,16,16,The State,Savanna,70000,,0,1, 0,2157.427001,-1798.476196,13.231411,270.565185,16,16,The State,Savanna,70000,,0,1, 575,2149.498779,-1138.351196,25.243221,270.000000,-1,-1,Dealership,Broadway,70000,,0,0, 0,2149.498779,-1138.351196,25.243221,270.000000,-1,-1,Dealership,Broadway,70000,,0,0, 576,2149.636962,-1133.964965,25.318067,268.000000,-1,-1,Dealership,Tornado,60000,,0,0, 0,2149.636962,-1133.964965,25.318067,268.000000,-1,-1,Dealership,Tornado,60000,,0,0, 402,555.342468,-1264.605712,17.073879,7.384878,-1,-1,Dealership,Buffalo,120000,,0,1, 0,555.342468,-1264.605712,17.073879,7.384878,-1,-1,Dealership,Buffalo,120000,,0,1, 411,1778.756103,-1350.364013,15.463873,93.416671,169,169,The State,Infernus,170000,,0,1, 0,1778.756103,-1350.364013,15.463873,93.416671,169,169,The State,Infernus,170000,,0,1, 415,1711.435302,-1945.880249,13.333188,88.760597,0,0,The State,Cheetah,150000,,0,0, 0,1711.435302,-1945.880249,13.333188,88.760597,0,0,The State,Cheetah,150000,,0,0, 429,563.887023,-1274.654907,16.929306,106.168861,-1,-1,Dealership,Banshee,140000,,0,1, 0,563.887023,-1274.654907,16.929306,106.168861,-1,-1,Dealership,Banshee,140000,,0,1, 451,1589.592285,-1009.912780,23.624105,8.286931,-1,-1,Co$min,Turismo,160000,,0,0, 0,1589.592285,-1009.912780,23.624105,8.286931,-1,-1,Co$min,Turismo,160000,,0,0, 477,563.017456,-1268.495239,16.998556,105.842330,6,6,Dealership,ZR-350,140000,,0,1, 0,563.017456,-1268.495239,16.998556,105.842330,6,6,Dealership,ZR-350,140000,,0,1, 480,1768.256835,-1365.407714,15.530006,268.765991,4,4,The State,Comet,120000,,0,0, 0,1768.256835,-1365.407714,15.530006,268.765991,4,4,The State,Comet,120000,,0,0, 506,533.342956,-1276.804443,16.946773,219.369812,-1,-1,Dealership,Super GT,130000,,0,0, 0,533.342956,-1276.804443,16.946773,219.369812,-1,-1,Dealership,Super GT,130000,,0,0, 541,741.683471,-1261.010253,13.183568,277.079101,151,182,The State,Bullet,160000,,0,0, 0,741.683471,-1261.010253,13.183568,277.079101,151,182,The State,Bullet,160000,,0,0, 555,763.723693,-1241.168823,13.240322,149.932907,-1,-1,The State,Windsor,130000,,0,1, 0,763.723693,-1241.168823,13.240322,149.932907,-1,-1,The State,Windsor,130000,,0,1, 558,1591.038208,-1711.222412,5.520627,358.936492,3,3,The State,Uranus,92000,,0,0, 0,1591.038208,-1711.222412,5.520627,358.936492,3,3,The State,Uranus,92000,,0,0, 559,548.456909,-1290.927490,16.909700,0.000000,-1,-1,Dealership,Jester,90000,,0,0, 0,548.456909,-1290.927490,16.909700,0.000000,-1,-1,Dealership,Jester,90000,,0,0, 560,566.066772,-1282.867553,16.951955,111.960052,182,145,Dealership,Sultan,95000,,0,0, 0,566.066772,-1282.867553,16.951955,111.960052,182,145,Dealership,Sultan,95000,,0,0, 562,1736.992553,-1351.309082,15.424192,273.109588,-1,-1,The State,Elegy,96000,,0,0, 0,1736.992553,-1351.309082,15.424192,273.109588,-1,-1,The State,Elegy,96000,,0,0, 565,538.725891,-1290.578979,16.879135,359.999816,-1,-1,Dealership,Flash,91000,,0,0, 0,538.725891,-1290.578979,16.879135,359.999816,-1,-1,Dealership,Flash,91000,,0,0, 587,549.445129,-1264.924194,16.969102,218.008316,9,1,Dealership,Euros,135000,,0,1, 0,549.445129,-1264.924194,16.969102,218.008316,9,1,Dealership,Euros,135000,,0,1, 602,1759.908691,-1356.676879,15.566532,271.234497,0,0,The State,Alpha,75000,,0,1, 0,1759.908691,-1356.676879,15.566532,271.234497,0,0,The State,Alpha,75000,,0,1, 603,1769.155395,-1356.831665,15.599637,270.127777,-1,-1,KeNnY,Phoenix,63000,,0,0, 0,1769.155395,-1356.831665,15.599637,270.127777,-1,-1,KeNnY,Phoenix,63000,,0,0, 412,513.789001,-1299.674194,17.192188,90.000000,-1,-1,Dealership,Voodoo,84000,,0,0, 0,513.789001,-1299.674194,17.192188,90.000000,-1,-1,Dealership,Voodoo,84000,,0,0, 419,513.589721,-1303.212646,17.172187,90.000000,-1,-1,Dealership,Esperanto,67000,,0,0, 0,513.589721,-1303.212646,17.172187,90.000000,-1,-1,Dealership,Esperanto,67000,,0,0, 518,513.772827,-1306.488159,17.036994,90.000000,-1,-1,Dealership,Buccaneer,50000,,0,0, 0,513.772827,-1306.488159,17.036994,90.000000,-1,-1,Dealership,Buccaneer,50000,,0,0, 534,1245.796142,-2052.929199,59.554241,268.085845,2,3,The State,Remington,53000,,0,0, 0,1245.796142,-2052.929199,59.554241,268.085845,2,3,The State,Remington,53000,,0,0, 535,517.143920,-1289.681152,17.003871,312.098663,-1,-1,Dealership,Slamvan,90000,,0,0, 0,517.143920,-1289.681152,17.003871,312.098663,-1,-1,Dealership,Slamvan,90000,,0,0, 536,1755.070922,-1357.454467,15.499550,268.483886,0,0,The State,Blade,79000,,0,1, 0,1755.070922,-1357.454467,15.499550,268.483886,0,0,The State,Blade,79000,,0,1, 567,1467.570800,-1025.004516,23.704185,35.579982,-1,-1,The State,Savanna,70000,,0,0, 0,1467.570800,-1025.004516,23.704185,35.579982,-1,-1,The State,Savanna,70000,,0,0, 575,528.249145,-1317.582885,16.982187,182.000000,-1,-1,Dealership,Broadway,70000,,0,0, 0,528.249145,-1317.582885,16.982187,182.000000,-1,-1,Dealership,Broadway,70000,,0,0, 576,531.198059,-1317.838745,16.992187,180.000000,-1,-1,Dealership,Tornado,65000,,0,0, 0,531.198059,-1317.838745,16.992187,180.000000,-1,-1,Dealership,Tornado,65000,,0,0, 411,742.367126,-1255.720092,13.285923,271.679016,151,0,Piero,Infernus,170000,,0,0, 0,742.367126,-1255.720092,13.285923,271.679016,151,0,Piero,Infernus,170000,,0,0, 415,555.790893,-1290.766723,17.018600,0.000000,-1,-1,Dealership,Cheetah,150000,,0,0, 0,555.790893,-1290.766723,17.018600,0.000000,-1,-1,Dealership,Cheetah,150000,,0,0, 562,768.265197,-1241.355346,13.209403,144.761138,-1,-1,The State,Elegy,100000,,0,1, 0,768.265197,-1241.355346,13.209403,144.761138,-1,-1,The State,Elegy,100000,,0,1, 541,541.922546,-1269.625366,16.868787,224.079788,11,3,Dealership,Bullet,180000,,0,0, 0,541.922546,-1269.625366,16.868787,224.079788,11,3,Dealership,Bullet,180000,,0,0, 560,-1980.141601,254.977066,34.876251,308.067718,2,3,Dealership,Sultan,110000,,0,0, 0,-1980.141601,254.977066,34.876251,308.067718,2,3,Dealership,Sultan,110000,,0,0, 400,2127.746582,-1129.830200,25.631341,188.215637,-1,-1,Dealership,Landstalker,67000,,0,0, 0,2127.746582,-1129.830200,25.631341,188.215637,-1,-1,Dealership,Landstalker,67000,,0,0, 489,2534.771972,-1518.955200,24.293668,90.000000,-1,-1,Dealership,Rancher,90000,,0,0, 0,2534.771972,-1518.955200,24.293668,90.000000,-1,-1,Dealership,Rancher,90000,,0,0, 495,2534.679687,-1522.637329,24.431554,90.000000,-1,-1,Dealership,Sandking,93000,,0,0, 0,2534.679687,-1522.637329,24.431554,90.000000,-1,-1,Dealership,Sandking,93000,,0,0, 500,2534.947021,-1526.507812,24.008247,88.000000,-1,-1,Dealership,Mesa,76000,,0,0, 0,2534.947021,-1526.507812,24.008247,88.000000,-1,-1,Dealership,Mesa,76000,,0,0, 579,2534.885253,-1530.215698,23.822849,88.000000,-1,-1,Dealership,Huntley,79000,,0,0, 0,2534.885253,-1530.215698,23.822849,88.000000,-1,-1,Dealership,Huntley,79000,,0,0, 400,2535.124511,-1533.832641,23.783065,88.000000,-1,-1,Dealership,Landstalker,67000,,0,0, 0,2535.124511,-1533.832641,23.783065,88.000000,-1,-1,Dealership,Landstalker,67000,,0,0, 495,2533.519775,-1537.741699,24.161323,46.000000,-1,-1,Dealership,Sandking,93000,,0,0, 0,2533.519775,-1537.741699,24.161323,46.000000,-1,-1,Dealership,Sandking,93000,,0,0, 489,2529.146972,-1539.651489,23.881172,0.000000,-1,-1,Dealership,Rancher,90000,,0,0, 0,2529.146972,-1539.651489,23.881172,0.000000,-1,-1,Dealership,Rancher,90000,,0,0, 579,2525.582519,-1539.600708,23.619483,357.994995,-1,-1,Dealership,Huntley,79000,,0,0, 0,2525.582519,-1539.600708,23.619483,357.994995,-1,-1,Dealership,Huntley,79000,,0,0, 500,2521.878417,-1539.705688,23.741256,357.994995,-1,-1,Dealership,Mesa,76000,,0,0, 0,2521.878417,-1539.705688,23.741256,357.994995,-1,-1,Dealership,Mesa,76000,,0,0, 413,2518.447998,-1540.024536,23.685308,358.000000,-1,-1,Dealership,Pony,45000,,0,0, 0,2518.447998,-1540.024536,23.685308,358.000000,-1,-1,Dealership,Pony,45000,,0,0, 482,2514.817138,-1540.041381,23.784589,358.000000,-1,-1,Dealership,Burrito,95000,,0,0, 0,2514.817138,-1540.041381,23.784589,358.000000,-1,-1,Dealership,Burrito,95000,,0,0, 579,2510.936523,-1537.073730,23.760141,306.000000,-1,-1,Dealership,Huntley,79000,,0,0, 0,2510.936523,-1537.073730,23.760141,306.000000,-1,-1,Dealership,Huntley,79000,,0,0, 500,2509.728515,-1532.427001,23.956302,268.000000,-1,-1,Dealership,Mesa,75000,,0,0, 0,2509.728515,-1532.427001,23.956302,268.000000,-1,-1,Dealership,Mesa,75000,,0,0, 400,2510.108642,-1529.000366,23.944007,268.000000,-1,-1,Dealership,Landstalker,67000,,0,0, 0,2510.108642,-1529.000366,23.944007,268.000000,-1,-1,Dealership,Landstalker,67000,,0,0, 482,2510.140869,-1525.462524,24.123455,265.994995,-1,-1,Dealership,Burrito,96000,,0,0, 0,2510.140869,-1525.462524,24.123455,265.994995,-1,-1,Dealership,Burrito,96000,,0,0, 413,2510.054199,-1521.994628,24.084976,267.994995,-1,-1,Dealership,Pony,50000,,0,0, 0,2510.054199,-1521.994628,24.084976,267.994995,-1,-1,Dealership,Pony,50000,,0,0, 495,2125.012695,-1225.316650,24.240282,88.674591,-1,-1,IuLiK,Sandking,93000,,0,0, 0,2125.012695,-1225.316650,24.240282,88.674591,-1,-1,IuLiK,Sandking,93000,,0,0, 461,2136.428466,-1126.147460,25.180862,84.000000,-1,-1,Dealership,PCJ-600,97000,,0,0, 0,2136.428466,-1126.147460,25.180862,84.000000,-1,-1,Dealership,PCJ-600,97000,,0,0, 461,2136.419433,-1127.723022,25.238597,83.995971,-1,-1,Dealership,PCJ-600,97000,,0,0, 0,2136.419433,-1127.723022,25.238597,83.995971,-1,-1,Dealership,PCJ-600,97000,,0,0, 461,2136.512939,-1129.259155,25.298341,83.995971,-1,-1,Dealership,PCJ-600,97000,,0,0, 0,2136.512939,-1129.259155,25.298341,83.995971,-1,-1,Dealership,PCJ-600,97000,,0,0, 463,1099.292968,-298.107635,73.532356,134.557418,-1,-1,TechnoO,Freeway,120000,,0,0, 0,1099.292968,-298.107635,73.532356,134.557418,-1,-1,TechnoO,Freeway,120000,,0,0, 463,775.370483,-1157.137939,22.606401,114.872245,125,125,TraxZ0R,Freeway,120000,,0,1, 0,775.370483,-1157.137939,22.606401,114.872245,125,125,TraxZ0R,Freeway,120000,,0,1, 463,1097.554443,-296.157440,73.532485,136.851699,-1,-1,KeNNN,Freeway,120000,,0,0, 0,1097.554443,-296.157440,73.532485,136.851699,-1,-1,KeNNN,Freeway,120000,,0,0, 468,2136.645996,-1134.642456,25.460197,78.000000,-1,-1,Dealership,Sanchez,60000,,0,0, 0,2136.645996,-1134.642456,25.460197,78.000000,-1,-1,Dealership,Sanchez,60000,,0,0, 468,540.455200,-1271.449462,16.911317,228.213714,-1,-1,Dealership,Sanchez,60000,,0,0, 0,540.455200,-1271.449462,16.911317,228.213714,-1,-1,Dealership,Sanchez,60000,,0,0, 468,2136.723144,-1137.167846,25.418117,77.997436,-1,-1,Dealership,Sanchez,60000,,0,0, 0,2136.723144,-1137.167846,25.418117,77.997436,-1,-1,Dealership,Sanchez,60000,,0,0, 471,2136.861083,-1138.752319,25.066513,84.000000,-1,-1,Dealership,Quad,67000,,0,0, 0,2136.861083,-1138.752319,25.066513,84.000000,-1,-1,Dealership,Quad,67000,,0,0, 471,2122.620117,-1135.516601,24.832544,177.836898,-1,-1,Dealership,Quad,67000,,0,0, 0,2122.620117,-1135.516601,24.832544,177.836898,-1,-1,Dealership,Quad,67000,,0,0, 471,2136.732666,-1142.754394,24.631561,83.995971,-1,-1,Dealership,Quad,67000,,0,0, 0,2136.732666,-1142.754394,24.631561,83.995971,-1,-1,Dealership,Quad,67000,,0,0, 521,2136.613769,-1144.574340,24.515764,64.000000,-1,-1,Dealership,FCR-900,93000,,0,0, 0,2136.613769,-1144.574340,24.515764,64.000000,-1,-1,Dealership,FCR-900,93000,,0,0, 521,2136.438964,-1146.180053,24.337478,63.995361,-1,-1,Dealership,FCR-900,93000,,0,0, 0,2136.438964,-1146.180053,24.337478,63.995361,-1,-1,Dealership,FCR-900,93000,,0,0, 521,2136.392333,-1147.814697,24.157466,63.995361,-1,-1,Dealership,FCR-900,93000,,0,0, 0,2136.392333,-1147.814697,24.157466,63.995361,-1,-1,Dealership,FCR-900,93000,,0,0, 522,1487.020996,-687.359924,94.319465,126.346221,-1,-1,Mr.Paul,NRG-500,140000,,0,1, 0,1487.020996,-687.359924,94.319465,126.346221,-1,-1,Mr.Paul,NRG-500,140000,,0,1, 522,564.838256,-1278.840209,16.812004,100.171501,-1,-1,Dealership,NRG-500,140000,,0,0, 0,564.838256,-1278.840209,16.812004,100.171501,-1,-1,Dealership,NRG-500,140000,,0,0, 522,1717.236816,-1947.705566,13.230228,9.471837,-1,-1,The State,NRG-500,140000,,0,0, 0,1717.236816,-1947.705566,13.230228,9.471837,-1,-1,The State,NRG-500,140000,,0,0, 522,2152.314208,-1197.594482,23.441762,173.165679,3,0,Addy,NRG-500,140000,,0,0, 0,2152.314208,-1197.594482,23.441762,173.165679,3,0,Addy,NRG-500,140000,,0,0, 581,2118.025878,-1128.891357,24.966192,284.000000,-1,-1,Dealership,BF-400,90000,,0,0, 0,2118.025878,-1128.891357,24.966192,284.000000,-1,-1,Dealership,BF-400,90000,,0,0, 581,1589.188110,-1607.568115,12.981060,179.874099,-1,-1,[The]The State,BF-400,90000,,0,1, 0,1589.188110,-1607.568115,12.981060,179.874099,-1,-1,[The]The State,BF-400,90000,,0,1, 581,2117.966796,-1132.432006,24.930479,283.996582,-1,-1,Dealership,BF-400,90000,,0,0, 0,2117.966796,-1132.432006,24.930479,283.996582,-1,-1,Dealership,BF-400,90000,,0,0, 586,2117.976318,-1134.467651,24.805608,286.000000,-1,-1,Dealership,Wayfarer,86000,,0,0, 0,2117.976318,-1134.467651,24.805608,286.000000,-1,-1,Dealership,Wayfarer,86000,,0,0, 586,2118.099365,-1136.521972,24.788717,285.996093,-1,-1,The State,Wayfarer,86000,,0,0, 0,2118.099365,-1136.521972,24.788717,285.996093,-1,-1,The State,Wayfarer,86000,,0,0, 586,2118.000244,-1138.622436,24.719596,285.996093,-1,-1,Dealership,Wayfarer,86000,,0,0, 0,2118.000244,-1138.622436,24.719596,285.996093,-1,-1,Dealership,Wayfarer,86000,,0,0, 401,-1972.480590,241.946105,35.047168,340.000000,-1,-1,Dealership,Bravura,60000,,0,0, 0,-1972.480590,241.946105,35.047168,340.000000,-1,-1,Dealership,Bravura,60000,,0,0, 410,-1975.822875,242.158264,34.921867,338.000000,-1,-1,Dealership,Manana,60000,,0,0, 0,-1975.822875,242.158264,34.921867,338.000000,-1,-1,Dealership,Manana,60000,,0,0, 436,-1978.969726,242.423065,35.049869,340.000000,-1,-1,Dealership,Previon,60000,,0,0, 0,-1978.969726,242.423065,35.049869,340.000000,-1,-1,Dealership,Previon,60000,,0,0, 474,-1982.372558,242.647766,35.071876,342.000000,-1,-1,Dealership,Hermes,56000,,0,0, 0,-1982.372558,242.647766,35.071876,342.000000,-1,-1,Dealership,Hermes,56000,,0,0, 491,-1985.917602,242.682693,35.071876,342.000000,-1,-1,Dealership,Virgo,68000,,0,0, 0,-1985.917602,242.682693,35.071876,342.000000,-1,-1,Dealership,Virgo,68000,,0,0, 496,1600.177978,-1700.749633,5.606863,89.583869,86,1,The State,Blista Compact,44000,,0,0, 0,1600.177978,-1700.749633,5.606863,89.583869,86,1,The State,Blista Compact,44000,,0,0, 517,-1992.826538,242.188430,35.107540,342.000000,-1,-1,Dealership,Majestic,70000,,0,0, 0,-1992.826538,242.188430,35.107540,342.000000,-1,-1,Dealership,Majestic,70000,,0,0, 526,-1992.642578,249.035949,35.021873,284.000000,-1,-1,Dealership,Fortune,50000,,0,0, 0,-1992.642578,249.035949,35.021873,284.000000,-1,-1,Dealership,Fortune,50000,,0,0, 527,-1992.319091,252.333007,34.955024,284.000000,-1,-1,Dealership,Cadrona,50000,,0,0, 0,-1992.319091,252.333007,34.955024,284.000000,-1,-1,Dealership,Cadrona,50000,,0,0, 533,-1991.421752,255.839523,34.971874,288.000000,-1,-1,Dealership,Feltzer,75000,,0,0, 0,-1991.421752,255.839523,34.971874,288.000000,-1,-1,Dealership,Feltzer,75000,,0,0, 545,47.831840,-1541.748291,4.996335,263.982727,6,1,The State,Hustler,78000,,0,0, 0,47.831840,-1541.748291,4.996335,263.982727,6,1,The State,Hustler,78000,,0,0, 549,-1990.734130,262.343261,35.040832,286.000000,-1,-1,Dealership,Tampa,67000,,0,0, 0,-1990.734130,262.343261,35.040832,286.000000,-1,-1,Dealership,Tampa,67000,,0,0, 439,-1990.238769,265.923278,35.179355,288.000000,-1,-1,Dealership,Stallion,150000,,0,0, 0,-1990.238769,265.923278,35.179355,288.000000,-1,-1,Dealership,Stallion,150000,,0,0, 475,-1990.063720,269.464935,35.071876,290.000000,-1,-1,Dealership,Sabre,74000,,0,0, 0,-1990.063720,269.464935,35.071876,290.000000,-1,-1,Dealership,Sabre,74000,,0,0, 542,-1989.875488,273.235931,35.015274,290.000000,-1,-1,Dealership,Clover,50000,,0,0, 0,-1989.875488,273.235931,35.015274,290.000000,-1,-1,Dealership,Clover,50000,,0,0, 412,-1987.148681,300.652435,35.129356,272.000000,-1,-1,Dealership,Voodoo,84000,,0,0, 0,-1987.148681,300.652435,35.129356,272.000000,-1,-1,Dealership,Voodoo,84000,,0,0, 534,764.756530,-1233.724853,13.278255,2.676403,3,400,Pen_Dalion,Remington,67000,,0,1, 0,764.756530,-1233.724853,13.278255,2.676403,3,400,Pen_Dalion,Remington,67000,,0,1, 535,-1944.860595,258.664398,35.233787,90.159072,-1,-1,The State,Slamvan,90000,,0,0, 0,-1944.860595,258.664398,35.233787,90.159072,-1,-1,The State,Slamvan,90000,,0,0, 536,-1977.968261,305.972839,35.021873,182.000000,-1,-1,Dealership,Blade,90000,,0,0, 0,-1977.968261,305.972839,35.021873,182.000000,-1,-1,Dealership,Blade,90000,,0,0, 567,-2496.279052,379.855834,35.004642,214.172042,-1,-1,Dealership,Savanna,67000,,0,0, 0,-2496.279052,379.855834,35.004642,214.172042,-1,-1,Dealership,Savanna,67000,,0,0, 575,-1971.510009,305.953521,34.911876,180.000000,-1,-1,Dealership,Broadway,70000,,0,0, 0,-1971.510009,305.953521,34.911876,180.000000,-1,-1,Dealership,Broadway,70000,,0,0, 402,-2477.050781,391.201477,27.717218,322.000000,-1,-1,Dealership,Buffalo,120000,,0,0, 0,-2477.050781,391.201477,27.717218,322.000000,-1,-1,Dealership,Buffalo,120000,,0,0, 411,1768.268798,-1361.695922,15.484889,270.666473,4,4,Unknown,Infernus,170000,,0,0, 0,1768.268798,-1361.695922,15.484889,270.666473,4,4,Unknown,Infernus,170000,,0,0, 415,-2483.182128,396.470703,27.627370,320.000000,-1,-1,Dealership,Cheetah,150000,,0,0,
Please help me if you know how i realy need help i just can't figure it out
Please help !! i do enything!!