Skip to content

blockGJUser20.php

Blocks a user.

Parameters

ParameterExplanationRequired
accountIDThe blocking person's account IDYes
gjp2The blocking person's GJP2Yes
targetAccountIDThe account ID of the person being blockedYes
secretCommon Secret: Wmfd2893gb7Yes
gameVersion22
binaryVersion42
gdw0

Response

Always returns 1, regardless of if the target account exists or not.

Example

Python

py
import requests

# With this code, DevExit is blocking RobTop

data = {
        "accountID": 173831, # DevExit's account ID
        "gjp2": "********", # This would be DevExit's password encoded with GJP2 encryption
        "targetAccountID": 71, # Robtop's account ID
        "secret": "Wmfd2893gb7"
}

req = requests.post("https://www.boomlings.com/database/blockGJUser20.php", data=data)
print(req.text)

Response

py
1