SA-MP Forums Archive
Can you help me please. - 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: Can you help me please. (/showthread.php?tid=136526)



Can you help me please. - Cem - 25.03.2010

What is the diffrence between this.

pawn Код:
new Test;
new Test1;
pawn Код:
new Test, Test1;
whats more efficent and better to use say for about 60 varibles.


Re: silly question but easy for some. - Fedee! - 25.03.2010

It's the same...

pawn Код:
new Text, Text1 ...
Is more neat for me


Re: Can you help me please. - MPKaboose - 25.03.2010

and
pawn Код:
new text[2];
is same xD


Re: Can you help me please. - Anwix - 25.03.2010

for 60 variables use

pawn Код:
new Text[60];
then use

pawn Код:
Text[0] = ..........
Text[1] = ..........
Text[2] = ..........
and so on.