
Luciar
Support Leaders-
Content Count
37 -
Joined
-
Last visited
-
Days Won
2
Luciar last won the day on June 1 2019
Luciar had the most liked content!
About Luciar

-
Rank
Advanced Member
- Birthday September 28
Contact Methods
-
Discord
Luciar#0001
Profile Information
-
Gender
Male
-
Interests
Scripting, Emergency Medicine
-
Github
Luciar
-
Emulator
Hercules
Recent Profile Visitors
822 profile views
-
How to patch koe_1.2.diff to your server? Am I doing it right?
Luciar replied to Hale's question in Script Support
If you are using rAthena you will likely have more success receiving help if you post on rAthena's support forum, not here. -
Moved to correct section of forum.
-
Healer count how much zeny remove from server
Luciar replied to trackxart's question in Script Support
Set a variable that is increased every time someone purchases a heal. Display the variable. Please see the script command documentation and sample scripts located at /doc/script_commands.txt and /doc/sample/ Be cognizant that you will need to handle the number prior to it exceeding the maximum integer value of 2^31 to avoid any issues. -
Moved to international support section. Posts outside of the international area must be in English only.
-
Moved to international support forum. Posts outside of the international sections must be in English only
-
-
-
Make use of the function getd https://github.com/HerculesWS/Hercules/blob/stable/doc/script_commands.txt#L1414
-
-
Create Char - Stats not apperaring
Luciar replied to Yoh Asakura's question in General Server Support
Please refrain from posting in languages other than English outside of the International Communities section as per the forum guidelines. This forum is English only. The Portuguese section can be found here: https://herc.ws/board/forum/79-portuguese-community/ -
View the syntax of consolemes() here: https://github.com/HerculesWS/Hercules/blob/stable/doc/script_commands.txt#L7868
-
Debugmes has been deprecated. Use consolemes() instead.
-
Please use the search function prior to posting new topics in the future.
-
-
Ternary syntax is condition ? True value : false value [email protected] = (getequipid(3) == 13414 ? 1 : 0) + (getequipid(4) == 13414 ? 1 : 0);
-
I would potentially be willing to help you, but this request remains unclear and lacking in detail. The poor translation coupled with limited information makes it impossible to assist you. Please try to provide clear details of what exactly you want. If you are unable to do so in English, consider using one of our international forums found here.
-
-
-
^This. Also, you have made several requests on the forums recently. It would be nice to see you attempt to start learning how to do these things for yourself. The purpose of this forum is not to do everything for you. The additions you requested are quite simple, and there are examples of how to do exactly what you have requested throughout the Hercules repository and forums. Use these resources to get started: doc/script_commands.txt https://github.com/HerculesWS/Hercules/blob/stable/doc/script_commands.txt#L1005 https://github.com/HerculesWS/Hercules/wiki/Timers-(Scripting) Look through scripts several scripts found in the repository or custom scripts you have collected. Read them line by line. If you don’t know what a specific line does, look up its functionality in doc/script_commands.txt. Once you have begun to make your own attempt, if you need assistance, I will be happy to help you.