how to add plugins?

kerbiii

New member
Messages
342
Points
0
i want to add plugins what do i need to do?

is it just simple as making a

DesktopHerculessrcpluginsautoattack.c

then recompile?

 
i want to add plugins what do i need to do?

is it just simple as making a

DesktopHerculessrcpluginsautoattack.c

then recompile?
 if you are using windows you can use this guide from the wiki

http://herc.ws/wiki/Building_HPM_Plugin_for_MSVC

if you are using Linux

you can follow this guide

http://herc.ws/wiki/Building_HPM_Plugin_for_gcc

be sure to place the .c  file in the SRC/Plugin folder

and add the plugin to the  conf/plugins.conf file

Code:
../conf/plugins.confplugins_list: [	/* Enable HPMHooking when plugins in use rely on Hooking */	//"HPMHooking",	//"db2sql",	//"sample",	//"other",          "CUSTOMPLUGINNAME",] 
 
Last edited by a moderator:
i want to add plugins what do i need to do?

is it just simple as making a

DesktopHerculessrcpluginsautoattack.c

then recompile?
 if you are using windows you can use this guide from the wiki

http://herc.ws/wiki/Building_HPM_Plugin_for_MSVC

if you are using Linux

you can follow this guide

http://herc.ws/wiki/Building_HPM_Plugin_for_gcc

be sure to place the .c  file in the SRC/Plugin folder

and add the plugin to the  conf/plugins.conf file

../conf/plugins.confplugins_list: [ /* Enable HPMHooking when plugins in use rely on Hooking */ //"HPMHooking", //"db2sql", //"sample", //"other", "CUSTOMPLUGINNAME",] 
im using centos5 and it is a running server

 
Last edited by a moderator:
i want to add plugins what do i need to do?

is it just simple as making a

DesktopHerculessrcpluginsautoattack.c

then recompile?
 if you are using windows you can use this guide from the wiki

http://herc.ws/wiki/Building_HPM_Plugin_for_MSVC

if you are using Linux

you can follow this guide

http://herc.ws/wiki/Building_HPM_Plugin_for_gcc

be sure to place the .c  file in the SRC/Plugin folder

and add the plugin to the  conf/plugins.conf file

../conf/plugins.confplugins_list: [ /* Enable HPMHooking when plugins in use rely on Hooking */ //"HPMHooking", //"db2sql", //"sample", //"other", "CUSTOMPLUGINNAME",] 
one last question do i need to add something here?

/* --------------- Format ---------------

After you have listed your plugin(s) in "quotations",

you need to put in a comma, to separate the plugins.

-----------------------------------------

plugins_list: [

"example",

"other",

]
 
 
NVM i got it, it was /* */
 
thanks!!
 
Last edited by a moderator:
Back
Top