Thread: Dragon claw formula?

Results 1 to 2 of 2
  1. #1 Dragon claw formula? 
    Respected Member


    George's Avatar
    Join Date
    Mar 2009
    Posts
    7,099
    Thanks given
    2,226
    Thanks received
    3,146
    Rep Power
    5000
    My current formula
    Code:
    		client.clawHit[0] = r.nextInt(MeleeFormulas.getBaseDamage(client));
    		client.clawHit[1] = client.clawHit[0] > 0 ? client.clawHit[1] = (int) (client.clawHit[0] * .50)
    				: r.nextInt(MeleeFormulas.getBaseDamage(client));
    		client.clawHit[2] = (int) (client.clawHit[1] > 0 ? ((int) client.clawHit[1] * .50)
    				: r.nextInt(MeleeFormulas.getBaseDamage(client)));
    		client.clawHit[3] = client.clawHit[2] > 0 ? client.clawHit[2] : r
    				.nextInt(MeleeFormulas.getBaseDamage(client));
    Outcome;


    However, I might be completely wrong. Does anyone have any alternatives or their own formula that they would mind sharing?
    Attached image

    Spoiler for Spoilers!:
    Attached image
    Attached image
    Attached image
    Attached image
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Oct 2015
    Posts
    13
    Thanks given
    1
    Thanks received
    2
    Rep Power
    36
    -First, a normal attack, which usually deals a high amount of damage; then half of that first hit,
    and then finally two attacks that add up to the second hit. For example, 300-150-70-80.

    -If the first hit misses and the second one hits, the 3rd and 4th hits will each deal half of that damage.
    For example, 0-300-150-150.

    -If the first two attacks hit 0-0, the 3rd and 4th will perform as regular hits.
    For example, 0-0-300-300.

    -If the claws hit 3 initial zeros, the last hit (if it hits) will have a 50% damage boost;
    e.g.: 0-0-0-450.

    -If the first three attacks fail, and the fourth attack also "fails", the fourth attack almost
    always hits a low number instead of a 0; approximately between 1 and 7 lifepoints.
    A player with protect from melee, divine/elysian shield, 90+ defence,
    or with the Staff of Light special attack active can sometimes completely defend against dragon claws.

    Taken from -> http://www.rune-server.org/runescape...t-formula.html
    Other account is "Valiant", forgot the password to it as it was random
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Dragon claws perfect formula
    By vayken in forum Tutorials
    Replies: 11
    Last Post: 10-25-2011, 07:51 AM
  2. Dragon claws perfect formula
    By vayken in forum Tutorials
    Replies: 9
    Last Post: 09-29-2011, 11:30 PM
  3. Dragon Claw formula
    By Peril in forum Configuration
    Replies: 22
    Last Post: 08-18-2011, 04:06 AM
  4. [PI] Dragon Claw Bad Formula
    By viality in forum Help
    Replies: 0
    Last Post: 02-26-2011, 07:26 AM
  5. Very accurate Dragon Claw formula.
    By Peril in forum Snippets
    Replies: 4
    Last Post: 07-23-2009, 07:19 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •