OverMaxing

Posts 1–15 of 21 · Page 1 of 2
OverMaxing
Hey. So how to do thing like it was when Starforce in RotF was thing: after being 8/8 by special items you can "overmax"?
By adding a boolean, if you are 8x8, it sets to true.
Then, increase max stats.
I don't understand, can you explain more?
Well, so? Anyone something?
Still searching help for it.
Bruv, if u would have taken ur time to try instead of popping all those comments here you would have figured it out.
Quote Originally Posted by SeXZeFPS View Post
Bruv, if u would have taken ur time to try instead of popping all those comments here you would have figured it out.
How i am supposed to figure it out when i don't know how to even start doing it?
Quote Originally Posted by Stone2405 View Post
How i am supposed to figure it out when i don't know how to even start doing it?
you might want to stop acting pretentious and pick up a c# course, as the 'overmaxing' thing is some of the easiest things you can do, you just copy paste the maxing code...
Code:
            if (x != null && !OverMaxed)
            {
                StartingValue = int.Parse(x.Value);
                MaxValue = int.Parse(x.Attribute("max").Value);
            }

            else if (x != null && OverMaxed)
            {
                StartingValue = int.Parse(x.Value);
                MaxValue = int.Parse(x.Attribute("max").Value) + 20;
            }
I think it is now nevermind.

- - - Updated - - -

Quote Originally Posted by FlutterM4rk View Post
you might want to stop acting pretentious and pick up a c# course, as the 'overmaxing' thing is some of the easiest things you can do, you just copy paste the maxing code...
Maybe easiest to you.
//bump Didn't get any good answer.
Quote Originally Posted by Stone2405 View Post
//bump Didn't get any good answer.
You have this...

Quote Originally Posted by SeXZeFPS View Post
Code:
if (x != null && !OverMaxed)
{
StartingValue = int.Parse(x.Value);
MaxValue = int.Parse(x.Attribute("max").Value);
}

else if (x != null && OverMaxed)
{
StartingValue = int.Parse(x.Value);
MaxValue = int.Parse(x.Attribute("max").Value) + 20;
}
Quote Originally Posted by LilColossal View Post
You have this...
Dude it returns errors.
Posts 1–15 of 21 · Page 1 of 2

Post a Reply

Tags for this Thread

None

Need help?