Git Product home page Git Product logo

cr-proxy's People

Contributors

akirarat avatar clugh avatar srabouin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

cr-proxy's Issues

cr-messages-python dependency

How do I install the cr-messages-python dependency? When I run this I get:

Traceback (most recent call last):
  File "proxy.py", line 2, in <module>
    from coc.message.definitions import CoCMessageDefinitions
ModuleNotFoundError: No module named 'coc.message.definitions'

Happy to update the README.md, just not familiar with python dep management.

Readme.md has insufficient info

Hi. I know I might sound like one who doesn't know programming but I just would like a basic use case / example to be put on the readme or the wiki as well as a kind of documentation. Or if you could reply to this thread with a few examples / docs.

cr-patcher file not found error

Hi,

I'm new here, and would like to know what is happening.

Output:

C:\Users\TJ\Documents\cr-patcher-master>python patcher.py 1.6.0
Getting config ...
Checking environment ...
Traceback (most recent call last):
File "patcher.py", line 147, in <module>
result = subprocess.run([config['paths']['keytool'], '-list', '-keystore', KEYSTORE_PATH, '-storepass', config['keystore']['storepass'], '-alias', config['keystore']['key']['alias']], stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
File "C:\Users\TJ\AppData\Local\Programs\Python\Python35\lib\subprocess.py", line 693, in run
with Popen(*popenargs, **kwargs) as process:
File "C:\Users\TJ\AppData\Local\Programs\Python\Python35\lib\subprocess.py", line 947, in __init__
restore_signals, start_new_session)
File "C:\Users\TJ\AppData\Local\Programs\Python\Python35\lib\subprocess.py", line 1224, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] The system cannot find the file specified

Attached is my config.json file in a .txt format.

config.txt

What am I doing wrong?

Thanks,

TJ (PatmanDeuxMC)

ClientHello message loop

Hello,
after i've patched the apk and i've pointed the url "game.clashroyaleapp.com" to the proxy through the hosts file, the proxy shows in loop the ClientHello message and the game's loading bar gets stucked at 50%.
I can see this error in the proxy log: 'Message definition missing (10100).'
How can this be solved?

Thanks in advance

P.S Sorry for my poor English

Key for version 1.9.2?

It's not available on the wiki, and the program complains that it doesn't exist. Does anyone know what it is?

1.8.2 Version ?

Where I can find the Keys, Key Offsets and URL Offsets for 1.8.2 Version

Grab information from game

Hello

First of all I apologize that this is not issue but question. I want grab information (trophies, donates, clan chest crowns) about my clan and members. Can I use this cr-proxy? Exists something like cr-bot to send grab requests to server?

Thank you

coc/message/reader.py read_string should return as string not bytes

Since reader is just a BufferedReader. self.read() will return a byte array. We should convert this into a UTF-8 string.

def read_string(self):
    length = self.read_int()
    if length == pow(2, 32) - 1:
        return b""
    else:
        try:
            decoded = self.read(length)
        except MemoryError:
            raise IndexError("String out of range.")
        else:
            return decoded

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.