Jump to content

leloush

Members
  • Content Count

    269
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by leloush


  1. i think this one is ur talking about 

     

    but this is temporary only.. when logged out it gone..

     

     

    	OnSampleKill:			set @Samplepoints,@Samplepoints+1; 

     

    den follow by this

     

     

    			dispbottom "You have "+@Samplepoints+" point(s)";			end; 

    every kill of monster with a label of OnSampleKill will recieve +1 Samplepoints points.. dunno just get a copy on wiki.. wiki knows alot more than i do :P


  2. ^ Okay,

     

    try to replace This

    	addAtcommand("autoatk",autoatk)

    to

    	if( HPMi->addCommand != NULL ) {//link our '@autoatk' command		HPMi->addCommand("autoatk",ACMD_A(autoatk));	}

    then recompile your autoattack.c :)

    thank you for the time sir mhal.. now im wondering what should i use .. if ur version or ossi's version because this two diff version are the same.. the only different from these two mods is there's a clif message.. maybe that's the only line im able to understand. :P

     

    thank you again...


  3. whats wrong with this annie.. can u please check the error when compiling(see photo attached) thanks..

     

    outdated topics from eathena or rathena

    this one is more update

     

    Download:

    plugin <-- for those who knows how to install plugin

    or

    patch <-- for those who thinks plugin is pain

    post-2604-0-26765000-1394547528_thumb.png


  4.  

     

    You can now download :)

    sir a question here.. im trying to use this autoattack.. i chose to apply it using .c only coz it doesnt work by just adding on trunk and putting on plugins.conf

     

    kindly check this errors? i just follow the guides in HPM installing.

     

    what rev. you use?

     

    can you provide your src/plugins/sample.c and autoatk.c codes? so that I can compare it..

    im using 12535..

     

    this is my sample.c(from 12535) sir mhal.

    and the autoattack.c is default one (the one u provided in the latest version of autoattack plugins)

    sample.c


  5.  

    yeah i saw this already.. but im using older version.. so it doesnt fit to me.. that's why i used autoattack instead of bot release of goddameit, i want it but i also love the version im using currently even if its too old..

     

     

    btw thanks

    You should really consider updating your Hercules.

    soon i will,

     

    im just waiting for extended vending system update to work with the latest versions. so if this will be available in latest version.. ill move on to the latest version too..  :meow:


  6. yeah i saw this already.. but im using older version.. so it doesnt fit to me.. that's why i used autoattack instead of bot release of goddameit, i want it but i also love the version im using currently even if its too old..

     

     

    btw thanks

     

     

     

    You can now download :)

    sir a question here.. im trying to use this autoattack.. i chose to apply it using .c only coz it doesnt work by just adding on trunk and putting on plugins.conf
     
    kindly check this errors? i just follow the guides in HPM installing.

     

    try this http://herc.ws/board/topic/4821-bot/?p=31176

  7. You can now download :)

    sir a question here.. im trying to use this autoattack.. i chose to apply it using .c only coz it doesnt work by just adding on trunk and putting on plugins.conf

     

    kindly check this errors? i just follow the guides in HPM installing.

    post-2604-0-02697000-1394511630_thumb.png


  8.  

    in other words.. even if its pre-compiled plugins i need to do this? http://herc.ws/wiki/Building_HPM_Plugin_for_MSVC ??

    precompiled plugin is usually in form of .dll or .so, you have to put that in plugins/ folder and edit only plugins.conf, and nothing else.

    but precompiled plugins may not work if hpm is updated, or you are using old version, but plugin is compiled with latest version, it may cause random crash(if it gets loaded).

    thanks for the info sir dast... 

     

     

    well in my case im using 12535 and sure this is old version.. so to apply this plugins imma delete all the files except the autoattack.c which is need to perform in installing/making a plugins... and to be sure also that there is no problem "random crash" would happen..


  9. ah sry i forgot to tell the version im using... im on 12535 such a late late version.. i just loved to use this because it doesnt give me a problem.. just this plugins 

    @ontopic

     

    ill try 

     

     

    @edit

     

    ok i got it now "just by removing the comma in the line where "autoattack" is enabled it reads the attack.dll but what happen next is this

    post-2604-0-79730400-1394467101_thumb.png

    post-2604-0-95553500-1394467104_thumb.png


  10. Shouldn't You Post Error instead of only saying I got some errors in compiling and enabling?

    >.< i just wondering.. coz i just saw a topic that the plugins/pre-compiled plugins is requiring that the plugins folder is up to date.. so i post this instead of my error..

     

     

    ok then ill do it again 1 more time.. then ill upload some screeny to show what's happening.. ill update my post in a bit.

     

     

    @edit btw sir dast.

     

    is pre-compiled plugins really need to follow the steps here? coz like what sir mhalicot said "it is compiled already so no need"..

    http://herc.ws/wiki/Building_HPM_Plugin_for_MSVC

     

     

    @edit

     

    here it is

     

     

    post-2604-0-28248600-1394464834_thumb.png


  11. For enabling autoattack

    //====================================================//=       _   _                     _           //=      | | | |                   | |          //=      | |_| | ___ _ __ ___ _   _| | ___  ___ //=      |  _  |/ _  '__/ __| | | | |/ _ / __|//=      | | | |  __/ | | (__| |_| | |  __/__ //=      _| |_/___|_|  ___|__,_|_|___||___///=                                                  //=            http://herc.ws/board/                        //====================================================//== Topic Discussion ================================//== http://herc.ws/board/topic/549-introducing-hercules-plugin-manager///====================================================//== Description =====================================//The plugin system allows you to create customized scripts //outside of the source. These scripts won't conflict with any //future source updates - think of it as a /conf/import/ for the source. //====================================================/* --------------- 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",]-----------------------------------------Please note that your scripts need to be savedin the .c (source code) extension and placed in the /src/plugin/ folder.-----------------------------------------*/plugins_list: [	/* Enable HPMHooking when plugins in use rely on Hooking */	"HPMHooking",	"autoattack",	//"db2sql",	//"sample",	//"other",]

    This would be plugins.conf, (P.S: File name should be autoattack.dll in order for this to work)

    yes i did.. and i follow carefully the guide in "how to work with HPMetcetc"

     

    also the filename is autoattack.dll also..

     

    i used mhalicot's autoattack plugins.. for testing but i got some errors.. in compiling and enabling in plugins.conf


  12. yes i did uncomment this HPMHooking line

     

    then i add the line which will be the plugins. like "autoattack" for example

     

    but when i try to load the server it throws an error someting like

     

     

    conf/plugins.conf:39 - syntax error

     

    in that error i just uncomment the "HPMHooking"

     

    and im using windows / msvc


  13. Good day, hercs.

     

     

    just want to know what are the things i need for updating my plugins

     

    coz there's alot of good stuff in plugin section but i failed to apply them...

     

     

    i will show my outdated plugins folder/files

     

    sry this is my first time messing with the plugins.

    post-2604-0-08887600-1394438019_thumb.png

    post-2604-0-64882800-1394438021_thumb.png

    post-2604-0-96829400-1394438022_thumb.png


  14. Good day goddameit, im wondering if this will work too in later versions? im doing manual patch at this moment..

     

     

    so i got these lines

     

     

     } while(0)	 switch(type) {	case SC_AUTOATTACK: 

     

     

    and im missing here 

     

     

    	 status->readdb_refine = status_readdb_refine;	 status->readdb_scconfig = status_readdb_scconfig; } 

    so any other way to apply this in later version? coz the line qouted above is missing.. on my later version of svn

×
×
  • Create New...

Important Information

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