This is Izybot! A simple, yet powerful, Twitch Chat bot written in PHP, to help make streamers' life easier. It will assist you by replying any command you will configure it to do with a relevant message.
Runs locally on your PC, making you completely independent of 3rd party websites/software etc. Requires only PHP installed on your PC. |
Bot commands management via Twitch Chat. Bot commands are special keywords users type in chat, that Izybot has to reply with the respective admin's configured response. |
Twitch API commands, The bot is capable of interacting with Twitch API v5, which allows it to change the Channel's title, Channel's game etc. |
Periodic messages initiated by the bot. Can be used to promote streamer's social media etc. |
Quotes. |
Polls. Create polls for the viewers and the bot will collect their votes. |
Giveaways. Create giveaways for the viewers, let them participate, and in the end have the bot pick winners randomly from the generated list. |
Loyalty Points. Streamer can enable this feature to award his viewers with virtual currency points. |
Bets. Viewers can use their virtual currency points to place bets on a event the streamer decides to (e.g. the outcome of an upcoming game). |
Commands usage statistics. Find out which commands are the most popular among your viewers, and which are not. |
On the other hand, Bot was not written to be performing Moderator tasks, at least not yet :)
Go to the conf
directory and copy the config.php.TEMPLATE
file to a new file called: config.php
.
Edit that file and fill in the information required. edit the fields according to the instructions.
Repeat with the channel_credentials.php.TEMPLATE
file: copy it to channel_credentials.php
and fill in your channel,username and oath token (obtained from the https://twitchapps.com/tmi/
site)
If you plan to use the Twitch API v5 capabilities, please check the additional instructions mentioned here.
Streamers with PHP knowledge who want to implement commands that include PHP code for maximum flexibility, can use the conf/admin_commands_nonsafe.cfg.TEMPLATE
file. Copy this file to appdata/admin_commands_nonsafe.cfg
and manually add commands that include PHP code (i.e. nonsafe), for producing dynamic output. As a security measure, PHP enabled commands can't be added via Twitch Chat like other regular admin commands.
to start the bot, open "cmd" from the folder of the bot and run:
php startIzyBot.php
OR, for Windows users, you can use the supplied batch file.
To access the Web interface, we will be using the PHP built-in web server. To start it, run the supplied batch file called: startHTTP_GUI.bat
.
To access the Web interface of the Bot, open this link with your browser: http://127.0.0.1:33333/
To start both the IzyBot and the Web interface, use the batch file: startIzyBot_and_HTTP_GUI.bat
.
Twitch Chat:
Polls:
Unless, you have defined otherwise in the conf/config.php
, the bot supports the below administrator commands:
Command | Purpose |
---|---|
!addcmd | used to add a new command. the command will be available to all. |
!editcmd | used to update the response of an existing command. |
!removecmd | used to remove an existing command. |
Command | Purpose |
---|---|
!addadmin | used to add a new username to the admin group. This admin group is not necessarily the same with the Mods. if you want to make a person a Mod to your channel, you will have to explicitly add him to the Bots admin group. |
!removeadmin | used to remove a user from the bot's admin group. |
Command | Purpose |
---|---|
!addperiodicmsg | used to add some message to periodically sent out in the chat. |
!removeperiodicmsg | used to remove a message from the list of messages periodically sent out in the chat. You need to type the whole sentence that you want to remove, exactly as-is when you see it in chat. |
Command | Purpose |
---|---|
!poll-start <poll duration> <poll description> | Used to create a new poll. Command syntax is expected to be: !makepoll <poll duration in seconds> <free text describing the poll and the available options to vote (options need to be numeric and less or up to 10 digits, meaning up to 9999999999 number)> |
!poll-cancel | Used to cancel the active poll. |
!poll-winner <winning value> | Used in case you want to have the bot select a winner from the poll participants. Izybot will identify the list of viewers who voted a value as close to the "winning value", and select a random viewer from that list. |
Command | Purpose |
---|---|
!addquote | To add a quote. |
!removequote | To remove a quote, followed by its numerical ID. |
Command | Purpose |
---|---|
!giveaway-start <title> | Will start the giveaway title. You can optionally add any string as description to the giveaway. |
!giveaway-end | Will stop the giveaway, throughout it viewers can join the giveaway. |
!giveaway-status | Check the current status of the giveaway function, and how many viewers have joined. |
!giveaway-reset | Reset the giveaway. run this before starting a new giveaway. This command will flush the current giveaway's details (title) to file. |
!giveaway-winner | Have Izybot pick up a winner from the eligible viewers list. You can run this multiple times to select more than one winners. |
Command | Purpose |
---|---|
!startbet <bet duration> <bet description> | Start a new bet. Define the duration in seconds that the bot will accept bets, and a clear description of the options your viewers can choose from. |
!endbet <winning option> | End the active bet. Provide also the winning option for the bot to award the viewers who bet on that option, and deduct the amount from the viewers who lost. |
!cancelbet | Cancel the ongoing bet, refund the viewers who had already placed a bet. |
Command | Purpose |
---|---|
!addvip <username> | Add the username to the channel's VIP list. |
!removevip <username> | Remove the username to the channel's VIP list. |
NOTE: Twitch requires that the account running the bot to have unlocked the feature to execute the above VIP management commands. |
Command | Purpose |
---|---|
!help | will reply the list of available commands for the users (not including the admin commands). |
!uptime | will reply the uptime of the bot. This should not be assumed it is the same as the uptime of the stream (unless you start the bot simultaneously with the stream session). |
!quote "ID" | to display a specific quote. pass no ID, to display a random quote. |
!botinfo | a command to print information about this bot and where people can find it. |
Command | Purpose |
---|---|
!quote <quote id> | Request the bot to reply with the relevant quote from its quote database. |
Command | Purpose |
---|---|
!vote <option> | Participate in the active poll, providing the desired <option>. Options accepted have to be in numerical format. |
Command | Purpose |
---|---|
!giveaway | Command the viewer sends to join the ongoing giveaway. |
Command | Purpose |
---|---|
!izyeuros | Request the bot to reply with the Loyalty Points (virtual currenty) the viewer has accumulated over time in streamer's chat. |
Command | Purpose |
---|---|
!bet <option> <LP amount> | Place a bet, to option <option> for <LP amount> LP points. |
Izybot keeps track of all the registered commands being triggered, for you to have some insights on the popularity of your configured commands.
You can view these statistics from the web interface.
Loyalty points is a virtual currency that is awarded to viewers, according to their presence in the channel. They can use this virtual currency on bets. To enable and configure it, see config.php.
Plugins are developed on demand.
Plugin | Description |
---|---|
Voobly | a plugin developed for the Voobly platform, that hosts the Age of Empires 2 RTS game and more. Check here for instructions on how to enable and configure the plugin. |
Installing PHP on Windows:
download the PHP x86 or x64 version according to your system architecture from: http://php.net/downloads.php.
extract its contents in a folder under C:, lets say under folder C:\PHP.
cp php.ini-production to php.ini.
Using a text editor, edit the php.ini file and:
uncomment the 2nd line, making it look:
; On windows: extension_dir = "ext"
uncomment it, making it look:
extension=php_mbstring.dll
same for line:
;extension=php_sockets.dll
uncomment it, making it look:
extension=php_sockets.dll
save the file.
add the php binary to the %PATH% env variable:
right click on "My computer" > Properties > Change Settings > Advanced > Environment Variables. on bottom panel its the System Variables for your Windows account. Locate the "Path" Variable, click Edit and Append in its value: ;C:\PHP; You just made the PHP binary avaiable to be located and executed from any folder of your system. Press OK to save your change, press OK to close the Dialog. You may need to restart your PC for changes to take effect.
Installation of PHP is done!
IzyBot uses below 3rd party open source software:
Library |
---|
KLogger |
AdminBSB - Material Design Dashboard |
Plankton, a PHP pico framework |
Changes per commit, can be found at the Change Log page.