Jump to content

bWolfie

Members
  • Content Count

    848
  • Joined

  • Last visited

  • Days Won

    34

Everything posted by bWolfie

  1. 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. bWolfie

    Auraset

    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. im sure your database is not called 'ragnarok'. some code clearly wrong looking for wrong place. 'ragnarok.ragnarok.cp_vfp_logs'
  4. It is explained right there. Table not exists.
  5. Last view id is 1864 but could be more. (https://github.com/zackdreaver/ROenglishRE/blob/master/Ragnarok/data/luafiles514/lua files/datainfo/accessoryid.lub) Maybe start at 2200 to allow for new sprites. I have had some issues with view ids above 3000. Maybe it was 4000, I forgot. I just remember once I got to a certain point, the client would just crash.
  6. bWolfie

    php-grf

    nice effort. im a noob, what practical application does this have?
  7. bWolfie

    Update map

    what you mean? check out my mapcache guide if you need help.
  8. 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; }
  9. good luck but honestly would have preferred you finished your control panel project. that was rather disappointing.
  10. I believe if you use mapflag pvp_nocalcrank i forget the exact name of it but it's something like that
  11. 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.
  12. this is beyond my thinking why sprintf(_("Text %s", .@var)); not sprintf("Test %s", .@var);
  13. 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.
  14. yeah im always using these too. idk, guess it's the way the forums are formatted doesn't allow for legacy posts to feature heavily.
  15. Received my shirt in the mail today. First time having something mailed from Germany. Anyone else got theirs?
  16. Nice to see you choose a different style philosophy. In my opinion I find the stereotypical RO design that people want integrated with FluxCP really ugly.
  17. @M4karov I already addressed. This plugin is no longer supported.
  18. From what I know, you can't do anything about the sword icon. Period. Since it is coded into the client and not server side.
  19. 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?
  20. got too damn busy to do my 15 PR. this was a good incentive by github for better interactions.
  21. bWolfie

    atcommands.c

    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; }
  22. I will up my efforts try to get to 15 PR for October
×
×
  • Create New...

Important Information

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