gm.conf 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //--------------------------------------------------------------
  2. // rAthena Battle Configuration File
  3. // Originally Translated by Peter Kieser <pfak@telus.net>
  4. // Made in to plainer English by Ancyker
  5. //--------------------------------------------------------------
  6. // Note 1: Value is a config switch (on/off, yes/no or 1/0)
  7. // Note 2: Value is in percents (100 means 100%)
  8. //--------------------------------------------------------------
  9. // The symbol that will be used to recognize commands.
  10. // You can set any one character except:
  11. // - control-characters (0x00-0x1f),
  12. // - '%' (party chat symbol)
  13. // - '$' (guild chat symbol)
  14. // - '/' (client commands symbol)
  15. // atcommand_symbol represents @commands used locally.
  16. // charcommand_symbol represents #commands used on other players.
  17. atcommand_symbol: @
  18. charcommand_symbol: #
  19. // The maximum quantity of monsters that can be summoned per GM command (0 denotes an unlimited quantity)
  20. atcommand_spawn_quantity_limit: 100
  21. // Maximum number of slave-clones that can be have by using the @slaveclone at command. (0 denotes unlimited quantity)
  22. atcommand_slave_clone_limit: 25
  23. // If 'no', commands require exact player name. If 'yes', entering a partial
  24. // name will work, as long as there's only one match from all players in the
  25. // current map server.
  26. // Some critical atcommands like jail, ban and a few others will still require you to enter the full name.
  27. // It will always work for charcommands when the setting is enabled.
  28. partial_name_scan: yes
  29. // Ban people that try trade dupe.
  30. // Duration of the ban, in minutes (default: 5). To disable the ban, set 0.
  31. ban_hack_trade: 5
  32. // requires RENEWAL_EXP or RENEWAL_DROP to be enabled (src/config/renewal.hpp)
  33. // modifies @mobinfo to display the users' real drop rate as per renewal_drop formula
  34. // modifies @iteminfo to not display the minimum item drop rate (since it can't tell the mob level)
  35. // modifies @whodrops to display the users' real drop rate as per renewal_drop formula
  36. atcommand_mobinfo_type: 1
  37. // Should atcommands trigger level up events for NPCs? (Note 1)
  38. // This option is for @baselevelup and @joblevelup
  39. // Default: no
  40. atcommand_levelup_events: no
  41. // Disable atcommands while a player is attached to a npc? (Note 1)
  42. // This can be changed by script commands 'enable_command' and 'disable_command'.
  43. // Anyone with the 'command_enable' permission in the 'conf/group.conf' can bypass this.
  44. // Default: yes
  45. atcommand_disable_npc: yes