Jump to content
  • 0

Fixing Poem Bragis Skill on Bard and Gypsy


eirwanda

Question


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  59
  • Reputation:   3
  • Joined:  11/13/16
  • Last Seen:  

Gypsy:

Before i start for asking, i change my src before

file location : trunk/src/map/skill.c

Quote

case BA_POEMBRAGI:
        val1 = 3 * skill_lv + status->dex / 10; // Casting time reduction
        //For some reason at level 10 the base delay reduction is 50%.
        val2 = (skill_lv < 10 ? 3 * skill_lv : 50) + status->int_ / 5; // After-cast delay reduction
        if (sd) {
            val1 += pc_checkskill(sd, BA_MUSICALLESSON);
            val2 += 2 * pc_checkskill(sd, BA_MUSICALLESSON);
        }

then, I changed this line

Quote

 val2 = (skill_lv < 10 ? 3 * skill_lv : 50) + status->int_ / 5; // After-cast delay reduction

to

Quote

 val2 = (skill_lv < 10 ? 3 * skill_lv : 50) + status->int_ / 3; // After-cast delay reduction

and its work on Clown but not work against Gypsy, i dont know why.... /sob 

How to make its work on Gypsy?? 

 

Thanks in Advance

 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  386
  • Reputation:   38
  • Joined:  04/28/13
  • Last Seen:  

What would you like to fix on gypsys? o.o

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  59
  • Reputation:   3
  • Joined:  11/13/16
  • Last Seen:  

33 minutes ago, Promise said:

What would you like to fix on gypsys? o.o

the after cast delay when the gypsy using poem skill

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  386
  • Reputation:   38
  • Joined:  04/28/13
  • Last Seen:  

What's the name of the skill you want to modify?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  59
  • Reputation:   3
  • Joined:  11/13/16
  • Last Seen:  

9 hours ago, Promise said:

What's the name of the skill you want to modify?

Poems Bragi on Gypsy sir 

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...