Thursday, July 9, 2009

Anope module help (IRC Services - C programming)?

I'm trying to develop a module for anope that will allow me to put my users into different 'clans' I'm pretty intermediate with C and I know the Anope API pretty well, but I just need to know how I would make the services client I created (ClanServ) save what clan they're in and retrieve the data when I need it again.

Anope module help (IRC Services - C programming)?
Start with the data part. Since there's going to be a number of users around, a database might be useful. You don't need a full blown DBMS like MySQL or PGSQL or Oracle, so Sqlite should do (or roll your own with berkeley DB).





Effectively, saving means updating the database, and retrieving means grabbing the information from the database. If you haven't worked with a database before, you may want to start with the wikipedia entry to get an idea of what it entails. SQLite is a very lightweight database, and Berkeley DB is beyond lightweight, it's the raw data logic (key and data pairs).
Reply:Does not look trivial. May be you can contact a freelancer at websites like http://getafreelnacer.com/


No comments:

Post a Comment