Jump to content

Neffletics

Members
  • Content Count

    65
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Neffletics

  1. Check if the item type is correct, review the repository of Herc, and see how they did it originally. It's not an issue with the emulator.
  2. Edit the script for all foods. You either use SC_FOOD_STR_CASH or SC_FOOD_STR.
  3. End the process that's using port 3306. More info: https://veerasundar.com/blog/2009/10/how-to-check-which-application-is-using-which-port/
  4. Just create 2 separate scripts (see sample below). - script FloatingRatesStarter FAKE_NPC,{ OnInit: //add any other HOURS OnHour01: //------------------- set $@brate,rand(100,150); set $@jrate,rand(100,150); set $@drate,rand(100,150); //Base exp setbattleflag("base_exp_rate",$@brate); //Job exp setbattleflag("job_exp_rate",$@jrate); //Drops setbattleflag("item_rate_common",$@drate); setbattleflag("item_rate_heal",$@drate); setbattleflag("item_rate_use",$@drate); setbattleflag("item_rate_equip",$@drate); //we don't change card drops rate, because these values won't change them anyway atcommand "@reloadmobdb"; announce "Current Rune-Midgard rates are: 1."+($@brate-100)+"x 1."+($@jrate-100)+"x 1."+($@drate-100)+"x",bc_all,0xFF6060; end; } - script FloatingRatesEnder FAKE_NPC,{ OnInit: //add any other HOURS OnHour03: //------------------- set $@brate,100; set $@jrate,100; set $@drate,100; //Base exp setbattleflag("base_exp_rate",$@brate); //Job exp setbattleflag("job_exp_rate",$@jrate); //Drops setbattleflag("item_rate_common",$@drate); setbattleflag("item_rate_heal",$@drate); setbattleflag("item_rate_use",$@drate); setbattleflag("item_rate_equip",$@drate); //we don't change card drops rate, because these values won't change them anyway atcommand "@reloadmobdb"; announce "Current Rune-Midgard rates are back to normal!",bc_all,0xFF6060; end; }
  5. Everything you need to know is in Herc and rAthena forums. Also, you'll get a faster response in the Discord channel should you have technical questions. Good luck!
  6. I haven't checked the attached files but it seems like the MySQL user is not working.
  7. Open the file stated in the error. (first line of my.ini)
  8. If you don't know how to independently operate everything, you're not supposed to open a server. You'll just end up like most of the server owners in the Philippines, who are popping out like mushrooms because of the income they can generate and disappears in a month. I'm sure most server owners will deny it, but you can easily tell what motivates them just by viewing their donation shop and patch notes. Running a server requires competence, patience, and consistency. These 3 values are important for a server to survive its 1st year. This is based on my own experience in SolaceRO. Final advice: Knowing how to 'program' will not make you a good server owner. Acquire some experience first; join someone else's server as a co-developer.
  9. Why not just use the empty pvp maps and put mobs in there? Create a warper NPC with level requirements per option.
  10. It's just items calling certain functions; checking if the items are in the inventory; then getitem, delitem, etc. Just read through the script_commands and you'll understand how to make something similar.
  11. There's a command called @ignorebg, it works like @listenbg.
  12. I made a shitty version of this last year. Now, I can finally optimize my script. Thank you, Annie. ~
  13. Try disabling Windows Firewall or Defender and see if it's somehow blocking the client from communicating with the map server.
  14. Thank you, Dastgir, as always!
  15. You should change it inside the conf folder.
  16. I posted SorinRO's mob spawn in rAthena. It's in episode 6 when it died. ~ https://rathena.org/board/forum/29-database-releases/
  17. https://github.com/HerculesWS/Hercules/blob/stable/doc/script_commands.txt You can just ctrl+f on your browser.
  18. Check carefully if you're referring to group or gm level. Change getgroupid() to getgmlevel()
  19. You need to enable it first. Check npc/scripts_custom.conf
×
×
  • Create New...

Important Information

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