Advertisement
ChristophX86

IRC Constants

Aug 11th, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 9.35 KB | None | 0 0
  1. #include-once
  2.  
  3. #region Internet Relay Chat Protocol [RFC 1459]
  4. Global Const $IRC_ERR_NOSUCHNICK[2]     = [401, "<nickname> :No such nick/channel"]
  5. Global Const $IRC_ERR_NOSUCHSERVER[2]       = [402, "<server name> :No such server"]
  6. Global Const $IRC_ERR_NOSUCHCHANNEL[2]      = [403, "<channel name> :No such channel"]
  7. Global Const $IRC_ERR_CANNOTSENDTOCHAN[2]   = [404, "<channel name> :Cannot send to channel"]
  8. Global Const $IRC_ERR_TOOMANYCHANNELS[2]    = [405, "<channel name> :You have joined too many channels"]
  9. Global Const $IRC_ERR_WASNOSUCHNICK[2]      = [406, "<nickname> :There was no such nickname"]
  10. Global Const $IRC_ERR_TOOMANYTARGETS[2]     = [407, "<target> :Duplicate recipients. No message delivered"]
  11. Global Const $IRC_ERR_NOORIGIN[2]       = [409, ":No origin specified"]
  12. Global Const $IRC_ERR_NORECIPIENT[2]        = [411, ":No recipient given (<command>)"]
  13. Global Const $IRC_ERR_NOTEXTTOSEND[2]       = [412, ":No text to send"]
  14. Global Const $IRC_ERR_NOTOPLEVEL[2]     = [413, "<mask> :No toplevel domain specified"]
  15. Global Const $IRC_ERR_WILDTOPLEVEL[2]       = [414, "<mask> :Wildcard in toplevel domain"]
  16. Global Const $IRC_ERR_UNKNOWNCOMMAND[2]     = [421, "<command> :Unknown command"]
  17. Global Const $IRC_ERR_NOMOTD[2]         = [422, ":MOTD File is missing"]
  18. Global Const $IRC_ERR_NOADMININFO[2]        = [423, "<server> :No administrative info available"]
  19. Global Const $IRC_ERR_FILEERROR[2]      = [424, ":File error doing <file op> on <file>"]
  20. Global Const $IRC_ERR_NONICKNAMEGIVEN[2]    = [431, ":No nickname given"]
  21. Global Const $IRC_ERR_ERRONEUSNICKNAME[2]   = [432, "<nick> :Erroneus nickname"]
  22. Global Const $IRC_ERR_NICKNAMEINUSE[2]      = [433, "<nick> :Nickname is already in use"]
  23. Global Const $IRC_ERR_NICKCOLLISION[2]      = [436, "<nick> :Nickname collision KILL"]
  24. Global Const $IRC_ERR_USERNOTINCHANNEL[2]   = [441, "<nick> <channel> :They aren't on that channel"]
  25. Global Const $IRC_ERR_NOTONCHANNEL[2]       = [442, "<channel> :You're not on that channel"]
  26. Global Const $IRC_ERR_USERONCHANNEL[2]      = [443, "<user> <channel> :is already on channel"]
  27. Global Const $IRC_ERR_NOLOGIN[2]        = [444, "<user> :User not logged in"]
  28. Global Const $IRC_ERR_SUMMONDISABLED[2]     = [445, ":SUMMON has been disabled"]
  29. Global Const $IRC_ERR_USERSDISABLED[2]      = [446, ":USERS has been disabled"]
  30. Global Const $IRC_ERR_NOTREGISTERED[2]      = [451, ":You have not registered"]
  31. Global Const $IRC_ERR_NEEDMOREPARAMS[2]     = [461, "<command> :Not enough parameters"]
  32. Global Const $IRC_ERR_ALREADYREGISTRED[2]   = [462, ":You may not reregister"]
  33. Global Const $IRC_ERR_NOPERMFORHOST[2]      = [463, ":Your host isn't among the privileged"]
  34. Global Const $IRC_ERR_PASSWDMISMATCH[2]     = [464, ":Password incorrect"]
  35. Global Const $IRC_ERR_YOUREBANNEDCREEP[2]   = [465, ":You are banned from this server"]
  36. Global Const $IRC_ERR_KEYSET[2]         = [467, "<channel> :Channel key already set"]
  37. Global Const $IRC_ERR_CHANNELISFULL[2]      = [471, "<channel> :Cannot join channel (+l)"]
  38. Global Const $IRC_ERR_UNKNOWNMODE[2]        = [472, "<char> :is unknown mode char to me"]
  39. Global Const $IRC_ERR_INVITEONLYCHAN[2]     = [473, "<channel> :Cannot join channel (+i)"]
  40. Global Const $IRC_ERR_BANNEDFROMCHAN[2]     = [474, "<channel> :Cannot join channel (+b)"]
  41. Global Const $IRC_ERR_BADCHANNELKEY[2]      = [475, "<channel> :Cannot join channel (+k)"]
  42. Global Const $IRC_ERR_NOPRIVILEGES[2]       = [481, ":Permission Denied- You're not an IRC operator"]
  43. Global Const $IRC_ERR_CHANOPRIVSNEEDED[2]   = [482, "<channel> :You're not channel operator"]
  44. Global Const $IRC_ERR_CANTKILLSERVER[2]     = [483, ":You cant kill a server!"]
  45. Global Const $IRC_ERR_NOOPERHOST[2]     = [491, ":No O-lines for your host"]
  46. Global Const $IRC_ERR_UMODEUNKNOWNFLAG[2]   = [501, ":Unknown MODE flag"]
  47. Global Const $IRC_ERR_USERSDONTMATCH[2]     = [502, ":Cant change mode for other users"]
  48. Global Const $IRC_RPL_NONE[2]           = [300, ":[<reply>{<space><reply>}]"]
  49. Global Const $IRC_RPL_ISON[2]           = [303, ":[<nick> {<space><nick>}]"]
  50. Global Const $IRC_RPL_AWAY[2]           = [301, "<nick> :<away message>"]
  51. Global Const $IRC_RPL_UNAWAY[2]         = [305, ":You are no longer marked as being away"]
  52. Global Const $IRC_RPL_NOWAWAY[2]        = [306, ":You have been marked as being away"]
  53. Global Const $IRC_RPL_WHOISUSER[2]      = [311, "<nick> <user> <host> * :<real name>"]
  54. Global Const $IRC_RPL_WHOISSERVER[2]        = [312, "<nick> <server> :<server info>"]
  55. Global Const $IRC_RPL_WHOISOPERATOR[2]      = [313, "<nick> :is an IRC operator"]
  56. Global Const $IRC_RPL_WHOISIDLE[2]      = [317, "<nick> <integer> :seconds idle"]
  57. Global Const $IRC_RPL_ENDOFWHOIS[2]     = [318, "<nick> :End of /WHOIS list"]
  58. Global Const $IRC_RPL_WHOISCHANNELS[2]      = [319, "<nick> :{[@|+]<channel><space>}"]
  59. Global Const $IRC_RPL_WHOWASUSER[2]     = [314, "<nick> <user> <host> * :<real name>"]
  60. Global Const $IRC_RPL_ENDOFWHOWAS[2]        = [369, "<nick> :End of WHOWAS"]
  61. Global Const $IRC_RPL_LISTSTART[2]      = [321, "Channel :Users  Name"]
  62. Global Const $IRC_RPL_LIST[2]           = [322, "<channel> <# visible> :<topic>"]
  63. Global Const $IRC_RPL_LISTEND[2]        = [323, ":End of /LIST"]
  64. Global Const $IRC_RPL_CHANNELMODEIS[2]      = [324, "<channel> <mode> <mode params>"]
  65. Global Const $IRC_RPL_NOTOPIC[2]        = [331, "<channel> :No topic is set"]
  66. Global Const $IRC_RPL_TOPIC[2]          = [332, "<channel> :<topic>"]
  67. Global Const $IRC_RPL_INVITING[2]       = [341, "<channel> <nick>"]
  68. Global Const $IRC_RPL_SUMMONING[2]      = [342, "<user> :Summoning user to IRC"]
  69. Global Const $IRC_RPL_VERSION[2]        = [351, "<version>.<debuglevel> <server> :<comments>"]
  70. Global Const $IRC_RPL_WHOREPLY[2]       = [352, "<channel> <user> <host> <server> <nick> <H|G>[*][@|+] :<hopcount> <real name>"]
  71. Global Const $IRC_RPL_ENDOFWHO[2]       = [315, "<name> :End of /WHO list"]
  72. Global Const $IRC_RPL_NAMREPLY[2]       = [353, "<channel> :[[@|+]<nick> [[@|+]<nick> [...]]]"]
  73. Global Const $IRC_RPL_ENDOFNAMES[2]     = [366, "<channel> :End of /NAMES list"]
  74. Global Const $IRC_RPL_LINKS[2]          = [364, "<mask> <server> :<hopcount> <server info>"]
  75. Global Const $IRC_RPL_ENDOFLINKS[2]     = [365, "<mask> :End of /LINKS list"]
  76. Global Const $IRC_RPL_BANLIST[2]        = [367, "<channel> <banid>"]
  77. Global Const $IRC_RPL_ENDOFBANLIST[2]       = [368, "<channel> :End of channel ban list"]
  78. Global Const $IRC_RPL_INFO[2]           = [371, ":<string>"]
  79. Global Const $IRC_RPL_ENDOFINFO[2]      = [374, ":End of /INFO list"]
  80. Global Const $IRC_RPL_MOTDSTART[2]      = [375, ":- <server> Message of the day - "]
  81. Global Const $IRC_RPL_MOTD[2]           = [372, ":- <text>"]
  82. Global Const $IRC_RPL_ENDOFMOTD[2]      = [376, ":End of /MOTD command"]
  83. Global Const $IRC_RPL_YOUREOPER[2]      = [381, ":You are now an IRC operator"]
  84. Global Const $IRC_RPL_REHASHING[2]      = [382, "<config file> :Rehashing"]
  85. Global Const $IRC_RPL_TIME[2]           = [391, "<server> :<string showing server's local time>"]
  86. Global Const $IRC_RPL_USERSSTART[2]     = [392, ":UserID   Terminal  Host"]
  87. Global Const $IRC_RPL_USERS[2]          = [393, ":%-8s %-9s %-8s"]
  88. Global Const $IRC_RPL_ENDOFUSERS[2]     = [394, ":End of users"]
  89. Global Const $IRC_RPL_NOUSERS[2]        = [395, ":Nobody logged in"]
  90. Global Const $IRC_RPL_TRACELINK[2]      = [200, "Link <version & debug level> <destination> <next server>"]
  91. Global Const $IRC_RPL_TRACECONNECTING[2]    = [201, "Try. <class> <server>"]
  92. Global Const $IRC_RPL_TRACEHANDSHAKE[2]     = [202, "H.S. <class> <server>"]
  93. Global Const $IRC_RPL_TRACEUNKNOWN[2]       = [203, "???? <class> [<client IP address in dot form>]"]
  94. Global Const $IRC_RPL_TRACEOPERATOR[2]      = [204, "Oper <class> <nick>"]
  95. Global Const $IRC_RPL_TRACEUSER[2]      = [205, "User <class> <nick>"]
  96. Global Const $IRC_RPL_TRACESERVER[2]        = [206, "Serv <class> <int>S <int>C <server> <nick!user|*!*>@<host|server>"]
  97. Global Const $IRC_RPL_TRACENEWTYPE[2]       = [208, "<newtype> 0 <client name>"]
  98. Global Const $IRC_RPL_TRACELOG[2]       = [261, "File <logfile> <debug level>"]
  99. Global Const $IRC_RPL_STATSLINKINFO[2]      = [211, "<linkname> <sendq> <sent messages> <sent bytes> <received messages> <received bytes> <time open>"]
  100. Global Const $IRC_RPL_STATSCOMMANDS[2]      = [212, "<command> <count>"]
  101. Global Const $IRC_RPL_STATSCLINE[2]     = [213, "C <host> * <name> <port> <class>"]
  102. Global Const $IRC_RPL_STATSNLINE[2]     = [214, "N <host> * <name> <port> <class>"]
  103. Global Const $IRC_RPL_STATSILINE[2]     = [215, "I <host> * <host> <port> <class>"]
  104. Global Const $IRC_RPL_STATSKLINE[2]     = [216, "K <host> * <username> <port> <class>"]
  105. Global Const $IRC_RPL_STATSYLINE[2]     = [218, "Y <class> <ping frequency> <connect frequency> <max sendq>"]
  106. Global Const $IRC_RPL_ENDOFSTATS[2]     = [219, "<stats letter> :End of /STATS report"]
  107. Global Const $IRC_RPL_STATSLLINE[2]     = [241, "L <hostmask> * <servername> <maxdepth>"]
  108. Global Const $IRC_RPL_STATSUPTIME[2]        = [242, ":Server Up %d days %d:%02d:%02d"]
  109. Global Const $IRC_RPL_STATSOLINE[2]     = [243, "O <hostmask> * <name>"]
  110. Global Const $IRC_RPL_STATSHLINE[2]     = [244, "H <hostmask> * <servername>"]
  111. Global Const $IRC_RPL_UMODEIS[2]        = [221, "<user mode string>"]
  112. Global Const $IRC_RPL_LUSERCLIENT[2]        = [251, ":There are <integer> users and <integer> invisible on <integer> servers"]
  113. Global Const $IRC_RPL_LUSEROP[2]        = [252, "<integer> :operator(s) online"]
  114. Global Const $IRC_RPL_LUSERUNKNOWN[2]       = [253, "<integer> :unknown connection(s)"]
  115. Global Const $IRC_RPL_LUSERCHANNELS[2]      = [254, "<integer> :channels formed"]
  116. Global Const $IRC_RPL_LUSERME[2]        = [255, ":I have <integer> clients and <integer> servers"]
  117. Global Const $IRC_RPL_ADMINME[2]        = [256, "<server> :Administrative info"]
  118. Global Const $IRC_RPL_ADMINLOC[2]       = [257, ":<admin info>"]
  119. ;~ Global Const $IRC_RPL_ADMINLOC[2]        = [258, ":<admin info>"]
  120. Global Const $IRC_RPL_ADMINEMAIL[2]     = [259, ":<admin info>"]
  121. #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement