Page 3 of 9 FirstFirst 12345 ... LastLast
Results 31 to 45 of 125
  1. #31
    Shad0wc0de's Avatar
    Join Date
    May 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    Angry not working

    Ill get File "bf_hack.py", line 194, in <module>
    data = getPlayerInfo()
    File "bf_hack.py", line 64, in getPlayerInfo
    xml_end = re.search(getmessafter, data).span()[1]
    AttributeError: 'NoneType' object has no attribute 'span'

  2. #32
    TACHANKAv2's Avatar
    Join Date
    Aug 2018
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Do you have a ******* were we could come together to make mods?

    Quote Originally Posted by esever171 View Post
    No, I didn't make it to where you could directly assign money values. The reason at the time was because if you tried to change your money by more than $500 at a time the server would reject it. The 5mil command actually just sends multiple POST requests to the server, incrementing by $500 each time. That's why it takes so long.

    My advice would be to not let the command fully run and to kill the program after the command runs for a few seconds.

    Hey, do you have a d-i-s-c-o-r-d (it puts it in password form for some reason) were we could come together to make mods? Also are you planning on making more mods like aimbot and ESP?
    Last edited by TACHANKAv2; 11-29-2018 at 02:59 PM.

  3. #33
    danbulant's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    100% works

    Is there a way to GET current values?

  4. #34
    MASTERCMAN33's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    Exclamation 5mil NOT WORKING!!

    Yeah, it's spectacular but the 5mil isn't working for me. Everything else is fine and working. Don't know what to do?!?





    THE OTHERS ARE GREAT BTW

  5. #35
    omfganonymous's Avatar
    Join Date
    Apr 2017
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0
    Unknown XML header, exiting
    Traceback (most recent call last):
    File "bf_hack.py", line 194, in <module>
    data = getPlayerInfo()
    File "bf_hack.py", line 64, in getPlayerInfo
    xml_end = re.search(getmessafter, data).span()[1]
    AttributeError: 'NoneType' object has no attribute 'span'


    How do we fix this?

  6. #36
    bcxpapi's Avatar
    Join Date
    May 2018
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Can you work on an aimbot ? willing to pay

  7. #37
    esever171's Avatar
    Join Date
    Jan 2018
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    719
    My Mood
    Sleepy

    Yes

    Quote Originally Posted by danbulant View Post
    Is there a way to GET current values?
    By GET I assume you mean as in an HTTP method? My first thought is you want to do this programmatically? My tool doesn't provide a way to view it other than looking in the temporary XML file made by the program in its working directory. Otherwise you can use this code if your comfortable with Python to request your player stats from the server.

    Code:
    from http import client
    import re
    import hashlib
    
    def sha512hash(password):
        shash = hashlib.sha512(password.encode())
        return shash.hexdigest()
    
    def getaccinfo(username, password):
        host = "server2.blayzegames.com"
        getaccinfophp = "/AccountSystem_BFWeb/getaccountinfoNEW.php"
        headers = {"User-Agent":"Mozilla/5.0", "Content-Type":"application/x-www-form-urlencoded", "Accept":"text/html"}
        body = "username={}&password={}&phpSecret=s3c7kalph14_)".format(username, sha512hash(password)) #replace username with your username, same for password
        
        getxml = "(<AS_CustomInfo.*>.*</AS_CustomInfo>)"
    
        conn = client.HTTPSConnection(host, port=443)
        
        try:
            conn.request("POST", getaccinfophp, body=body, headers=headers)
        except Exception as e:
            print("Failed to retrieve player stats: " + "\"" + str(e) + "\"")
            return None
    
        resp = conn.getresponse().read().decode()
    
        conn.close()
    
        match = re.search(getxml, resp, flags=re.DOTALL)
    
        if match is None:
            return None
        playerxml = match.group(0)
    
        return playerxml
    EDIT: Updated the code for you. All you have to do is pass your username and password as parameters to the getaccinfo function and it will return your account information in XML format.

    - - - Updated - - -

    Quote Originally Posted by bcxpapi View Post
    Can you work on an aimbot ? willing to pay
    Not at the moment, sorry. I got a new job that's pretty time consuming. And in my free time I've been studying higher level maths for machine learning. Which I might consequently use in a more intelligent bot hack in the future. Maybe when I have more free time.
    Last edited by esever171; 12-25-2018 at 07:20 PM.

  8. #38
    Salman.'s Avatar
    Join Date
    Nov 2018
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Salman. View Post
    It is crashing. Any help?
    Does it only crash for me?

  9. #39
    Maximilian99's Avatar
    Join Date
    Jan 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Angry

    Help

    I'm playing on an IOS IPad but can't download anything/it won't open up the new page. What is the problem-they it's not a PC or something else?

  10. #40
    Luxy97's Avatar
    Join Date
    Jan 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    It still works?

  11. #41
    XvKvnng's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Can You please have a very specific answer on how to use this.. like is it for pc or mobile? emulators or flash... wassup.

  12. #42
    Emojiman's Avatar
    Join Date
    Sep 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    for krunker?

    can you make something like this for krunker?

  13. #43
    Aneurysm2723's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    Exclamation ?

    Windows detected this file as a virus...should I trust it?

  14. #44
    nussse's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Hmmm... i get a warning for a trojan...

  15. #45
    MrTinkleBerry's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    it wont let me do it

Page 3 of 9 FirstFirst 12345 ... LastLast

Similar Threads

  1. what hack gives money drop?
    By m a t t v in forum Grand Theft Auto 5 (GTA V) Discussions
    Replies: 2
    Last Post: 06-12-2019, 05:43 PM
  2. [Solved] What free hack can stealth give money?
    By L3apr in forum Grand Theft Auto 5 (GTA V) Help
    Replies: 5
    Last Post: 06-06-2017, 12:17 PM
  3. Someone who can help me with the hacks? I can give money!
    By Bhezion in forum DayZ Discussion
    Replies: 3
    Last Post: 02-01-2013, 03:13 PM
  4. All hacks now give me parmanent ban? Is it just me?
    By markfracasso11 in forum WarRock - International Hacks
    Replies: 11
    Last Post: 09-24-2007, 02:09 AM
  5. selling bypass and hacks for rs money
    By carpanthers1 in forum Trade Accounts/Keys/Items
    Replies: 5
    Last Post: 08-25-2007, 03:55 PM