Jump to content

bWolfie

Members
  • Content Count

    848
  • Joined

  • Last visited

  • Days Won

    34

Everything posted by bWolfie

  1. I'm not sure if callfunc() is meant to be used outside of the script engine.
  2. i would comment but i dont know a thing about anything. so im leaving this reply so you dont feel lonely.
  3. it is probably something really simple like misconfiguration. try fiddling with all the settings related to this thing. and then if not misconfig, then there is a chance it is due to poor server specs leading to slow performance.
  4. Edit: I misread post thinking you wanted current time to be made 4x during WoE. Check post below.
  5. just cause servers are both in LA doesn't mean they will offer the same performance (unless they are from the same company and specs). Also wouldn't put it passed a RO reseller to lie about things...unless you still have the old IP active, there is no way to confirm server is actually in LA. check there is no double configuration overriding in conf/import/battle.conf maybe you tested on a GM account who have 'skill unconditional' permission in conf/groups.conf, then 2nd test didn't have the perm.
  6. Try this diff. It's made for the latest herc, 2019-06-03. To apply diff, use git apply command. E.g. git apply ~/Desktop/hidemobhpbar.diff Haven't tested. Let me know how you go. hidemobhpbar.diff
  7. check if you are using renewal or pre-renewal. mobs have different stats depending on game mode.
  8. Yes it is possible. You need to either use a custom SQL table combined with getcharid(CHAR_ID_GUILD) or use the '$' global permanent variable. Example of using '$' variable: if ($Guild_Quest[getcharid(CHAR_ID_GUILD)] != 0) { mes("Your guild has already done this quest."); close(); } $Guild_Quest[getcharid(CHAR_ID_GUILD)] = 1; mes("You completed the quest for your guild."); close(); Example of SQL query: if (query_sql(sprintf("SELECT * FROM `guild_quest` WHERE `guild_id` = %d", getcharid(CHAR_ID_GUILD))) > 0) { mes("Your guild has already done this quest."); close(); } query_sql(sprintf("INSERT INTO `guild_quest`(`guild_id`, `value`, `comment`) VALUES(%d, 1, 'Guild quest 1')", getcharid(CHAR_ID_GUILD))); mes("You completed the quest for your guild."); close();
  9. it's in language file. lang\en_us.php or whichever language you are using
  10. check script doc. consolemes has 2 mandatory params.also you should be putting it in parentheses. consolemes()
  11. You can try AnnieRuru's OnPCStatCalcEvent plugin. https://github.com/AnnieRuru/Release/tree/master/plugins/OnPCStatCalcEvent
  12. Is my browser broken? Feels like there should be a video or set of images to explain the event. You should definitely explain what you want, otherwise I guarantee the chance of a response is ZERO.
  13. Try file an issue on github. Might be a bug.
  14. tip: put your scripts in pastebin so people don't have to download files.
  15. move script over and test for prerequisites and edit so they arent needed or make those prerequisites available on your server.
  16. dude new client since like 2012 use itemInfo.lua/lub that is the one you need to have working correctly
  17. First time seeing this. Thought I'd try it out. Really cool idea, surprised I'm just seeing this now. Reports: • If you are in a chatroom of the clone then the clone dies, the chat closes then your char is stuck. • Something interesting, you can send friend and party requests to clone mobs, which then send to the real char.
  18. Possible, but extremely difficult. Probably not worth the time/effort. Better to think of alternative.
  19. Yes...rAthena have more of the content complete than Hercules, but they are very reckless with their development systems. Most of the commits are either fixes for something that someone broke (that previously worked) or minor changes such as syntax correction or function tweaks. Commit no. and activity log looks pretty, but context should be considered.
  20. Description: Adds the @adopt command to your server. Usage: @adopt <char name> The adoption feature exists in the source. However, from experience, some clients don't support the right-click menu option to adopt players, rendering the feature unusable. Perhaps this atcommand should be added to the main repo. For now, you can use this to allow your players to use the adoption system. Download: https://github.com/bWolfie/HPM-Plugins/blob/master/src/plugins/adopt.c
  21. Found an issue. Console getting spammed with this: [Mar/29 14:50:41][Warning]: npc_event: player's event queue is full, can't add event 'RecalcStat::OnPCStatCalcEvent' !
  22. Nice news to hear. Do you have a demo site?
×
×
  • Create New...

Important Information

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