Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Added 'OnPCStatCalcEvent' trigger. (tid:77230, credits: @QQfoolsorell…
…ina, AnnieRuru) This label triggers whenever a player's stats are recalculated. http://rathena.org/board/topic/77230-onpcstatcalcevent/ Signed-off-by: Euphy <euphy.raliel@rathena.org>
- Loading branch information
Showing
with
16 additions
and 3 deletions.
- +10 −3 doc/script_commands.txt
- +1 −0 src/map/npc.c
- +1 −0 src/map/npc.h
- +1 −0 src/map/script.c
- +1 −0 src/map/script.h
- +2 −0 src/map/status.c
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -112,6 +112,7 @@ enum npce_event { | ||
| NPCE_DIE, | ||
| NPCE_KILLPC, | ||
| NPCE_KILLNPC, | ||
| NPCE_STATCALC, | ||
| NPCE_MAX | ||
| }; | ||
| struct view_data* npc_get_viewdata(int class_); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters