Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
19 lines (17 sloc)
389 Bytes
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
| // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL | |
| // For more information, see LICENCE in the main folder | |
| /** | |
| * Custom Script Commands | |
| * Place the body of custom script commands in this file. | |
| * Format: | |
| * BUILDIN_FUNC(command_name) | |
| * { | |
| * <code>; | |
| * } | |
| **/ | |
| //BUILDIN_FUNC(example) | |
| //{ | |
| // ShowInfo("buildin_example: It works!\n"); | |
| // script_pushint(st,1); | |
| // return 0; | |
| //} |