Open Source Twitch.tv chat bot (IRC bot) based in PHP menu

Shout-Out

User Tag List

Results 1 to 12 of 12
  1. #1
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1850
    Join Date
    Jul 2012
    Posts
    2,737
    Thanks G/R
    313/377
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)

    Open Source Twitch.tv chat bot (IRC bot) based in PHP

    Hi guys, I've built the backbones for a basic IRC bot in PHP; I was bored at work and since i can't work on any bigger projects, I can work on simple PHP ones.

    Current Features:
    - Simple emotes - !moo, !rawr etc...
    - !logged : logs user into the database with a timestamp and base points
    - !imback : user can say this every 5 minutes to prove activity in the chat, logs X points to database
    - !items : lists items for sale with points from a database
    - !buy #itemID #email : buys the item, minus's the points and sends an email to the user's email with the item information/sale

    If you have any ideas, let me know.

    Twitch - demo here [ make sure to be logged into twitch.tv ]



    Feature requests:
    <coming soon...>

    Comment with what features you'd love to see. Thanks!


    Name this file: irc.php

    http://pastebin.com/Sj1y9mL7

    Name this file: config.php

    http://pastebin.com/D1EMqLJw

    Here's a link to the SQL:

    http://pastebin.com/WL97vVGm
    Last edited by ev0; 01-13-2015 at 06:52 PM.
    Need a guild in the US? Visit murlocs.com

    Open Source Twitch.tv chat bot (IRC bot) based in PHP
  2. #2
    juliye's Avatar Contributor
    Reputation
    214
    Join Date
    Apr 2013
    Posts
    187
    Thanks G/R
    16/12
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nicely done!

    Tried this out two times, logged myself first and did a !imback and it worked perfectly.

    The second time(after like 1hr) I tried to do another !imback, but it failed and gave me a message of: Sorry XXXXX it's too soon for you to recieve viewer points. Try again in 5 minutes.

    Edit: The error message might have been there because i tried to do a !logged before the second !imback even tho I already was in the database.

    Another feature id like to see is a check of how many points you currently have, but that might already be planned. =)

  3. #3
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1850
    Join Date
    Jul 2012
    Posts
    2,737
    Thanks G/R
    313/377
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by juliye View Post
    Another feature id like to see is a check of how many points you currently have, but that might already be planned. =)

    Added, try !check
    Need a guild in the US? Visit murlocs.com

  4. #4
    CreativeXtent's Avatar Moderator Authenticator enabled
    Reputation
    580
    Join Date
    Jun 2011
    Posts
    1,595
    Thanks G/R
    243/148
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hai,


    waiting for the source should be fun

    and thank you +5 reps to you!

  5. #5
    CreativeXtent's Avatar Moderator Authenticator enabled
    Reputation
    580
    Join Date
    Jun 2011
    Posts
    1,595
    Thanks G/R
    243/148
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When do you plan on source release?
    it looks very fun! and i think would enhance my channel >.>

  6. #6
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1850
    Join Date
    Jul 2012
    Posts
    2,737
    Thanks G/R
    313/377
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by CreativeXtent View Post
    When do you plan on source release?
    it looks very fun! and i think would enhance my channel >.>
    The computer here at work shit itself, I ordered a new one which will be set up tomorrow. I can barely run google chrome without issues; so my job lately has been dealing with customer emails kek. I'll have it update soon(tm)
    Need a guild in the US? Visit murlocs.com

  7. #7
    CreativeXtent's Avatar Moderator Authenticator enabled
    Reputation
    580
    Join Date
    Jun 2011
    Posts
    1,595
    Thanks G/R
    243/148
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    pimp, thank you

    hope you get a new one asap!

  8. #8
    Truency's Avatar Member
    Reputation
    2
    Join Date
    Dec 2011
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nicely done!
    I have a small idea you could incorporate. Now I'm not an expert, nor have I used PHP in years; that being said: is it possible you could implement a feature using basic json parsing that's already readily available in PHP to do what I did in C# (For those who stream WoW)

    That is it's a small !wow command to fetch and return character information as well as a TinyURL armory link. I'm not pasting this to show off by any means, I just figure it could be useful for your bot since I haven't even touched mine in almost 4 months.

    Source: [C#] Simple WoW Character Information (JObjects) - Pastebin.com

  9. #9
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1850
    Join Date
    Jul 2012
    Posts
    2,737
    Thanks G/R
    313/377
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by Truency View Post
    Nicely done!
    I have a small idea you could incorporate. Now I'm not an expert, nor have I used PHP in years; that being said: is it possible you could implement a feature using basic json parsing that's already readily available in PHP to do what I did in C# (For those who stream WoW)

    That is it's a small !wow command to fetch and return character information as well as a TinyURL armory link. I'm not pasting this to show off by any means, I just figure it could be useful for your bot since I haven't even touched mine in almost 4 months.

    Source: [C#] Simple WoW Character Information (JObjects) - Pastebin.com
    Sure! I'll play around with that tomrrow at work; just like !wow Name Server?
    Need a guild in the US? Visit murlocs.com

  10. #10
    CreativeXtent's Avatar Moderator Authenticator enabled
    Reputation
    580
    Join Date
    Jun 2011
    Posts
    1,595
    Thanks G/R
    243/148
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, Have you developed anything else on this?

    Thanks!

  11. #11
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1850
    Join Date
    Jul 2012
    Posts
    2,737
    Thanks G/R
    313/377
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by CreativeXtent View Post
    Hey, Have you developed anything else on this?

    Thanks!
    I haven't, lol. Give me more requests then I'll feel ambitious to dive back in.
    Need a guild in the US? Visit murlocs.com

  12. #12
    xcureanddisease's Avatar Legendary
    Reputation
    855
    Join Date
    Oct 2009
    Posts
    694
    Thanks G/R
    74/235
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Damn it >.< I would like this built. I cant program anything.. yet

Similar Threads

  1. [Selling] Twitch viewers/hr , followers, chat bots
    By dirtnast in forum General MMO Buy Sell Trade
    Replies: 15
    Last Post: 02-25-2014, 11:04 AM
  2. [Release] [AutoIt] Open source Arena Wintrading Bot
    By guyvrouze in forum World of Warcraft Bots and Programs
    Replies: 2
    Last Post: 11-25-2012, 01:21 AM
  3. Search 1 or 2 Dev Starting an Open Source Bot
    By Satanbyte in forum Diablo 3 Bots Questions & Requests
    Replies: 0
    Last Post: 08-20-2012, 02:27 PM
  4. Open Source Community Modular AutoIT Bot - Interested?
    By sspamfilter in forum Diablo 3 Bots and Programs
    Replies: 4
    Last Post: 07-30-2012, 09:34 AM
  5. [C#,Source] General chat Bot
    By yellowspark in forum Diablo 3 Bots and Programs
    Replies: 0
    Last Post: 07-04-2012, 10:55 AM
All times are GMT -5. The time now is 05:03 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search