Build with De Linda Games
Welcome to the De Linda Games developer portal. Here you'll find everything you need to integrate De Linda services into your games — from authentication to player data.
De Linda Authentication lets players use their De Linda ID — the identity system powering De Linda Auth — to sign in directly inside your Turbowarp game. No passwords to manage, no custom backend required.
Once a player authenticates, your game receives a verified user_id and username, which you can use to personalise the experience, save scores, or restrict access to certain content.
De Linda Auth (auth.delinda.site) is the central identity platform for all De Linda services. Players with an existing De Linda ID can sign in instantly — no additional registration needed.
How It Works
The flow is simple and entirely handled by the extension included in the template:
-
1
Your Turbowarp game triggers the sign-in block — a login popup opens, directed to De Linda Auth.
-
2
The player enters their De Linda ID credentials and approves access for your game.
-
3
De Linda Auth verifies the identity and sends a secure response back to your game.
-
4
Your game receives the player's user_id and username, ready to use in any block.
Response Fields
After a successful sign-in, the service returns the following fields to your Turbowarp project:
| Field | Type | Description |
|---|---|---|
| user_id | string | A unique, permanent identifier for this player's De Linda account. Use this to store player data server-side — it never changes, even if the player changes their username. |
| username | string | The player's current display name on De Linda Auth. Use this to greet the player or show it on leaderboards. |
Always use user_id as the primary key when storing player data. Usernames can be changed by the player at any time on De Linda Auth, but user_id is always permanent and unique.
Template & Demo
The quickest way to get started is with the official Turbowarp De Linda Auth template. It includes the extension pre-loaded, all reporter blocks wired up, and a ready-to-customise sign-in flow.
-
1
Download the template file below and open it in Turbowarp.
-
2
Customise the sign-in screen, add your game's branding, and connect the
user_idandusernamereporters to your own scripts. -
3
Publish your game — players with a De Linda ID can sign in immediately.