Jump to content
  • 0

Custom Skills Cannot Use


Byakuran

Question


  • Group:  Members
  • Topic Count:  110
  • Topics Per Day:  0.02
  • Content Count:  229
  • Reputation:   5
  • Joined:  12/16/11
  • Last Seen:  

i'm having a problem w/ my custom skills i try to create a new backsliding skills named "Yellow Flash" but i cant use it or cant lvl up it?

heres the pic

df2f3878c5bdc1563b625f988558fc0c.png

and i cant use it by using @useskill command

can someone help me?

Link to comment
Share on other sites

11 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  209
  • Topics Per Day:  0.05
  • Content Count:  892
  • Reputation:   27
  • Joined:  12/09/11
  • Last Seen:  

did u add it on skill_db?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  110
  • Topics Per Day:  0.02
  • Content Count:  229
  • Reputation:   5
  • Joined:  12/16/11
  • Last Seen:  

ya i already add it

heres the what i put in skill_db.txt

545,0,6,4,0,0x1,0,1,1,no,0,0x1,0,weapon,10, TF_YELLOWFLASH,Yellow Flash

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  209
  • Topics Per Day:  0.05
  • Content Count:  892
  • Reputation:   27
  • Joined:  12/09/11
  • Last Seen:  

src code?

lua files?

Edited by bVersatile
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

cant use it or cant lvl up it?

problem lua files

and i cant use it by using @useskill command

problem src coding

@bVersatile

+1

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  110
  • Topics Per Day:  0.02
  • Content Count:  229
  • Reputation:   5
  • Joined:  12/16/11
  • Last Seen:  

thank for the reply sir.. i want to ask what is the available skill id? i just remove the yellowflash and just make the earthbolt skill and the skill works fine but i want to work for yellowflash skill and i want to know what are the available skill id cuz i already use the 545 skill id .

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

free slots:

1020 to 2000

2058 to 2200

2384 to 2411

2537 to 3000

don't use 700 to 1000 cause its a reserved id for future item skill or etc

but still check if its available...

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  110
  • Topics Per Day:  0.02
  • Content Count:  229
  • Reputation:   5
  • Joined:  12/16/11
  • Last Seen:  

sir whats wrong with my Yellow Flash i cant lvl up it.. but i can now use @useskill command..

heres my lua..

lua files/skillinfo/skilltreeview.lua


[15] = {
{"MO_IRONHAND", 259; Pos = 0, MaxLv = 10, NeedSkillList = {}},
{"MO_CALLSPIRITS", 261; Pos = 1, MaxLv = 5, NeedSkillList = {0}},
{"MO_DODGE", 265; Pos = 2, MaxLv = 10, NeedSkillList = {0, 1}},
{"MO_TRIPLEATTACK", 263; Pos = 3, MaxLv = 10, NeedSkillList = {2}},
{"MO_KITRANSLATION", 1015; Pos = 5, MaxLv = 1, NeedSkillList = {}},
{"MO_ABSORBSPIRITS", 262; Pos = 7, MaxLv = 1, NeedSkillList = {1}},
{"MO_INVESTIGATE", 266; Pos = 8, MaxLv = 5, NeedSkillList = {1}},
{"MO_BLADESTOP", 269; Pos = 9, MaxLv = 5, NeedSkillList = {2}},
{"MO_CHAINCOMBO", 272; Pos = 10, MaxLv = 5, NeedSkillList = {3}},
{"MO_BALKYOUNG", 1016; Pos = 12, MaxLv = 1, NeedSkillList = {}},
{"MO_EXPLOSIONSPIRITS", 270; Pos = 14, MaxLv = 5, NeedSkillList = {7}},
{"MO_FINGEROFFENSIVE", 267; Pos = 15, MaxLv = 5, NeedSkillList = {8}},
{"MO_SPIRITSRECOVERY", 260; Pos = 16, MaxLv = 5, NeedSkillList = {9}},
{"MO_COMBOFINISH", 273; Pos = 17, MaxLv = 5, NeedSkillList = {10}},
{"MO_EXTREMITYFIST", 271; Pos = 22, MaxLv = 5, NeedSkillList = {14, 15}},
{"MO_STEELBODY", 268; Pos = 24, MaxLv = 5, NeedSkillList = {17}},
{"MO_BODYRELOCATION", 264; Pos = 30, MaxLv = 1, NeedSkillList = {16, 22, 24}},
{"MO_YELLOWFLASH", 546; Pos = 30, MaxLv = 1, NeedSkillList = {}}
},

lua files/skillinfoz/skilldescript.lua


[sKID.MO_YELLOWFLASH] = {
"Yellow Flash",
"Max Level:^777777 1 ^00000",
"Type:^33cc00 Active ^00000",
"SP Cost:^777777 20 + 5*SkillLV ^000000",
"Duration:^777777 Instant ^000000",
"Effect: ^777777 Teleports your in place you desired.^000000",
}

lua files/skillinfoz/skillinfolist.lua

[sKID.MO_YELLOWFLASH] = {
"MO_YELLOWFLASH";
SkillNmae = "Yellow Flash",
MaxLv = 1,
}

lua files/skillinfoz/skilltreeview.lua


[22] = SKID.MO_EXTREMITYFIST,
[24] = SKID.MO_STEELBODY,
[30] = SKID.MO_BODYRELOCATION,
[31] = SKID.MO_YELLOWFLASH

whats the problem w/ that sir?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

how about the db? skilltree? skillrequire? and etc?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  110
  • Topics Per Day:  0.02
  • Content Count:  229
  • Reputation:   5
  • Joined:  12/16/11
  • Last Seen:  

here sir

skill_db.txt


272,-2,8,4,-1,0,0,5,-4,no,0,0x200,0,weapon,0, MO_CHAINCOMBO,Raging Quadruple Blow
273,-2,6,4,-1,0x2,2,5,1,no,0,0x200,0,weapon,0, MO_COMBOFINISH,Raging Thrust
546,18,6,2,0,0x1,0,1,1,no,0,0,0,none,0, MO_YELLOWFLASH,Yellow Flash

skill_nocast_db.txt

546,8 //YELLOWFLASH

skill_require_db.txt

546,0,0,14,0,0,0,0,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0   //YELLOWFLASH

skill_tree.txt

15,546,1,271,3,260,2,268,3,0,0,0,0 //YELLOWFLASH

there sir

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

hmm..how come you have required skills in your skill_tree and it doesn't reflect in your lua files....

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  110
  • Topics Per Day:  0.02
  • Content Count:  229
  • Reputation:   5
  • Joined:  12/16/11
  • Last Seen:  

sir i already change it to

15,546,1,0,0,0,0,0,0,0,0,0,0 //YELLOWFLASH

i can now try to lvl up it but when i click apply nothing happen..

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...