
* Adds @join and @channel commands to manipulate chat channels. (see doc/atcommands.txt) * Speak in a #channel by sending a whisper to #channel or binding your global chat to the channel (@channel bindto <#channel_name>). * Automatically join local map channels (#map) and guild ally channels (#ally), with mapflag 'nomapchannelautojoin' to disable the channel for a map (optional). * Allow users to create private channels if 'allow_user_channel_creation' is true. * Set default channels, text colors, and other settings in conf/channels.conf. > Other changes: * Improved overall guild processing/lookup by creating a cached guild state. * Fixed a bug where equipping a garment would override costume garment. * Removed clif_message and merged it with clif_disp_overhead, since both use the same packet. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17228 54d463be-8e91-2dee-dedb-b68131a5f0ec
65 lines
1.7 KiB
Plaintext
65 lines
1.7 KiB
Plaintext
/* Atcommands and charcommands configuration file */
|
|
|
|
/* The symbol that will be used to recognize commands.
|
|
You can set any one character except:
|
|
- control-characters (0x00-0x1f),
|
|
- '%' (party chat symbol)
|
|
- '$' (guild chat symbol)
|
|
- '/' (client commands symbol)
|
|
atcommand_symbol represents @commands used locally.
|
|
charcommand_symbol represents #commands used on other players.
|
|
*/
|
|
|
|
atcommand_symbol : "@"
|
|
charcommand_symbol: "#"
|
|
|
|
/* Command aliases
|
|
You can define aliases for any command. Aliases work just like original
|
|
command.
|
|
Format is
|
|
<commandname>: ["<alias>", ...]
|
|
*/
|
|
|
|
aliases: {
|
|
mobinfo: ["monsterinfo", "mi"]
|
|
iteminfo: ["ii"]
|
|
time: ["date", "serverdate", "servertime"]
|
|
autotrade: ["at"]
|
|
help: ["h"]
|
|
jumpto: ["goto", "warpto"]
|
|
mount: ["mountpeco"]
|
|
who: ["whois"]
|
|
npctalk: ["npctalkc"]
|
|
gvgon: ["gpvpon"]
|
|
gvgoff: ["gpvpoff"]
|
|
jobchange: ["job"]
|
|
load: ["return"]
|
|
warp: ["rura", "mapmove"]
|
|
dye: ["ccolor"]
|
|
hairstyle: ["hstyle"]
|
|
haircolor: ["hcolor"]
|
|
monster: ["spawn"]
|
|
blvl: ["lvup", "blevel", "baselvl", "baselvup", "baselevel", "baselvlup"]
|
|
jlvl: ["jlevel", "joblvl", "joblvup", "joblevel", "joblvlup"]
|
|
glvl: ["glevel", "guildlvl", "guildlvup", "guildlevel", "guildlvlup"]
|
|
allskill: ["allskills", "skillall", "skillsall"]
|
|
allstats: ["allstat", "statall", "statsall"]
|
|
ban: ["banish"]
|
|
unban: ["unbanish"]
|
|
unjail: ["discharge"]
|
|
homlevel: ["hlvl", "hlevel", "homlvl", "homlvup"]
|
|
homevolution: ["homevolve"]
|
|
mutearea: ["stfu"]
|
|
monsterignore: ["battleignore"]
|
|
raise: ["revive"]
|
|
kill: ["die"]
|
|
guildstorage: ["gstorage"]
|
|
accinfo: ["accountinfo"]
|
|
itemreset: ["clearinventory"]
|
|
channel: ["main"]
|
|
}
|
|
|
|
/* Commands help file */
|
|
help: {
|
|
@include "conf/help.txt"
|
|
} |