forgot to add Internet.Mod.

This commit is contained in:
norayr 2017-04-14 14:31:16 +04:00
parent 801de6a0c2
commit b1d7006dfc
4 changed files with 106 additions and 10 deletions

View file

@ -4,21 +4,22 @@ IMPORT IRC, Out;
VAR
owner, nick, host, port, channel: ARRAY 32 OF CHAR;
owner, user, nick, host, port, channel: ARRAY 32 OF CHAR;
PROCEDURE testBot;
VAR b : BOOLEAN;
BEGIN
IF IRC.Connect(host, port) # FALSE THEN
b := IRC.Auth("norayr", "norayr");
b := IRC.Auth(user, nick, owner);
END;
END testBot;
BEGIN
owner := "norayr";
nick := "norayr";
owner := "norayr_tanakian";
user := "norayr";
nick := "arnet";
host := "irc.freenode.net";
port := "6667";
channel := "#oberon";