Jump to content
  • 0

Impositio Changes


trickzjen23

Question


  • Group:  Members
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  53
  • Reputation:   0
  • Joined:  11/25/11
  • Last Seen:  

I was looking in skill.c and status.c but I'm out of luck. I would like to make some changes for impositio skill of Priest; I would like to make it +50 atk instead for maximum level.

 

Thank you in advance!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  93
  • Reputation:   14
  • Joined:  12/12/11
  • Last Seen:  

Status.c

 

case SC_IMPOSITIO:
val2 = 5*val1; // Atk increase
break;

to 

case SC_IMPOSITIO:
val2 = 50; // Atk increase
break;
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  53
  • Reputation:   0
  • Joined:  11/25/11
  • Last Seen:  

 

Status.c

 

case SC_IMPOSITIO:
val2 = 5*val1; // Atk increase
break;

to 

case SC_IMPOSITIO:
val2 = 50; // Atk increase
break;

 

Thank you, what will happen for

level 1, 2 ,3 and 4 effect? isn't this going to change everything to + 50 attack?

nevermind, i see how the formula works now.

 

case SC_IMPOSITIO:
//val2 = 5*val1; //watk increase
if(val1 == 5)
 val2 = 50;
else 
 val2 = 5*val1; //watk increase
break;
Edited by aerolite
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  93
  • Reputation:   14
  • Joined:  12/12/11
  • Last Seen:  

 

Thank you, what will happen for

 

level 1, 2 ,3 and 4 effect? isn't this going to change everything to + 50 attack?

 

 

Regardless of what lvl it is, it will always and only increase your attack by 50.

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