-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List player outfit/equipment/weapon #423
Comments
Hi,
You mean, ALL guns of other players other than the bot you are logged in on, or the all the items of the bot itself?
Unless you add the necessary queries to it, warface it does not handle inventory management. It only dumps the items you have in a list to display how much you have and help random boxes and clan management, but nothing more. Knowing that, I may curious why you need the item names. Anyway, the English<->item id map is in the game client, /Game/Localized/English.pak/text_weapons.xml for instance. |
i need to inventory a bunch of bot accounts, if i could just dump the inventory items in whatever format i'd be pretty happy, i know how to parse the dumps, i'd like to have a command to list inventory of the logged bot account, thanks for the explanation on the names but i can't find a program to open pak files. |
|
Ok then, as a haddock method you can recompile warfacebot in debug mode and enable query logging. With some parsing job you can get the inventory pretty easily. |
Thanks, you've helped a lot. |
Well, i guess i'm forking the source then... it would be really nice to have an inventory CVar, what about the program to open the .pak file, any thoughts? |
btw, any idea or code on MITM the DTLS? any library or information you could give me to start? i was thinking of using a custom (UDP-TCP) wrapper with ZAP and changing the certificate of the game with the ZAP certificate, but i'm not sure yet exactly how DTLS works, if you could point me to any compatible library it would be much appreciated, i'm doing this for research purposes and i don't intend on releasing any complete derivative working code on the internet, i think coding is more fun than playing, if i discover any stuff i'm happy to share with you, maybe i can even solve the need to kick the bots from the room once i know enough about the overlay on DTLS protocol. |
Great job with the warfacebot btw, i found it because i saw the warface logs mentioning XMPP and i wanted to do exactly what you did and halfway on my research for example code i found your bot already made, since you already did the job i might as well add more stuff using my time. |
Feel free to make a command to list the whole inventory, yes. There is already the inventory list saved in memory, it's basically a job of displaying it.
PakDecrypt Warface. Pick the one for EU for the correct RSA keys. Google is your friend here. You may end up on a cheating forums with my name on it. All good.
As I said, the signature of the TLS server certificate it connects to is included in the internal anti cheat. The AC will say "yes" or "no". There are ways to bypass this by dynamically patching the game and remove the AC check, but then MRAC will certainly tap your fingers, if you were to connect with a patched game client on the live servers (I guess/hope). |
Hi, i'd like to list the weapons of the accounts, i guess this would be a must-have function in any kind of bot, also i'm having difficulties finding the right name to use when equiping some weapon because there doesn't seem to be a list of weapons with their real IGN, thank you.
The text was updated successfully, but these errors were encountered: