script.inc 389 B

12345678910111213141516171819
  1. // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. /**
  4. * Custom Script Commands
  5. * Place the body of custom script commands in this file.
  6. * Format:
  7. * BUILDIN_FUNC(command_name)
  8. * {
  9. * <code>;
  10. * }
  11. **/
  12. //BUILDIN_FUNC(example)
  13. //{
  14. // ShowInfo("buildin_example: It works!\n");
  15. // script_pushint(st,1);
  16. // return 0;
  17. //}