Giter Club home page Giter Club logo

Comments (2)

fallino11 avatar fallino11 commented on September 18, 2024

Don't worry, it won't.
When buying an item, the script permanently sets the "exceptedPrice" to 0, which is usually the price shown to the user, when trying to purchase something.
As soon roblox receives the request, roblox will check if the price was shown to the user correctly.
If that is not the case, and the product isn't free, roblox will automatically deny the purchase attempt.

For example:
An item gets released, which is not free and, lets say it costs 500 robux. The script will attempt to buy it anyways, since it was told to do that. The script will send a request to the roblox website, asking if you could purchase that item. The request includes information about, what kind of items you want, which currency you want to use (example: robux), what the price is (which is shown to the user) and who is buying the item.
(Feel free to read it by yourself: https://github.com/J3ldo/UGC-Sniper/blob/3ffd2314693b7fdb90882939e44d49d0b8b40ab4/main.py )

34    data = {
35        "collectibleItemId": itemid,
36        "expectedCurrency": 1,
37        "expectedPrice": 0,
38        "expectedPurchaserId": user_id,
39        "expectedPurchaserType": "User",
40        "expectedSellerId": json["creatorTargetId"],
41        "expectedSellerType": "User",
42        "idempotencyKey": "random uuid4 string that will be your key or smthn",
43        "collectibleProductId": productid
44    }

After the roblox website receives that request, they will compare and check the datas to make sure everything is correct.
But in this case, the expected Data is incorrect, since the actual price of the product is 500 robux. The roblox website will notice that and decline that purchase attempt and return an error message, saying that the "expectedPrice" is incorrect and should be fixed, if the user wants to buy that product. They also won't charge any robux.

Because of that, there is no reason to be worried about.
The script will NEVER purchase anything, which costs robux.

from ugc-sniper.

eteche123 avatar eteche123 commented on September 18, 2024

Don't worry, it won't. When buying an item, the script permanently sets the "exceptedPrice" to 0, which is usually the price shown to the user, when trying to purchase something. As soon roblox receives the request, roblox will check if the price was shown to the user correctly. If that is not the case, and the product isn't free, roblox will automatically deny the purchase attempt.

For example: An item gets released, which is not free and, lets say it costs 500 robux. The script will attempt to buy it anyways, since it was told to do that. The script will send a request to the roblox website, asking if you could purchase that item. The request includes information about, what kind of items you want, which currency you want to use (example: robux), what the price is (which is shown to the user) and who is buying the item. (Feel free to read it by yourself: https://github.com/J3ldo/UGC-Sniper/blob/3ffd2314693b7fdb90882939e44d49d0b8b40ab4/main.py )

34    data = {
35        "collectibleItemId": itemid,
36        "expectedCurrency": 1,
37        "expectedPrice": 0,
38        "expectedPurchaserId": user_id,
39        "expectedPurchaserType": "User",
40        "expectedSellerId": json["creatorTargetId"],
41        "expectedSellerType": "User",
42        "idempotencyKey": "random uuid4 string that will be your key or smthn",
43        "collectibleProductId": productid
44    }

After the roblox website receives that request, they will compare and check the datas to make sure everything is correct. But in this case, the expected Data is incorrect, since the actual price of the product is 500 robux. The roblox website will notice that and decline that purchase attempt and return an error message, saying that the "expectedPrice" is incorrect and should be fixed, if the user wants to buy that product. They also won't charge any robux.

Because of that, there is no reason to be worried about. The script will NEVER purchase anything, which costs robux.

wow tysm for the help dude really appreciate it :D

from ugc-sniper.

Related Issues (20)

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.