├── mk ├── macosx │ ├── PkgInfo │ └── MegaGlest.icns ├── linux │ ├── mojosetup │ │ ├── bzip2 │ │ │ └── version.txt │ │ ├── zlib │ │ │ └── version.txt │ │ ├── misc │ │ │ └── MacAppBundleSkeleton │ │ │ │ └── Contents │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ └── mojosetup.icns │ │ ├── libfetch │ │ │ ├── ftp.c │ │ │ ├── fetch.c │ │ │ ├── fetch.h │ │ │ ├── http.c │ │ │ ├── README.txt │ │ │ ├── common.c │ │ │ └── common.h │ │ ├── lua │ │ │ ├── etc │ │ │ │ └── lua.ico │ │ │ ├── test │ │ │ │ ├── echo.lua │ │ │ │ ├── hello.lua │ │ │ │ ├── life.lua │ │ │ │ ├── printf.lua │ │ │ │ ├── env.lua │ │ │ │ ├── luac.lua │ │ │ │ ├── fibfor.lua │ │ │ │ └── readonly.lua │ │ │ └── README │ │ ├── megaglest-installer │ │ │ └── meta │ │ │ │ ├── glestforumsheader.bmp │ │ │ │ ├── glestforumsheader.jpg │ │ │ │ └── megaglestinstallscreen.jpg │ │ └── liblzma │ │ │ └── common │ │ │ └── tuklib_config.h │ ├── megaglest.bmp │ ├── megaglest.png │ ├── megaglest-uninstall.ico │ ├── glest-dev.ini │ ├── megaglest_editor.desktop │ ├── megaglest.desktop │ └── megaglest_g3dviewer.desktop ├── windoze │ ├── glest.rc │ ├── g3d_viewer.rc │ ├── glest_editor.rc │ ├── Installer │ │ └── megaglestinstallscreen.jpg │ ├── glest-dev.ini │ ├── NetworkThrottleFix.reg │ └── mg_build_breakpad_symbols.bat ├── shared │ ├── editor.ico │ ├── glest.ico │ ├── g3dviewer.ico │ ├── megaglest.ico │ └── servers.ini └── fedora │ └── megaglest-rpm-meta │ └── SOURCES │ ├── megaglest.png │ └── megaglest.desktop ├── source ├── shared_lib │ ├── include │ │ └── streflop │ │ │ └── VERSION.txt │ └── sources │ │ ├── platform │ │ └── miniupnpc │ │ │ ├── VERSION │ │ │ ├── msvc │ │ │ ├── miniupnpc.vcproj │ │ │ └── upnpc-static.vcproj │ │ │ ├── external-ip.sh │ │ │ └── mingw32make.bat │ │ └── libircclient │ │ ├── README │ │ ├── doc │ │ ├── man │ │ │ └── man3 │ │ │ │ ├── irc_cmd_me.3 │ │ │ │ ├── irc_errno.3 │ │ │ │ ├── irc_run.3 │ │ │ │ ├── irc_strerror.3 │ │ │ │ ├── irc_cmd_ctcp_reply.3 │ │ │ │ ├── irc_cmd_invite.3 │ │ │ │ ├── irc_cmd_join.3 │ │ │ │ ├── irc_cmd_kick.3 │ │ │ │ ├── irc_cmd_list.3 │ │ │ │ ├── irc_cmd_msg.3 │ │ │ │ ├── irc_cmd_names.3 │ │ │ │ ├── irc_cmd_nick.3 │ │ │ │ ├── irc_cmd_notice.3 │ │ │ │ ├── irc_cmd_part.3 │ │ │ │ ├── irc_cmd_quit.3 │ │ │ │ ├── irc_cmd_topic.3 │ │ │ │ ├── irc_cmd_whois.3 │ │ │ │ ├── irc_connect.3 │ │ │ │ ├── irc_connect6.3 │ │ │ │ ├── irc_dcc_accept.3 │ │ │ │ ├── irc_dcc_chat.3 │ │ │ │ ├── irc_dcc_decline.3 │ │ │ │ ├── irc_dcc_destroy.3 │ │ │ │ ├── irc_dcc_msg.3 │ │ │ │ ├── irc_dcc_t.3 │ │ │ │ ├── irc_disconnect.3 │ │ │ │ ├── irc_get_ctx.3 │ │ │ │ ├── irc_get_version.3 │ │ │ │ ├── irc_option_reset.3 │ │ │ │ ├── irc_option_set.3 │ │ │ │ ├── irc_send_raw.3 │ │ │ │ ├── irc_set_ctx.3 │ │ │ │ ├── LIBIRC_ERR_NOIPV6.3 │ │ │ │ ├── LIBIRC_ERR_OK.3 │ │ │ │ ├── LIBIRC_OPTION_DEBUG.3 │ │ │ │ ├── event_channel.3 │ │ │ │ ├── event_connect.3 │ │ │ │ ├── event_invite.3 │ │ │ │ ├── event_join.3 │ │ │ │ ├── event_kick.3 │ │ │ │ ├── event_mode.3 │ │ │ │ ├── event_nick.3 │ │ │ │ ├── event_notice.3 │ │ │ │ ├── event_numeric.3 │ │ │ │ ├── event_part.3 │ │ │ │ ├── event_privmsg.3 │ │ │ │ ├── event_quit.3 │ │ │ │ ├── event_topic.3 │ │ │ │ ├── event_umode.3 │ │ │ │ ├── event_unknown.3 │ │ │ │ ├── irc_cmd_channel_mode.3 │ │ │ │ ├── irc_cmd_ctcp_request.3 │ │ │ │ ├── irc_cmd_user_mode.3 │ │ │ │ ├── irc_create_session.3 │ │ │ │ ├── irc_dcc_callback_t.3 │ │ │ │ ├── irc_dcc_sendfile.3 │ │ │ │ ├── irc_destroy_session.3 │ │ │ │ ├── irc_event_callback_t.3 │ │ │ │ ├── irc_event_ctcp_internal.3 │ │ │ │ ├── irc_event_dcc_chat_t.3 │ │ │ │ ├── irc_event_dcc_send_t.3 │ │ │ │ ├── irc_is_connected.3 │ │ │ │ ├── irc_session_t.3 │ │ │ │ ├── irc_target_get_host.3 │ │ │ │ ├── irc_target_get_nick.3 │ │ │ │ ├── LIBIRC_ERR_ACCEPT.3 │ │ │ │ ├── LIBIRC_ERR_CLOSED.3 │ │ │ │ ├── LIBIRC_ERR_CONNECT.3 │ │ │ │ ├── LIBIRC_ERR_INVAL.3 │ │ │ │ ├── LIBIRC_ERR_MAX.3 │ │ │ │ ├── LIBIRC_ERR_NOMEM.3 │ │ │ │ ├── LIBIRC_ERR_READ.3 │ │ │ │ ├── LIBIRC_ERR_RESOLV.3 │ │ │ │ ├── LIBIRC_ERR_SOCKET.3 │ │ │ │ ├── LIBIRC_ERR_STATE.3 │ │ │ │ ├── LIBIRC_ERR_TIMEOUT.3 │ │ │ │ ├── LIBIRC_ERR_WRITE.3 │ │ │ │ ├── LIBIRC_OPTION_STRIPNICKS.3 │ │ │ │ ├── LIBIRC_RFC_ERR_BADMASK.3 │ │ │ │ ├── LIBIRC_RFC_RPL_BOUNCE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_CREATED.3 │ │ │ │ ├── LIBIRC_RFC_RPL_MYINFO.3 │ │ │ │ ├── LIBIRC_RFC_RPL_SERVLIST.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACEEND.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRYAGAIN.3 │ │ │ │ ├── LIBIRC_RFC_RPL_UNIQOPIS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_WELCOME.3 │ │ │ │ ├── LIBIRC_RFC_RPL_YOURHOST.3 │ │ │ │ ├── event_ctcp_action.3 │ │ │ │ ├── event_ctcp_rep.3 │ │ │ │ ├── event_ctcp_req.3 │ │ │ │ ├── event_dcc_chat_req.3 │ │ │ │ ├── event_dcc_send_req.3 │ │ │ │ ├── irc_add_select_descriptors.3 │ │ │ │ ├── irc_color_convert_from_mirc.3 │ │ │ │ ├── irc_color_convert_to_mirc.3 │ │ │ │ ├── irc_color_strip_from_mirc.3 │ │ │ │ ├── irc_dcc_session_t.3 │ │ │ │ ├── irc_eventcode_callback_t.3 │ │ │ │ ├── LIBIRC_ERR_NODCCSEND.3 │ │ │ │ ├── LIBIRC_ERR_NOTFOUND.3 │ │ │ │ ├── LIBIRC_ERR_OPENFILE.3 │ │ │ │ ├── LIBIRC_ERR_TERMINATED.3 │ │ │ │ ├── LIBIRC_RFC_ERR_BANLISTFULL.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOCHANMODES.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOSUCHSERVICE.3 │ │ │ │ ├── LIBIRC_RFC_ERR_RESTRICTED.3 │ │ │ │ ├── LIBIRC_RFC_RPL_AWAY.3 │ │ │ │ ├── LIBIRC_RFC_RPL_EXCEPTLIST.3 │ │ │ │ ├── LIBIRC_RFC_RPL_INFO.3 │ │ │ │ ├── LIBIRC_RFC_RPL_INVITELIST.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ISON.3 │ │ │ │ ├── LIBIRC_RFC_RPL_LIST.3 │ │ │ │ ├── LIBIRC_RFC_RPL_MOTD.3 │ │ │ │ ├── LIBIRC_RFC_RPL_SERVLISTEND.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TIME.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACECLASS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACESERVICE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_YOURESERVICE.3 │ │ │ │ ├── event_channel_notice.3 │ │ │ │ ├── irc_process_select_descriptors.3 │ │ │ │ ├── LIBIRC_RFC_ERR_FILEERROR.3 │ │ │ │ ├── LIBIRC_RFC_ERR_KEYSET.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOLOGIN.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOMOTD.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOORIGIN.3 │ │ │ │ ├── LIBIRC_RFC_ERR_UNAVAILRESOURCE.3 │ │ │ │ ├── LIBIRC_RFC_ERR_UNIQOPPRIVSNEEDED.3 │ │ │ │ ├── LIBIRC_RFC_ERR_YOUWILLBEBANNED.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ADMINLOC1.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ADMINLOC2.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ADMINME.3 │ │ │ │ ├── LIBIRC_RFC_RPL_BANLIST.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFEXCEPTLIST.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFINFO.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFINVITELIST.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFMOTD.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFWHO.3 │ │ │ │ ├── LIBIRC_RFC_RPL_INVITING.3 │ │ │ │ ├── LIBIRC_RFC_RPL_LINKS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_LISTEND.3 │ │ │ │ ├── LIBIRC_RFC_RPL_LISTSTART.3 │ │ │ │ ├── LIBIRC_RFC_RPL_LUSERME.3 │ │ │ │ ├── LIBIRC_RFC_RPL_LUSEROP.3 │ │ │ │ ├── LIBIRC_RFC_RPL_MOTDSTART.3 │ │ │ │ ├── LIBIRC_RFC_RPL_NAMREPLY.3 │ │ │ │ ├── LIBIRC_RFC_RPL_NOTOPIC.3 │ │ │ │ ├── LIBIRC_RFC_RPL_NOUSERS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_NOWAWAY.3 │ │ │ │ ├── LIBIRC_RFC_RPL_REHASHING.3 │ │ │ │ ├── LIBIRC_RFC_RPL_SUMMONING.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TOPIC.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACELINK.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACELOG.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACEUSER.3 │ │ │ │ ├── LIBIRC_RFC_RPL_UMODEIS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_UNAWAY.3 │ │ │ │ ├── LIBIRC_RFC_RPL_USERHOST.3 │ │ │ │ ├── LIBIRC_RFC_RPL_USERS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_VERSION.3 │ │ │ │ ├── LIBIRC_RFC_RPL_WHOISIDLE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_WHOISUSER.3 │ │ │ │ ├── LIBIRC_RFC_RPL_WHOREPLY.3 │ │ │ │ ├── LIBIRC_RFC_RPL_YOUREOPER.3 │ │ │ │ ├── LIBIRC_RFC_ERR_BADCHANMASK.3 │ │ │ │ ├── LIBIRC_RFC_ERR_BADCHANNELKEY.3 │ │ │ │ ├── LIBIRC_RFC_ERR_BANNEDFROMCHAN.3 │ │ │ │ ├── LIBIRC_RFC_ERR_CANTKILLSERVER.3 │ │ │ │ ├── LIBIRC_RFC_ERR_CHANNELISFULL.3 │ │ │ │ ├── LIBIRC_RFC_ERR_INVITEONLYCHAN.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NEEDMOREPARAMS.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NICKCOLLISION.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NICKNAMEINUSE.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOADMININFO.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOOPERHOST.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOPERMFORHOST.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOPRIVILEGES.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NORECIPIENT.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOSUCHCHANNEL.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOSUCHNICK.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOSUCHSERVER.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOTEXTTOSEND.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOTONCHANNEL.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOTOPLEVEL.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NOTREGISTERED.3 │ │ │ │ ├── LIBIRC_RFC_ERR_PASSWDMISMATCH.3 │ │ │ │ ├── LIBIRC_RFC_ERR_SUMMONDISABLED.3 │ │ │ │ ├── LIBIRC_RFC_ERR_TOOMANYTARGETS.3 │ │ │ │ ├── LIBIRC_RFC_ERR_UNKNOWNCOMMAND.3 │ │ │ │ ├── LIBIRC_RFC_ERR_UNKNOWNMODE.3 │ │ │ │ ├── LIBIRC_RFC_ERR_USERONCHANNEL.3 │ │ │ │ ├── LIBIRC_RFC_ERR_USERSDISABLED.3 │ │ │ │ ├── LIBIRC_RFC_ERR_USERSDONTMATCH.3 │ │ │ │ ├── LIBIRC_RFC_ERR_WASNOSUCHNICK.3 │ │ │ │ ├── LIBIRC_RFC_ERR_WILDTOPLEVEL.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ADMINEMAIL.3 │ │ │ │ ├── LIBIRC_RFC_RPL_CHANNELMODEIS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFBANLIST.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFLINKS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFNAMES.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFSTATS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFUSERS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFWHOIS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFWHOWAS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_LUSERCHANNELS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_LUSERCLIENT.3 │ │ │ │ ├── LIBIRC_RFC_RPL_LUSERUNKNOWN.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSCLINE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSCOMMANDS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSHLINE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSILINE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSKLINE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSLINKINFO.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSLLINE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSNLINE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSOLINE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSUPTIME.3 │ │ │ │ ├── LIBIRC_RFC_RPL_STATSYLINE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACEHANDSHAKE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACENEWTYPE.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACEOPERATOR.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACESERVER.3 │ │ │ │ ├── LIBIRC_RFC_RPL_TRACEUNKNOWN.3 │ │ │ │ ├── LIBIRC_RFC_RPL_USERSSTART.3 │ │ │ │ ├── LIBIRC_RFC_RPL_WHOISCHANNELS.3 │ │ │ │ ├── LIBIRC_RFC_RPL_WHOISOPERATOR.3 │ │ │ │ ├── LIBIRC_RFC_RPL_WHOISSERVER.3 │ │ │ │ ├── LIBIRC_RFC_RPL_WHOWASUSER.3 │ │ │ │ ├── LIBIRC_RFC_ERR_ALREADYREGISTRED.3 │ │ │ │ ├── LIBIRC_RFC_ERR_CANNOTSENDTOCHAN.3 │ │ │ │ ├── LIBIRC_RFC_ERR_CHANOPRIVSNEEDED.3 │ │ │ │ ├── LIBIRC_RFC_ERR_ERRONEUSNICKNAME.3 │ │ │ │ ├── LIBIRC_RFC_ERR_NONICKNAMEGIVEN.3 │ │ │ │ ├── LIBIRC_RFC_ERR_TOOMANYCHANNELS.3 │ │ │ │ ├── LIBIRC_RFC_ERR_UMODEUNKNOWNFLAG.3 │ │ │ │ ├── LIBIRC_RFC_ERR_USERNOTINCHANNEL.3 │ │ │ │ ├── LIBIRC_RFC_ERR_YOUREBANNEDCREEP.3 │ │ │ │ └── LIBIRC_RFC_RPL_TRACECONNECTING.3 │ │ └── html │ │ │ ├── tab_b.gif │ │ │ ├── tab_l.gif │ │ │ ├── tab_r.gif │ │ │ └── doxygen.png │ │ ├── build │ │ ├── source │ │ │ └── libircclient │ │ │ │ ├── README │ │ │ │ ├── doc │ │ │ │ ├── man │ │ │ │ │ └── man3 │ │ │ │ │ │ ├── irc_errno.3 │ │ │ │ │ │ ├── irc_run.3 │ │ │ │ │ │ ├── irc_cmd_ctcp_reply.3 │ │ │ │ │ │ ├── irc_cmd_invite.3 │ │ │ │ │ │ ├── irc_cmd_join.3 │ │ │ │ │ │ ├── irc_cmd_kick.3 │ │ │ │ │ │ ├── irc_cmd_list.3 │ │ │ │ │ │ ├── irc_cmd_me.3 │ │ │ │ │ │ ├── irc_cmd_msg.3 │ │ │ │ │ │ ├── irc_cmd_names.3 │ │ │ │ │ │ ├── irc_cmd_nick.3 │ │ │ │ │ │ ├── irc_cmd_notice.3 │ │ │ │ │ │ ├── irc_cmd_part.3 │ │ │ │ │ │ ├── irc_cmd_quit.3 │ │ │ │ │ │ ├── irc_cmd_topic.3 │ │ │ │ │ │ ├── irc_cmd_whois.3 │ │ │ │ │ │ ├── irc_connect.3 │ │ │ │ │ │ ├── irc_connect6.3 │ │ │ │ │ │ ├── irc_dcc_accept.3 │ │ │ │ │ │ ├── irc_dcc_chat.3 │ │ │ │ │ │ ├── irc_dcc_msg.3 │ │ │ │ │ │ ├── irc_disconnect.3 │ │ │ │ │ │ ├── irc_get_ctx.3 │ │ │ │ │ │ ├── irc_get_version.3 │ │ │ │ │ │ ├── irc_option_set.3 │ │ │ │ │ │ ├── irc_send_raw.3 │ │ │ │ │ │ ├── irc_set_ctx.3 │ │ │ │ │ │ ├── irc_strerror.3 │ │ │ │ │ │ ├── LIBIRC_ERR_NOIPV6.3 │ │ │ │ │ │ ├── LIBIRC_OPTION_DEBUG.3 │ │ │ │ │ │ ├── event_invite.3 │ │ │ │ │ │ ├── event_join.3 │ │ │ │ │ │ ├── event_kick.3 │ │ │ │ │ │ ├── event_mode.3 │ │ │ │ │ │ ├── event_nick.3 │ │ │ │ │ │ ├── event_notice.3 │ │ │ │ │ │ ├── event_part.3 │ │ │ │ │ │ ├── event_quit.3 │ │ │ │ │ │ ├── event_topic.3 │ │ │ │ │ │ ├── event_umode.3 │ │ │ │ │ │ ├── irc_cmd_ctcp_request.3 │ │ │ │ │ │ ├── irc_cmd_user_mode.3 │ │ │ │ │ │ ├── irc_create_session.3 │ │ │ │ │ │ ├── irc_dcc_callback_t.3 │ │ │ │ │ │ ├── irc_dcc_decline.3 │ │ │ │ │ │ ├── irc_dcc_destroy.3 │ │ │ │ │ │ ├── irc_dcc_sendfile.3 │ │ │ │ │ │ ├── irc_dcc_t.3 │ │ │ │ │ │ ├── irc_event_callback_t.3 │ │ │ │ │ │ ├── irc_event_ctcp_internal.3 │ │ │ │ │ │ ├── irc_event_dcc_chat_t.3 │ │ │ │ │ │ ├── irc_event_dcc_send_t.3 │ │ │ │ │ │ ├── irc_is_connected.3 │ │ │ │ │ │ ├── irc_option_reset.3 │ │ │ │ │ │ ├── irc_session_t.3 │ │ │ │ │ │ ├── irc_target_get_host.3 │ │ │ │ │ │ ├── irc_target_get_nick.3 │ │ │ │ │ │ ├── LIBIRC_ERR_ACCEPT.3 │ │ │ │ │ │ ├── LIBIRC_ERR_CLOSED.3 │ │ │ │ │ │ ├── LIBIRC_ERR_INVAL.3 │ │ │ │ │ │ ├── LIBIRC_ERR_MAX.3 │ │ │ │ │ │ ├── LIBIRC_ERR_NOMEM.3 │ │ │ │ │ │ ├── LIBIRC_ERR_OK.3 │ │ │ │ │ │ ├── LIBIRC_ERR_READ.3 │ │ │ │ │ │ ├── LIBIRC_ERR_RESOLV.3 │ │ │ │ │ │ ├── LIBIRC_ERR_SOCKET.3 │ │ │ │ │ │ ├── LIBIRC_ERR_STATE.3 │ │ │ │ │ │ ├── LIBIRC_ERR_WRITE.3 │ │ │ │ │ │ ├── LIBIRC_OPTION_STRIPNICKS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_BADMASK.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_BOUNCE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_CREATED.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_MYINFO.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_WELCOME.3 │ │ │ │ │ │ ├── event_channel.3 │ │ │ │ │ │ ├── event_connect.3 │ │ │ │ │ │ ├── event_ctcp_action.3 │ │ │ │ │ │ ├── event_ctcp_rep.3 │ │ │ │ │ │ ├── event_ctcp_req.3 │ │ │ │ │ │ ├── event_numeric.3 │ │ │ │ │ │ ├── event_privmsg.3 │ │ │ │ │ │ ├── event_unknown.3 │ │ │ │ │ │ ├── irc_cmd_channel_mode.3 │ │ │ │ │ │ ├── irc_color_convert_to_mirc.3 │ │ │ │ │ │ ├── irc_color_strip_from_mirc.3 │ │ │ │ │ │ ├── irc_dcc_session_t.3 │ │ │ │ │ │ ├── irc_destroy_session.3 │ │ │ │ │ │ ├── irc_eventcode_callback_t.3 │ │ │ │ │ │ ├── LIBIRC_ERR_CONNECT.3 │ │ │ │ │ │ ├── LIBIRC_ERR_NODCCSEND.3 │ │ │ │ │ │ ├── LIBIRC_ERR_NOTFOUND.3 │ │ │ │ │ │ ├── LIBIRC_ERR_OPENFILE.3 │ │ │ │ │ │ ├── LIBIRC_ERR_TERMINATED.3 │ │ │ │ │ │ ├── LIBIRC_ERR_TIMEOUT.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_BANLISTFULL.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOCHANMODES.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_RESTRICTED.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_EXCEPTLIST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_INVITELIST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_SERVLIST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_SERVLISTEND.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACECLASS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACEEND.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACESERVICE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRYAGAIN.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_UNIQOPIS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_YOURESERVICE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_YOURHOST.3 │ │ │ │ │ │ ├── event_channel_notice.3 │ │ │ │ │ │ ├── event_dcc_chat_req.3 │ │ │ │ │ │ ├── event_dcc_send_req.3 │ │ │ │ │ │ ├── irc_add_select_descriptors.3 │ │ │ │ │ │ ├── irc_color_convert_from_mirc.3 │ │ │ │ │ │ ├── irc_process_select_descriptors.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_KEYSET.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOLOGIN.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOMOTD.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOORIGIN.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOSUCHSERVICE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_UNAVAILRESOURCE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_UNIQOPPRIVSNEEDED.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_YOUWILLBEBANNED.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ADMINME.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_AWAY.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_BANLIST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFEXCEPTLIST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFINVITELIST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFWHO.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_INFO.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_INVITING.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ISON.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_LINKS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_LIST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_LISTEND.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_LUSERME.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_LUSEROP.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_MOTD.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_NAMREPLY.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_NOTOPIC.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_NOUSERS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_NOWAWAY.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TIME.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TOPIC.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACELOG.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_UMODEIS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_UNAWAY.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_USERHOST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_USERS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_VERSION.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_WHOREPLY.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_BADCHANMASK.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_BADCHANNELKEY.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_CHANNELISFULL.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_FILEERROR.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NICKCOLLISION.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NICKNAMEINUSE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOADMININFO.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOOPERHOST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOPERMFORHOST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOPRIVILEGES.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NORECIPIENT.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOSUCHCHANNEL.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOSUCHNICK.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOSUCHSERVER.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOTEXTTOSEND.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOTONCHANNEL.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOTOPLEVEL.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NOTREGISTERED.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_UNKNOWNMODE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_USERONCHANNEL.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_USERSDISABLED.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_WASNOSUCHNICK.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_WILDTOPLEVEL.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ADMINEMAIL.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ADMINLOC1.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ADMINLOC2.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_CHANNELMODEIS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFBANLIST.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFINFO.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFLINKS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFMOTD.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFNAMES.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFSTATS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFUSERS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFWHOIS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_ENDOFWHOWAS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_LISTSTART.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_LUSERCHANNELS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_LUSERCLIENT.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_LUSERUNKNOWN.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_MOTDSTART.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_REHASHING.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSCLINE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSCOMMANDS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSHLINE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSILINE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSKLINE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSLINKINFO.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSLLINE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSNLINE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSOLINE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSUPTIME.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_STATSYLINE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_SUMMONING.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACELINK.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACENEWTYPE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACEOPERATOR.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACESERVER.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACEUNKNOWN.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACEUSER.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_USERSSTART.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_WHOISCHANNELS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_WHOISIDLE.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_WHOISOPERATOR.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_WHOISSERVER.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_WHOISUSER.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_WHOWASUSER.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_YOUREOPER.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_ALREADYREGISTRED.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_BANNEDFROMCHAN.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_CANNOTSENDTOCHAN.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_CANTKILLSERVER.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_CHANOPRIVSNEEDED.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_ERRONEUSNICKNAME.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_INVITEONLYCHAN.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NEEDMOREPARAMS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_NONICKNAMEGIVEN.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_PASSWDMISMATCH.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_SUMMONDISABLED.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_TOOMANYCHANNELS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_TOOMANYTARGETS.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_UMODEUNKNOWNFLAG.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_UNKNOWNCOMMAND.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_USERNOTINCHANNEL.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_USERSDONTMATCH.3 │ │ │ │ │ │ ├── LIBIRC_RFC_ERR_YOUREBANNEDCREEP.3 │ │ │ │ │ │ ├── LIBIRC_RFC_RPL_TRACECONNECTING.3 │ │ │ │ │ │ └── LIBIRC_RFC_RPL_TRACEHANDSHAKE.3 │ │ │ │ └── html │ │ │ │ │ ├── tab_b.gif │ │ │ │ │ ├── tab_l.gif │ │ │ │ │ ├── tab_r.gif │ │ │ │ │ └── doxygen.png │ │ │ │ ├── cocoa │ │ │ │ ├── doc │ │ │ │ │ └── html │ │ │ │ │ │ ├── tab_b.gif │ │ │ │ │ │ ├── tab_l.gif │ │ │ │ │ │ ├── tab_r.gif │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── interface_i_r_c_client_channel.png │ │ │ │ │ │ └── interface_i_r_c_client_session.png │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── IRCClient_Prefix.pch │ │ │ │ └── IRCClient.xcodeproj │ │ │ │ │ └── TemplateIcon.icns │ │ │ │ └── THANKS │ │ └── doc │ │ │ ├── tab_b.gif │ │ │ ├── tab_l.gif │ │ │ ├── tab_r.gif │ │ │ └── doxygen.png │ │ ├── cocoa │ │ ├── doc │ │ │ └── html │ │ │ │ ├── tab_b.gif │ │ │ │ ├── tab_l.gif │ │ │ │ ├── tab_r.gif │ │ │ │ ├── doxygen.png │ │ │ │ ├── interface_i_r_c_client_channel.png │ │ │ │ └── interface_i_r_c_client_session.png │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── IRCClient.xcodeproj │ │ │ └── TemplateIcon.icns │ │ └── IRCClient_Prefix.pch │ │ └── THANKS ├── masterserver │ ├── robots.txt │ ├── README.txt │ ├── flags │ │ ├── ad.png │ │ ├── ae.png │ │ ├── af.png │ │ ├── ag.png │ │ ├── ai.png │ │ ├── al.png │ │ ├── am.png │ │ ├── an.png │ │ ├── ao.png │ │ ├── ar.png │ │ ├── as.png │ │ ├── at.png │ │ ├── au.png │ │ ├── aw.png │ │ ├── ax.png │ │ ├── az.png │ │ ├── ba.png │ │ ├── bb.png │ │ ├── bd.png │ │ ├── be.png │ │ ├── bf.png │ │ ├── bg.png │ │ ├── bh.png │ │ ├── bi.png │ │ ├── bj.png │ │ ├── bm.png │ │ ├── bn.png │ │ ├── bo.png │ │ ├── br.png │ │ ├── bs.png │ │ ├── bt.png │ │ ├── bv.png │ │ ├── bw.png │ │ ├── by.png │ │ ├── bz.png │ │ ├── ca.png │ │ ├── cc.png │ │ ├── cd.png │ │ ├── cf.png │ │ ├── cg.png │ │ ├── ch.png │ │ ├── ci.png │ │ ├── ck.png │ │ ├── cl.png │ │ ├── cm.png │ │ ├── cn.png │ │ ├── co.png │ │ ├── cr.png │ │ ├── cs.png │ │ ├── cu.png │ │ ├── cv.png │ │ ├── cx.png │ │ ├── cy.png │ │ ├── cz.png │ │ ├── de.png │ │ ├── dj.png │ │ ├── dk.png │ │ ├── dm.png │ │ ├── do.png │ │ ├── dz.png │ │ ├── ec.png │ │ ├── ee.png │ │ ├── eg.png │ │ ├── eh.png │ │ ├── er.png │ │ ├── es.png │ │ ├── et.png │ │ ├── fi.png │ │ ├── fj.png │ │ ├── fk.png │ │ ├── fm.png │ │ ├── fo.png │ │ ├── fr.png │ │ ├── ga.png │ │ ├── gb.png │ │ ├── gd.png │ │ ├── ge.png │ │ ├── gf.png │ │ ├── gh.png │ │ ├── gi.png │ │ ├── gl.png │ │ ├── gm.png │ │ ├── gn.png │ │ ├── gp.png │ │ ├── gq.png │ │ ├── gr.png │ │ ├── gs.png │ │ ├── gt.png │ │ ├── gu.png │ │ ├── gw.png │ │ ├── gy.png │ │ ├── hk.png │ │ ├── hm.png │ │ ├── hn.png │ │ ├── hr.png │ │ ├── ht.png │ │ ├── hu.png │ │ ├── id.png │ │ ├── ie.png │ │ ├── il.png │ │ ├── in.png │ │ ├── io.png │ │ ├── iq.png │ │ ├── ir.png │ │ ├── is.png │ │ ├── it.png │ │ ├── jm.png │ │ ├── jo.png │ │ ├── jp.png │ │ ├── ke.png │ │ ├── kg.png │ │ ├── kh.png │ │ ├── ki.png │ │ ├── km.png │ │ ├── kn.png │ │ ├── kp.png │ │ ├── kr.png │ │ ├── kw.png │ │ ├── ky.png │ │ ├── kz.png │ │ ├── la.png │ │ ├── lb.png │ │ ├── lc.png │ │ ├── li.png │ │ ├── lk.png │ │ ├── lr.png │ │ ├── ls.png │ │ ├── lt.png │ │ ├── lu.png │ │ ├── lv.png │ │ ├── ly.png │ │ ├── ma.png │ │ ├── mc.png │ │ ├── md.png │ │ ├── me.png │ │ ├── mg.png │ │ ├── mh.png │ │ ├── mk.png │ │ ├── ml.png │ │ ├── mm.png │ │ ├── mn.png │ │ ├── mo.png │ │ ├── mp.png │ │ ├── mq.png │ │ ├── mr.png │ │ ├── ms.png │ │ ├── mt.png │ │ ├── mu.png │ │ ├── mv.png │ │ ├── mw.png │ │ ├── mx.png │ │ ├── my.png │ │ ├── mz.png │ │ ├── na.png │ │ ├── nc.png │ │ ├── ne.png │ │ ├── nf.png │ │ ├── ng.png │ │ ├── ni.png │ │ ├── nl.png │ │ ├── no.png │ │ ├── np.png │ │ ├── nr.png │ │ ├── nu.png │ │ ├── nz.png │ │ ├── om.png │ │ ├── pa.png │ │ ├── pe.png │ │ ├── pf.png │ │ ├── pg.png │ │ ├── ph.png │ │ ├── pk.png │ │ ├── pl.png │ │ ├── pm.png │ │ ├── pn.png │ │ ├── pr.png │ │ ├── ps.png │ │ ├── pt.png │ │ ├── pw.png │ │ ├── py.png │ │ ├── qa.png │ │ ├── re.png │ │ ├── ro.png │ │ ├── rs.png │ │ ├── ru.png │ │ ├── rw.png │ │ ├── sa.png │ │ ├── sb.png │ │ ├── sc.png │ │ ├── sd.png │ │ ├── se.png │ │ ├── sg.png │ │ ├── sh.png │ │ ├── si.png │ │ ├── sj.png │ │ ├── sk.png │ │ ├── sl.png │ │ ├── sm.png │ │ ├── sn.png │ │ ├── so.png │ │ ├── sr.png │ │ ├── st.png │ │ ├── sv.png │ │ ├── sy.png │ │ ├── sz.png │ │ ├── tc.png │ │ ├── td.png │ │ ├── tf.png │ │ ├── tg.png │ │ ├── th.png │ │ ├── tj.png │ │ ├── tk.png │ │ ├── tl.png │ │ ├── tm.png │ │ ├── tn.png │ │ ├── to.png │ │ ├── tr.png │ │ ├── tt.png │ │ ├── tv.png │ │ ├── tw.png │ │ ├── tz.png │ │ ├── ua.png │ │ ├── ug.png │ │ ├── um.png │ │ ├── us.png │ │ ├── uy.png │ │ ├── uz.png │ │ ├── va.png │ │ ├── vc.png │ │ ├── ve.png │ │ ├── vg.png │ │ ├── vi.png │ │ ├── vn.png │ │ ├── vu.png │ │ ├── wf.png │ │ ├── ws.png │ │ ├── ye.png │ │ ├── yt.png │ │ ├── za.png │ │ ├── zm.png │ │ └── zw.png │ ├── images │ │ ├── game_icon.png │ │ └── megaglest.ico │ └── index.php └── tools │ ├── glexemel │ └── g3d_logo.png │ └── convert_faction_xml2html │ ├── favicon.ico │ └── media │ ├── favicon.ico │ └── datatables │ ├── sort_asc.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── back_disabled.jpg │ ├── back_enabled.jpg │ ├── forward_disabled.jpg │ ├── forward_enabled.jpg │ ├── sort_asc_disabled.png │ └── sort_desc_disabled.png └── README.txt /mk/macosx/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | APPL???? -------------------------------------------------------------------------------- /mk/linux/mojosetup/bzip2/version.txt: -------------------------------------------------------------------------------- 1 | bzip2-1.0.6 2 | -------------------------------------------------------------------------------- /mk/linux/mojosetup/zlib/version.txt: -------------------------------------------------------------------------------- 1 | zlib-1.2.5 2 | -------------------------------------------------------------------------------- /source/shared_lib/include/streflop/VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.2 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/platform/miniupnpc/VERSION: -------------------------------------------------------------------------------- 1 | 1.7 2 | -------------------------------------------------------------------------------- /source/masterserver/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /mk/linux/mojosetup/misc/MacAppBundleSkeleton/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLMjSt -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/README: -------------------------------------------------------------------------------- 1 | See doc/html/index.html 2 | -------------------------------------------------------------------------------- /mk/windoze/glest.rc: -------------------------------------------------------------------------------- 1 | IDI_ICON1 ICON DISCARDABLE "..\shared\megaglest.ico" 2 | -------------------------------------------------------------------------------- /mk/windoze/g3d_viewer.rc: -------------------------------------------------------------------------------- 1 | IDI_ICON1 ICON DISCARDABLE "..\shared\g3dviewer.ico" 2 | -------------------------------------------------------------------------------- /mk/windoze/glest_editor.rc: -------------------------------------------------------------------------------- 1 | IDI_ICON1 ICON DISCARDABLE "..\shared\editor.ico" 2 | -------------------------------------------------------------------------------- /source/masterserver/README.txt: -------------------------------------------------------------------------------- 1 | Please refer to the files in the docs/ subdirectory. 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_me.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_errno.3: -------------------------------------------------------------------------------- 1 | .so man3/errors.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_run.3: -------------------------------------------------------------------------------- 1 | .so man3/running.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_strerror.3: -------------------------------------------------------------------------------- 1 | .so man3/errors.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_ctcp_reply.3: -------------------------------------------------------------------------------- 1 | .so man3/ctcp.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_invite.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_join.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_kick.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_list.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_msg.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_names.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_nick.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_oth.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_notice.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_part.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_quit.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_topic.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_whois.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_oth.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_connect.3: -------------------------------------------------------------------------------- 1 | .so man3/conndisc.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_connect6.3: -------------------------------------------------------------------------------- 1 | .so man3/conndisc.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_dcc_accept.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_dcc_chat.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_dcc_decline.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_dcc_destroy.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_dcc_msg.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_dcc_t.3: -------------------------------------------------------------------------------- 1 | .so man3/libircclient.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_disconnect.3: -------------------------------------------------------------------------------- 1 | .so man3/conndisc.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_get_ctx.3: -------------------------------------------------------------------------------- 1 | .so man3/contexts.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_get_version.3: -------------------------------------------------------------------------------- 1 | .so man3/common.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_option_reset.3: -------------------------------------------------------------------------------- 1 | .so man3/options.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_option_set.3: -------------------------------------------------------------------------------- 1 | .so man3/options.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_send_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_set_ctx.3: -------------------------------------------------------------------------------- 1 | .so man3/contexts.3 2 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | Please refer to docs/ for all documentation, license and copyright information. 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_NOIPV6.3: -------------------------------------------------------------------------------- 1 | .so man3/errorcodes.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_OK.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_OPTION_DEBUG.3: -------------------------------------------------------------------------------- 1 | .so man3/options.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_channel.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_connect.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_invite.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_join.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_kick.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_mode.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_nick.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_notice.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_numeric.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_part.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_privmsg.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_quit.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_topic.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_umode.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_unknown.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_channel_mode.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_ctcp_request.3: -------------------------------------------------------------------------------- 1 | .so man3/ctcp.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_cmd_user_mode.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_oth.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_create_session.3: -------------------------------------------------------------------------------- 1 | .so man3/initclose.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_dcc_callback_t.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_dcc_sendfile.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_destroy_session.3: -------------------------------------------------------------------------------- 1 | .so man3/initclose.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_event_callback_t.3: -------------------------------------------------------------------------------- 1 | .so man3/events.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_event_ctcp_internal.3: -------------------------------------------------------------------------------- 1 | .so man3/ctcp.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_event_dcc_chat_t.3: -------------------------------------------------------------------------------- 1 | .so man3/events.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_event_dcc_send_t.3: -------------------------------------------------------------------------------- 1 | .so man3/events.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_is_connected.3: -------------------------------------------------------------------------------- 1 | .so man3/conndisc.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_session_t.3: -------------------------------------------------------------------------------- 1 | .so man3/libircclient.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_target_get_host.3: -------------------------------------------------------------------------------- 1 | .so man3/nnparse.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_target_get_nick.3: -------------------------------------------------------------------------------- 1 | .so man3/nnparse.3 2 | -------------------------------------------------------------------------------- /mk/shared/editor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/shared/editor.ico -------------------------------------------------------------------------------- /mk/shared/glest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/shared/glest.ico -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/README: -------------------------------------------------------------------------------- 1 | See doc/html/index.html 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_ACCEPT.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_CLOSED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_CONNECT.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_INVAL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_NOMEM.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_READ.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_RESOLV.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_SOCKET.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_STATE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_TIMEOUT.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_WRITE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_OPTION_STRIPNICKS.3: -------------------------------------------------------------------------------- 1 | .so man3/options.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_BADMASK.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_BOUNCE.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_CREATED.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_MYINFO.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_SERVLIST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACEEND.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRYAGAIN.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_UNIQOPIS.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WELCOME.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_YOURHOST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_ctcp_action.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_ctcp_rep.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_ctcp_req.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_dcc_chat_req.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_dcc_send_req.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_add_select_descriptors.3: -------------------------------------------------------------------------------- 1 | .so man3/running.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_color_convert_from_mirc.3: -------------------------------------------------------------------------------- 1 | .so man3/colors.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_color_convert_to_mirc.3: -------------------------------------------------------------------------------- 1 | .so man3/colors.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_color_strip_from_mirc.3: -------------------------------------------------------------------------------- 1 | .so man3/colors.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_dcc_session_t.3: -------------------------------------------------------------------------------- 1 | .so man3/libircclient.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_eventcode_callback_t.3: -------------------------------------------------------------------------------- 1 | .so man3/events.3 2 | -------------------------------------------------------------------------------- /mk/linux/megaglest.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/megaglest.bmp -------------------------------------------------------------------------------- /mk/linux/megaglest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/megaglest.png -------------------------------------------------------------------------------- /mk/shared/g3dviewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/shared/g3dviewer.ico -------------------------------------------------------------------------------- /mk/shared/megaglest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/shared/megaglest.ico -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_NODCCSEND.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_NOTFOUND.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_OPENFILE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_ERR_TERMINATED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_BANLISTFULL.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOCHANMODES.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOSUCHSERVICE.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_RESTRICTED.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_AWAY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_EXCEPTLIST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_INFO.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_INVITELIST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ISON.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LIST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_MOTD.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_SERVLISTEND.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TIME.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACECLASS.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACESERVICE.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_YOURESERVICE.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/event_channel_notice.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/irc_process_select_descriptors.3: -------------------------------------------------------------------------------- 1 | .so man3/running.3 2 | -------------------------------------------------------------------------------- /mk/macosx/MegaGlest.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/macosx/MegaGlest.icns -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_errno.3: -------------------------------------------------------------------------------- 1 | .so man3/errors.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_run.3: -------------------------------------------------------------------------------- 1 | .so man3/running.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_FILEERROR.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_KEYSET.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOLOGIN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOMOTD.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOORIGIN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_UNAVAILRESOURCE.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_UNIQOPPRIVSNEEDED.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_YOUWILLBEBANNED.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ADMINLOC1.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ADMINLOC2.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ADMINME.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_BANLIST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFEXCEPTLIST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFINFO.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFINVITELIST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFMOTD.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFWHO.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_INVITING.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LINKS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LISTEND.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LISTSTART.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LUSERME.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LUSEROP.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_MOTDSTART.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_NAMREPLY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_NOTOPIC.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_NOUSERS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_NOWAWAY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_REHASHING.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_SUMMONING.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TOPIC.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACELINK.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACELOG.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACEUSER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_UMODEIS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_UNAWAY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_USERHOST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_USERS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_VERSION.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOISIDLE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOISUSER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOREPLY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_YOUREOPER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_ctcp_reply.3: -------------------------------------------------------------------------------- 1 | .so man3/ctcp.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_invite.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_join.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_kick.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_list.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_me.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_msg.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_names.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_nick.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_oth.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_notice.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_part.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_quit.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_topic.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_whois.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_oth.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_connect.3: -------------------------------------------------------------------------------- 1 | .so man3/conndisc.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_connect6.3: -------------------------------------------------------------------------------- 1 | .so man3/conndisc.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_dcc_accept.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_dcc_chat.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_dcc_msg.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_disconnect.3: -------------------------------------------------------------------------------- 1 | .so man3/conndisc.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_get_ctx.3: -------------------------------------------------------------------------------- 1 | .so man3/contexts.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_get_version.3: -------------------------------------------------------------------------------- 1 | .so man3/common.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_option_set.3: -------------------------------------------------------------------------------- 1 | .so man3/options.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_send_raw.3: -------------------------------------------------------------------------------- 1 | .so man3/sendcmds.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_set_ctx.3: -------------------------------------------------------------------------------- 1 | .so man3/contexts.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_strerror.3: -------------------------------------------------------------------------------- 1 | .so man3/errors.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_BADCHANMASK.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_BADCHANNELKEY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_BANNEDFROMCHAN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_CANTKILLSERVER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_CHANNELISFULL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_INVITEONLYCHAN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NEEDMOREPARAMS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NICKCOLLISION.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NICKNAMEINUSE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOADMININFO.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOOPERHOST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOPERMFORHOST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOPRIVILEGES.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NORECIPIENT.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOSUCHCHANNEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOSUCHNICK.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOSUCHSERVER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOTEXTTOSEND.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOTONCHANNEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOTOPLEVEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOTREGISTERED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_PASSWDMISMATCH.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_SUMMONDISABLED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_TOOMANYTARGETS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_UNKNOWNCOMMAND.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_UNKNOWNMODE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_USERONCHANNEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_USERSDISABLED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_USERSDONTMATCH.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_WASNOSUCHNICK.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_WILDTOPLEVEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ADMINEMAIL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_CHANNELMODEIS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFBANLIST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFLINKS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFNAMES.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFSTATS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFUSERS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFWHOIS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFWHOWAS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LUSERCHANNELS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LUSERCLIENT.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LUSERUNKNOWN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSCLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSCOMMANDS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSHLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSILINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSKLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSLINKINFO.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSLLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSNLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSOLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSUPTIME.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSYLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACEHANDSHAKE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACENEWTYPE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACEOPERATOR.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACESERVER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACEUNKNOWN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_USERSSTART.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOISCHANNELS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOISOPERATOR.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOISSERVER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOWASUSER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_NOIPV6.3: -------------------------------------------------------------------------------- 1 | .so man3/errorcodes.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_OPTION_DEBUG.3: -------------------------------------------------------------------------------- 1 | .so man3/options.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_invite.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_join.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_kick.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_mode.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_nick.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_notice.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_part.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_quit.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_topic.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_umode.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_ctcp_request.3: -------------------------------------------------------------------------------- 1 | .so man3/ctcp.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_user_mode.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_oth.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_create_session.3: -------------------------------------------------------------------------------- 1 | .so man3/initclose.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_dcc_callback_t.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_dcc_decline.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_dcc_destroy.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_dcc_sendfile.3: -------------------------------------------------------------------------------- 1 | .so man3/dccstuff.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_dcc_t.3: -------------------------------------------------------------------------------- 1 | .so man3/libircclient.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_event_callback_t.3: -------------------------------------------------------------------------------- 1 | .so man3/events.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_event_ctcp_internal.3: -------------------------------------------------------------------------------- 1 | .so man3/ctcp.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_event_dcc_chat_t.3: -------------------------------------------------------------------------------- 1 | .so man3/events.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_event_dcc_send_t.3: -------------------------------------------------------------------------------- 1 | .so man3/events.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_is_connected.3: -------------------------------------------------------------------------------- 1 | .so man3/conndisc.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_option_reset.3: -------------------------------------------------------------------------------- 1 | .so man3/options.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_session_t.3: -------------------------------------------------------------------------------- 1 | .so man3/libircclient.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_target_get_host.3: -------------------------------------------------------------------------------- 1 | .so man3/nnparse.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_target_get_nick.3: -------------------------------------------------------------------------------- 1 | .so man3/nnparse.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_ALREADYREGISTRED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_CANNOTSENDTOCHAN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_CHANOPRIVSNEEDED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_ERRONEUSNICKNAME.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NONICKNAMEGIVEN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_TOOMANYCHANNELS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_UMODEUNKNOWNFLAG.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_USERNOTINCHANNEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_ERR_YOUREBANNEDCREEP.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACECONNECTING.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /mk/linux/megaglest-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/megaglest-uninstall.ico -------------------------------------------------------------------------------- /mk/linux/mojosetup/libfetch/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/libfetch/ftp.c -------------------------------------------------------------------------------- /source/masterserver/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ad.png -------------------------------------------------------------------------------- /source/masterserver/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ae.png -------------------------------------------------------------------------------- /source/masterserver/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/af.png -------------------------------------------------------------------------------- /source/masterserver/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ag.png -------------------------------------------------------------------------------- /source/masterserver/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ai.png -------------------------------------------------------------------------------- /source/masterserver/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/al.png -------------------------------------------------------------------------------- /source/masterserver/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/am.png -------------------------------------------------------------------------------- /source/masterserver/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/an.png -------------------------------------------------------------------------------- /source/masterserver/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ao.png -------------------------------------------------------------------------------- /source/masterserver/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ar.png -------------------------------------------------------------------------------- /source/masterserver/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/as.png -------------------------------------------------------------------------------- /source/masterserver/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/at.png -------------------------------------------------------------------------------- /source/masterserver/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/au.png -------------------------------------------------------------------------------- /source/masterserver/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/aw.png -------------------------------------------------------------------------------- /source/masterserver/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ax.png -------------------------------------------------------------------------------- /source/masterserver/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/az.png -------------------------------------------------------------------------------- /source/masterserver/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ba.png -------------------------------------------------------------------------------- /source/masterserver/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bb.png -------------------------------------------------------------------------------- /source/masterserver/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bd.png -------------------------------------------------------------------------------- /source/masterserver/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/be.png -------------------------------------------------------------------------------- /source/masterserver/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bf.png -------------------------------------------------------------------------------- /source/masterserver/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bg.png -------------------------------------------------------------------------------- /source/masterserver/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bh.png -------------------------------------------------------------------------------- /source/masterserver/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bi.png -------------------------------------------------------------------------------- /source/masterserver/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bj.png -------------------------------------------------------------------------------- /source/masterserver/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bm.png -------------------------------------------------------------------------------- /source/masterserver/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bn.png -------------------------------------------------------------------------------- /source/masterserver/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bo.png -------------------------------------------------------------------------------- /source/masterserver/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/br.png -------------------------------------------------------------------------------- /source/masterserver/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bs.png -------------------------------------------------------------------------------- /source/masterserver/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bt.png -------------------------------------------------------------------------------- /source/masterserver/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bv.png -------------------------------------------------------------------------------- /source/masterserver/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bw.png -------------------------------------------------------------------------------- /source/masterserver/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/by.png -------------------------------------------------------------------------------- /source/masterserver/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/bz.png -------------------------------------------------------------------------------- /source/masterserver/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ca.png -------------------------------------------------------------------------------- /source/masterserver/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cc.png -------------------------------------------------------------------------------- /source/masterserver/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cd.png -------------------------------------------------------------------------------- /source/masterserver/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cf.png -------------------------------------------------------------------------------- /source/masterserver/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cg.png -------------------------------------------------------------------------------- /source/masterserver/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ch.png -------------------------------------------------------------------------------- /source/masterserver/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ci.png -------------------------------------------------------------------------------- /source/masterserver/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ck.png -------------------------------------------------------------------------------- /source/masterserver/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cl.png -------------------------------------------------------------------------------- /source/masterserver/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cm.png -------------------------------------------------------------------------------- /source/masterserver/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cn.png -------------------------------------------------------------------------------- /source/masterserver/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/co.png -------------------------------------------------------------------------------- /source/masterserver/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cr.png -------------------------------------------------------------------------------- /source/masterserver/flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cs.png -------------------------------------------------------------------------------- /source/masterserver/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cu.png -------------------------------------------------------------------------------- /source/masterserver/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cv.png -------------------------------------------------------------------------------- /source/masterserver/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cx.png -------------------------------------------------------------------------------- /source/masterserver/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cy.png -------------------------------------------------------------------------------- /source/masterserver/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/cz.png -------------------------------------------------------------------------------- /source/masterserver/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/de.png -------------------------------------------------------------------------------- /source/masterserver/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/dj.png -------------------------------------------------------------------------------- /source/masterserver/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/dk.png -------------------------------------------------------------------------------- /source/masterserver/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/dm.png -------------------------------------------------------------------------------- /source/masterserver/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/do.png -------------------------------------------------------------------------------- /source/masterserver/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/dz.png -------------------------------------------------------------------------------- /source/masterserver/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ec.png -------------------------------------------------------------------------------- /source/masterserver/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ee.png -------------------------------------------------------------------------------- /source/masterserver/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/eg.png -------------------------------------------------------------------------------- /source/masterserver/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/eh.png -------------------------------------------------------------------------------- /source/masterserver/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/er.png -------------------------------------------------------------------------------- /source/masterserver/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/es.png -------------------------------------------------------------------------------- /source/masterserver/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/et.png -------------------------------------------------------------------------------- /source/masterserver/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/fi.png -------------------------------------------------------------------------------- /source/masterserver/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/fj.png -------------------------------------------------------------------------------- /source/masterserver/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/fk.png -------------------------------------------------------------------------------- /source/masterserver/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/fm.png -------------------------------------------------------------------------------- /source/masterserver/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/fo.png -------------------------------------------------------------------------------- /source/masterserver/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/fr.png -------------------------------------------------------------------------------- /source/masterserver/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ga.png -------------------------------------------------------------------------------- /source/masterserver/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gb.png -------------------------------------------------------------------------------- /source/masterserver/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gd.png -------------------------------------------------------------------------------- /source/masterserver/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ge.png -------------------------------------------------------------------------------- /source/masterserver/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gf.png -------------------------------------------------------------------------------- /source/masterserver/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gh.png -------------------------------------------------------------------------------- /source/masterserver/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gi.png -------------------------------------------------------------------------------- /source/masterserver/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gl.png -------------------------------------------------------------------------------- /source/masterserver/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gm.png -------------------------------------------------------------------------------- /source/masterserver/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gn.png -------------------------------------------------------------------------------- /source/masterserver/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gp.png -------------------------------------------------------------------------------- /source/masterserver/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gq.png -------------------------------------------------------------------------------- /source/masterserver/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gr.png -------------------------------------------------------------------------------- /source/masterserver/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gs.png -------------------------------------------------------------------------------- /source/masterserver/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gt.png -------------------------------------------------------------------------------- /source/masterserver/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gu.png -------------------------------------------------------------------------------- /source/masterserver/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gw.png -------------------------------------------------------------------------------- /source/masterserver/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/gy.png -------------------------------------------------------------------------------- /source/masterserver/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/hk.png -------------------------------------------------------------------------------- /source/masterserver/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/hm.png -------------------------------------------------------------------------------- /source/masterserver/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/hn.png -------------------------------------------------------------------------------- /source/masterserver/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/hr.png -------------------------------------------------------------------------------- /source/masterserver/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ht.png -------------------------------------------------------------------------------- /source/masterserver/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/hu.png -------------------------------------------------------------------------------- /source/masterserver/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/id.png -------------------------------------------------------------------------------- /source/masterserver/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ie.png -------------------------------------------------------------------------------- /source/masterserver/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/il.png -------------------------------------------------------------------------------- /source/masterserver/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/in.png -------------------------------------------------------------------------------- /source/masterserver/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/io.png -------------------------------------------------------------------------------- /source/masterserver/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/iq.png -------------------------------------------------------------------------------- /source/masterserver/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ir.png -------------------------------------------------------------------------------- /source/masterserver/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/is.png -------------------------------------------------------------------------------- /source/masterserver/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/it.png -------------------------------------------------------------------------------- /source/masterserver/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/jm.png -------------------------------------------------------------------------------- /source/masterserver/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/jo.png -------------------------------------------------------------------------------- /source/masterserver/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/jp.png -------------------------------------------------------------------------------- /source/masterserver/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ke.png -------------------------------------------------------------------------------- /source/masterserver/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/kg.png -------------------------------------------------------------------------------- /source/masterserver/flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/kh.png -------------------------------------------------------------------------------- /source/masterserver/flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ki.png -------------------------------------------------------------------------------- /source/masterserver/flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/km.png -------------------------------------------------------------------------------- /source/masterserver/flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/kn.png -------------------------------------------------------------------------------- /source/masterserver/flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/kp.png -------------------------------------------------------------------------------- /source/masterserver/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/kr.png -------------------------------------------------------------------------------- /source/masterserver/flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/kw.png -------------------------------------------------------------------------------- /source/masterserver/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ky.png -------------------------------------------------------------------------------- /source/masterserver/flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/kz.png -------------------------------------------------------------------------------- /source/masterserver/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/la.png -------------------------------------------------------------------------------- /source/masterserver/flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/lb.png -------------------------------------------------------------------------------- /source/masterserver/flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/lc.png -------------------------------------------------------------------------------- /source/masterserver/flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/li.png -------------------------------------------------------------------------------- /source/masterserver/flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/lk.png -------------------------------------------------------------------------------- /source/masterserver/flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/lr.png -------------------------------------------------------------------------------- /source/masterserver/flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ls.png -------------------------------------------------------------------------------- /source/masterserver/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/lt.png -------------------------------------------------------------------------------- /source/masterserver/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/lu.png -------------------------------------------------------------------------------- /source/masterserver/flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/lv.png -------------------------------------------------------------------------------- /source/masterserver/flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ly.png -------------------------------------------------------------------------------- /source/masterserver/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ma.png -------------------------------------------------------------------------------- /source/masterserver/flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mc.png -------------------------------------------------------------------------------- /source/masterserver/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/md.png -------------------------------------------------------------------------------- /source/masterserver/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/me.png -------------------------------------------------------------------------------- /source/masterserver/flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mg.png -------------------------------------------------------------------------------- /source/masterserver/flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mh.png -------------------------------------------------------------------------------- /source/masterserver/flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mk.png -------------------------------------------------------------------------------- /source/masterserver/flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ml.png -------------------------------------------------------------------------------- /source/masterserver/flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mm.png -------------------------------------------------------------------------------- /source/masterserver/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mn.png -------------------------------------------------------------------------------- /source/masterserver/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mo.png -------------------------------------------------------------------------------- /source/masterserver/flags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mp.png -------------------------------------------------------------------------------- /source/masterserver/flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mq.png -------------------------------------------------------------------------------- /source/masterserver/flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mr.png -------------------------------------------------------------------------------- /source/masterserver/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ms.png -------------------------------------------------------------------------------- /source/masterserver/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mt.png -------------------------------------------------------------------------------- /source/masterserver/flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mu.png -------------------------------------------------------------------------------- /source/masterserver/flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mv.png -------------------------------------------------------------------------------- /source/masterserver/flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mw.png -------------------------------------------------------------------------------- /source/masterserver/flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mx.png -------------------------------------------------------------------------------- /source/masterserver/flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/my.png -------------------------------------------------------------------------------- /source/masterserver/flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/mz.png -------------------------------------------------------------------------------- /source/masterserver/flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/na.png -------------------------------------------------------------------------------- /source/masterserver/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/nc.png -------------------------------------------------------------------------------- /source/masterserver/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ne.png -------------------------------------------------------------------------------- /source/masterserver/flags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/nf.png -------------------------------------------------------------------------------- /source/masterserver/flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ng.png -------------------------------------------------------------------------------- /source/masterserver/flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ni.png -------------------------------------------------------------------------------- /source/masterserver/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/nl.png -------------------------------------------------------------------------------- /source/masterserver/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/no.png -------------------------------------------------------------------------------- /source/masterserver/flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/np.png -------------------------------------------------------------------------------- /source/masterserver/flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/nr.png -------------------------------------------------------------------------------- /source/masterserver/flags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/nu.png -------------------------------------------------------------------------------- /source/masterserver/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/nz.png -------------------------------------------------------------------------------- /source/masterserver/flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/om.png -------------------------------------------------------------------------------- /source/masterserver/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pa.png -------------------------------------------------------------------------------- /source/masterserver/flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pe.png -------------------------------------------------------------------------------- /source/masterserver/flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pf.png -------------------------------------------------------------------------------- /source/masterserver/flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pg.png -------------------------------------------------------------------------------- /source/masterserver/flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ph.png -------------------------------------------------------------------------------- /source/masterserver/flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pk.png -------------------------------------------------------------------------------- /source/masterserver/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pl.png -------------------------------------------------------------------------------- /source/masterserver/flags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pm.png -------------------------------------------------------------------------------- /source/masterserver/flags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pn.png -------------------------------------------------------------------------------- /source/masterserver/flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pr.png -------------------------------------------------------------------------------- /source/masterserver/flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ps.png -------------------------------------------------------------------------------- /source/masterserver/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pt.png -------------------------------------------------------------------------------- /source/masterserver/flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/pw.png -------------------------------------------------------------------------------- /source/masterserver/flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/py.png -------------------------------------------------------------------------------- /source/masterserver/flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/qa.png -------------------------------------------------------------------------------- /source/masterserver/flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/re.png -------------------------------------------------------------------------------- /source/masterserver/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ro.png -------------------------------------------------------------------------------- /source/masterserver/flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/rs.png -------------------------------------------------------------------------------- /source/masterserver/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ru.png -------------------------------------------------------------------------------- /source/masterserver/flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/rw.png -------------------------------------------------------------------------------- /source/masterserver/flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sa.png -------------------------------------------------------------------------------- /source/masterserver/flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sb.png -------------------------------------------------------------------------------- /source/masterserver/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sc.png -------------------------------------------------------------------------------- /source/masterserver/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sd.png -------------------------------------------------------------------------------- /source/masterserver/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/se.png -------------------------------------------------------------------------------- /source/masterserver/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sg.png -------------------------------------------------------------------------------- /source/masterserver/flags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sh.png -------------------------------------------------------------------------------- /source/masterserver/flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/si.png -------------------------------------------------------------------------------- /source/masterserver/flags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sj.png -------------------------------------------------------------------------------- /source/masterserver/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sk.png -------------------------------------------------------------------------------- /source/masterserver/flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sl.png -------------------------------------------------------------------------------- /source/masterserver/flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sm.png -------------------------------------------------------------------------------- /source/masterserver/flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sn.png -------------------------------------------------------------------------------- /source/masterserver/flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/so.png -------------------------------------------------------------------------------- /source/masterserver/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sr.png -------------------------------------------------------------------------------- /source/masterserver/flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/st.png -------------------------------------------------------------------------------- /source/masterserver/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sv.png -------------------------------------------------------------------------------- /source/masterserver/flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sy.png -------------------------------------------------------------------------------- /source/masterserver/flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/sz.png -------------------------------------------------------------------------------- /source/masterserver/flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tc.png -------------------------------------------------------------------------------- /source/masterserver/flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/td.png -------------------------------------------------------------------------------- /source/masterserver/flags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tf.png -------------------------------------------------------------------------------- /source/masterserver/flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tg.png -------------------------------------------------------------------------------- /source/masterserver/flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/th.png -------------------------------------------------------------------------------- /source/masterserver/flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tj.png -------------------------------------------------------------------------------- /source/masterserver/flags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tk.png -------------------------------------------------------------------------------- /source/masterserver/flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tl.png -------------------------------------------------------------------------------- /source/masterserver/flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tm.png -------------------------------------------------------------------------------- /source/masterserver/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tn.png -------------------------------------------------------------------------------- /source/masterserver/flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/to.png -------------------------------------------------------------------------------- /source/masterserver/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tr.png -------------------------------------------------------------------------------- /source/masterserver/flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tt.png -------------------------------------------------------------------------------- /source/masterserver/flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tv.png -------------------------------------------------------------------------------- /source/masterserver/flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tw.png -------------------------------------------------------------------------------- /source/masterserver/flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/tz.png -------------------------------------------------------------------------------- /source/masterserver/flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ua.png -------------------------------------------------------------------------------- /source/masterserver/flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ug.png -------------------------------------------------------------------------------- /source/masterserver/flags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/um.png -------------------------------------------------------------------------------- /source/masterserver/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/us.png -------------------------------------------------------------------------------- /source/masterserver/flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/uy.png -------------------------------------------------------------------------------- /source/masterserver/flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/uz.png -------------------------------------------------------------------------------- /source/masterserver/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/va.png -------------------------------------------------------------------------------- /source/masterserver/flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/vc.png -------------------------------------------------------------------------------- /source/masterserver/flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ve.png -------------------------------------------------------------------------------- /source/masterserver/flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/vg.png -------------------------------------------------------------------------------- /source/masterserver/flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/vi.png -------------------------------------------------------------------------------- /source/masterserver/flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/vn.png -------------------------------------------------------------------------------- /source/masterserver/flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/vu.png -------------------------------------------------------------------------------- /source/masterserver/flags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/wf.png -------------------------------------------------------------------------------- /source/masterserver/flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ws.png -------------------------------------------------------------------------------- /source/masterserver/flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/ye.png -------------------------------------------------------------------------------- /source/masterserver/flags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/yt.png -------------------------------------------------------------------------------- /source/masterserver/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/za.png -------------------------------------------------------------------------------- /source/masterserver/flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/zm.png -------------------------------------------------------------------------------- /source/masterserver/flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/flags/zw.png -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_ACCEPT.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_CLOSED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_INVAL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_MAX.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_NOMEM.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_OK.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_READ.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_RESOLV.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_SOCKET.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_STATE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_WRITE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_OPTION_STRIPNICKS.3: -------------------------------------------------------------------------------- 1 | .so man3/options.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_BADMASK.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_BOUNCE.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_CREATED.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_MYINFO.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WELCOME.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_channel.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_connect.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_ctcp_action.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_ctcp_rep.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_ctcp_req.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_numeric.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_privmsg.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_unknown.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_cmd_channel_mode.3: -------------------------------------------------------------------------------- 1 | .so man3/ircmd_ch.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_color_convert_to_mirc.3: -------------------------------------------------------------------------------- 1 | .so man3/colors.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_color_strip_from_mirc.3: -------------------------------------------------------------------------------- 1 | .so man3/colors.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_dcc_session_t.3: -------------------------------------------------------------------------------- 1 | .so man3/libircclient.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_destroy_session.3: -------------------------------------------------------------------------------- 1 | .so man3/initclose.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_eventcode_callback_t.3: -------------------------------------------------------------------------------- 1 | .so man3/events.3 2 | -------------------------------------------------------------------------------- /mk/linux/mojosetup/libfetch/fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/libfetch/fetch.c -------------------------------------------------------------------------------- /mk/linux/mojosetup/libfetch/fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/libfetch/fetch.h -------------------------------------------------------------------------------- /mk/linux/mojosetup/libfetch/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/libfetch/http.c -------------------------------------------------------------------------------- /mk/linux/mojosetup/lua/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/lua/etc/lua.ico -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_CONNECT.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_NODCCSEND.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_NOTFOUND.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_OPENFILE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_TERMINATED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_ERR_TIMEOUT.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_errors.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_BANLISTFULL.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOCHANMODES.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_RESTRICTED.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_EXCEPTLIST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_INVITELIST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_SERVLIST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_SERVLISTEND.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACECLASS.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACEEND.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACESERVICE.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRYAGAIN.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_UNIQOPIS.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_YOURESERVICE.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_YOURHOST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_channel_notice.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_dcc_chat_req.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/event_dcc_send_req.3: -------------------------------------------------------------------------------- 1 | .so man3/irc_callbacks_t.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_add_select_descriptors.3: -------------------------------------------------------------------------------- 1 | .so man3/running.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_color_convert_from_mirc.3: -------------------------------------------------------------------------------- 1 | .so man3/colors.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/irc_process_select_descriptors.3: -------------------------------------------------------------------------------- 1 | .so man3/running.3 2 | -------------------------------------------------------------------------------- /source/tools/glexemel/g3d_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/glexemel/g3d_logo.png -------------------------------------------------------------------------------- /mk/linux/mojosetup/libfetch/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/libfetch/README.txt -------------------------------------------------------------------------------- /mk/linux/mojosetup/libfetch/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/libfetch/common.c -------------------------------------------------------------------------------- /mk/linux/mojosetup/libfetch/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/libfetch/common.h -------------------------------------------------------------------------------- /mk/linux/mojosetup/lua/test/echo.lua: -------------------------------------------------------------------------------- 1 | -- echo command line arguments 2 | 3 | for i=0,table.getn(arg) do 4 | print(i,arg[i]) 5 | end 6 | -------------------------------------------------------------------------------- /mk/linux/mojosetup/lua/test/hello.lua: -------------------------------------------------------------------------------- 1 | -- the first program in every language 2 | 3 | io.write("Hello world, from ",_VERSION,"!\n") 4 | -------------------------------------------------------------------------------- /mk/linux/mojosetup/lua/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/lua/test/life.lua -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_KEYSET.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOLOGIN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOMOTD.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOORIGIN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOSUCHSERVICE.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_UNAVAILRESOURCE.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_UNIQOPPRIVSNEEDED.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_YOUWILLBEBANNED.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ADMINME.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_AWAY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_BANLIST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFEXCEPTLIST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFINVITELIST.3: -------------------------------------------------------------------------------- 1 | .so man3/rfcnumbers.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFWHO.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_INFO.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_INVITING.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ISON.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LINKS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LIST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LISTEND.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LUSERME.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LUSEROP.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_MOTD.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_NAMREPLY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_NOTOPIC.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_NOUSERS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_NOWAWAY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TIME.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TOPIC.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACELOG.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_UMODEIS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_UNAWAY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_USERHOST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_USERS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_VERSION.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOREPLY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/masterserver/images/game_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/images/game_icon.png -------------------------------------------------------------------------------- /source/masterserver/images/megaglest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/masterserver/images/megaglest.ico -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_BADCHANMASK.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_BADCHANNELKEY.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_CHANNELISFULL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_FILEERROR.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NICKCOLLISION.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NICKNAMEINUSE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOADMININFO.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOOPERHOST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOPERMFORHOST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOPRIVILEGES.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NORECIPIENT.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOSUCHCHANNEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOSUCHNICK.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOSUCHSERVER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOTEXTTOSEND.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOTONCHANNEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOTOPLEVEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NOTREGISTERED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_UNKNOWNMODE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_USERONCHANNEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_USERSDISABLED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_WASNOSUCHNICK.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_WILDTOPLEVEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ADMINEMAIL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ADMINLOC1.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ADMINLOC2.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_CHANNELMODEIS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFBANLIST.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFINFO.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFLINKS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFMOTD.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFNAMES.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFSTATS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFUSERS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFWHOIS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_ENDOFWHOWAS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LISTSTART.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LUSERCHANNELS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LUSERCLIENT.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_LUSERUNKNOWN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_MOTDSTART.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_REHASHING.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSCLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSCOMMANDS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSHLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSILINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSKLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSLINKINFO.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSLLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSNLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSOLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSUPTIME.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_STATSYLINE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_SUMMONING.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACELINK.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACENEWTYPE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACEOPERATOR.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACESERVER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACEUNKNOWN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACEUSER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_USERSSTART.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOISCHANNELS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOISIDLE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOISOPERATOR.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOISSERVER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOISUSER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_WHOWASUSER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_YOUREOPER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_ALREADYREGISTRED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_BANNEDFROMCHAN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_CANNOTSENDTOCHAN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_CANTKILLSERVER.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_CHANOPRIVSNEEDED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_ERRONEUSNICKNAME.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_INVITEONLYCHAN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NEEDMOREPARAMS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_NONICKNAMEGIVEN.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_PASSWDMISMATCH.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_SUMMONDISABLED.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_TOOMANYCHANNELS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_TOOMANYTARGETS.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_UMODEUNKNOWNFLAG.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_UNKNOWNCOMMAND.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_USERNOTINCHANNEL.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_USERSDONTMATCH.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_ERR_YOUREBANNEDCREEP.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACECONNECTING.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/man/man3/LIBIRC_RFC_RPL_TRACEHANDSHAKE.3: -------------------------------------------------------------------------------- 1 | .so man3/libirc_rfcnumeric.h.3 2 | -------------------------------------------------------------------------------- /mk/shared/servers.ini: -------------------------------------------------------------------------------- 1 | ; === propertyMap File === 2 | 3 | General=50.115.163.66 4 | Fakir=54.207.6.180 5 | Vega=23.94.101.97 6 | This computer=127.0.0.1 7 | -------------------------------------------------------------------------------- /mk/windoze/Installer/megaglestinstallscreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/windoze/Installer/megaglestinstallscreen.jpg -------------------------------------------------------------------------------- /mk/fedora/megaglest-rpm-meta/SOURCES/megaglest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/fedora/megaglest-rpm-meta/SOURCES/megaglest.png -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/favicon.ico -------------------------------------------------------------------------------- /mk/linux/glest-dev.ini: -------------------------------------------------------------------------------- 1 | DataPath=$APPLICATIONPATH/../../data/glest_game/ 2 | ServerListPath=$APPLICATIONPATH/../shared/ 3 | GlestKeysIniPath=$APPLICATIONPATH/../shared/ 4 | -------------------------------------------------------------------------------- /mk/windoze/glest-dev.ini: -------------------------------------------------------------------------------- 1 | DataPath=$APPLICATIONPATH\..\..\data\glest_game\ 2 | ServerListPath=$APPLICATIONPATH\..\shared\ 3 | GlestKeysIniPath=$APPLICATIONPATH\..\shared\ 4 | -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/media/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/media/favicon.ico -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/doc/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/doc/tab_b.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/doc/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/doc/tab_l.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/doc/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/doc/tab_r.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/doc/html/tab_b.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/doc/html/tab_l.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/doc/html/tab_r.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/doc/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/doc/doxygen.png -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/doc/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/doc/html/doxygen.png -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/cocoa/doc/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/cocoa/doc/html/tab_b.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/cocoa/doc/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/cocoa/doc/html/tab_l.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/cocoa/doc/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/cocoa/doc/html/tab_r.gif -------------------------------------------------------------------------------- /mk/linux/mojosetup/megaglest-installer/meta/glestforumsheader.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/megaglest-installer/meta/glestforumsheader.bmp -------------------------------------------------------------------------------- /mk/linux/mojosetup/megaglest-installer/meta/glestforumsheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/megaglest-installer/meta/glestforumsheader.jpg -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/cocoa/doc/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/cocoa/doc/html/doxygen.png -------------------------------------------------------------------------------- /mk/windoze/NetworkThrottleFix.reg: -------------------------------------------------------------------------------- 1 | REGEDIT4 2 | 3 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile] 4 | "NetworkThrottlingIndex"=dword:ffffffff 5 | 6 | -------------------------------------------------------------------------------- /source/shared_lib/sources/platform/miniupnpc/msvc/miniupnpc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/platform/miniupnpc/msvc/miniupnpc.vcproj -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/media/datatables/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/media/datatables/sort_asc.png -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/media/datatables/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/media/datatables/sort_both.png -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/media/datatables/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/media/datatables/sort_desc.png -------------------------------------------------------------------------------- /mk/linux/mojosetup/megaglest-installer/meta/megaglestinstallscreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/megaglest-installer/meta/megaglestinstallscreen.jpg -------------------------------------------------------------------------------- /source/shared_lib/sources/platform/miniupnpc/msvc/upnpc-static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/platform/miniupnpc/msvc/upnpc-static.vcproj -------------------------------------------------------------------------------- /mk/linux/mojosetup/lua/README: -------------------------------------------------------------------------------- 1 | 2 | This is Lua 5.2.1, released on 08 Jun 2012. 3 | 4 | For installation instructions, license details, and 5 | further information about Lua, see doc/readme.html. 6 | 7 | -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/media/datatables/back_disabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/media/datatables/back_disabled.jpg -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/media/datatables/back_enabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/media/datatables/back_enabled.jpg -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/media/datatables/forward_disabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/media/datatables/forward_disabled.jpg -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/media/datatables/forward_enabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/media/datatables/forward_enabled.jpg -------------------------------------------------------------------------------- /mk/linux/mojosetup/misc/MacAppBundleSkeleton/Contents/Resources/mojosetup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/mk/linux/mojosetup/misc/MacAppBundleSkeleton/Contents/Resources/mojosetup.icns -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/cocoa/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/cocoa/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/media/datatables/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/media/datatables/sort_asc_disabled.png -------------------------------------------------------------------------------- /source/tools/convert_faction_xml2html/media/datatables/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/tools/convert_faction_xml2html/media/datatables/sort_desc_disabled.png -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/doc/html/tab_b.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/doc/html/tab_l.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/doc/html/tab_r.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/cocoa/IRCClient.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/cocoa/IRCClient.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /source/shared_lib/sources/platform/miniupnpc/external-ip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # $Id: external-ip.sh,v 1.1 2010/08/05 12:57:41 nanard Exp $ 3 | # (c) 2010 Reuben Hawkins 4 | upnpc -s | grep ExternalIPAddress | sed 's/[^0-9\.]//g' 5 | -------------------------------------------------------------------------------- /mk/windoze/mg_build_breakpad_symbols.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python.exe symbolstore.py ..\..\source\windows_deps\google-breakpad\trunk\src\tools\windows\binaries\dump_syms.exe .\windows_symbols ..\..\data\glest_game\megaglest.exe 3 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/doc/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/doc/html/doxygen.png -------------------------------------------------------------------------------- /mk/linux/mojosetup/lua/test/printf.lua: -------------------------------------------------------------------------------- 1 | -- an implementation of printf 2 | 3 | function printf(...) 4 | io.write(string.format(...)) 5 | end 6 | 7 | printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date()) 8 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/cocoa/doc/html/interface_i_r_c_client_channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/cocoa/doc/html/interface_i_r_c_client_channel.png -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/cocoa/doc/html/interface_i_r_c_client_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/cocoa/doc/html/interface_i_r_c_client_session.png -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/tab_b.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/tab_l.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/tab_r.gif -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/cocoa/IRCClient_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'IRCClient' target in the 'IRCClient' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /mk/linux/mojosetup/lua/test/env.lua: -------------------------------------------------------------------------------- 1 | -- read environment variables as if they were global variables 2 | 3 | local f=function (t,i) return os.getenv(i) end 4 | setmetatable(getfenv(),{__index=f}) 5 | 6 | -- an example 7 | print(a,USER,PATH) 8 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/doxygen.png -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/THANKS: -------------------------------------------------------------------------------- 1 | I'd like to thank those people, who greatly helped to develop libircclient: 2 | 3 | - olifozzy (olifozzy@users.sourceforge.net) for great bug reports. 4 | - Lothar May for adding and testing IPv6 support. 5 | -------------------------------------------------------------------------------- /mk/fedora/megaglest-rpm-meta/SOURCES/megaglest.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=MegaGlest 4 | Exec=megaglest 5 | Icon=megaglest 6 | Categories=Game;StrategyGame; 7 | Comment=pre-Renaissance Europe strategy game 8 | X-SuSE-translate=false 9 | -------------------------------------------------------------------------------- /mk/linux/megaglest_editor.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Categories=Game;StrategyGame; 3 | Comment=Map Editor 4 | Name=MegaGlest Map Editor 5 | Icon=megaglest 6 | Exec=megaglest_editor 7 | Terminal=false 8 | Type=Application 9 | Keywords=map;editor; 10 | 11 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /mk/linux/megaglest.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Categories=Game;StrategyGame; 3 | Comment=A real time strategy game. 4 | Name=MegaGlest 5 | Icon=megaglest 6 | Exec=megaglest 7 | Terminal=false 8 | Type=Application 9 | Keywords=realtime;strategy;game; 10 | 11 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/IRCClient_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'IRCClient' target in the 'IRCClient' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /source/masterserver/index.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/IRCClient.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/IRCClient.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /mk/linux/megaglest_g3dviewer.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Categories=Game;StrategyGame; 3 | Comment=G3d Model Viewer 4 | Name=MegaGlest Model Viewer 5 | Icon=megaglest 6 | Exec=megaglest_g3dviewer 7 | Terminal=false 8 | Type=Application 9 | Keywords=model;viewer; 10 | 11 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/THANKS: -------------------------------------------------------------------------------- 1 | I'd like to thank those people, who greatly helped to develop libircclient: 2 | 3 | - olifozzy (olifozzy@users.sourceforge.net) for great bug reports. 4 | - Lothar May for adding and testing IPv6 support. 5 | -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/interface_i_r_c_client_channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/interface_i_r_c_client_channel.png -------------------------------------------------------------------------------- /source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/interface_i_r_c_client_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/megaglest-source/develop/source/shared_lib/sources/libircclient/build/source/libircclient/cocoa/doc/html/interface_i_r_c_client_session.png -------------------------------------------------------------------------------- /mk/linux/mojosetup/lua/test/luac.lua: -------------------------------------------------------------------------------- 1 | -- bare-bones luac in Lua 2 | -- usage: lua luac.lua file.lua 3 | 4 | assert(arg[1]~=nil and arg[2]==nil,"usage: lua luac.lua file.lua") 5 | f=assert(io.open("luac.out","wb")) 6 | assert(f:write(string.dump(assert(loadfile(arg[1]))))) 7 | assert(f:close()) 8 | -------------------------------------------------------------------------------- /mk/linux/mojosetup/liblzma/common/tuklib_config.h: -------------------------------------------------------------------------------- 1 | #ifdef HAVE_CONFIG_H 2 | # include "sysdefs.h" 3 | #else 4 | # include 5 | # include 6 | # include 7 | #endif 8 | 9 | // 10 | // Copyright 2012 Lasse Collin and Joachim Henke 11 | // Public Domain 12 | // 13 | -------------------------------------------------------------------------------- /source/shared_lib/sources/platform/miniupnpc/mingw32make.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make -f Makefile.mingw %1 2 | @if errorlevel 1 goto end 3 | @if not exist upnpc-static.exe goto end 4 | @strip upnpc-static.exe 5 | @upx --best upnpc-static.exe 6 | @strip upnpc-shared.exe 7 | @upx --best upnpc-shared.exe 8 | :end 9 | -------------------------------------------------------------------------------- /mk/linux/mojosetup/lua/test/fibfor.lua: -------------------------------------------------------------------------------- 1 | -- example of for with generator functions 2 | 3 | function generatefib (n) 4 | return coroutine.wrap(function () 5 | local a,b = 1, 1 6 | while a <= n do 7 | coroutine.yield(a) 8 | a, b = b, a+b 9 | end 10 | end) 11 | end 12 | 13 | for i in generatefib(1000) do print(i) end 14 | -------------------------------------------------------------------------------- /mk/linux/mojosetup/lua/test/readonly.lua: -------------------------------------------------------------------------------- 1 | -- make global variables readonly 2 | 3 | local f=function (t,i) error("cannot redefine global variable `"..i.."'",2) end 4 | local g={} 5 | local G=getfenv() 6 | setmetatable(g,{__index=G,__newindex=f}) 7 | setfenv(1,g) 8 | 9 | -- an example 10 | rawset(g,"x",3) 11 | x=2 12 | y=1 -- cannot redefine `y' 13 | --------------------------------------------------------------------------------