Jump to content

IRC UDF - Updated Version of Chips' IRC UDF - Release: V1.22 - 09/06/2016 - Technical Writer Needed!


Recommended Posts

Posted (edited)

Since I've started a sit down job I've had more free time to develop this UDF and will continue to do so, however the only downside to this is I will be unable to test the scripts as IRC is blocked in the internal network. As such my next few updates with mainly be additions for stuff like CTCP, SASL, DCC, and other non-essential IRC add-ons.

 

EDIT: Woohoo, Page 4

Edited by rcmaehl

My UDFs are generally for me. If they aren't updated for a while, it means I'm not using them myself. As soon as I start using them again, they'll get updated.

My Projects

WhyNotWin11
Cisco FinesseGithubIRC UDFWindowEx UDF

 

Posted (edited)
  On 9/17/2016 at 5:07 AM, TheDcoder said:

Why not run a local IRC server/daemon?

Expand  

4GB of RAM and OS + Work software uses about 3.4GB. Work bought what they needed and no more. Plus it's probably in our employee handbook somewhere judging by the fact it's a huge fortune 500 tech company.

Edited by rcmaehl

My UDFs are generally for me. If they aren't updated for a while, it means I'm not using them myself. As soon as I start using them again, they'll get updated.

My Projects

WhyNotWin11
Cisco FinesseGithubIRC UDFWindowEx UDF

 

  • 3 months later...
Posted

Hi rcmaehl,

First off, thank you very much for sharing this. Very awesome. I am using it to connect to twitch chat servers. It did not take me long to figure out and get connected. I am struggling a bit now though and would appreciate some insight. 

Although I am connected and can send messages to the channel, I am not able to capture any output from the channel beyond the initial connection stuff. In other words, I want to see all the chat, joins, parts etc so that I can react off that content. 

 

; Receive Data
    $sRecv = _IRCGetMsg($sock)

    ; If Error Getting Data
    If @error Then

        ; Display Message on Error
        ConsoleWrite("Recv Error: " & @error & " Extended: " & @extended & @CRLF)

        ; Shutdown Networking
        TCPShutdown()

        ; Exit with Error
        Exit 1

        ; Otherwise, If No Data
    ElseIf Not $sRecv Then
        ; Continue Checking
    EndIf

 

Posted

btw. 
@rcmaehl   What You mean here: "Technical Writer Needed!" ?

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 12/22/2016 at 9:42 PM, Roue said:

I am using it to connect to twitch chat servers.

Expand  

Twitch uses a modified version of IRC... not the regular version which IRC Chat Networks use! You might have to modify your script to be compatible with Twitch.

You can refer to this document: https://github.com/justintv/Twitch-API/blob/master/IRC.md

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

  • 1 month later...
Posted (edited)
  On 12/22/2016 at 11:05 PM, mLipok said:

btw. 
@rcmaehl   What You mean here: "Technical Writer Needed!" ?

Expand  

@mLipok Someone to create .htm help files and clean up current documentation / notes.

 

  On 12/23/2016 at 7:05 AM, TheDcoder said:

Twitch uses a modified version of IRC... not the regular version which IRC Chat Networks use! You might have to modify your script to be compatible with Twitch.

You can refer to this document: https://github.com/justintv/Twitch-API/blob/master/IRC.md

Expand  

@TheDcoder is correct.

Edited by rcmaehl

My UDFs are generally for me. If they aren't updated for a while, it means I'm not using them myself. As soon as I start using them again, they'll get updated.

My Projects

WhyNotWin11
Cisco FinesseGithubIRC UDFWindowEx UDF

 

Posted
  On 2/3/2017 at 6:53 PM, rcmaehl said:

Someone to create .htm help files and clean up current documentation / notes.

Expand  

If you find someone, please send him to me, I have for him a lot of voluntary work :)

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)
  On 2/3/2017 at 6:57 PM, mLipok said:

If you find someone, please send him to me, I have for him a lot of voluntary work :)

Expand  

Will do!

Edited by rcmaehl

My UDFs are generally for me. If they aren't updated for a while, it means I'm not using them myself. As soon as I start using them again, they'll get updated.

My Projects

WhyNotWin11
Cisco FinesseGithubIRC UDFWindowEx UDF

 

Posted
  On 2/3/2017 at 6:53 PM, rcmaehl said:

Someone to create .htm help files and clean up current documentation / notes.

Expand  

I have tried to document stuff in HTML but it is a pain in the butt and not easy to maintain. I have switched to AsciiDoc which is far more easier to maintain and you can convert it to HTML, PDF, ePub etc :D.

I use AsciiDoctor (implementation of AsciiDoctor in Ruby) to convert/compile my AsciiDoc document into a neat HTML file ;)

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted
  On 2/4/2017 at 6:57 AM, TheDcoder said:

I have tried to document stuff in HTML but it is a pain in the butt and not easy to maintain. I have switched to AsciiDoc which is far more easier to maintain and you can convert it to HTML, PDF, ePub etc :D.

I use AsciiDoctor (implementation of AsciiDoctor in Ruby) to convert/compile my AsciiDoc document into a neat HTML file ;)

Expand  

Interesting! Do you know if it's possible to style the Help File into a style similar to AutoIt's current help documentation? I'm trying not to stray too far from the current help file format.

My UDFs are generally for me. If they aren't updated for a while, it means I'm not using them myself. As soon as I start using them again, they'll get updated.

My Projects

WhyNotWin11
Cisco FinesseGithubIRC UDFWindowEx UDF

 

Posted

@rcmaehl I think you can use custom CSS to make the formatting similar to AutoIt's Help File... albeit, it will only work for the HTML output.

I wish I could give you some links but I am myself a little confused about how custom styles work, best consult the documentation.

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted

If I remember well here on the forum, there was a script to convert UDF FunctionHeaders  >>> TXT  >>> HTML >>> CHM.

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Bingo, found the scripts and source code for the help file! You can download them from here: https://www.autoitscript.com/autoit3/files/beta/autoit/autoit-docs-v3.3.15.0-src.zip

If you extract the zip and go to docs -> _build you can find the scripts used for building the help file :)

bGWSYwn.png

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted (edited)

As far as I know this is only   TXT  >>> HTML >>> CHM

You should also looking for  UDF FunctionHeaders  >>> TXT

If I good remember this was @AZJIO or @jaberwacky project, but I could be wrong.

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...