SA-MP Forums Archive
Maths Question - 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: Maths Question (/showthread.php?tid=619958)



Maths Question - dicknyson - 24.10.2016

I was just wondering, would

Код:
number *= anothernumber
work instead of
Код:
number = number*anothernumber
in the same way that

Код:
number += anothernumber
can replace
Код:
number = number+anothernumber
?


Re: Maths Question - Gammix - 24.10.2016

Yes both does the same job.