SA-MP Forums Archive
Array help - 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: Array help (/showthread.php?tid=186401)



Array help - DarrenReeder - 28.10.2010

pawn Код:
new farm1[1][3] = {
{
{-1067.5704,-1618.1720,76.3739},
{-1043.6033,-1614.4209,76.3672},
{-1019.5717,-1615.0117,76.3672},
{-995.3599,-1613.6741,76.3672},
{-971.7378,-1612.8622,76.3672},
{-977.5037,-1631.3119,76.3672},
{-988.3344,-1640.4799,76.3672},
{-1008.0681,-1631.2628,76.3672},
{-1023.1954,-1645.0232,76.3739},
{-1040.5842,-1638.5973,76.3672}
};
Help me out with indexes? the values arent right

this is right?

pawn Код:
new farm1[10][3] = {
{
{-1067.5704,-1618.1720,76.3739},
{-1043.6033,-1614.4209,76.3672},
{-1019.5717,-1615.0117,76.3672},
{-995.3599,-1613.6741,76.3672},
{-971.7378,-1612.8622,76.3672},
{-977.5037,-1631.3119,76.3672},
{-988.3344,-1640.4799,76.3672},
{-1008.0681,-1631.2628,76.3672},
{-1023.1954,-1645.0232,76.3739},
{-1040.5842,-1638.5973,76.3672}
};



Re: Array help - Quantum - 28.10.2010

pawn Код:
new farm1[10][3] =
{
{-1067.5704,-1618.1720,76.3739},
{-1043.6033,-1614.4209,76.3672},
{-1019.5717,-1615.0117,76.3672},
{-995.3599,-1613.6741,76.3672},
{-971.7378,-1612.8622,76.3672},
{-977.5037,-1631.3119,76.3672},
{-988.3344,-1640.4799,76.3672},
{-1008.0681,-1631.2628,76.3672},
{-1023.1954,-1645.0232,76.3739},
{-1040.5842,-1638.5973,76.3672}
};