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;
Enjoy!
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!