Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 54
  1. #1
    Grim's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    5,359
    Reputation
    112
    Thanks
    3,786
    My Mood
    Cynical

    Advanced KDR Calculator

    I've been updating a few of my programs recently, and when i read bombs thread asking for ideas on a new useful tool to use with CA, a KDR Calculator was suggested. In mentioning that i still had my KDR Calculator script around for the math to create his own, i found it and realized that although the math for increasing KDR was perfect, however the math for decreasing KDR was way off. After quite some time of refreshing myself with the current math, i was able to correct the math for decreasing KDR and here it is.

    I kept the GUI simple, nothing fancy, just a dark grey/silver background..



    THE FOLLOWING CODE IS COPIED STRAIGHT FROM THE SOURCE OF THIS KDR CALCULATOR. THE CODE IS FOR AUTOIT v3, AND NO I WILL NOT TRANSLATE IT FOR YOU.. unless i know you AND consider you as a personal friend.
    Code:
    Func CurrentKDR()
    	$K1 = GUICtrlRead($Kills)
    	$D1 = GUICtrlRead($Deaths)
    	$C1 = $K1 / $D1
    	$F1 = StringLeft($C1, 4)
    	If $K1 = 0 Or $D1 = 0 Then
    		GUICtrlSetData($Current, "Try Again..")
    		GUICtrlSetState($Desired, $GUI_DISABLE)
    		GUICtrlSetState($Button2, $GUI_DISABLE)
    	Else
    		GUICtrlSetData($Current, $F1)
    		GUICtrlSetState($Desired, $GUI_ENABLE)
    		GUICtrlSetState($Button2, $GUI_ENABLE)
    	EndIf
    EndFunc
    Func DesiredKDR()
    	$K = GUICtrlRead($Kills)
    	$D = GUICtrlRead($Deaths)
    	$E = GUICtrlRead($Desired)
    	$y = $D * $E
    	$x = $K / $E
    	$v = $y - $K
    	$t = $x + $D
    	$m = $v + $K
    	$m2 = $t - $D
    	$stringM2 = StringSplit($m2, ".")
    	$stringM = StringSplit($m, ".")
    	$stringV = StringSplit($v, ".")
    	If GUICtrlRead($Desired) = 0 Then
    		GUICtrlSetData($KillsToGo, "What Do You Want Your KDR To Be?")
    	ElseIf GUICtrlRead($Desired) > 0 Then
    		If $v >= 0 Then
    			GUICtrlSetData($KillsToGo, $stringV[1] & " More Kills")
    			GUICtrlSetData($KillsAfter, $stringM[1])
    			GUICtrlSetData($DeathsAfter, $D)
    		ElseIf $v < 0 Then
    			GUICtrlSetData($KillsToGo, $stringM2[1] - $D & " More Deaths")
    			GUICtrlSetData($KillsAfter, $K)
    			GUICtrlSetData($DeathsAfter, $stringM2[1])
    		EndIf
    	ElseIf GUICtrlRead($Desired) < 0 Then
    		GUICtrlSetData($KillsToGo, "Silly Noob.. No Such Thing As Negative KDR")
    	EndIf
    EndFunc



    @bombs.. dont know if you actually wanted to do a KDR Calc.. however if you do i'd be glad to help you with the math of it.
    Last edited by Grim; 04-29-2010 at 09:56 PM.
    Want to see my programs?
    \/ CLICK IT BITCHES \/

  2. The Following 31 Users Say Thank You to Grim For This Useful Post:

    187pig (02-11-2011),Ali (04-29-2010),BossMan. (04-30-2010),breaksafe (04-29-2010),Cameronol (05-01-2010),CRUSTY (04-29-2010),deadskulz (07-18-2010),deathcookies (04-29-2010),dgatling (07-26-2012),DOEET (04-29-2010),draga01 (04-29-2010),GameHacks01 (10-22-2010),IHelper (04-29-2010),Julma Henri (04-29-2010),justin2010 (09-25-2010),kalner123 (01-23-2013),kalner1234 (01-23-2013),landowner (04-29-2010),Melix (07-24-2013),noob555 (04-29-2010),Obama (04-29-2010),pepsi233 (04-29-2010),pkrownedu (07-09-2013),rpj (07-10-2010),shadow2345 (04-29-2010),Storm (07-14-2010),Synchromanica (04-29-2010),tambre (06-16-2010),tempta43 (04-29-2010),tiodanii (06-19-2010),WOLFPACK X69X (04-29-2010)

  3. #16
    c1c50's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Australia, NSW
    Posts
    164
    Reputation
    10
    Thanks
    11
    obviously WPS made this thread and approved it cause he/she is minion

  4. #17
    dylan40's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In ya head yo. oya.
    Posts
    851
    Reputation
    11
    Thanks
    136
    My Mood
    Happy
    Its a virus !,
    Joke.

  5. #18
    Comet's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    MPGH
    Posts
    6,433
    Reputation
    376
    Thanks
    805
    My Mood
    Amazed
    Haha thats wicked gj wps!.

  6. #19
    Solify's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Frankfurt, Germany
    Posts
    2,291
    Reputation
    143
    Thanks
    2,477
    My Mood
    Aggressive
    wow good job something new ^^

  7. #20
    Mc565's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    127.0.0.1
    Posts
    5,499
    Reputation
    478
    Thanks
    1,482
    Looks awesome, soo using it.

    mc565mpgh@hotmail.com

    -Thanks to De La Ghetto
    <3

    [IMG]https://i281.photobucke*****m/albums/kk231/drsynyster/UFB.png[/IMG]

  8. #21
    dylan40's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In ya head yo. oya.
    Posts
    851
    Reputation
    11
    Thanks
    136
    My Mood
    Happy
    i need to have 4k more kills to have 2.00kdr my kdr is 1.66 atm i rule and i dont hack imao !

  9. #22
    c0ldb0y's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    49
    Reputation
    9
    Thanks
    8
    damn bro good job! lyk the gui this is really useful

  10. #23
    041681's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Hidden Leaf-fighting for Sakura Chan's heart
    Posts
    455
    Reputation
    10
    Thanks
    12
    My Mood
    Bored
    does this mean that we can change or kdrs effecticely??
    The Aussies are back xD!!
    and we all respect

    LIZ
    MATYPATTY
    Shocking ~In my pants xP~



    Plz help me level up my brute xD
    https://u-am-gay.mybrute.com
    If you do, just pm me on mpgh and i will thank you for ya efforts xD

    AND

    If i helped plz press thanks !!!

  11. #24
    FrogIsHam's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    The Dank Side of the Meme
    Posts
    841
    Reputation
    26
    Thanks
    104
    My Mood
    Happy
    Great job mate you did a wonderful job!

  12. #25
    Julma Henri's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,528
    Reputation
    205
    Thanks
    775
    My Mood
    In Love
    Good Job i love it!
    __________________
    My process: Making Advenced injector



    To Do list:

    1. Get 200 post [x]
    2. Get 400 post [x]
    3. Get 1000 post [x]
    4. Make own hack [x]
    5. Make spammer[0]
    6. Make CA Cleaner [0]
    7. Finish my to do list [x]

  13. #26
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Good job WPS.
    I really like the GUI.
    -Rest in peace leechers-

    Your PM box is 100% full.

  14. #27
    Julma Henri's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,528
    Reputation
    205
    Thanks
    775
    My Mood
    In Love
    Hey thats cool and i use it!
    But can i ask what program u used to do it?
    Pm me the answer!
    _____________
    My process: Making Advenced injector



    To Do list:

    1. Get 200 post [x]
    2. Get 400 post [x]
    3. Get 1000 post [x]
    4. Make own hack [x]
    5. Make spammer[0]
    6. Make CA Cleaner [0]
    7. Finish my to do list [x]

  15. #28
    IHelper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Ask me tommorow
    Posts
    4,797
    Reputation
    53
    Thanks
    2,056
    My Mood
    Amazed
    Quote Originally Posted by WarPathSin View Post
    really? i thought it was too ordinary.. i like my circle GUI for my auto-click just can't get the edges to smooth out
    The GUI is awwesome
    o-o
    +1
    You want respect
    Earn it.

  16. #29
    3L1T3's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    40
    Reputation
    10
    Thanks
    5
    I like it . but make it smaller . .

  17. The Following User Says Thank You to 3L1T3 For This Useful Post:

    Grim (04-29-2010)

  18. #30
    Comet's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    MPGH
    Posts
    6,433
    Reputation
    376
    Thanks
    805
    My Mood
    Amazed
    Quote Originally Posted by Cristyboy View Post
    wow good job something new ^^
    It is nvr seen this before so it's pretty cool.

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [help] KDR Calculator
    By pushdis15 in forum Combat Arms Coding Help & Discussion
    Replies: 7
    Last Post: 01-22-2011, 05:03 PM
  2. Code for CBL Checker & KDR Calculator-
    By ultahackers in forum Combat Arms Spammers, Injectors and Multi Tools
    Replies: 6
    Last Post: 11-07-2010, 01:37 PM
  3. [Help] KDR Calculator?
    By xRenegade_x in forum WarRock Discussions
    Replies: 8
    Last Post: 10-19-2010, 06:23 AM
  4. Simple KDR Calculator
    By MvRouC12 in forum CrossFire Discussions
    Replies: 14
    Last Post: 05-07-2010, 06:59 AM
  5. [Release] KDR calculator
    By noob555 in forum Combat Arms Spammers, Injectors and Multi Tools
    Replies: 77
    Last Post: 03-26-2010, 07:30 PM