* Moved all npc view constants into src Source side the constants will use Gravity's naming standard(JT_*) NPC side still supports the old names without JT_ * Moved all effect constants into src Added check for effect validation to atcommand effect and all script commands using them Removed the unused and broken function unit_changeviewsize from unit.c Replaced a lot of hardcoded effect ids with their respective constants Cleaned up the effect documentations * Moved all hat effect constants into src Added check for effect validation to script command hateffect
20 lines
401 B
HTML
20 lines
401 B
HTML
// Copyright (c) Athena 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;
|
|
//}
|