Jump to content
  • 0

need to ask something abount refinement script DB


Kudo

Question


  • Group:  Members
  • Topic Count:  52
  • Topics Per Day:  0.01
  • Content Count:  130
  • Reputation:   0
  • Joined:  08/18/12
  • Last Seen:  

can someone do this to put in item_db
Each two refine upgrades =  increases your ATK by 1%

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  1536
  • Reputation:   237
  • Joined:  08/03/12
  • Last Seen:  

1 hour ago, Kudo said:

can someone do this to put in item_db
Each two refine upgrades =  increases your ATK by 1%

bonus bAtkRate,n;              ATK + n% that won't interfere with Damage modifier and SC_EDP (renewal mode only)

So ...

.@r = getrefine()/2;
bonus bAtkRate,.@r;

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  52
  • Topics Per Day:  0.01
  • Content Count:  130
  • Reputation:   0
  • Joined:  08/18/12
  • Last Seen:  

how about this 
in +1 no add

+2 add +2 in bAtk

then +3 no add

and +4 will add again 2 in bAtk so it will be +4 bAtk 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  1536
  • Reputation:   237
  • Joined:  08/03/12
  • Last Seen:  

37 minutes ago, Kudo said:

how about this 
in +1 no add

+2 add +2 in bAtk

then +3 no add

and +4 will add again 2 in bAtk so it will be +4 bAtk 

then use if, for example

     if (getrefine()==8) {
         bonus bCastrate,-20;
         bonus bDelayRate,-20;
      }
or anything needed.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  52
  • Topics Per Day:  0.01
  • Content Count:  130
  • Reputation:   0
  • Joined:  08/18/12
  • Last Seen:  

47 minutes ago, Chaos92 said:

then use if, for example

     if (getrefine()==8) {
         bonus bCastrate,-20;
         bonus bDelayRate,-20;
      }
or anything needed.

like this one sir?

 if (getrefine()==2) {
         bonus2 bAddClass,Class_All,1;
      }
        else if(getrefine()==4) {
        bonus2 bAddClass,Class_All,2;
      }
        else if(getrefine()==6) {
        bonus2 bAddClass,Class_All,3;
      }
        else if(getrefine()==8) {
        bonus2 bAddClass,Class_All,4;
      }
        else if(getrefine()==10) {
        bonus2 bAddClass,Class_All,5;
      }

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  1536
  • Reputation:   237
  • Joined:  08/03/12
  • Last Seen:  

3 hours ago, Kudo said:

like this one sir?

 if (getrefine()==2) {
         bonus2 bAddClass,Class_All,1;
      }
        else if(getrefine()==4) {
        bonus2 bAddClass,Class_All,2;
      }
        else if(getrefine()==6) {
        bonus2 bAddClass,Class_All,3;
      }
        else if(getrefine()==8) {
        bonus2 bAddClass,Class_All,4;
      }
        else if(getrefine()==10) {
        bonus2 bAddClass,Class_All,5;
      }

Should try and see.

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