* Changed encoding on new cli and msg_* files from r17152, r17153. * Replaced a couple of characters in source files that caused encoding issues. * Updated SQL database from r17157. > Hercules merges: * 915365b: Updated official behavior of warp portal dealing with skill requirement and casting. * 6c6fbf0: Updated quest_db with some Port Malaya entries. * adda8d7: Updated SN_SIGHT to its RE behavior. True Sight stacks with skillratios now, instead of multiplying final damage. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17158 54d463be-8e91-2dee-dedb-b68131a5f0ec
41 lines
761 B
C
41 lines
761 B
C
/*
|
|
* File: cli.h
|
|
* Author: lighta
|
|
*
|
|
* Created on February 21, 2013, 6:15 PM
|
|
*/
|
|
|
|
#ifndef CLI_H
|
|
#define CLI_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//map
|
|
extern char* MAP_CONF_NAME;
|
|
extern char* INTER_CONF_NAME;
|
|
extern char* LOG_CONF_NAME;
|
|
extern char* BATTLE_CONF_FILENAME;
|
|
extern char* ATCOMMAND_CONF_FILENAME;
|
|
extern char* SCRIPT_CONF_NAME;
|
|
extern char* GRF_PATH_FILENAME;
|
|
//char
|
|
extern char* CHAR_CONF_NAME;
|
|
extern char* SQL_CONF_NAME;
|
|
//login
|
|
extern char* LOGIN_CONF_NAME;
|
|
//common
|
|
extern char* LAN_CONF_NAME; //char-login
|
|
extern char* MSG_CONF_NAME; //all
|
|
|
|
extern void display_helpscreen(bool exit);
|
|
int cli_get_options(int argc, char ** argv);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* CLI_H */
|
|
|