Nov 20, 2009, 06:09 pm *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: RMS Firefox toolbar has been released.  Check it out in the announcements section.
   
  RMS   Home   Help Arcade Search Chat Calendar Shop Gallery Login Register  
Pages: [1]   Go Down
  Print  
Author Topic: Calculating Shield Chain Damage.  (Read 628 times)
 
0 Members and 1 Guest are viewing this topic.
Holy Knight
Imperial
***

Posts: 114
8.00 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

View Inventory
Send Money to Holy Knight


« on: Jun 17, 2009, 07:42 am »

  Shield Chain/Matyr's Reckoning is a confusing skill. There are alot of things that influence it, some of wich are not mentioned in the skill's description.

  First off, how much does refinment and wieght of a shield affect it's damage output? Would there be a big difference between a +5 Cross Shield SC attack and a +10 Cross Shield SC attack? (Cross Shield being the best shield for Shield Chain.) I have no idea how weight and refinment effects its damage.

  Another thing i've noticed is that sometimes Shield Chain will do pathetic damage on other players, like 5 damage a hit. What reason is there for this?

Thanks.
Logged
Ratemyserver Forums
« on: Jun 17, 2009, 07:42 am »

 Logged
bleu
Jounin
****

Posts: 430
447.00 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

View Inventory
Send Money to bleu


« Reply #1 on: Jun 17, 2009, 07:54 am »

case CR_SHIELDBOOMERANG:
         case PA_SHIELDCHAIN:
            wd.damage = sstatus->batk;
            if (sd) {
               short index = sd->equip_index[EQI_HAND_L];

               if (index >= 0 &&
                  sd->inventory_data[index] &&
                  sd->inventory_data[index]->type == IT_ARMOR)
                  ATK_ADD(sd->inventory_data[index]->weight/10);
               break;
   

if( skill_num == CR_SHIELDBOOMERANG || skill_num == PA_SHIELDCHAIN )
      { //Refine bonus applies after cards and elements.
         short index= sd->equip_index[EQI_HAND_L];
         if( index >= 0 && sd->inventory_data[index] && sd->inventory_data[index]->type == IT_ARMOR )
            ATK_ADD(10*sd->status.inventory[index].refine);

Logged
Relics
Moderator
******


Posts: 951
43.99 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

Gender: Male
View Inventory
Send Money to Relics

WWW
Lancer

« Reply #2 on: Jun 17, 2009, 08:03 am »

The refinement damage will never miss but it's a measly amount which explains why it does like ~5 sometimes, it's because you actually missed the person you're trying to SC.

edit:
so no, the damage between a +5 and a +10 shield is not worth it because it's only ~4~6 damage depending on your opponents reducts.. (cranial immune fb = 4)

« Last Edit: Jun 17, 2009, 08:08 am by Relics » Logged

SilverStream~
Happy Sky
Jounin
****


Posts: 467
108.00 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

View Inventory
Send Money to SilverStream~

WWW
« Reply #3 on: Jun 17, 2009, 10:14 pm »

What about weight then?

I see on some servers they have custom items for each class(much like the sqi items), but on the shields I see they have x amount of % damage on all enemies, like the Cross Shield, but the weight varies everywhere.

On some items it's 150, on others 300.


The Cross shield is 200 weight, how much does that differ from 300, or even 400?  Will you do duble the damage if it is 400?  The Strong Shield is 250, so how much does weight really count?

On some super high rate servers I have seen cards that add weight, but in ridiculous amounts, like "+1000 weight", and only available through donations.

If I have a Cross Shield as opposed to a Guard, what would the difference in "weight damage" be?
Logged

_________________________________________________________________________________________________________________


Relics
Moderator
******


Posts: 951
43.99 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

Gender: Male
View Inventory
Send Money to Relics

WWW
Lancer

« Reply #4 on: Jun 18, 2009, 03:19 am »

If I have a Cross Shield as opposed to a Guard, what would the difference in "weight damage" be?

Weight directly adds to your ATK for Shield chain

if, for example you have a paladin with 257 ATK, shield chain will do 250% more damage based on your atk, which is 257*2.5 = 642.5 per hit

If, for example I have a shield with 250 weight, my damage would be 257+250 = 507.
507*2.5 = 1267.5 per hit.
Logged

SilverStream~
Happy Sky
Jounin
****


Posts: 467
108.00 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

View Inventory
Send Money to SilverStream~

WWW
« Reply #5 on: Jun 18, 2009, 10:39 pm »

I think it's 150% damage.

But then, a shield weighting in at 400 adds 400atk?

What is better then, 200 more "atk", or 30% damage? (shield that weighs 400 with no bonus vs cross shield)
Logged

_________________________________________________________________________________________________________________


Anti-Static Foam Cleaner
RMS Shareholder
*****

Posts: 922
175.00 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

View Inventory
Send Money to Anti-Static Foam Cleaner


« Reply #6 on: Jun 18, 2009, 10:58 pm »

Can't you people read?

ATK_ADD(sd->inventory_data[index]->weight/10);

+ Weight/10 ATK.

Quote
ATK_ADD(10*sd->status.inventory[index].refine);

+ Refine*10 ATK.
Logged
Relics
Moderator
******


Posts: 951
43.99 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

Gender: Male
View Inventory
Send Money to Relics

WWW
Lancer

« Reply #7 on: Jun 18, 2009, 11:09 pm »

I think it's 150% damage.

But then, a shield weighting in at 400 adds 400atk?

What is better then, 200 more "atk", or 30% damage? (shield that weighs 400 with no bonus vs cross shield)
I myself calculated *2.5 on the test server and that's also what it says on iROwiki.

And yeah the 400 thing would add '400 shieldchain atk' to your attack, atleast that's what I got.

testing/calculating it yourself would probably clear things up a lot.
Logged

SilverStream~
Happy Sky
Jounin
****


Posts: 467
108.00 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

View Inventory
Send Money to SilverStream~

WWW
« Reply #8 on: Jun 19, 2009, 12:19 am »

Can't you people read?

ATK_ADD(sd->inventory_data[index]->weight/10);

+ Weight/10 ATK.

Quote
ATK_ADD(10*sd->status.inventory[index].refine);

+ Refine*10 ATK.

Not everyone can read binary, do you complain about them too?  No.  You don't.



Thanks Relic,
I'll test some.
Logged

_________________________________________________________________________________________________________________


CookieEater
Jounin
****


Posts: 399
407.00 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

Current Servers: [Data not found]
View Inventory
Send Money to CookieEater


« Reply #9 on: Jun 19, 2009, 12:22 am »

Not everyone can read binary, do you complain about them too?  No.  You don't.
I can read binary. I just have no clue what it says.
Logged

B>Positive Karma, /w offers pl0x
Relics
Moderator
******


Posts: 951
43.99 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

Gender: Male
View Inventory
Send Money to Relics

WWW
Lancer

« Reply #10 on: Jun 19, 2009, 06:09 am »

Take the discussion elsewhere
Logged

Forever~Zero
Super Novice
*

Posts: 17
17.00 Zeny

Activity Referrals
Karma Longetivity

Offline Offline

Current Servers: RevillusionRO
View Inventory
Send Money to Forever~Zero


« Reply #11 on: Jun 30, 2009, 04:14 am »

Cards in your weapon influence the attack of Shield Chain.
I like using a +10 Pike [4] with 4 cards depending on the mob I'm fighting.
Logged

Try RevillusionRO!
http://forum.revillusion.net/index.php

Mid-Rate Server
Pages: [1]   Go Up
  Print  
 
Jump to:  

Subject Started by Replies Views Last post
Shield Chain Freeze Skoll 4 326 Last post Jul 04, 2009, 08:50 am
by Relics
Whats the Best Build for Paladin? Holy Knight 8 2708 Last post Jul 04, 2008, 09:42 pm
by ulzimate
Shield Chain /w Strong Shield Idealistic 4 787 Last post Apr 29, 2008, 07:47 pm
by Pariah
Ahura Mazdah? Vyrse 3 401 Last post Aug 25, 2008, 01:43 am
by R e D
Paladin card set Holy Knight 8 2230 Last post Jun 26, 2009, 10:19 pm
by Relics
Powered by MySQL Powered by PHP Powered by SMF 1.1.10 | SMF © 2006-2007, Simple Machines LLC Valid XHTML 1.0! Valid CSS!
Page created in 0.38 seconds with 51 queries.

Google visited last this page Yesterday at 07:33 pm