Jump to content
  • 0

Weapon ATK


Idolo

Question


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   3
  • Joined:  03/30/12
  • Last Seen:  

Hello guys, I would know if anyone knows how and where I can multiply by five or six the weapon ATK, I think it's in battle.c or statu.c but what line ?

Thanks.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   3
  • Joined:  03/30/12
  • Last Seen:  

Bump.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  76
  • Reputation:   11
  • Joined:  04/13/12
  • Last Seen:  

I think youre looking for

 

IM NOT SURE ABOUT THIS, PLEASE BACKUP THE FILE BEFORE TRYING

 

 

battle.c

1078 if (sd->equip_index[type] >= 0 && sd->inventory_data[sd->equip_index[type]])
1079     atkmin = atkmin*(80 + sd->inventory_data[sd->equip_index[type]]->wlv*20)/100;

to

1078  if (sd->equip_index[type] >= 0 && sd->inventory_data[sd->equip_index[type]])
1079      atkmin = atkmin*(80 + (sd->inventory_data[sd->equip_index[type]]->wlv*20)*6)/100;

Edited by shadowscreen
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   3
  • Joined:  03/30/12
  • Last Seen:  

Thanks for your answer shadowscreen but no I don't see any difference.

And I have an other question, when I attack in CaC with Balmung (without cards) I doing 5700 damage. 20% from 5700 = 1100, but when I set 3 Turtle General card I doing 6700 instead 9000 why ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  76
  • Reputation:   11
  • Joined:  04/13/12
  • Last Seen:  

did you recompile after changing the line?

 

Im not deep enough into damage calculation, so I don't even have an idea for your 2nd question sorry :(

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   3
  • Joined:  03/30/12
  • Last Seen:  

Yes I recompile I same tried "atkmin = atkmin*(80 + sd->inventory_data[sd->equip_index[type]]->wlv*20)/10;" instead "atkmin = atkmin*(80 + sd->inventory_data[sd->equip_index[type]]->wlv*20)/100;" but no changing in game.

 

Ps:For my second question I find it's a stack, and I find how recitify this ^^

Edited by Idolo
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   3
  • Joined:  03/30/12
  • Last Seen:  

Bump.

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