scratchattach cloud requests in goboscript
This is a implementation of the scratchattach cloud request framework as of August 2025 which is built for goboscript. It is designed to be used with inflator and scratchattach
There are 2 broadcasts that are called by the cloud request api.
sa_on_server_responsewhen a server response to a request arrivessa_on_server_messagewhen the server sends a message to the client
There is a variable and a list for accessing the data provided on a request or server message:
- To access response data, use the
sa_responselist - The request status code is stored in the
sa_request_status, and will be a member of theSAStatusesenum.
- Timmccool for scratchattach
Make sure you have inflator installed. It's available on the gtp.
inflate install cloud_requests
add cloud_requests to your inflator.toml config:
[dependencies]
# ...
cloud_requests = "cloud_requests"use inflate install -e .:
- clone the respository:
git clone https://github.com/inflated-goboscript/cloud_requests cd cloud_requestsinflate install -e .cd testinflategoboscript build- open
test.sb3