Jump to content

fourxhackd

Members
  • Content Count

    28
  • Joined

  • Last visited

  • Days Won

    4

Files posted by fourxhackd

  1. Plugin Automator for Windows

    This program automates some of the tedious manual process of building a plugin into your Hercules server on a Windows Machine.
    It follows the instructions on the Hercules Wiki. From the guide linked, this does steps 1 to 10 of the Old Method (for Windows).
    The requirements are still the same (IDE, etc.). This simply manages the repetitive things that need to be done manually.
    It also performs error checking so that it's newbie friendly.

    What does it do?
    1. Locates `YourProject.c`.
    2. Locates your Hercules folder.
    3. Copies your `YourProject.c` file into your `hercules/src/plugins/` folder. 
    4. Select which visual studio project to use.
    5. Copies the `plugin-sample.vcxproj` template into your own `YourProject.vcxproj`.
    6. Opens the `YourProject.vcxproj` and replace all instances of:
    <ProjectName>plugin-sample</projectname> into 
    <ProjectName>YourProject</projectname> 7. Replaces:
    <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">sample</targetname> into
    <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">YourProject</targetname>
    8. Replace:
     <ClCompile Include="..\src\plugins\sample.c" /> into
     <ClCompile Include="..\src\plugins\YourProject.c" />  
    9. Finally, instructs you to do the remaining things, as specified in the Hercules Wikipedia.
     

    33 downloads

    0 comments

    Updated

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.