Skip to content

uploadGJMessage20.php

Sends a message to a user

Parameters

ParameterExplanationRequired
accountIDAccount ID of the user sending the messageYes
gjp2The GJP2 of the user sending the messageYes
toAccountIDAccount ID of the user retrieving the messageYes
subjectThe subject of the message, converted to URL-safe base64Yes
bodyThe body of the message, converted to URL-safe base64Yes
secretCommon Secret: Wmfd2893gb7Yes
gameVersion22
binaryVersion42
gdw0

Response

1 if the message was sent, -1 if a problem occurred, or if the receiver has messages disabled

Example

Python

py
import requests

data = {
    "gameVersion": 21,
    "binaryVersion": 35,
    "gdw": 0,
	"accountID": 173831, # This is DevExit's account ID
	"gjp2": "*******", # This would be DevExit's password encoded with GJP2 encryption
    "toAccountID": 173831, # Yes! You can send messages to yourself
    "subject": base64.b64encode(b"You're dumb lol").decode(),
    "body": base64.b64encode(b"Mhm yep you're p dumb lmao").decode(),
    "secret": "Wmfd2893gb7",
}

r = requests.post('https://www.boomlings.com/database/uploadGJMessage20.php', data=data)
print(req.text)

Response

py
1