[Oppinion]Would anyone use an IRC Interface Module in there hacks?
If I made a module that you would statically link with your project and use to connect to an IRC server, would any of you implement it into your hacks?
I.e
IrcClient* ircClient = new IrcClient(pSomeInterface);
ircClient->connect("some server host", 6667);
ircClient->join("#SomeRoom");
ircClient->PrintUserMessage("Sup nigs");
Then you could have a central IRC server & room everyone using MPGH hacks could join and chat on. I'd have callbacks registered to notify user modules when there has been a user message or an IRC event. Additionally, I could add features such as whether a given hack has been reported as detected or not.
Problems:
Easier for people to implement remote trojans
Someone needs to host the server
I.e
IrcClient* ircClient = new IrcClient(pSomeInterface);
ircClient->connect("some server host", 6667);
ircClient->join("#SomeRoom");
ircClient->PrintUserMessage("Sup nigs");
Then you could have a central IRC server & room everyone using MPGH hacks could join and chat on. I'd have callbacks registered to notify user modules when there has been a user message or an IRC event. Additionally, I could add features such as whether a given hack has been reported as detected or not.
Problems:
Easier for people to implement remote trojans
Someone needs to host the server



) 