Quote:
Originally Posted by Olodady
to make sure it works perfectly 
|
But it will work perfectly.
When you do:
or
Code:
int x = byte.Parse("300");
All your doing is overriding x, so you can just remove x = 0, because x will become 300 on the next line, regardless of what the value was before hand.
If you were doing
Code:
x += byte.Parse("300");
Then there would be cause for you to set the stats to 0 beforehand, but even then you wouldnt want to be using += because you should just be using =