Page 5 of 5 FirstFirst ... 345
Results 61 to 66 of 66
  1. #61
    hyre123's Avatar
    Join Date
    Jul 2013
    Gender
    female
    Posts
    45
    Reputation
    10
    Thanks
    7
    My Mood
    Daring
    Quote Originally Posted by KaKeBoKsEn View Post
    whats the meaning of this post?
    It seems the meaning is to brag and let the "secret" to remain in their private cool club.

  2. #62
    hoschi111's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Location
    127.0.0.1
    Posts
    59
    Reputation
    10
    Thanks
    98
    My Mood
    Amazed
    Here, my pattern function:
    External AoB.

    Code:
     Private Function pScan(ByVal startadress As Long, ByVal maxbytestoscan As Integer, ByVal pattern() As String, ByVal mask() As String) As Long
            For i As Integer = 0 To maxbytestoscan
                Dim n() As Byte = ReadMemory(startadress + i, pattern.Length)
                For k As Integer = 0 To n.Length - 1
                    If mask(k) = "X" Then
    
    
                        If pattern(k) = n(k) Then
                            If k = n.Length - 1 Then
                                Return startadress + i
                            Else
                                Continue For
                            End If
                        Else
                            Exit For
                        End If
                    Else
                        Continue For
    
                    End If
                Next
            Next
            Return 0
        End Function
    If you like my posts, i'm thankful for every Rep or Thanks.

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

    Techpowa (12-08-2013)

  4. #63
    NightmareTX_RETIRED's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    1,240
    Reputation
    57
    Thanks
    15,357
    My Mood
    Fine
    I remember trying to make a MOAB killstreak hack for MW3 and the array of bytes to get the player's killstreak value was WAY too much unstable to even make it possible. In private match its easy since you are always in player's slot #1 if you are the host of the private party. I wouldnt be suprise if the array of byte for killstreak is as unstable as MW3.

    And Again, without host in a public match. The AOB is useless.

  5. #64
    distiny's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    560
    Reputation
    67
    Thanks
    562
    My Mood
    Cynical
    or converted into C#

    Code:
    private long pScan(long startadress, int maxbytestoscan, string[] pattern, string[] mask)
    {
    	for (int i = 0; i <= maxbytestoscan; i++) {
    		byte[] n = ReadMemory(startadress + i, pattern.Length);
    		for (int k = 0; k <= n.Length - 1; k++) {
    
    			if (mask[k] == "X") {
    
    				if (pattern[k] == n[k]) {
    					if (k == n.Length - 1) {
    						return startadress + i;
    					} else {
    						continue;
    					}
    				} else {
    					break; // TODO: might not be correct. Was : Exit For
    				}
    			} else {
    				continue;
    
    			}
    		}
    	}
    	return 0;
    }
    FBI got my PC...Hardcore cheating is paused atm..

  6. #65
    ThePixelJunk's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    New zealand
    Posts
    1,457
    Reputation
    217
    Thanks
    268
    Quote Originally Posted by hyre123 View Post
    It seems the meaning is to brag and let the "secret" to remain in their private cool club.
    Read some of the posts and relies that someone leaked it.
    Can't pass through the red plastic window.
    [img]https://csgo-stats.com/******slayer6969/graphic.png[/img]

  7. #66
    Djassie18698's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    141
    Reputation
    10
    Thanks
    72
    My Mood
    Amazed
    I made a tutorial on it. Can't link, but it's here and is called: K.E.M. Strike with every kill.

Page 5 of 5 FirstFirst ... 345

Similar Threads

  1. [Release] K.E.M. Strike with every kill.
    By Djassie18698 in forum Call of Duty 10 - Ghosts Hacks & Cheats
    Replies: 22
    Last Post: 12-04-2013, 06:19 AM
  2. Selling/Trading steam account with EVERY steam account
    By Mo.Money in forum Selling Accounts/Keys/Items
    Replies: 10
    Last Post: 09-20-2010, 07:19 PM
  3. Every Kill = Post!
    By jmcmatrixs in forum Call of Duty Modern Warfare Help
    Replies: 5
    Last Post: 08-29-2010, 07:08 AM
  4. Trading CF major with every wep for CA NA accounts.
    By Canadian in forum Selling Accounts/Keys/Items
    Replies: 4
    Last Post: 08-09-2010, 05:14 AM
  5. [Help] Help with crossfire kill badge plz
    By arcna in forum CrossFire Mods & Rez Modding
    Replies: 0
    Last Post: 11-05-2009, 05:29 PM