[Help] How do I change RegExp for skills?

08/22/2010 00:51 Bomb#1
my sactter skill get up very fast levels

how do I edit the skill exp requirment?
source 5165
08/22/2010 01:41 Fish*#2
what version????????
08/22/2010 03:53 Bomb#3
5165
08/22/2010 03:58 .Beatz#4
I think if you open your source and search for
Code:
public static uint SkillExpRate
under world.cs. Change the number after it to a lower number.
08/22/2010 04:16 Bomb#5
I dont find SkillExpRate
08/22/2010 04:18 µ~Xero~µ#6
search again.
or tell us what source ur using
08/22/2010 07:32 Arcо#7
@Matty
Its actually public static uint ExperienceRate for all of them
08/22/2010 09:20 Bomb#8
How it can be ExperienceRate if i put 1 and scatter grow up fast anyways?

I searched SkillExpRate and dont find it.
im using 5165 source(acros thread)
08/22/2010 19:34 BLASTER!!!!#9
in world.cs find:
Code:
public static uint ExperienceRate
under it put:
Code:
        public static uint SkillRate = 10;//Skill exp is x10
        public static uint ProfRate = 25;//Prof exp is x25
in character.cs find:
Code:
public void AddProfExp(ushort Wep, uint Amount)
replace:
Code:
Amount *= World.ExperienceRate;
with:
Code:
Amount *= World.ProfRate;
in character.cs find:
Code:
public void AddSkillExp(ushort ID, uint Amount)
replace:
Code:
Amount *= World.ExperienceRate;
with:
Code:
Amount *= World.SkillRate;