What is an array? - 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)
+--- Thread: What is an array? (
/showthread.php?tid=607645)
What is an array? -
Noris - 22.05.2016
One thing i didnt knew through my entire coding and scripting knowledge is array[], im totally confused to know whats the meaning of it literally. Could someone explain it to me in the easiest way?
Int - set of numbers
Float - set of decimal numbers, right?
String - set of text , right ?
Variable - self explanatory
Array[] -

I guess its a set of group that contains text, int , string, floats ? Im confused
Re: What is an array? - WhiteGhost - 22.05.2016
https://sampwiki.blast.hk/wiki/Scripting_Basics#Arrays
Re: What is an array? -
luke49 - 22.05.2016
Array can contain same or different values as a group.
For example, instead of creating
PHP код:
new Textdraw1;
new Textdraw2;
/.../
you can simply create it in one line:
PHP код:
new Textdraw[2]; //it means there are Textdraw[0] and Textdraw[1]