rathena/src/custom/script.inc
Aleos 11b42569fc
Synchronized source file headers (#3212)
* Alphabetically sorted includes.
* Updated copyright and license text to match across all files.
* Removed pragma once define in header files in lieu of ifdef guards.
2018-06-20 18:08:30 -04:00

20 lines
389 B
HTML

// 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;
//}