RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Hmm wat scripts do i need to edit to:...

deadgenious

Wanderer
Hmm wat scripts do i need to edit to:...

Hmm wat scripts do i need to edit to:

1. Make it so people can delete there characters right away (and not wait the 7 days)
2. Make Total Skill Cap and Skill Cap Higher
3. Make Stat Cap Higher

thanks...
 

KillerBeeZ

Knight
Re: Hmm wat scripts do i need to edit to:...

deadgenious said:
Hmm wat scripts do i need to edit to:

1. Make it so people can delete there characters right away (and not wait the 7 days)
2. Make Total Skill Cap and Skill Cap Higher
3. Make Stat Cap Higher

thanks...

1) AccountHandler.cs
private static TimeSpan DeleteDelay = TimeSpan.FromDays( 7.0 );

2) CharacterCreation.cs

find
args.Mobile = newChar;
m_Mobile = newChar;

and under it add (be sure they are not already there)

newChar.Skills.Cap=1000;
newChar.StatCap=300;
 

deadgenious

Wanderer
Yes, i got it to were i can gain up to 600 total stats, 15600 total skills (300 total in each), but now were do i go to make it so they can gain up to 300 in each?
 

KillerBeeZ

Knight
deadgenious said:
Yes, i got it to were i can gain up to 600 total stats, 15600 total skills (300 total in each), but now were do i go to make it so they can gain up to 300 in each?

the same place in CharacterCreation.cs , just add

from.Skills[SkillName.Anatomy].Cap = 300.0;

do this for each skill plus you can make some higher or lower.

you should read the FAQ, all this was in there, plus there is a lot more there that will help you in ways you haven't thought of yet. It's a wealth of information.
 
Top