initial import of fakemeta_amxx
This commit is contained in:
parent
4d843e0792
commit
c6c95f2443
|
@ -17,6 +17,7 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <file>
|
#include <file>
|
||||||
#include <vault>
|
#include <vault>
|
||||||
|
#include <lang>
|
||||||
|
|
||||||
/* Function is called just after server activation.
|
/* Function is called just after server activation.
|
||||||
* Good place for configuration loading, commands and cvars registration. */
|
* Good place for configuration loading, commands and cvars registration. */
|
||||||
|
|
26
plugins/include/lang.inc
Executable file
26
plugins/include/lang.inc
Executable file
|
@ -0,0 +1,26 @@
|
||||||
|
/* Language functions
|
||||||
|
*
|
||||||
|
* by the AMX Mod X Development Team
|
||||||
|
*
|
||||||
|
* This file is provided as is (no warranties).
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if defined _lang_included
|
||||||
|
#endinput
|
||||||
|
#endif
|
||||||
|
#define _lang_included
|
||||||
|
|
||||||
|
//return the number of languages loaded
|
||||||
|
native get_langsnum();
|
||||||
|
|
||||||
|
//sets name to the two-letter name of a language returned by get_langsnum
|
||||||
|
//index starts at 0
|
||||||
|
native get_lang(id, name[3]);
|
||||||
|
|
||||||
|
//registers a dictionary file, making sure the words are in the dictionary
|
||||||
|
// the file should be in "addons/amxx/data/lang/", but only the name needs to be
|
||||||
|
// given. (e.g. register_dictionary("file.txt") will be addons/amxx/data/file.txt).
|
||||||
|
native register_dictionary(const filename[]);
|
||||||
|
|
||||||
|
//returns 1 if the language is loaded, 0 otherwise.
|
||||||
|
native lang_exists(const name[]);
|
Loading…
Reference in New Issue
Block a user