-
-
Notifications
You must be signed in to change notification settings - Fork 0
Configuration Examples
Ashton edited this page Feb 11, 2026
·
2 revisions
This page provides copy-paste ready examples for giveaway_config.json.
How to use: Copy the JSON content into your
.../Giveaway Helper/config/giveaway_config.jsonfile.
Best for first-time users. Just the basics.
{
"Profiles": {
"Main": {
"Triggers": {
"command:!enter": "Enter",
"command:!draw": "Winner",
"command:!start": "Open",
"command:!end": "Close"
},
"MaxEntriesPerMinute": 100
}
},
"Globals": {
"RunMode": "Mirror",
"LogLevel": "INFO"
}
}Run a "Daily" giveaway and a "Weekly" long-running raffle simultaneously.
{
"Profiles": {
"Main": {
"Triggers": { "command:!enter": "Enter" },
"MaxEntriesPerMinute": 100
},
"Weekly": {
"Triggers": { "command:!raffle": "Enter" },
"DumpEntriesOnEnd": true,
"StatePersistenceMode": "Both"
},
"SubOnly": {
"Triggers": { "command:!subluck": "Enter" },
"RequireSubscriber": true,
"SubLuckMultiplier": 0
}
}
}Strict security settings to block bots and spam.
{
"Profiles": {
"Main": {
"Triggers": { "command:!enter": "Enter" },
"EnableEntropyCheck": true,
"MinAccountAgeDays": 30,
"UsernamePattern": "^[a-zA-Z0-9_]+$",
"AllowedExternalBots": ["Nightbot"],
"ExternalListeners": [
{ "Pattern": "(?i)giveaway.*open", "Action": "Open" }
]
}
}
}Automatically spin the wheel and update OBS scenes.
{
"Profiles": {
"Main": {
"EnableWheel": true,
"WheelSettings": {
"Title": "WINNER DRAW",
"SpinTime": 15
},
"EnableObs": true,
"ObsScene": "GiveawayScene",
"ObsSource": "BrowserSource",
"ToastNotifications": {
"WinnerSelected": true
}
}
},
"Globals": {
"WheelOfNamesApiKey": "PASTE_KEY_HERE"
}
}"Flash Giveaway" mode with custom hype messages.
{
"Profiles": {
"Flash": {
"TimerDuration": "5m",
"Messages": {
"GiveawayOpened": "🚨 FLASH GIVEAWAY! 5 MINS ONLY! GO GO GO!",
"WinnerSelected": "🏆 THE SPEEDSTER IS: {0}!"
}
}
}
}Every available option with default values. Useful for checking what's possible.
{
"Profiles": {
"Reference": {
"Triggers": {
"command:!join": "Enter",
"command:!pick": "Winner",
"sd:Keypad-UID": "Open"
},
"MaxEntriesPerMinute": 45,
"MinAccountAgeDays": 0,
"RequireSubscriber": false,
"SubLuckMultiplier": 2.0,
"EnableEntropyCheck": true,
"EnableWheel": false,
"EnableObs": false,
"ExposeVariables": false,
"DumpEntriesOnEnd": true,
"TimerDuration": "10m"
}
},
"Globals": {
"RunMode": "Mirror",
"StatePersistenceMode": "Both",
"LogLevel": "INFO",
"EnabledPlatforms": ["Twitch", "YouTube", "Kick"],
"LogRetentionDays": 90
}
}