-
Quickstart
- Quickstart
- Game Setup
- Create a Game
- Game Graphics
- Game Animation
- Game Signup
- Game Ending
- Playcodes
- About Playcodes
- Generating Playcodes
- Playcode Distribution
-
Prizes
- Create a Prize Pool
- Adding Prizes
- Distributing Prizes
- Redeem Prizes
-
Tutorials
- Creating Graphics
Game Signup
Customize Your Game's Signup Experience
Configure the player registration process for your Scratch-and-Win game. Players will need to sign up before participating, ensuring you collect key information for follow-up engagement.
Player Registration
Currently, players can sign up using their name, email address, and a playcode. This playcode is essential for participation. Note that only this signup option is available for now, but future updates will include a no-signup option for if you already have the users data (you can already use prefilled form fields if you need).
Terms & Conditions Checkbox
You can require players to check a box to accept the terms and conditions before starting the game. If you don't enable this, the following message will automatically appear below the start button: 'By clicking {start button text}, I accept the terms and conditions.'
Signup Message
This is an optional message that can be displayed on the signup page above the name, email, and playcode input fields. It’s a great way to offer players some context or encouragement before they begin.
Start Button Text
You can customize the text displayed on the start button (which posts the signup data). For example, you could set it to something fun like "Let's Win!" to boost excitement.
Terms and Conditions Link
Provide the URL for your terms and conditions here. The link will be displayed on the signup page for players to review before entering the game.
Prefill Form Fields Dynamically
You can dynamically prefill the signup form fields by passing data through the URL. This allows for a seamless experience, especially when integrating with email campaigns or personalized links.
How to Prefill Fields
To prefill the form fields like Name, Email, and Playcode, you can append these values as URL parameters. Here's an example URL structure:
https://play.rarian.com/{campaignUrl}?name=Rick&email=example@rarian.com&playcode=example123
In this example:
- name=Rick – Prefills the name field with "Rick".
- email=example@rarian.com – Prefills the email field with "example@rarian.com".
- playcode=example123 – Prefills the playcode field with "example123".
This feature is useful for personalized marketing campaigns, where you can pre-populate form fields for users. It’s also great for retargeting users who may have received unique playcodes via email or social message, providing a smoother entry process.