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!

About Skill Add Sword skill and Magic skill and Upgrade Skill Even GM skill

Junior Spellweaver
Joined
Jan 20, 2009
Messages
147
Reaction score
56
Hi everynone~~!
juleki and poshobelloxd post add GMskill

My tutor is find All Sowrd skill and Magic skill even GM skill
Now Start
Go MSsql DB SERVER01 Running quary

PHP:
USE [Server01]
GO

DECLARE    @return_value int

EXEC    @return_value = [dbo].[cabal_tool_GetSkill]
        @CharacterIdx = YourCharacterIdx

SELECT    'Return Value' = @return_value

GO
And you find skill data code
copy that notepad

This code is pure lv1 Wa code
Code:
0x02000100004D01014600540101480055010149009001014B007C01014E007D01014F007E010150007F010151000100010100A501016600A601016700DA01016800E101016900E201016A00E301016B00

skill code is 10 digit
Code:
[COLOR="#FF0000"]CC01[/COLOR][COLOR="#FF0000"][COLOR="#0000FF"]01[/COLOR][/COLOR][COLOR="#0000FF"][COLOR="#800080"]23[/COLOR][/COLOR]00 <= Gm buff 1 code
CC01012300 <= Gm buff 1 code
CC01 change hes to dex 01CC [HEX] => 460 [DEC] this is skill number

01 is skil Level ex)01 is Lv1, 0A is Lv 10, 14 is Lv 20

23 is Skill slot 1st Magic slot code start 20. 23 is 4th slot

***if you put skill same slot just show first skill***

Code:
[COLOR="#0000FF"]Sword skill[/COLOR]
00 1st slot
01 2nd slot
02 3rd slot
03 4th slot
......
if you want 15th slot 15-1=14[DEC]=>0E[HEX]

[COLOR="#0000FF"]Magic Skill [/COLOR]
20 1st slot
21 2nd slot
22 3rd slot
23 4th slot
......
If you want 10th slot 10+31=41[DEC]=>29[HEX]

[COLOR="#0000FF"]Upgrade Skill[/COLOR]
52 1st slot
53 2nd slot
54 3rd slot
55 4th slot
56 5th slot
57 6th slot



last 00 is maybe Special skill code still finding~~

copy your skill data + skillcode running quary
PHP:
USE [Server01]
GO

DECLARE    @return_value int

EXEC    @return_value = [dbo].[cabal_tool_SetSkill]
        @CharacterIdx = YourCharacterIdx,
        @Data = YourSkillData

SELECT    'Return Value' = @return_value

GO

The end~~~!!!!

ps. GM skill list
Code:
		<msg id="skill0144" cont="Immortality(QA)" />
		<msg id="skill0145" cont="Sureside(QA)" />
		<msg id="skill0146" cont="Power Word Kill(QA)" />
		<msg id="skill0147" cont="Pury of Heaven(QA)" />
		<msg id="skill0460" cont="GM's Blessing(Lv.1)" />
		<msg id="skill0461" cont="GM's Blessing(Lv.2)" />
		<msg id="skill0462" cont="GM's Blessing(Lv.3)" />
		<msg id="skill0463" cont="Debuff of GM" />
 
Last edited:
Junior Spellweaver
Joined
Jun 2, 2011
Messages
145
Reaction score
14
Re: About Skill Add Sword skill and Magic skill and GM skill

sword skills have differend code than magic or upgrade
 
Elite Diviner
Joined
Sep 11, 2010
Messages
430
Reaction score
94
Re: About Skill Add Sword skill and Magic skill and GM skill

maybe the last 2 bits are the position on the skill bar. When ive added the gm buff codes before, they appeared in diferent positions on my skill bar (Which was empty btw)
 
Junior Spellweaver
Joined
Jun 2, 2011
Messages
145
Reaction score
14
Re: About Skill Add Sword skill and Magic skill and GM skill

CC01012300 here 3 is skill position check it ;-)
 
Junior Spellweaver
Joined
Jan 20, 2009
Messages
147
Reaction score
56
fix skill rank to slot position ;;;
 
█║▌║▌║TheMerc iful║▌║▌║█
Loyal Member
Joined
Jan 29, 2005
Messages
1,367
Reaction score
80
I Just Wanna Clarify This Part Coz' I Just Started To Try This Part Of The Development Of EP8...

CC01 change hes to dex 01CC [HEX] => 460 [DEC] this is skill number

Simple Question...

How Did 01CC Became CC10?

And Where Did The Last Two Zero's Came From?!..

Thanks!

//
Simple Math... Sorry... Solved It... You Just Have To Change The Switch Places Of The First Two Digits With The Last 2 Digits....
 
Last edited:
Newbie Spellweaver
Joined
Mar 24, 2013
Messages
54
Reaction score
4
// Figured it out myself T^T Honestly --
 
Last edited:
Back
Top