Posts: 97
Threads: 43
Joined: Sep 2010
Reputation:
0
hello there i need help ,simple thing
a pawno wiki link of -,+,=,* etc.... meanings
cant get this in ******
Posts: 457
Threads: 7
Joined: Jul 2017
One question: How old are you?
OP:
+ is plus
= is equal
* is multiple
- is minus
+= is smthing like
var += 1; this means var = var + 1;
same for -=
another notice: are you kidding me?
Posts: 1,276
Threads: 6
Joined: Aug 2014
+= is adding to the current value by x amount.
-= is removing the current value by x amount
*= is multiplying the current value by x amount.
Posts: 27
Threads: 2
Joined: Nov 2012
Reputation:
0
I really can't tell if this is a joke or not but the ones you listed are basic mathematical terms...
Most have been stated above. Here's a few more;
< less than
> greater than
== equal to
!= not equal to
<= less than or equal to
>= greater than or equal to
Posts: 325
Threads: 5
Joined: Jun 2017
Read: (the article is for C++, not Pawn, but it doesn't matter):
http://www.cplusplus.com/doc/tutorial/operators/
Posts: 6,242
Threads: 8
Joined: Jun 2008
https://sampwiki.blast.hk/wiki/Control_Structures#Operators
This would be more appropriate, as it's relating directly to Pawn and on the actual wiki.
Posts: 428
Threads: 4
Joined: Feb 2017
Reputation:
0
You should rather go and learn Mathematics before getting into scripting.