-
Content Count
65 -
Joined
-
Last visited
-
Days Won
5
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Neffletics
-
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.
-
Edit the script for all foods. You either use SC_FOOD_STR_CASH or SC_FOOD_STR.
-
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/
-
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; }
-
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!
-
I haven't checked the attached files but it seems like the MySQL user is not working.
-
Open the file stated in the error. (first line of my.ini)
-
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.
-
Why not just use the empty pvp maps and put mobs in there? Create a warper NPC with level requirements per option.
-
MVP Blueprint System and Monster Fragment System
Neffletics replied to `Azhul's question in Script Requests
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. -
AH! Very nostalgic!
-
release [Release] ExtendedBG for Hercules (with eAmod BG modes)
Neffletics replied to Dastgir's topic in Projects
There's a command called @ignorebg, it works like @listenbg. -
I made a shitty version of this last year. Now, I can finally optimize my script. Thank you, Annie. ~
-
Try disabling Windows Firewall or Defender and see if it's somehow blocking the client from communicating with the map server.
-
Thank you, Dastgir, as always!
-
You should change it inside the conf folder.
-
Need Mobdb and mobspawn db for Episode 5 and newer
Neffletics replied to Wosi's question in Database Requests
I posted SorinRO's mob spawn in rAthena. It's in episode 6 when it died. ~ https://rathena.org/board/forum/29-database-releases/ -
Great work, Annie!
-
https://github.com/HerculesWS/Hercules/blob/stable/doc/script_commands.txt You can just ctrl+f on your browser.
-
Check carefully if you're referring to group or gm level. Change getgroupid() to getgmlevel()
-
./configure --enable-epoll ?
-
You need to enable it first. Check npc/scripts_custom.conf
-
Install and Run Hercules on Mac OS
Neffletics replied to ngoctmn's question in General Server Support
Just install VM.