Posts: 53
Threads: 24
Joined: Jun 2011
Reputation:
0
So, let's say a player has 0 bombs.
Bomb = 0.
How could you do it so when you type a command it gives you 1.
Then 2. Then 3 and so on?
Posts: 385
Threads: 17
Joined: Oct 2008
Reputation:
0
Bomb++; = Increase the value by one.
Bomb += (value) - Increase the value by your selected number.
Posts: 53
Threads: 24
Joined: Jun 2011
Reputation:
0
Oh, same goes for decreasing, right?
Posts: 127
Threads: 23
Joined: Jul 2012
Reputation:
0
Yeah, just replace the + with a -
Posts: 53
Threads: 24
Joined: Jun 2011
Reputation:
0
How would I check if the value is 0 or 1?
With if? If so, how?