1
0

More polite bot

This commit is contained in:
Jon Michael Aanes 2024-09-24 22:18:44 +02:00
parent da087d694a
commit 5ef1ff7090
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -221,7 +221,7 @@ in ()
/* Establish connection */ /* Establish connection */
/* At this point, we can register */ /* At this point, we can register */
; print("USER tiger-bot * * : yo\n") ; print("USER tiger-bot * * : yo\n")
; print("NICK bot-fucker\n") ; print("NICK TigerBot\n")
; flush() ; flush()
/* Wait for first PING, and respond to it */ /* Wait for first PING, and respond to it */
@ -234,7 +234,7 @@ in ()
/* Connect to channel and greet */ /* Connect to channel and greet */
; send_msg(cmd1("JOIN", "#bot-test")) ; send_msg(cmd1("JOIN", "#bot-test"))
; send_msg(cmd2("PRIVMSG", "#bot-test", "Whatup motherfuckers?")) ; send_msg(cmd2("PRIVMSG", "#bot-test", "Hello, how's it going?"))
/* Start normal connection */ /* Start normal connection */
; main_loop() ; main_loop()
@ -242,4 +242,3 @@ in ()
/* Exit! */ /* Exit! */
; quit("Nothing more to say") ; quit("Nothing more to say")
end end