Thank you Samuel and Dastgir for replying. I am using the ones that was posted but I keep getting error messages with addBattleConf
Error afk.c:
afk.c:128:48: error: macro "addBattleConf" requires 3 arguments, but only 2 given
afk.c: In function 'server_preinit':
afk.c:128: error: 'addBattleConf' undeclared (first use in this function)
afk.c:128: error: (Each undeclared identifier is reported only once
afk.c:128: error: for each function it appears in.)
make[1]: *** [../../plugins/afk.so] Error 1
My plugins.conf:
*/
plugins_list: [
/* Enable HPMHooking when plugins in use rely on Hooking */
"HPMHooking",
"noitem",
"itemmap",
"afk",
"costumeitem",
"Critical-Magic",
"ExtendedVending",
"whosell",
]
My Makefile.in
# Note: DO NOT include the .c extension!!! #
MYPLUGINS = noitem itemmap afk costumeitem Critical-Magic ExtendedVending whosell
#
Even if I removed afk.c, now I get this:
costumeitem.c:334:48: error: macro "addBattleConf" requires 3 arguments, but only 2 given
costumeitem.c: In function 'server_preinit':
costumeitem.c:334: error: 'addBattleConf' undeclared (first use in this function)
costumeitem.c:334: error: (Each undeclared identifier is reported only once
costumeitem.c:334: error: for each function it appears in.)
make[1]: *** [../../plugins/costumeitem.so] Error 1
It's always the addBattleConf... I don't know what I should do =/ Thanks for helping!