Aurastin submitted a new resource:

StatBall - Allows Stats to be set by player.

Honesty Disclaimer: This is not my script! All credit goes to the original author who I am unable to identify, and to @PyrO for updating the script making it easy to customize.

I found this script at https://github.com/GoUO/GoUO

This StatBall can be used by a player to modify their character's Strength, Dexterity, and Intelligence. Default values are based on a 225 StatCap.

To customize for your shard simply edit the following values as needed.
Example: private int statcap = 500;

Code:
//-----------------
        // Edit to your liking or leave blank for default values
        //------------------------
        private int statcap;
        private int defaultStr;
        private int defaultDex;
        private int defaultInt;
        private int maxStr;
        private int maxDex;
        private int maxInt;

        //-----------------------

Enjoy!

Read more about this resource...
 
Last edited:
Aurastin updated StatBall with a new update entry:

StatBall (easy to customize)

StatBall updated and now easy to customize.

Thanks and credit to @PyrO for making this possible!

To customize for your shard simply edit the following values as needed.
Example: private int statcap = 500;

Code:
//-----------------
        // Edit to your liking or leave blank for default values
        //------------------------
        private int statcap;
        private int defaultStr;
        private int defaultDex;
        private int defaultInt;...

Read the rest of this update entry...
 
Back