|
||
|
|||||||
| Server Support on Windows Get (and give) support on general questions related to the RunUO server itself. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Forum Expert
|
Ok I'm trying to edit the amout of the total skill amout alllowed. Defult I think is 700 I want to change it to 1200. I figured out how to edit the part for Str, Dex and intl. Now I just need help editing the skill cap. Anyone know?
Also I keep getting disconnected from my shard. I updated to the latest patch an I still get disconnected any ideas? |
|
|
|
|
|
#2 (permalink) |
|
Master of the Internet
Join Date: Feb 2004
Location: NC/NC State Univ
Age: 23
Posts: 16,424
|
Change the line in character creation that's like... m.Skills.Cap = ####;
(at least I think that's what it is...maybe not m...) Second, nope, no idea.
__________________
Goodbye, folks. |
|
|
|
|
|
#3 (permalink) |
|
Forum Expert
Join Date: Sep 2005
Location: UK
Age: 29
Posts: 781
|
or you could try, on the CharacterCreation.cs file and do Ctrl and g and put in 609.
you should see Code:
newChar.Player = true; -------------------------------------------- Code:
newChar.SkillsCap = 12000; then Save the file. and go into game and do [global set skillscap 12000 that will set all chars you have ingame to that skill cap. i dont take any credit in this i had help. thanks all the best ![]() |
|
|
|
|
|
#5 (permalink) |
|
Forum Expert
Join Date: Sep 2005
Location: UK
Age: 29
Posts: 781
|
Ctrl & F - is find like 'the cat' - and Ctrl & G is the line number. its ok. theres some things im not good at but things im sure i no. please no im not pulling rank as i dont have one. im still and i guess will always be a Newbe. i understand that your sleepy. lol
there are days when im on this fourm till 5am or sometimes 8 or 9am time in the UK. lol so its all good. and all the best, to the men that run RAUNuo ITS THE BEST. |
|
|
|
|
|
#10 (permalink) | |
|
Account Terminated
|
Quote:
This is how it works, depending if you have disabled AOS or not, if you have edited the right thing then its correct. |
|
|
|
|
|
|
#11 (permalink) |
|
Forum Expert
Join Date: Sep 2005
Location: UK
Age: 29
Posts: 781
|
Hi there i have done it like this.
Code:
private static void EventSink_CharacterCreated( CharacterCreatedEventArgs args )
{
if ( !VerifyProfession( args.Profession ) )
args.Profession = 0;
Mobile newChar = CreateMobile( args.Account as Account );
if ( newChar == null )
{
Console.WriteLine( "Login: {0}: Character creation failed, account full", args.State );
return;
}
args.Mobile = newChar;
m_Mobile = newChar;
newChar.Player = true;
newChar.AccessLevel = ((Account)args.Account).AccessLevel;
newChar.Female = args.Female;
newChar.Body = newChar.Female ? 0x191 : 0x190;
newChar.Hue = Utility.ClipSkinHue( args.Hue & 0x3FFF ) | 0x8000;
newChar.Hunger = 20;
newChar.SkillsCap = 10000;
bool young = false;
if ( newChar is PlayerMobile )
{
PlayerMobile pm = (PlayerMobile) newChar;
pm.Profession = args.Profession;
if ( pm.AccessLevel == AccessLevel.Player && ((Account)pm.Account).Young )
young = pm.Young = true;
}
|
|
|
|
|
|
#14 (permalink) | |
|
Account Terminated
|
Quote:
Did you edit AOS.cs and SE.cs, what are the values for the static bools within those scripts, how can you run a shard if you cannot even answer a question like that? |
|
|
|
|
|
|
#15 (permalink) |
|
Forum Expert
Join Date: Sep 2005
Location: UK
Age: 29
Posts: 781
|
i didnt no u have to edit it. im a new shard runner.
in my aos.cs it says Code:
}
private static bool m_ArmorIgnore;
public static bool ArmorIgnore
{
get{ return m_ArmorIgnore; }
set{ m_ArmorIgnore = value; }
}
Code:
public class SE
{
public const bool Enabled = true;
public static void Configure()
{
Core.SE = Enabled;
}
![]() |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|