Local (eg: new somtehing;) - 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: Local (eg: new somtehing;) (
/showthread.php?tid=80711)
Local (eg: new somtehing;) -
lansior34 - 05.06.2009
What is different between that two codes?
Код:
new
something,
something2;
Код:
new something;
new something2;
Re: Local (eg: new somtehing;) -
miokie - 05.06.2009
Nothing, Its just defining two things in one 'new' instead of two 'new's.
Re: Local (eg: new somtehing;) -
Badger(new) - 05.06.2009
you can also make the two defines in one new verticle instead of horozontal e.g.
pawn Код:
new something,something2;
Re: Local (eg: new somtehing;) -
lansior34 - 05.06.2009
So, there is no different how the script works?
Re: Local (eg: new somtehing;) -
lol2112 - 05.06.2009
Absolutely none at all.
Re: Local (eg: new somtehing;) -
Badger(new) - 05.06.2009
not one bit. No little zip of difference.