atcommand_athena.conf 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805
  1. //--------------------------------------------------------------
  2. // eAthena atcommand configuration file.
  3. // Originally translated by Peter Kieser <pfak@telus.net>
  4. //--------------------------------------------------------------
  5. // The symbol that will be used to recognize commands.
  6. // You can set any one character except control-characters (0x00-0x1f),
  7. // '%', '$' (party/guild chat speaking) and '/' (standard client commands).
  8. // command_symbol represents @commands used locally
  9. // char_symbol represents #commands used on other players.
  10. command_symbol: @
  11. char_symbol: #
  12. // The following settings in this file use the format "<command name>: level(@),level(#)".
  13. // They define the minimum GM level required to execute the associated command.
  14. // @ = atcommand. most work only on yourself.
  15. // # = charcommand. remote usage only. GMs will be able to use these on other players.
  16. // Adjust values as you like. Note that to activate commands for normal players,
  17. // (GM level 0), you also need to change the 'atcommand_gm_only' option to 'no'.
  18. // To completely disable a command, set its required GM level to 100.
  19. // Default levels were chosen so that they form the following hierarchy:
  20. // 0: Normal player
  21. // -> no commands accessible
  22. // 1: Super player
  23. // -> some minor advantage: storage, petrename, etc...
  24. // 10: Super player+
  25. // -> more powerful commands, like mobsearch and changegm
  26. // 20: Mediator
  27. // -> GM commands for finding players and moving to them (also kicking them)
  28. // 40: Sub-GM
  29. // -> GM commands for basic tasks, no significant impact on other players
  30. // 50: Sub-GM+
  31. // -> GM commands to spawn mobs and create guilds
  32. // 60: GM
  33. // -> almost all commands available (except administration and mass commands)
  34. // 80: GM Chief
  35. // -> can do anything, except administration commands
  36. // 99: Administrator
  37. // -> can do anything!
  38. // 100: Disabled
  39. // -> commands that will not be available to anyone
  40. //--------------------------
  41. // 0: normal player commands
  42. // None for security purposes.
  43. //-------------------------
  44. // 1: Super player commands
  45. // Displays a list of @ commands available to the player.
  46. commands: 1,1
  47. // Displays the server rates.
  48. rates: 1,1
  49. // Show server uptime
  50. uptime: 1,1
  51. // Shows/Hides the "there is a delay after a skill" message.
  52. showdelay: 1,1
  53. // Displays current levels and % progress.
  54. exp: 1,1
  55. // To change your (own) email (characters protection)
  56. // note: this command doesn't check email itself, but check structure of the email (xxx@xxx)
  57. // if you want be sure of each e-mail disable this option (value: 100)
  58. email: 1,1
  59. // Show Monster info (rates, stats, drops, MVP stuff)
  60. mobinfo: 1,1
  61. monsterinfo: 1,1
  62. mi: 1,1
  63. // Show Item info (type, price, etc)
  64. iteminfo: 1,1
  65. ii: 1,1
  66. // Show who drops an item (mobs with highest drop rate)
  67. whodrops: 1,1
  68. // Syncs the player's position on the client with the one stored on the server.
  69. refresh: 1,1
  70. // Give server time. (6 same commands)
  71. time: 1,1
  72. date: 1,1
  73. serverdate: 1,1
  74. servertime: 1,1
  75. // Displays SVN version of the server.
  76. version: 1,1
  77. // Suicide your character.
  78. die: 1,1
  79. // Enables you to rename your pet.
  80. petrename: 1,1
  81. // Organize a new party, with you as the party leader.
  82. party: 1,1
  83. // Brings up your personal storage wherever you are.
  84. storage: 1,1
  85. // Opens your mailbox.
  86. mail: 1,1
  87. // Opens auctions window.
  88. auction: 1,1
  89. // Locate someone on a map, returns your coordinates if the person isn't on.
  90. where: 1,1
  91. // Duel organizing commands
  92. duel: 1,1
  93. invite: 1,1
  94. accept: 1,1
  95. reject: 1,1
  96. leave: 1,1
  97. // Away messsage
  98. away: 1,1
  99. aw: 1,1
  100. // Main chat
  101. main: 1,1
  102. // Autorejecting Deals/Invites
  103. noask: 1,1
  104. // Displays remaining jail time
  105. jailtime: 1,1
  106. // Homunculus commands for players
  107. hominfo: 1,1
  108. homstats: 1,1
  109. // Kill Steal Protection
  110. noks: 1,1
  111. //---------------------------
  112. // 10: Super player+ commands
  113. // Displays/Hides Experience gained
  114. showexp: 10,10
  115. // Displays/Hides Zeny gained
  116. showzeny: 10,10
  117. // Warps you to predefined locations in major cities.
  118. go: 10,10
  119. // Enables/disables autolooting from killed mobs.
  120. autoloot: 10,10
  121. // Enables/disables autolooting an item.
  122. alootid: 10,10
  123. // Allows you continue vending offline.
  124. autotrade: 10,10
  125. at: 10,10
  126. // Change Guild Master of your Guild
  127. changegm: 10,10
  128. // Change the leader of your party.
  129. changeleader: 10,10
  130. // Change the party exp- and item share rules.
  131. partyoption: 10,10
  132. // Command what the player's pet will say.
  133. pettalk: 10,10
  134. // Command what the player's homunculus will say.
  135. homtalk: 10,10
  136. // Locates and displays the position of a certain mob on the current map.
  137. mobsearch: 10,10
  138. // Locates and displays the position of a certain mob on your mini-map
  139. showmobs: 10,10
  140. // Prints out in which maps a monster normally spawns at (does not count script-invoked mobs)
  141. whereis: 10,10
  142. // Resets a Star Gladiator's marked maps
  143. feelreset: 10,10
  144. //----------------------
  145. // 20: Mediator commands
  146. // Displays helpfile in eAthena base directory (2 same commands).
  147. help: 20,20
  148. h: 20,20
  149. help2: 20,20
  150. h2: 20,20
  151. // Warp yourself to a person (3 same commands + /shift).
  152. jumpto: 20,20
  153. goto: 20,20
  154. warpto: 20,20
  155. // Displays the motd file to all players
  156. gmotd: 20,20
  157. // Follow a player (including warping to them)
  158. follow: 20,20
  159. // Sends a request to all connected GMs (via the gm whisper system)
  160. request: 20,20
  161. // Disconnects a user from the server (1 command + right click menu for GM "(name) force to quit").
  162. kick: 20,20
  163. // Changes your appearance.
  164. model: 20,20
  165. // To get a peco to (un)ride (2 same commands).
  166. mountpeco: 20,20
  167. mount: 20,20
  168. // Returns list of logged in characters with their position (2 same commands).
  169. who: 20,20
  170. whois: 20,20
  171. // Returns list of logged in characters with their job.
  172. who2: 20,20
  173. // Returns list of logged in characters with their party/guild.
  174. who3: 20,20
  175. // Returns list of logged in characters with their position in a specifical map.
  176. whomap: 20,20
  177. // Returns list of logged in characters with their job in a specifical map.
  178. whomap2: 20,20
  179. // Returns list of logged in characters with their party/guild in a specifical map.
  180. whomap3: 20,20
  181. // Displays GMs online. For those who are higher GM level than yourself,
  182. // only the name is shown, for the rest, it displays the same info of
  183. // @who+@who2+who3
  184. whogm: 20,20
  185. // Change your appearence to other players to a mob.
  186. disguise: 20,20
  187. // Restore your normal appearance.
  188. undisguise: 20,20
  189. // Displays the text as a normal message with the format "*name message*"
  190. // instead of "name : message" (Like the /me command in IRC)
  191. me: 20,20
  192. // Changes your name to your choice temporarily.
  193. fakename: 20,20
  194. // Changes your size.
  195. size: 20,20
  196. // Can command what other npcs (by name) can say.
  197. npctalk: 20,20
  198. //--------------------
  199. // 40: Sub-GM commands
  200. // Broadcast to the whole server. Using (1 command + /nb, /b).
  201. broadcast: 40,40
  202. // Broadcast to the map you are on (1 command + /lb, /nlb).
  203. localbroadcast: 40,40
  204. // Broadcast (with or without name)
  205. kami: 40,40
  206. // Same as kami but with blue color
  207. kamib: 40,40
  208. // Same as kami but you can choose the color (uses different packet)
  209. kamic: 40,40
  210. // Enables GvG on a map (2 same commands).
  211. gvgon: 40,40
  212. gpvpon: 40,40
  213. // Turns GvG (Guild vs. Guild) off on a map (2 same commands).
  214. gvgoff: 40,40
  215. gpvpoff: 40,40
  216. // Activate/Deactivate kill steal protection on a map
  217. allowks: 40,40
  218. // Modifies your HP/SP.
  219. heal: 40,40
  220. // GM Hide (total invisibility to characters and monsters) (1 command + /hide).
  221. hide: 40,40
  222. // Changes your job to one you specify (2 same commands).
  223. job: 40,40
  224. jobchange: 40,40
  225. // Enables you to to jump randomly on a map (that you are already on).
  226. jump: 40,40
  227. // Warps you to your last save point (2 same commands).
  228. load: 40,40
  229. return: 40,40
  230. // Warps you to a specific npc
  231. tonpc: 40,40
  232. // Saves a warp point.
  233. memo: 40,40
  234. // Set your character display options. (Visual effects of your character)
  235. option: 40,40
  236. // Sets the level of intemecy of your pet.
  237. petfriendly: 40,40
  238. // Sets hunger level of your pet.
  239. pethungry: 40,40
  240. // Turns PvP (Person vs. Person) off on a map.
  241. pvpoff: 40,40
  242. // Enables PvP on a map.
  243. pvpon: 40,40
  244. // Permanently adds/removes a quest skill
  245. questskill: 40,40
  246. lostskill: 40,40
  247. // Sets the speed you can walk/attack at. Default is 150.
  248. speed: 40,40
  249. // Summons spirit spheres around you.
  250. spiritball: 40,40
  251. // Warp yourself to a certain map, at (x,y) coordinates (2 same commands).
  252. mapmove: 40,40 // (also /mm or /mapmove)
  253. rura: 40,40
  254. warp: 40,40
  255. // Changes GM clothes color (2 same commands)
  256. dye: 40,40
  257. ccolor: 40,40
  258. // Changes GM hair style (2 same commands)
  259. hairstyle: 40,40
  260. hstyle: 40,40
  261. // Changes GM hair color (2 same commands)
  262. haircolor: 40,40
  263. hcolor: 40,40
  264. // Deletes all your items.
  265. itemreset: 40,40
  266. // Does a skill/stat reset.
  267. reset: 40,40
  268. // Displays distribution of players on the server per map (% on each map which has players)
  269. users: 40,40
  270. // Deletes floor items in your range of sight
  271. cleanmap: 40,40
  272. // Kill all monsters in map (without drops)
  273. killmonster2: 40,40
  274. // Sets your spawn point (aka save point).
  275. save: 40,40
  276. // Do some visual effect on your character
  277. effect: 40,40
  278. // Do some visual effect on your character (misceffect)
  279. misceffect: 40,40
  280. // GM's magnifier
  281. identify: 40,40
  282. // Drop all your items
  283. dropall: 40,40
  284. // Store all your items
  285. storeall: 40,40
  286. // Allow other players to hit you out of PvP
  287. killable: 40,40
  288. // Look up a skill by name
  289. skillid: 40,40
  290. // Use a skill by id
  291. useskill: 40,40
  292. // What skills are required to get this skill
  293. skilltree: 40,40
  294. // Marriage commands
  295. marry: 40,40
  296. divorce: 40,40
  297. // Adopt a novice into a family
  298. adopt: 40,40
  299. // Play a Sound!
  300. sound: 40,40
  301. // Displays a player's storage
  302. storagelist: 40,40
  303. // Displays a player's cart contents
  304. cartlist: 40,40
  305. // Displays a player's items
  306. itemlist: 40,40
  307. // Displays a player's stats
  308. stats: 40,40
  309. //---------------------
  310. // 50: Sub-GM+ commands
  311. // Creates a new guild, with you as the guildmaster.
  312. guild: 50,50
  313. // Brings up your guild storage wherever you are.
  314. gstorage: 50,50
  315. // Spawns a monster, and a certain amount (2 same commands + /monster).
  316. monster: 50,50
  317. spawn: 50,50
  318. // Spawns a smaller sized version of a monster.
  319. monstersmall: 50,50
  320. // Spawns a larger sized version of a monster.
  321. monsterbig: 50,50
  322. // Spawns mobs that treat you as their master (they disappear after some time)
  323. summon: 50,50
  324. // It will spawn a supportive clone of the given player.
  325. clone: 50,50
  326. // It will spawn a supportive clone of the given player that follows the creator around.
  327. slaveclone: 50,50
  328. // It will spawn an aggresive clone of the given player.
  329. evilclone: 50,50
  330. //----------------
  331. // 60: GM commands
  332. // Add or Remove Cash/Kafra points to yourself
  333. cash: 60,60
  334. points: 60,60
  335. // Starts Guild Wars
  336. agitstart: 60,60
  337. // Ends Guild Wars
  338. agitend: 60,60
  339. // Resurects yourself.
  340. alive: 60,60
  341. // Levels your character to specified level (adds to your level) (7 same commands).
  342. blvl: 60,60
  343. lvup: 60,60
  344. blevel: 60,60
  345. baselvl: 60,60
  346. baselvup: 60,60
  347. baselevel: 60,60
  348. baselvlup: 60,60
  349. // Raises your job level (6 same commands).
  350. jlvl: 60,60
  351. jlevel: 60,60
  352. joblvl: 60,60
  353. joblvup: 60,60
  354. joblevel: 60,60
  355. joblvlup: 60,60
  356. // Changes the sex of yourself
  357. changesex: 60,60
  358. // Levels your guild to specified level (2 same commands).
  359. glvl: 60,60
  360. glevel: 60,60
  361. guildlvl: 60,60
  362. guildlvup: 60,60
  363. guildlevel: 60,60
  364. guildlvlup: 60,60
  365. // Find an itemID based on item name
  366. idsearch: 60,60
  367. // Creates an item of your choosing, either Item ID or Name (1 command + /item).
  368. item: 60,60
  369. // Creates a complet item (card, etc...) of your choosing, either Item ID or Name.
  370. item2: 60,60
  371. // Kill another character without hitting them.
  372. kill: 60,60
  373. // Kill all monsters in map (with drops)
  374. killmonster: 60,60
  375. // Creates yourself a pet egg.
  376. makeegg: 60,60
  377. // Hatches an egg
  378. hatch: 60,60
  379. // Instantly kills player whose name is entered and deals insane damage to everything around
  380. nuke: 60,60
  381. // Enable hitting a player even when not in PvP
  382. killer: 60,60
  383. // Creates weapon of desired element.
  384. produce: 60,60
  385. // Warps a character to you (1 command + /recall).
  386. recall: 60,60
  387. // Refines all weapons in your items list.
  388. refine: 60,60
  389. // Will repair all broken items in inventory.
  390. repairall: 60,60
  391. // Change Status of your character
  392. str: 60,60
  393. agi: 60,60
  394. vit: 60,60
  395. int: 60,60
  396. dex: 60,60
  397. luk: 60,60
  398. // Gets all skills (4 same commands)
  399. allskill: 60,60
  400. allskills: 60,60
  401. skillall: 60,60
  402. skillsall: 60,60
  403. // Sets GM stats to maximum (4 same commands)
  404. statall: 60,60
  405. statsall: 60,60
  406. allstats: 60,60
  407. allstat: 60,60
  408. // Gives you job points.
  409. stpoint: 60,60
  410. // Gives you skill points of desired amount.
  411. skpoint: 60,60
  412. // Warps all online character of a guild to you. (at least one member of that guild must be on.)
  413. guildrecall: 60,60
  414. // Warps all online character of a party to you. (at least one party member must be online.)
  415. partyrecall: 60,60
  416. // Allows you to spy on any Guilds Guild chat. (at least one member of that guild must be on.)
  417. // NOTE: map server needs to be configured to enable spying to use this command (enable_spy: yes)
  418. guildspy: 60,60
  419. // Allows you to spy on any party's party chat. (at least one party member must be online.)
  420. // NOTE: map server needs to be configured to enable spying to use this command (enable_spy: yes)
  421. partyspy: 60,60
  422. // Gives you money (zeny) of desired amount.
  423. zeny: 60,60
  424. // To block definitively a player (2 same commands)
  425. block: 60,60
  426. charblock: 60,60
  427. // To unblock a player (2 same commands)
  428. unblock: 60,60
  429. charunblock: 60,60
  430. // To ban a player for a limited time (4 same commands)
  431. ban: 60,60
  432. banish: 60,60
  433. charban: 60,60
  434. charbanish: 60,60
  435. // To unban a player (4 same commands)
  436. unban: 60,60
  437. unbanish: 60,60
  438. charunban: 60,60
  439. charunbanish: 60,60
  440. // To send specified character in jails
  441. jail: 60,60
  442. // To discharge a prisoner (2 same commands)
  443. unjail: 60,60
  444. discharge: 60,60
  445. // Timed jailing
  446. jailfor: 60,60
  447. // Create a static warp portal that lasts until the next reboot
  448. addwarp: 60,60
  449. // Open a trade window with any player
  450. trade: 60,60
  451. // Changes the player's appearance (headgear)
  452. changelook: 60,60
  453. // Homunculus commands for GMs
  454. hlvl: 60,60
  455. hlevel: 60,60
  456. homlvl: 60,60
  457. homlvup: 60,60
  458. homlevel: 60,60
  459. homevolve: 60,60
  460. homevolution: 60,60
  461. makehomun: 60,60
  462. homfriendly: 60,60
  463. homhungry: 60,60
  464. // Re-calculates stats, as if the homun was sent back to level 1 and re-leveled
  465. homshuffle: 60,60
  466. // WoE 2 start/stop commands
  467. agitstart2: 60,60
  468. agitend: 60,60
  469. // Resets player stats
  470. streset: 60,60
  471. // Resets player skills
  472. skreset: 60,60
  473. //----------------------
  474. // 80: GM Chief commands
  475. // Set the map you are on to day.
  476. day: 80,80
  477. // Kills everyone on the server.
  478. doom: 80,80
  479. // Kills everyone on the map you are on.
  480. doommap: 80,80
  481. // Set the map you are currently on to night.
  482. night: 80,80
  483. // Recalls Everyone To Your Coordinates
  484. recallall: 80,80
  485. // Revives all players on the map.
  486. raisemap: 80,80
  487. // Revives all players on the server.
  488. raise: 80,80
  489. // Hides a NPC.
  490. hidenpc: 80,80
  491. // Unhides a NPC.
  492. shownpc: 80,80
  493. // Loads a Script
  494. loadnpc: 80,80
  495. // Unloads a NPC
  496. unloadnpc: 80,80
  497. // Move a NPC
  498. npcmove: 80,80
  499. // turn skills on for a map
  500. skillon: 80,80
  501. // turn skills off for a map
  502. skilloff: 80,80
  503. // Mute a player (prevents talking, usage of skills and commands)
  504. mute: 80,80
  505. // Unmute a player
  506. unmute: 80,80
  507. //---------------------------
  508. // 99: Administrator commands
  509. // Disconnect all users from the server
  510. kickall: 99,99
  511. // Closes Map-Server
  512. mapexit: 99,99
  513. // Used for testing packet sends from the client (debug function)
  514. send: 99,99
  515. // Give information about terrain/area (debug function)
  516. gat: 99,99
  517. // Displays a status change without really applying it (debug function)
  518. displaystatus: 99,99
  519. // Displays the animation of a skill without really using it (debug function)
  520. displayskill: 99,99
  521. // Shows information about the map
  522. mapinfo: 99,99
  523. // Set Map Flags (WIP)
  524. mapflag: 99,99
  525. // Re-load item database (admin command)
  526. reloaditemdb: 99,99
  527. // Re-load monsters database (admin command)
  528. reloadmobdb: 99,99
  529. // Re-load skills database (admin command)
  530. reloadskilldb: 99,99
  531. // Re-load scripts (admin command)
  532. reloadscript: 99,99
  533. // Change a battle_config flag without rebooting server
  534. setbattleflag: 99,99
  535. // Re-load gm command config (admin command)
  536. reloadatcommand: 99,99
  537. // Re-load battle config (admin command)
  538. // Note that some player config settings won't take effect until relog
  539. // (display exp, display zeny, display skill delay fail, ...)
  540. reloadbattleconf: 99,99
  541. // Re-load status database (admin command)
  542. reloadstatusdb: 99,99
  543. // Re-load player info database (admin command)
  544. reloadpcdb: 99,99
  545. // Re-load the Message of the Day (admin command)
  546. reloadmotd: 99,99
  547. // Changes the GM level of another character
  548. // (lasts until reboot, or gm list reload)
  549. adjgmlvl: 99,99
  550. // Changes the required GM level of an @ command
  551. // (effect lasts until restart or command reload)
  552. adjcmdlvl: 99,99
  553. // [Un]Disguise All Players (admin command)
  554. disguiseall: 99,99
  555. undisguiseall: 99,99
  556. // Mutes every player on screen (admin command)
  557. mutearea: 99,99
  558. stfu: 99,99
  559. // Makes you immune to attacks (monsters/players/skills cannot target/hit you, admin command)
  560. monsterignore: 99,99
  561. battleignore: 99,99
  562. //---------------------------------------------------------------
  563. // 99: Weather effects
  564. snow: 99,99
  565. clouds: 99,99
  566. clouds2: 99,99
  567. fog: 99,99
  568. fireworks: 99,99
  569. sakura: 99,99
  570. leaves:99,99
  571. // Stop all weather effects
  572. clearweather: 99,99
  573. //---------------------------------------------------------------
  574. // 100: Disabled commands
  575. //---------------------
  576. // OTHER: not a command
  577. import: conf/import/atcommand_conf.txt