Jump to content
  • 0

SG tweak


hyuna

Question


  • Group:  Members
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  144
  • Reputation:   4
  • Joined:  10/28/12
  • Last Seen:  

Can I ask how do I remove the HP penalty from the Union skill of star glads? I dont have an idea but i really want to change it

Edited by hyuna
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 1

  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

In battle.c remove

  	 //SG_FUSION hp penalty [Komurka]
       if (sc->data[sC_FUSION]) {
           int hp= sstatus->max_hp;
           if (sd && tsd) {
               hp = 8*hp/100;
               if (((int64)sstatus->hp * 100) <= ((int64)sstatus->max_hp * 20))
                   hp = sstatus->hp;
           } else
               hp = 2*hp/100; //2% hp loss per hit
           status_zap(src, hp, 0);
       }

then recompile

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  144
  • Reputation:   4
  • Joined:  10/28/12
  • Last Seen:  

@Capuche , u mean I remove all that line???

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

Yes without theses lines, no HP penalty for the Union (SC_FUSION) skill of SG against monsters and players.

Edited by Capuche
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  144
  • Reputation:   4
  • Joined:  10/28/12
  • Last Seen:  

OH THX so much...SOLVED

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