atcommands.txt 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857
  1. //===== rAthena Documentation ================================
  2. //= Atcommand List
  3. //===== By: ==================================================
  4. //= rAthena Dev Team
  5. //===== Last Updated: ========================================
  6. //= 20171011
  7. //===== Description: =========================================
  8. //= List of available atcommands and their functions.
  9. //============================================================
  10. This file describes the usage of in-game commands and assumes that
  11. '/conf/atcommand_athena.conf' has the following:
  12. atcommand_symbol : "@"
  13. charcommand_symbol: "#"
  14. Some commands cannot be used from console or script command to prevent map-server crashed.
  15. See atcommand.cpp::atcommand_basecommands for restricted commands. Please tell us if any
  16. other atcommand that causes map-server crashed executed by console or script commands.
  17. To search for a command, write "@" before the command name (ex. @commands).
  18. The format of this file is as follows:
  19. 1. System Commands
  20. 2. Database Commands
  21. 3. Player Information Commands
  22. 4. Action Commands
  23. 5. Administrative Commands
  24. 6. Party Commands
  25. 7. Guild Commands
  26. 8. Pet Commands
  27. 9. Homunculus Commands
  28. 10. Channel Commands
  29. 11. Clan Commands
  30. ======================
  31. | 1. System Commands |
  32. ======================
  33. @version
  34. Displays SVN version of the server.
  35. ---------------------------------------
  36. @rates
  37. Displays the server rates.
  38. Output Example:
  39. Experience rates: Base 1.00x / Job 1.00x
  40. Normal Drop Rates: Common 1.00x / Healing 1.00x / Usable 1.00x Equipment 1.00x / Card 1.00x
  41. Boss Drop Rates: Common 1.00x / Healing 1.00x / Usable 1.00x Equipment 1.00x / Card 1.00x
  42. Other Drop Rates: MvP 1.00x / Card-Based 1.00x / Treasure 1.00x
  43. ---------------------------------------
  44. @time
  45. Displays the local server time, along with day/night information.
  46. ---------------------------------------
  47. @uptime
  48. Show server uptime since last map server restart.
  49. Output Example:
  50. Server Uptime: 3 days, 8 hours, 6 minutes, 4 seconds.
  51. ---------------------------------------
  52. @refresh
  53. @refreshall
  54. Synchronizes the player's position on the client with the one stored on the server.
  55. Additionally, @refreshall will refresh all online players.
  56. ---------------------------------------
  57. @showexp
  58. Toggles the display of experience gain messages.
  59. ---------------------------------------
  60. @showzeny
  61. Toggles the display of Zeny gain messages.
  62. Configuration for zeny being dropped by mobs is in '/conf/battle/monster.conf':
  63. zeny_from_mobs: yes
  64. ---------------------------------------
  65. @showdelay
  66. Shows or hides the red "Cannot use the skills" message.
  67. Output Example:
  68. [Storm Gust] Cannot use the skills.
  69. ---------------------------------------
  70. @noask
  71. Toggles automatic rejection of deals and invites.
  72. ---------------------------------------
  73. @noks
  74. Toggles Kill Steal Protection.
  75. ---------------------------------------
  76. @font <type 0-9>
  77. Sets the client font.
  78. Available types:
  79. -- 0: Default
  80. -- 1: RixLoveangel
  81. -- 2: RixSquirrel
  82. -- 3: NHCgogo
  83. -- 4: RixDiary
  84. -- 5: RixMiniHeart
  85. -- 6: RixFreshman
  86. -- 7: RixKid
  87. -- 8: RixMagic
  88. -- 9: RixJJangu
  89. ---------------------------------------
  90. @agitstart
  91. @agitend
  92. Starts or ends War of Emperium [FE] by invoking scripts with the
  93. OnAgitStart/OnAgitEnd labels.
  94. ---------------------------------------
  95. @agitstart2
  96. @agitend2
  97. Starts or ends War of Emperium [SE] by invoking scripts with the
  98. OnAgitStart2/OnAgitEnd2 labels.
  99. ---------------------------------------
  100. @agitstart3
  101. @agitend3
  102. Starts or ends War of Emperium [TE] by invoking scripts with the
  103. OnAgitStart3/OnAgitEnd3 labels.
  104. ---------------------------------------
  105. @pvpon
  106. @pvpoff
  107. Enables or disables PvP (Player vs. Player) mode on a map.
  108. ---------------------------------------
  109. @gvgon
  110. @gvgoff
  111. Enables or disables GvG (Guild vs. Guild) mode on a map.
  112. ---------------------------------------
  113. @skillon
  114. @skilloff
  115. Enables or disables skill usage on a map.
  116. ---------------------------------------
  117. @allowks
  118. Toggles Kill Steal Protection on a map.
  119. ---------------------------------------
  120. @day
  121. @night
  122. Sets the server to day or night mode.
  123. ---------------------------------------
  124. @sound <filename>
  125. Plays the specified sound.
  126. ---------------------------------------
  127. @snow
  128. @clouds
  129. @clouds2
  130. @fog
  131. @fireworks
  132. @sakura
  133. @leaves
  134. Toggles weather effects on your map.
  135. ---------------------------------------
  136. @clearweather
  137. Stops all weather effects. May require a map change or @refresh
  138. for the effect to stop client-side.
  139. ---------------------------------------
  140. @mapflag <flag> <value 0-1>
  141. Sets a mapflag for the current map (1 = On, 0 = Off).
  142. ---------------------------------------
  143. @addwarp <map> <x> <y> <npc name>
  144. Creates a warp portal on the character's current coordinates that lasts until the next reboot.
  145. The name parameter is mandatory and if it already exists, the server will automagically assign a name,
  146. and it will be displayed only once in the chat window.
  147. Example:
  148. @addwarp prontera 50 50 my_warp_sample
  149. Output:
  150. New warp NPC 'my_warp_sample' created.
  151. ---------------------------------------
  152. @effect <effect ID>
  153. Creates a visual effect on or around the character.
  154. A list of IDs and descriptions of the effects can be found in '/doc/effect_list.txt'.
  155. ---------------------------------------
  156. @misceffect <effect ID>
  157. Does some visual effect on the character.
  158. Possible effect IDs:
  159. 0 = base level up
  160. 1 = job level up
  161. 2 = refine failure
  162. 3 = refine success
  163. 4 = game over
  164. 5 = pharmacy success
  165. 6 = pharmacy failure
  166. 7 = base level up (super novice)
  167. 8 = job level up (super novice)
  168. 9 = base level up (taekwon)
  169. ---------------------------------------
  170. @displayskill <skill ID> {<skill level>}
  171. Displays the animation of a skill without really using it (debug function).
  172. ---------------------------------------
  173. @option {<param 1> {<param 2> {<param 3>}}}
  174. Adds visual effects to the attached character.
  175. If no parameter is specified, a list of available options will be returned.
  176. ---------------------------------------
  177. @displaystatus <status type> <flag> <tick> {<val1> {<val2> {<val3>}}}
  178. Displays a status change without really applying it (debug function).
  179. ---------------------------------------
  180. @send <Hex Number> {<value>}
  181. Used for testing packet sends from the client (debug function).
  182. Value: <type=B(default),W,L><number> or S<length>"<string>"
  183. ---------------------------------------
  184. @mapinfo {<type 0-3> {<map>}}
  185. Displays information about the current map or the one specified.
  186. Available types:
  187. -- 0: General information and mapflags (always shown).
  188. -- 1: Players.
  189. -- 2: NPCs.
  190. -- 3: Chatrooms.
  191. Output Example:
  192. ------ Map Info ------
  193. Map Name: prontera | Players In Map: 1 | NPCs In Map: 127 | Chats In Map: 0
  194. ------ Map Flags ------
  195. Town Map
  196. Autotrade Enabled
  197. PvP Flags:
  198. GvG Flags:
  199. Teleport Flags:
  200. No Exp Penalty: On | No Zeny Penalty: On
  201. Weather Flags: Displays Night |
  202. Other Flags: NoBranch | Reset |
  203. Other Flags:
  204. ---------------------------------------
  205. @gat
  206. Gives information about terrain/area (debug function).
  207. Output Example:
  208. prontera (x= 165, y= 202) 00 00 00 00 00
  209. prontera (x= 165, y= 201) 01 00 00 00 00
  210. prontera (x= 165, y= 200) 01 00 00 00 00
  211. prontera (x= 165, y= 199) 01 00 00 00 00
  212. prontera (x= 165, y= 198) 01 00 00 00 00
  213. ---------------------------------------
  214. @showrate
  215. When VIP is enabled, the rate information always be shown when every player load map.
  216. Use this command to disable or enable that rate information.
  217. ---------------------------------------
  218. ========================
  219. | 2. Database Commands |
  220. ========================
  221. @mobinfo <mob name/ID>
  222. Displays monster information (rates, stats, drops, MVP data).
  223. Example:
  224. @mobinfo Poring
  225. Output:
  226. Monster: 'Poring'/'Poring'/'PORING' (1002)
  227. Lv: 1 HP:60 Base EXP:27 Job EXP:20 HIT:103 FLEE:183
  228. DEF:2 MDEF:5 STR:6 AGI:1 VIT:1 INT:1 DEX:6 LUK:5
  229. ATK:8~9 Range:1~10~12 Size:Medium Race:Plant Element:Water (Lv:1)
  230. Drops:
  231. - Jellopy 70.00% - Knife[4] 1.00% etc...
  232. ---------------------------------------
  233. @iteminfo <item name/ID>
  234. Displays item information (type, price, weight, drops).
  235. Example:
  236. @iteminfo Jellopy
  237. Output:
  238. Item: 'Jellopy'/'Jellopy'[0] (909) Type: Etc. | Extra Effect: None
  239. NPC Buy:6z, Sell:3z | Weight: 1.0
  240. - Maximal monsters drop change: 75.00%
  241. ---------------------------------------
  242. @whodrops <item name/ID>
  243. Displays a list of mobs which drop the specified item.
  244. Only the highest drop rates are shown.
  245. ---------------------------------------
  246. @autoloot {<%>}
  247. Enables or disables autolooting items from killed mobs.
  248. If a percentage is given, only items dropped at that rate and below will be autolooted.
  249. ---------------------------------------
  250. @alootid <+/- item name/ID>
  251. @alootid reset
  252. Starts or stops autolooting a specified item.
  253. Typing "reset" will clear the autoloot item list.
  254. By default, 10 items can be autolooted at one time.
  255. ---------------------------------------
  256. @autoloottype <+/- type name/ID>
  257. @autoloottype reset
  258. Starts or stops autolooting a specified item type.
  259. Type List: healing = 0, usable = 2, etc = 3, weapon = 4, armor = 5, card = 6, petegg = 7, petarmor = 8, ammo = 10
  260. Typing "reset" will clear the autoloot item list.
  261. ---------------------------------------
  262. @mobsearch <monster name>
  263. Locates and displays the position of a certain mob on the current map.
  264. Output Example:
  265. 1[155:184] Poring
  266. 2[154:188] Poring
  267. 3[127:146] Poring
  268. ---------------------------------------
  269. @idsearch <item name>
  270. Looks up an item by name (or part of a name).
  271. ---------------------------------------
  272. @showmobs <monster name/ID>
  273. Locates and displays the position of a certain mob on your mini-map.
  274. This shows up as a small white cross (+).
  275. ---------------------------------------
  276. @whereis
  277. Displays the maps in which monster normally spawns.
  278. This does not include mobs summoned by scripts.
  279. ---------------------------------------
  280. @skillid <skill name>
  281. Looks up a skill by name (or part of a name).
  282. ---------------------------------------
  283. @skilltree <skill ID> <target>
  284. Lists requirements to obtain the specified skill on the target character.
  285. ---------------------------------------
  286. @questskill {<skill ID>}
  287. @lostskill {<skill ID>}
  288. Permanently adds or removes the specified quest skill.
  289. If no skill ID is specified, a list of available skills will be returned.
  290. ---------------------------------------
  291. @useskill <skill ID> <skill level> <target>
  292. Casts the specified skill.
  293. Example:
  294. @useskill 28 5 Char2
  295. -> casts Level 5 Heal on player Char2
  296. ---------------------------------------
  297. ==================================
  298. | 3. Player Information Commands |
  299. ==================================
  300. @commands
  301. Displays a list of @ commands available to the player.
  302. ---------------------------------------
  303. @charcommands
  304. Displays a list of # commands available to the player.
  305. ---------------------------------------
  306. @help <command>
  307. Displays the help message for the specified command.
  308. ---------------------------------------
  309. @exp
  310. Displays current levels and % progress.
  311. Output Example:
  312. Base Level: 13 (3.323%) | Job Level: 10 (0.000%)
  313. ---------------------------------------
  314. @stats
  315. Displays the stats of the attached player in your chat bar.
  316. ---------------------------------------
  317. @storagelist <player name>
  318. Displays Kafra storage contents of the specified player.
  319. ---------------------------------------
  320. @cartlist <player name>
  321. Displays cart contents of the specified player.
  322. ---------------------------------------
  323. @itemlist
  324. Displays inventory contents of the attached player.
  325. ---------------------------------------
  326. @who {<filter>}
  327. @who2 {<filter>}
  328. @who3 {<filter>}
  329. Returns a list of online characters.
  330. If a filter is given, the list will be restricted to names containing the filter string.
  331. @who will also return character positions.
  332. @who2 will also return job classes.
  333. @who3 will also return parties/guilds.
  334. ---------------------------------------
  335. @whomap {<map>}
  336. @whomap2 {<map>}
  337. @whomap3 {<map>}
  338. Returns a list of online characters in a specific map.
  339. If a map is given, the list will be restricted to characters on the specified map.
  340. @whomap will also return character positions.
  341. @whomap2 will also return job classes.
  342. @whomap3 will also return parties/guilds.
  343. ---------------------------------------
  344. @whogm {<filter>}
  345. Returns a list of GMs online.
  346. If a filter is given, the list will be restricted to names containing the filter string.
  347. For those who are higher GM level than yourself, only name is shown.
  348. For the rest, the command acts as a combination of @who+@who2+@who3.
  349. ---------------------------------------
  350. @users
  351. Displays distribution of players on the server per map (% on each map which has players.)
  352. Output Example:
  353. prontera: 1 (50%)
  354. prt_fild01: 1 (50%)
  355. all: 2
  356. ---------------------------------------
  357. @where <player_name>
  358. Locates a player on a map. The player must be online.
  359. ---------------------------------------
  360. @jailtime
  361. Displays remaining jail time.
  362. If @jail was used, the chat window will display "You have been jailed indefinitely".
  363. ---------------------------------------
  364. @accinfo <player name/account id>
  365. Searches for an account by ID or a character name, and outputs detailed information.
  366. Password will only be displayed for group levels lower than yours.
  367. To search partial names, "%" can be used as a wildcard.
  368. Example:
  369. @accinfo Test%
  370. Output:
  371. -- Account 2000001 --
  372. User: user123 | GM Group: 0 | State: 0
  373. Password: password123
  374. Account e-mail: a@a.com
  375. Last IP: 127.0.0.1 (Unknown)
  376. This user has logged 27 times, the last time were at 2012-11-24 17:29:07
  377. -- Character Details --
  378. [Slot/CID: 0/150001] Test1 | High Swordsman | Level: 99/50 | Off
  379. [Slot/CID: 1/150002] Test2 | Rune Knight | Level: 150/50 | On
  380. ======================
  381. | 4. Action Commands |
  382. ======================
  383. @me <message>
  384. Displays the text as a normal message with the format "*name <message>*" instead of "name: <message>".
  385. ---------------------------------------
  386. @storage
  387. Opens your Kafra storage.
  388. ---------------------------------------
  389. @mail
  390. Opens your mailbox.
  391. ---------------------------------------
  392. @auction
  393. Opens the auction window.
  394. ---------------------------------------
  395. @identify
  396. @identifyall
  397. Opens the Identification window if any unappraised items are in your inventory.
  398. @identifyall will automatically identify all unappraised items in your inventory.
  399. ---------------------------------------
  400. @trade <player name>
  401. Opens the trade window with the specified player.
  402. ---------------------------------------
  403. @autotrade
  404. Allows you continue vending offline, then logs off.
  405. The character will continue vending until you log in to that account again,
  406. all items are sold, or the mapserver closes.
  407. ---------------------------------------
  408. @monster <monster name/ID> {<amount>}
  409. /monster <monster name>
  410. @monstersmall <monster name/ID> {<amount>}
  411. @monsterbig <monster name/ID> {<amount>}
  412. Spawns the specified monster.
  413. If an amount is given, that number will be spawned.
  414. Additionally, monster size can be adjusted.
  415. ---------------------------------------
  416. @summon <monster name/ID> {<duration>}
  417. Spawns mobs that treat you as their master.
  418. If a duration is specified, they will stay with you until the duration has ended.
  419. ---------------------------------------
  420. @clone <player name/ID>
  421. @slaveclone <player name/ID>
  422. @evilclone <player name/ID>
  423. Spawns a clone of the specified player.
  424. @clone will spawn a supportive clone.
  425. @slaveclone will spawn a supportive clone that follows the creator around.
  426. @evilclone will spawn an aggressive clone.
  427. ---------------------------------------
  428. @item <item name/ID>{:<item name/ID>:...} {<amount>}
  429. /item <item name>
  430. Creates an item (or multiple items).
  431. ---------------------------------------
  432. @item2 <item name/ID> <quantity> <identify_flag> <refine> <attribute> <card1> <card2> <card3> <card4>
  433. Creates an item with the given parameters (the 'cards' can be any item).
  434. identify_flag: 0 = unidentified, 1 = identified
  435. attribute: 0 = not broken, 1 = broken
  436. ---------------------------------------
  437. @itembound <item name/ID>{:<item name/ID>:...} <amount> <bound type>
  438. @itembound2 <item name/ID> <quantity> <identify_flag> <refine> <attribute> <card1> <card2> <card3> <card4> <bound type>
  439. Creates an item bounded to the character.
  440. The items cannot be dropped, sold, vended, auctioned, or mailed, and in some cases cannot be traded or stored.
  441. Available types:
  442. -- 1: Account
  443. -- 2: Guild
  444. -- 3: Party
  445. -- 4: Character
  446. ---------------------------------------
  447. @delitem <item name/ID> <amount>
  448. Deletes the specified item from the player's inventory.
  449. ---------------------------------------
  450. @produce <equip name/ID> <element> <# of Very's>
  451. Creates a weapon with the given parameters.
  452. Example:
  453. @produce 1602 1 2
  454. -> crafts an item called "Very Very Strong Char's Ice Rod".
  455. ---------------------------------------
  456. @refine <equip position> <+/- amount>
  457. Refines an equipped item by the specified amount.
  458. 0: All Equipment
  459. 1: Lower Headgear
  460. 2: Right Hand
  461. 4: Garment
  462. 8: Left Accessory
  463. 16: Body Armor
  464. 32: Left Hand
  465. 64: Shoes
  466. 128: Right Accessory
  467. 256: Top Headgear
  468. 512: Mid Headgear
  469. ---------------------------------------
  470. @repairall
  471. Repairs all broken items in your inventory.
  472. ---------------------------------------
  473. @dropall {<item type>}
  474. Drops all items based on the item type.
  475. Valid item types:
  476. -1 = All Items (default)
  477. 0 = Healing Items
  478. 2 = Useable Items
  479. 3 = Etc Items
  480. 4 = Armors
  481. 5 = Weapons
  482. 6 = Cards
  483. 7 = Pet Eggs
  484. 8 = Pet Armors
  485. 10 = Ammunition Items
  486. Example:
  487. To drop all weapons in inventory...
  488. @dropall 5
  489. ---------------------------------------
  490. @storeall
  491. Places all inventory and equipped items directly into your Kafra Storage.
  492. ---------------------------------------
  493. @itemreset
  494. Deletes all inventory items (not equipped items).
  495. ---------------------------------------
  496. @clearstorage
  497. @cleargstorage
  498. Deletes all items in storage (or guild storage).
  499. ---------------------------------------
  500. @clearcart
  501. Deletes all items in cart, but does not remove the cart.
  502. ---------------------------------------
  503. @cleanarea
  504. @cleanmap
  505. Deletes floor items in sight range or across the entire map.
  506. ---------------------------------------
  507. @save
  508. Sets your save point as your current map coordinates.
  509. ---------------------------------------
  510. @memo {<position 0-2>}
  511. Saves a warp point for the "Warp Portal" skill.
  512. If a number is not specified, the command will output all currently saved locations.
  513. Location "void" indicates an empty warp point.
  514. ---------------------------------------
  515. @load
  516. Warps to your save point.
  517. ---------------------------------------
  518. @jump {<x> <y>}
  519. Warps to the given coordinates on the current map.
  520. If no coordinates are entered, a random location will be chosen.
  521. ---------------------------------------
  522. @go {<location name/ID>}
  523. Warps to predefined locations in major cities.
  524. If no ID is given, all available maps will be displayed in the chat window.
  525. Locations and coordinates are stored in '/src/map/atcommand.cpp'.
  526. Restriction:
  527. - Used from console
  528. ---------------------------------------
  529. @warp <map> {<x> <y>}
  530. /mm <map> {<x> <y>}
  531. /mapmove <map> {<x> <y>}
  532. Warps to the specified map.
  533. If no coordinates are entered, a random location will be chosen.
  534. Restriction:
  535. - Used from console
  536. ---------------------------------------
  537. @jumpto <player name/ID>
  538. /shift <player name>
  539. @follow <player name>
  540. Warps to the specified player.
  541. Additionally, @follow will track the player's movements until turned off.
  542. ---------------------------------------
  543. @recall <player name>
  544. /summon <player name>
  545. @recallall
  546. Warps a character to your position.
  547. Additionally, @recallall will recall the entire server.
  548. ---------------------------------------
  549. @tonpc <npc name>
  550. Warps to the specified npc.
  551. ---------------------------------------
  552. @killer
  553. Allows you to attack other players outside of PvP.
  554. ---------------------------------------
  555. @killable
  556. Allows other players to attack you outside of PvP.
  557. ---------------------------------------
  558. @blvl <+/- amount>
  559. @jlvl <+/- amount>
  560. Changes base or job level by the specified amount.
  561. Restriction:
  562. - Used from console
  563. ---------------------------------------
  564. @str <+/- amount>
  565. @agi <+/- amount>
  566. @vit <+/- amount>
  567. @int <+/- amount>
  568. @dex <+/- amount>
  569. @luk <+/- amount>
  570. Changes the specified stat of your character.
  571. ---------------------------------------
  572. @allstats {<+/- amount>}
  573. Changes all stats of your character.
  574. If no amount is given, sets all stats to the maximum (default is 99).
  575. ---------------------------------------
  576. @allskill
  577. Gives your character all skills in their current skill tree.
  578. ---------------------------------------
  579. @stpoint <+/- amount>
  580. @skpoint <+/- amount>
  581. Changes unused status or skill points by the specified amount.
  582. ---------------------------------------
  583. @resetstat
  584. /resetstate
  585. @resetskill
  586. /resetskill
  587. @reset
  588. Resets stats (@streset), skills (@skreset), or both (@reset).
  589. ---------------------------------------
  590. @feelreset
  591. Resets a Star Gladiator's marked maps.
  592. Only works on Star Gladiator and Star Emperor classes.
  593. ---------------------------------------
  594. @hatereset
  595. Resets a Star Gladiator's marked monsters.
  596. Only works on Star Gladiator and Star Emperor classes.
  597. ---------------------------------------
  598. @jobchange <job name>
  599. @jobchange <job ID> {<upper>}
  600. Changes your job.
  601. An 'upper' value can be specified with a job ID to produce its normal (0), advanced (1), or baby (2) version.
  602. If no job is given, a list of all available jobs will be returned.
  603. Note that jobs 22 (Wedding), 26 (Summer), 27 (Christmas), and 28 (Hanbok) are not available via @job.
  604. Restriction:
  605. - Used from console
  606. ---------------------------------------
  607. @speed <0-1000>
  608. Sets the speed at which the character walks and attacks.
  609. Default is 150 (0 is fastest, 1000 is slowest).
  610. ---------------------------------------
  611. @spiritball <0-100>
  612. Summons the specified amount of spirit spheres around you.
  613. ---------------------------------------
  614. @soulball <0-20>
  615. Summons the specified amount of soul spheres around you.
  616. ---------------------------------------
  617. @mount {<dragon color 1-5>}
  618. @mount {<madogear type 0-2>}
  619. @mount2
  620. Toggles mounting/unmounting a job mount (@mount) or cash mount (@mount2).
  621. ---------------------------------------
  622. @zeny <+/- amount>
  623. Changes Zeny by the specified amount.
  624. ---------------------------------------
  625. @cash <+/- amount>
  626. Changes Cash Points by the specified amount.
  627. ---------------------------------------
  628. @points <+/- amount>
  629. Changes Kafra Points by the specified amount.
  630. ---------------------------------------
  631. @model <hair style> <hair color> <cloth color>
  632. @hairstyle <default: 0-27>
  633. @haircolor <default: 0-8>
  634. @dye <default: 0-4>
  635. @bodystyle <default: 0-1>
  636. Changes appearance based on the given parameters.
  637. The min/max values are set in '/conf/battle/client.conf'.
  638. Appearance changed via @bodystyle won't save unless
  639. 'save_body_style' is enabled in '/conf/battle/client.conf'
  640. ---------------------------------------
  641. @changelook {position} <view ID>
  642. Changes the player's appearance to the specified view ID.
  643. If no position is given, the command defaults to headgear.
  644. 1: Top
  645. 2: Middle
  646. 3: Bottom
  647. 4: Weapon
  648. 5: Shield
  649. 6: Shoes
  650. 7: Robe
  651. ---------------------------------------
  652. @costume {<costume name>}
  653. Changes the player's visible appearance to that of the selected costume.
  654. Available costumes:
  655. Wedding,
  656. Xmas,
  657. Summer,
  658. Hanbok,
  659. Oktoberfest
  660. Typing the command without a costume name will display available costumes. If the
  661. player is wearing a costume it will be removed.
  662. ---------------------------------------
  663. @changedress
  664. Removes all character costumes.
  665. ---------------------------------------
  666. @fakename {<text string>}
  667. Temporarily changes name to the specified string (lasts until player logs out).
  668. If no string is given, the character's real name will be re-applied.
  669. ---------------------------------------
  670. @size <0-2>
  671. @sizeall <0-2>
  672. Changes your size (0 = Normal, 1 = Small, 2 = Large).
  673. Additionally, @sizeall will change the size of all online players.
  674. ---------------------------------------
  675. @duel {<duel participant count>}
  676. @duel {<player name>}
  677. @invite <player name>
  678. @accept
  679. @reject
  680. @leave
  681. Duel-organizing commands.
  682. When specifying the participant count accepted values are 2 ~ 65535.
  683. Some options can be found in '/conf/battle/misc.conf'.
  684. ---------------------------------------
  685. @heal {<hp> {<sp>}}
  686. Heals the specified amount of HP and SP.
  687. If no paramters are given, the character will be fully healed.
  688. ---------------------------------------
  689. @alive
  690. @raisemap
  691. @raise
  692. Resurrection commands.
  693. @alive will revive the attached player.
  694. @raisemap will revive all players on the map.
  695. @raise will revive all players on the server.
  696. ---------------------------------------
  697. @disguise <monster/npc name/ID>
  698. @undisguise
  699. @disguiseall <monster/npc name/ID>
  700. @undisguiseall
  701. Disguises or undisguises player as a monster/NPC sprite.
  702. Additionally, @disguiseall/@undisguiseall will disguise all online players.
  703. ---------------------------------------
  704. @monsterignore
  705. Makes you immune to attacks (monsters/players/skills cannot target/hit you).
  706. ---------------------------------------
  707. @hide
  708. /hide
  709. Toggles GM Hide (total invisibility to characters and monsters).
  710. ---------------------------------------
  711. @npctalk <npc name> <message>
  712. Command what other npcs say.
  713. Displays the message above the NPC's head (like the 'npctalk' script command).
  714. ---------------------------------------
  715. @vip <+/- time> <player name>
  716. Set a player in VIP mode for a limited time.
  717. Time could be reduced and if below now VIP mode is removed
  718. Time elements: y/a, m, d/j, h, mn, s
  719. Example:
  720. @vip +2h mychar
  721. -> set mychar's account as VIP for 2 hours.
  722. ---------------------------------------
  723. @fullstrip <player name>
  724. Unequip all items from a player.
  725. ---------------------------------------
  726. @cart <cart ID>
  727. Give or remove a cart to a player and also change the cart skin based on ID:
  728. 0: remove cart
  729. 1-5: normal carts
  730. 6-9: new carts (available for PACKETVER >= 20120201)
  731. ---------------------------------------
  732. @cloneequip <char_id>
  733. @cloneequip "<char name>"
  734. 'Clone' other player's equipments then equip them.
  735. ---------------------------------------
  736. @clonestat <char_id>
  737. @clonestat "<char name>"
  738. 'Clone' other player's stats.
  739. ---------------------------------------
  740. @limitedsale
  741. Opens the limited sale window.
  742. ---------------------------------------
  743. @camerainfo {<range> <rotation> <latitude>}
  744. Displays/hides camera information from the client.
  745. If args are given, sets camera position.
  746. ---------------------------------------
  747. @enchantgradeui
  748. Opens the enchantgrade UI.
  749. ---------------------------------------
  750. ==============================
  751. | 5. Administrative Commands |
  752. ==============================
  753. @langtype <language>
  754. Changes the language attached to the player's account (#langtype).
  755. If no parameter is given, a list of available languages is displayed.
  756. All languages are defined in '/src/common/msg_conf.hpp'.
  757. ---------------------------------------
  758. @email <current@email.tld> <new@email.tld>
  759. Changes the email address attached the player's account.
  760. Note: This command doesn't validate the email address itself, but checks the structure of the email (xxx@xxx).
  761. Example:
  762. @email a@b.com b@b.com
  763. Output:
  764. Fail message: Invalid email. If you have default e-mail, type a@a.com.
  765. Success message: Information sent to login-server via char-server.
  766. ---------------------------------------
  767. @changesex
  768. Changes the gender attached to the player's account.
  769. ---------------------------------------
  770. @changecharsex
  771. Changes the gender attached to the player's character.
  772. ---------------------------------------
  773. @marry <player 1> <player 2>
  774. @divorce <player>
  775. Marries or divorces two players.
  776. ---------------------------------------
  777. @adopt <player>
  778. Adopts the specified player with the attached character as one of the parents.
  779. ---------------------------------------
  780. @refineui
  781. Opens the refine user interface.
  782. Note: This command requires packet version 2016-10-12 or newer.
  783. ---------------------------------------
  784. @stylist
  785. Opens the stylist user interface.
  786. Note: This command requires packet version 2015-11-04 or newer.
  787. ---------------------------------------
  788. @request <message>
  789. Sends a message to all connected GMs (via the GM whisper system).
  790. ---------------------------------------
  791. @gmotd
  792. Displays the motd file to all players.
  793. ---------------------------------------
  794. @broadcast <message>
  795. /b <message>
  796. /nb <message>
  797. @localbroadcast <message>
  798. /lb <message>
  799. /nlb <message>
  800. Announces a message in yellow text.
  801. Except for /nb and /nlb, the message will be prefixed with the name of the attached character.
  802. @broadcast will be shown to the entire server.
  803. @localbroadcast will be shown on the player's map only.
  804. ---------------------------------------
  805. @kami <message>
  806. @kamib <message>
  807. @kamic <color> <message>
  808. @lkami <message>
  809. Announces a message without a name prefix.
  810. @kami will broadcast in yellow text.
  811. @kamib will broadcast in blue text.
  812. @kamic will broadcast in the specified color (a hexadecimal value).
  813. @lkami will broadcast on the attached character's current map.
  814. Example:
  815. @kamic FF0000 This message is in red.
  816. ---------------------------------------
  817. @killmonster
  818. @killmonster2
  819. Kills all monsters on the map.
  820. Additionally, @killmonster2 will prevent the monsters from dropping items (except looted items).
  821. ---------------------------------------
  822. @kill
  823. @nuke <player name>
  824. @doommap
  825. @doom
  826. Kill commands.
  827. @kill will kill the attached player.
  828. @nuke will kill the specified player and deal area splash damage.
  829. @doommap will kill all players on the map.
  830. @doom will kill all players on the server.
  831. ---------------------------------------
  832. @mute <time> <player name>
  833. @mutearea <time>
  834. @unmute <player name>
  835. Mutes or unmutes a player (prevents talking, usage of skills, and commands).
  836. @mutearea will mute every player on screen for the specified time.
  837. ---------------------------------------
  838. @jail <player name>
  839. @jailfor <time> <player name>
  840. @unjail <player name>
  841. Sends the specified character to jail.
  842. If a time is not specified (jailfor), the player will be jailed indefinitely.
  843. ---------------------------------------
  844. @kick <player name/ID>
  845. Kick a player from the server.
  846. Restriction:
  847. - Used from 'atcommand' or 'useatcmd' by autotrader
  848. ---------------------------------------
  849. @kickall
  850. /killall
  851. Disconnects a user or all users from the server.
  852. ---------------------------------------
  853. @ban <+/- time> <player name>
  854. @unban <player name>
  855. Bans or unbans a player account for a limited time.
  856. Time elements: y/a, m, d/j, h, mn, s
  857. Example:
  858. @ban +2d Char2
  859. -> bans Char2's account for 2 days.
  860. ---------------------------------------
  861. @block <player name>
  862. @unblock <player name>
  863. Blocks or unblocks a player from logging in indefinitely.
  864. ---------------------------------------
  865. @charban <+/- time> <player name>
  866. @charunban <player name>
  867. Bans or unbans a player for a limited time.
  868. (Very similar to @ban and but for 1 character only)
  869. Time elements: y/a, m, d/j, h, mn, s
  870. Example:
  871. @charban +2d Char2
  872. -> bans Char2's for 2 days.
  873. ---------------------------------------
  874. @mapexit
  875. Sends quit signal to mapserver, saving all data and causing a graceful shutdown.
  876. This will also send a packet to clients causing them to close.
  877. ---------------------------------------
  878. @reload <type>
  879. @reloadatcommand
  880. @reloadbattleconf
  881. @reloadinstancedb
  882. @reloaditemdb
  883. @reloadmobdb
  884. @reloadmotd
  885. @reloadmsgconf
  886. @reloadpcdb
  887. @reloadquestdb
  888. @reloadscript
  889. @reloadskilldb
  890. @reloadstatusdb
  891. @reloadachievementdb
  892. @reloadattendancedb
  893. Reloads a database or configuration file.
  894. Databases:
  895. -- instancedb: Instance Database
  896. -- itemdb: Item Database
  897. -- mobdb: Monster Database
  898. -- questdb: Quest Database
  899. -- script: NPC Scripts
  900. -- skilldb: Skill Database
  901. -- achievementdb: Achievement Database
  902. -- attendancedb: Attendance Database
  903. Configuration files:
  904. -- atcommand: Atcommand Settings
  905. -- battleconf: Battle Settings (may require relog)
  906. -- motd: Message of the Day
  907. -- msgconf: Message Configuration
  908. -- pcdb: Player Settings
  909. -- statusdb: Status Settings
  910. Affected files:
  911. -- atcommand: atcommands.yml, groups.conf
  912. -- battleconf: battle_athena.conf, battle_conf.txt
  913. -- instancedb: instance_db.yml
  914. -- itemdb: item_db.yml, item_group_db.yml, item_noequip.txt, item_combos.yml, item_randomopt_db.yml, item_randomopt_group.yml
  915. -- mobdb: mob_db.yml, mob_item_ratio.yml, mob_chat_db.yml, mob_avail.yml, mob_summon.yml, pet_db.yml, homunculus_db.txt, homun_skill_tree.txt, exp_homun.yml, mercenary_db.yml, elemental_db.yml
  916. -- motd: motd.txt
  917. -- msgconf: atcommands.yml
  918. -- pcdb: statpoint.yml, job_exp.yml, skill_tree.yml, attr_fix.yml, job_stats.yml, job_basepoints.yml, level_penalty.yml
  919. -- questdb: quest_db.yml
  920. -- script: /npc/*.txt, /npc/*.conf
  921. -- skilldb: skill_db.yml, skill_nocast_db.txt, skill_changematerial_db.txt, skill_damage_db.txt, abra_db.yml, create_arrow_db.yml, produce_db.txt, spellbook_db.yml, magicmushroom_db.yml
  922. -- statusdb: attr_fix.yml, size_fix.yml, refine.yml
  923. -- achievementdb: achievement_db.yml
  924. -- attendancedb: attendance.yml
  925. Restriction:
  926. - Used from 'atcommand' or 'useatcmd'. For @reload & @reloadscript
  927. ---------------------------------------
  928. @set <variable> {<value>}
  929. Changes a player or account variable to the specified value.
  930. If no value is given, the variable's current value will be displayed.
  931. Note that the value of a string variable may be typed with or without double quotes.
  932. ---------------------------------------
  933. @setbattleflag <flag> <value> {<reload>}
  934. Changes a battle_config flag without rebooting the server.
  935. If a value is given for reload, then the server will attempt to reload the mob database
  936. if the config being changed is EXP/drop related.
  937. ---------------------------------------
  938. @adjgroup <group ID>
  939. Temporarily changes the group of a character (lasts until player logs out).
  940. The groups are defined in '/conf/groups.conf'.
  941. ---------------------------------------
  942. @addperm {<permission name>}
  943. @rmvperm {<permission name>}
  944. Temporarily changes the permissions of a character (lasts until player logs out).
  945. If no permission is given, a list of available permissions will be returned.
  946. ---------------------------------------
  947. @npcmove <x> <y> <npc name>
  948. Moves an NPC to a specified coordinate on its map.
  949. ---------------------------------------
  950. @hidenpc <npc name>
  951. @shownpc <npc name>
  952. Toggles the visibility of an NPC's sprite.
  953. ---------------------------------------
  954. @loadnpc <path>
  955. Loads an NPC script by path.
  956. Example:
  957. @loadnpc npc/custom/jobmaster.txt
  958. ---------------------------------------
  959. @unloadnpc <npc name>
  960. Unloads an NPC.
  961. Example:
  962. @unloadnpc Job Master
  963. ---------------------------------------
  964. @unloadnpcfile <path>
  965. Unloads all NPCs in a file.
  966. Example:
  967. @unloadnpcfile npc/custom/jobmaster.txt
  968. ---------------------------------------
  969. @reloadnpcfile <path>
  970. Unloads and loads an NPC.
  971. Same as @unloadnpcfile and @loadnpc but ran as one command.
  972. Example:
  973. @reloadnpcfile npc/custom/jobmaster.txt
  974. ---------------------------------------
  975. =====================
  976. | 6. Party Commands |
  977. =====================
  978. @party <party_name>
  979. Organizes a new party, with the attached character as leader.
  980. ---------------------------------------
  981. @partyoption <pickup share: yes/no> <item distribution: yes/no>
  982. Changes party options for experience sharing and item sharing.
  983. ---------------------------------------
  984. @changeleader <party_member_name>
  985. Changes the leader of your party to another member.
  986. You must be the party leader to use this command.
  987. ---------------------------------------
  988. @partyrecall <party name>
  989. Warps all online characters of a party to your location.
  990. ---------------------------------------
  991. @partyspy <party name>
  992. Allows you to spy on any party's Party Chat.
  993. At least one member of that party must be online.
  994. NOTE: map server needs to be configured to enable spying to use this command (enable_spy: yes)
  995. ---------------------------------------
  996. @partysharelvl <value>
  997. Temporarily adjusts the party share level range (lasts until character server restarts).
  998. The permanent value is defined by 'party_share_level' in '/conf/inter_athena.conf'.
  999. ---------------------------------------
  1000. =====================
  1001. | 7. Guild Commands |
  1002. =====================
  1003. @guild <guild name>
  1004. Creates a new guild, with the attached character as guildmaster.
  1005. ---------------------------------------
  1006. @breakguild
  1007. Breaks the guild of the attached character.
  1008. You must be the guildmaster to use this command.
  1009. ---------------------------------------
  1010. @changegm <guild_member_name>
  1011. Changes the guildmaster of your guild to another member.
  1012. You must be the guildmaster to use this command.
  1013. ---------------------------------------
  1014. @guildstorage
  1015. Opens your guild storage.
  1016. ---------------------------------------
  1017. @glvl <+/- amount>
  1018. Changes guild level by the specified amount.
  1019. ---------------------------------------
  1020. @disguiseguild <monster/npc name/ID> <guild name/ID>
  1021. @undisguiseguild
  1022. Disguises or undisguises all online characters of a guild.
  1023. ---------------------------------------
  1024. @sizeguild <size> <guild name>
  1025. Changes the size of all online characters of a guild.
  1026. ---------------------------------------
  1027. @guildrecall <guild name>
  1028. Warps all online characters of a guild to your location.
  1029. ---------------------------------------
  1030. @guildspy <guild name>
  1031. Allows you to spy on any guild's Guild Chat.
  1032. At least one member of that guild must be online.
  1033. NOTE: map server needs to be configured to enable spying to use this command (enable_spy: yes)
  1034. ---------------------------------------
  1035. ===================
  1036. | 8. Pet Commands |
  1037. ===================
  1038. @makeegg <egg ID>
  1039. Creates a Pet Egg based on the given ID.
  1040. ---------------------------------------
  1041. @hatch
  1042. Opens the Hatch window (like using a Pet Incubator).
  1043. ---------------------------------------
  1044. @pettalk <message>
  1045. Command what the player's pet will say.
  1046. ---------------------------------------
  1047. @petrename
  1048. If you have not already renamed your pet, you can do this on the Pet window.
  1049. If you have renamed your pet, this command will allow you to use the
  1050. the rename option on the window again.
  1051. ---------------------------------------
  1052. @petfriendly <0-1000>
  1053. Sets the intimacy level of your pet, with 1000 being "Loyal".
  1054. ---------------------------------------
  1055. @pethungry <0-100>
  1056. Sets the hunger level of your pet, with 100 being "Stuffed".
  1057. ---------------------------------------
  1058. ==========================
  1059. | 9. Homunculus Commands |
  1060. ==========================
  1061. @makehomun <Homunculus ID>
  1062. Creates the specified homunculus.
  1063. ---------------------------------------
  1064. @homevolution
  1065. @hommutate {<Homunculus ID>}
  1066. Evolves or mutates your homunculus, if possible.
  1067. If no Homunculus ID is specified for @hommutate, a random ID is chosen.
  1068. If it doesn't work, the /swt emotion is shown.
  1069. ---------------------------------------
  1070. @hominfo
  1071. @homstats
  1072. Displays homunculus stats in different formats.
  1073. Output Example [@hominfo]:
  1074. Homunculus Stats:
  1075. HP: 153/153 - SP: 54/54
  1076. ATK: 59 - MATK: 69~69
  1077. Hungry: 29 - Intimacy: 5
  1078. Stats: Str 24 / Agi 25 / Vit 18 / Int 40 / Dex 31 / Luk 14
  1079. Output Example [@homstats]:
  1080. Homunculus growth stats (Lv 1 Lif):
  1081. Max HP: 153 (151~160)
  1082. Max SP: 54 (50~60)
  1083. Str: 20 (18~22)
  1084. Agi: 22 (21~24)
  1085. Vit: 16 (16~20)
  1086. Int: 40 (39~45)
  1087. Dex: 29 (25~34)
  1088. Luk: 14 (13~15)
  1089. ---------------------------------------
  1090. @homshuffle
  1091. Re-calculates homunculus stats, as if the homunculus was re-leveled from level 1.
  1092. ---------------------------------------
  1093. @homtalk <message>
  1094. Command what the player's homunculus will say.
  1095. ---------------------------------------
  1096. @homlevel <+/- amount>
  1097. Changes homunculus level by the specified amount.
  1098. ---------------------------------------
  1099. @homfriendly <0-1000>
  1100. Sets the intimacy level of your homunculus, with 1000 being "Loyal".
  1101. ---------------------------------------
  1102. @homhungry <0-100>
  1103. Sets the hunger level of your homunculus, with 100 being "Stuffed".
  1104. ---------------------------------------
  1105. ========================
  1106. | 10. Channel Commands |
  1107. ========================
  1108. @join <#channel_name> {<password>}
  1109. @channel join <#channel_name> {<password>}
  1110. Joins the specified channel.
  1111. ---------------------------------------
  1112. @channel leave <#channel_name>
  1113. Leaves the specified channel.
  1114. ---------------------------------------
  1115. @channel create <#channel_name> <channel_password>
  1116. Creates a new channel.
  1117. 'allow_user_channel_creation' must be enabled in '/conf/channels.conf'.
  1118. ---------------------------------------
  1119. @channel delete <#channel_name>
  1120. Destroys the specified channel.
  1121. ---------------------------------------
  1122. @channel list
  1123. @channel list mine
  1124. @channel list colors
  1125. 'list' displays a list of all public channels.
  1126. 'list mine' displays a list of channels you have joined.
  1127. 'list colors' displays a list of all available colors for custom channels.
  1128. ---------------------------------------
  1129. @fontcolor <color_name>
  1130. Sets channel chat font color for the invoking character only.
  1131. Typing "Normal" returns text to the normal channel color.
  1132. If no parameter is given, a list of available colors is displayed.
  1133. Option 'ColorOverride' must be enabled for this to take effect.
  1134. ---------------------------------------
  1135. @channel setcolor <#channel_name> <color_name>
  1136. Changes the text color of the specified channel.
  1137. You must either be the channel's owner or have the channel_admin permission.
  1138. All colors are defined in '/conf/channels.conf'.
  1139. ---------------------------------------
  1140. @channel setopt <#channel_name> <option> <value>
  1141. Sets an option and value for the specified channel.
  1142. You must either be the channel's owner or have the channel_admin permission.
  1143. Available options:
  1144. -- 'JoinAnnounce <1|0>' : Toggles channel announcement when a new player enters.
  1145. -- 'MessageDelay <0-10>' : Sets the delay (in seconds) for messages sent to the channel.
  1146. -- 'ColorOverride <1|0>' : Toggles the permission for players to change their color through @fontcolor.
  1147. ---------------------------------------
  1148. @channel ban <#channel_name> <player>
  1149. @channel unban <#channel_name> <player>
  1150. @channel unbanall <#channel_name>
  1151. @channel banlist <#channel_name>
  1152. Bans or unbans a player from the specified channel.
  1153. 'unbanall' clears all bans from the channel.
  1154. 'banlist' displays a list of all players banned from the channel.
  1155. ---------------------------------------
  1156. @channel bindto <#channel_name>
  1157. @channel unbind
  1158. Binds or unbinds your global chat with the specified channel, which sends all global messages to the specified channel.
  1159. ---------------------------------------
  1160. @setquest <quest ID>
  1161. @erasequest <quest ID>
  1162. @completequest <quest ID>
  1163. @checkquest <quest ID>
  1164. Changes/checks the status of the specified quest ID.
  1165. ---------------------------------------
  1166. =====================
  1167. | 11. Clan Commands |
  1168. =====================
  1169. @clanspy <clan name>
  1170. Allows you to spy on any clan's Clan Chat.
  1171. At least one member of that clan must be online.
  1172. NOTE: map server needs to be configured to enable spying to use this command (enable_spy: yes)
  1173. ---------------------------------------