Skip to content

requestUserAccess.php

Requests moderator access

Parameters

Required Parameters

accountID - The accountID of the user requesting mod access

gjp2 - The GJP2 of the user requesting mod access

secret - Wmfd2893gb7

Optional Parameters

gameVersion - 22

binaryVersion - 42

gdw - 0

Response

1 if granted Moderator, 2 if granted Elder Moderator, -1 if not granted

Example

Python

py
import requests

data = {
	data = {
    'accountID': 173831, # DevExit's account ID
    'gjp': "********", # This would be DevExit's password encoded with GJP encryption
    "secret": "Wmfd2893gb7"
}

req = requests.post('http://boomlings.com/database/requestUserAccess.php', data=data)
print(req.text)

Response

py
-1