Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help] Change Max Grade of skills

Mythic Archon
Loyal Member
Joined
Feb 1, 2008
Messages
719
Reaction score
10
How do i change Max grade of skills? Like Max grade of powerfull is 4.. how i do so it can be max grade 5? And how i do so i can use all skills in lvl 1 and when im wondering knight?
 
Newbie Spellweaver
Joined
Aug 24, 2007
Messages
66
Reaction score
3
Ok, It doesnt work for all skills, but for some it does, for example speed up:

In config.pk - jobsystem.dat you will find the following
( skill
( key "mage-25")
( name "Speed Up")
( limit mage)
( action 26)
( image "active028")
( desc "#nRun faster for certain amount of time.")
( ability "#nContinuation Time %1!d! Sec#nEnergy used : %2!d!")
( parameter 1 ( mul skill_level 600 ) )
( parameter 2 ( plus 82 ( mul skill_level 8)) )
( level 36 0) ( grade 2 0)
( maxlevel 3 0)
( type active use)
( compare 1 ( plus 82 ( mul skill_level 8)) )
( compare 2 160 )
( compare 3 2300 )
( compare 4 600 )
( motion 6 9 none )
( effect "" "" "" )
( sound "efs019_L" "efs020_L" "efs021")
( damagetype 2)
( targetkind 1)
)

Now we want to change it to max skill lvl 8 but only gettable for level 50+

You change
( level 36 0) to --> (level 36 50 0)
and
(maxlevel 3 0) to --> (maxlevel 3 8 0)

Next you will find in Initskill.txt

(skill (class 1) (index 26) (redistribute 1) (limit 36 1 0 0) (maxlevel 8) (mp 82) (lasttime 0) (delay 2300 600 0) (value1 0) (value2 0))

Here I change
(maxlevel 3) to --> (maxlevel 8)
-----------------------------------------------------------------
If you want this skill to be for level 1 just change the level limits


I hope you can do anything with this info :)
 
Upvote 0
Mythic Archon
Loyal Member
Joined
Feb 1, 2008
Messages
719
Reaction score
10
Thx :) Its working. but i got another question in my head:
I figured out that (grade 2 0) is the Specality(Job)

0= No job
2-3=Apparentice
4-7=Vaga,EA,Hermit
8-11=Comma,CJB,IC

When i change Grade to 0 and i go ingame that skill thingy comes up when i can add a skill but when i press on it nothing happens..(im wondering) Do i need to change anything in initskill?
 
Upvote 0
Newbie Spellweaver
Joined
Aug 24, 2007
Messages
66
Reaction score
3
You mean you set the grade to 0 so when you have a level 36 mage without any job you want to learn the skill?

I have not tryd this myself, so you should experiment with it yourself ;)
 
Upvote 0
Mythic Archon
Loyal Member
Joined
Feb 1, 2008
Messages
719
Reaction score
10
I did, the thingy comes up when i can put the skill but when i click nothing happend
 
Upvote 0
Experienced Elementalist
Joined
Nov 10, 2007
Messages
260
Reaction score
2
hi all this is a nice topic all woorks so i can learn g4 speed from lvl 50 and then g5 from 51 g6 from 52 and so on till g8...

so my question is how can i make g5 speed from lvl 60 g6 speed from lvl 70 and so on


would be useful if u would help :)



EDIT: Ahh already figured out...
 
Last edited:
Upvote 0
Back
Top