* 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.
20 lines
402 B
HTML
20 lines
402 B
HTML
// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
/**
|
|
* Custom Atcommands
|
|
* Place the body of custom atcommands in this file.
|
|
* Format:
|
|
* ACMD_FUNC(command_name)
|
|
* {
|
|
* <code>;
|
|
* }
|
|
**/
|
|
|
|
//ACMD_FUNC(newcommand)
|
|
//{
|
|
// clif_displaymessage(fd, "It works!");
|
|
// clif_specialeffect(&sd->bl, EF_HEARTCASTING, AREA);
|
|
// return 0;
|
|
//}
|