Jump to content

bWolfie

Members
  • Content Count

    848
  • Joined

  • Last visited

  • Days Won

    34

Posts posted by bWolfie


  1. 38 minutes ago, fatihmujahid said:

    FUCKING BULLSHIT HERCULES WHY U CHANGE THIS BULLSHIT LIKE THIS? IM DONE WITH THIS HERCULES ILL CHANGE MY SERVER TO RATHENA !!!! EASY TO SETUP

    lol? this is way better than the old way. Splitting cache into individual files makes it so much easier to manage. Those used to the old way (editing map_cache.dat) will struggle at first, but find it a lot better once they get used to it. I was mad when the change was first made, now I am much happier because of it.


  2. 51 minutes ago, Kuroe said:

    Can someone help me with this?
    auraset.PNG.a406d33ef6fad4718385c50c6b1b2e78.PNG

    Make sure you get auraset file from here: https://github.com/dastgirp/HPM-Plugins

    Is your Hercules updated? Since that error only should happen if this code missing from your clif.h

    enum clr_type {
        CLR_OUTSIGHT = 0,
        CLR_DEAD,
        CLR_RESPAWN,
        CLR_TELEPORT,
        CLR_TRICKDEAD,
    };
    


  3. Hello,

    I'm trying to make MATK = 1 for players while on a certain map (my_map). I've had success with all the other stats using this method, but MATK doesn't seem to change.

    static int status_calc_pc__post(int ret, struct map_session_data *sd, enum e_status_calc_opt opt)
    {
    	nullpo_retr(-1, sd);
    	if (strcmpi(map->list[sd->bl.m].name, "my_map") != 0)
    		return ret;
    
    	struct status_data *bstatus = &sd->base_status;
    
    	bstatus->max_hp = 40;
    	bstatus->matk_max = 1;
    	bstatus->matk_min = 1;
    
    	return ret;
    }

  4. Once you get used to it, the new way is far easier. Consider that most of us are running Hercules on Linux, which means we don't face the issues people running local servers on their Windows do (in terms of mapcache).

    A tl;dr guide is

    - Make the 'mapcache' plugin.
    - With the izlude map files you want to use in your /data/ folder, run:

    Linux

    ./map-server --load-plugin mapcache --map izlude

    Windows

    map-server.exe --load-plugin mapcache --map izlude

     

    The errors from those screenshots are happening because that person rebuilt their entire cache without having the required files that resnametable.txt was looking for.

    E.g. you ran ./map-server --load-plugin mapcache --rebuild-mapcache 
    But you didn't have all the map files you needed in the /data/ folder or your GRFs.
    In this screenshot: https://prnt.sc/m4ep8n - pvp_y_1-4 is based on alberta, so you would need all the alberta map files when mapcache is being rebuilt.

    I should probably update that you shouldn't run the rebuild-mapcache option unless it's really necessary.


  5. On 2/2/2019 at 3:53 AM, Inzanity said:

    Can you let me know when you are avaible again?  
    Can also add me on discord Inzanity#1558

    @Myriad

    Hi Inzanity,

    It would depend on the size of the request. I don't have a lot of time to test, so any sort of long script (like an event or quest) would be out of the question. Skill edits and custom functions don't take up too much time, so if you needed anything like that, I could be of service.


  6. @M4karov I already addressed. This plugin is no longer supported.

    On 7/5/2018 at 6:34 PM, Myriad said:

    No offence to the creator Smoke, as he did a great effort putting this all together, but there are outstanding issues which make it not possible to use in a production server.

    Being curious, just did some more testing with it, and the guild system (I believe that's what causes it) actually creates this issue where sometimes the sword cursor doesn't appear (need to refresh to get it to show, seems random chance it actually appears), meaning your players would need to have /ns activated all the time to play. 

    So please, any future posters - unless you know how to edit the plugin (and therefore source code) itself, don't download it.

    And nobody request support as nobody is going to help you.

     


  7. 5 hours ago, Anubis1992 said:

    Hmm, okay that's sad. I don't want to use txt dbs so I have to go back to rA. Really sad, that herc isn't so good as everybody tells. SQL DB is the most important feature ever. 

    Most important feature ever?

    You can generate sql db using your item_db.conf. Not sure why you need sql db to run your server? You using old server with sql db and you can't port to new version?


  8. You need to edit atcommand_exec

    This piece of code here orders that part. I think if you just remove the check for group level it will work.

        if (info == NULL) {
            if (pc_get_group_level(sd) == 0) // TODO: remove or replace with proper permission
                return false;
            sprintf(output, msg_fd(fd,153), command); // "%s is Unknown Command."
            clif->message(fd, output);
            atcommand->get_suggestions(sd, command + 1, is_atcommand);
            return true;
        }
    

×
×
  • Create New...

Important Information

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