Advertisement
Guest User

Untitled

a guest
Jun 7th, 2012
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.99 KB | None | 0 0
  1. <?php
  2. // This is the application configuration file. All values have been set to
  3. // the default, and should be changed as needed.
  4. return array(
  5. 'ServerAddress' => 'myip', // This value is the hostname:port under which Flux runs. (e.g., example.com or example.com:80)
  6. 'BaseURI' => 'myip', // The base URI is the base web root on which your application lies.
  7. 'InstallerPassword' => 'secretpass', // Installer/updater password.
  8. 'RequireOwnership' => true, // Require the executing user to be owner of the FLUX_ROOT/data/ directory tree? (Better for security)
  9. // WARNING: This will be mostly IGNORED on non-POSIX-compliant OSes (e.g. Windows).
  10. 'DefaultLoginGroup' => null,
  11. 'DefaultCharMapServer' => null,
  12. 'DefaultLanguage' => 'en_us', // Specify the default control panel language (see FLUX_ROOT/lang/ directory for available languages.)
  13. 'SiteTitle' => 'Xenial RO', // This value is only used if the theme decides to use it.
  14. 'ThemeName' => 'default', // The theme name of the theme you would like to use. Themes are in FLUX_ROOT/themes.
  15. 'ScriptTimeLimit' => 0, // Script execution time limit. Specifies (in seconds) how long a page should run before timing out. (0 means forever)
  16. 'MissingEmblemBMP' => 'empty.bmp', //
  17. 'ItemIconNameFormat' => '%d.gif', // The filename format for item icons (defaults to {itemid}.gif).
  18. 'ItemImageNameFormat' => '%d.png', // The filename format for item images (defaults to {itemid}.png).
  19. 'ForceEmptyEmblem' => false, // Forcefully display empty guild emblems, helpful when you don't have GD2 installed.
  20. 'EmblemCacheInterval' => 12, // Hourly interval to re-cache guild emblems (set to 0 to disable emblem cache).
  21. 'SessionCookieExpire' => 48, // Duration in hours.
  22. 'AdminMenuLevel' => AccountLevel::LOWGM, // The starting level for which module actions are moved into the admin menu for display.
  23. 'DateDefaultTimezone' => null, // The default timezone, consult the PHP manual for valid timezones: http://php.net/timezones (null for defaut system TZ)
  24. 'DateFormat' => 'Y-m-d', // Default DATE format to be displayed in pages.
  25. 'DateTimeFormat' => 'Y-m-d H:i:s', // Default DATETIME format to be displayed in pages.
  26. 'ShowSinglePage' => true, // Whether or not to show the page numbers even if there's only one page.
  27. 'ResultsPerPage' => 20, // The number of results to display in a paged set, per page.
  28. 'PagesToShow' => 10, // The number of page numbers to display at once.
  29. 'PageJumpMinimumPages' => 1, // Minimum number of required pages before page jump box is shown. (0 to always show!)
  30. 'ShowPageJump' => true, // Whether or not to show the "Page Jump" box.
  31. 'SingleMatchRedirect' => true, // Whether or not to redirect to view action from index page if only one match is returned (and action is allowed).
  32. 'SingleMatchRedirectItem' => false, // Same as above, for item module.
  33. 'SingleMatchRedirectMobs' => false, // Same as above, for monster module.
  34. 'UsernameAllowedChars' => 'a-zA-Z0-9_', // PCRE Format Pattern. default: 'a-zA-Z0-9_' (alphanumeric and underscore)
  35. // WARNING: This string isn't escaped so be careful which chars you use!
  36. // PCRE Pattern Ref: http://php.net/manual/en/pcre.pattern.php
  37. 'MinUsernameLength' => 4, // Minimum username length.
  38. 'MaxUsernameLength' => 23, // Maximum username length.
  39. 'MinPasswordLength' => 8, // Minimum password length.
  40. 'MaxPasswordLength' => 31, // Maximum password length.
  41. 'RandomPasswordLength' => 16, // This is the length of the random password generated by the "Reset Password" feature.
  42. 'AllowDuplicateEmails' => false, // Whether or not to allow duplicate e-mails to be used in registration. (See Mailer config options)
  43. 'RequireEmailConfirm' => false, // Require e-mail confirmation during registration.
  44. 'RequireChangeConfirm' => false, // Require confirmation when changing e-mail addresses.
  45. 'EmailConfirmExpire' => 48, // E-mail confirmations expire hours. Unconfirmed accounts will expire after this period of time.
  46. 'MailerFromAddress' => 'noreply@localhost', // The e-mail address displayed in the From field.
  47. 'MailerFromName' => 'MailerName', // The name displayed with the From e-mail address.
  48. 'MailerUseSMTP' => false, // Whether or not to use a separate SMTP server for sending mail.
  49. 'MailerSMTPUseSSL' => false, // Whether or not mailer should connect using SSL (yes for GMail).
  50. 'MailerSMTPUseTLS' => false, // Same as above SSL setting, but for TLS. This setting will override the SSL setting.
  51. 'MailerSMTPPort' => null, // When MailerUseSMTP is true: SMTP server port (mailer will default to 25).
  52. 'MailerSMTPHosts' => null, // When MailerUseSMTP is true: A string host or array of hosts (e.g., 'host1' or array('host1', 'backuphost')).
  53. 'MailerSMTPUsername' => null, // When MailerUseSMTP is true: Authorized username for SMTP server.
  54. 'MailerSMTPPassword' => null, // When MailerUseSMTP is true: Authorized password for SMTP server (for above user).
  55. 'ServerStatusCache' => 2, // Store a cached server status and refresh every X minutes. Default: 2 minutes (value is measured in minutes).
  56. 'ServerStatusTimeout' => 2, // For each server, spend X amount of seconds to determine whether it's up or not.
  57. 'SessionKey' => 'fluxSessionData', // Shouldn't be changed, just specifies the session key to be used for session data.
  58. 'DefaultModule' => 'main', // This is the module to execute when none has been specified.
  59. 'DefaultAction' => 'index', // This is the default action for any module, probably should leave this alone. (Deprecated)
  60. 'GzipCompressOutput' => false, // Whether or not to compress output using zlib.
  61. 'GzipCompressionLevel' => 9, // zlib compression level. (1~9)
  62. 'OutputCleanHTML' => true, // Use this if you have Tidy installed to clean your HTML output when serving pages.
  63. 'ShowCopyright' => true, // Whether or not to show the copyright footer.
  64. 'ShowRenderDetails' => true, // Shows the "page rendered in X seconds" and "number of queries executed: X" in the default theme.
  65. 'UseCleanUrls' => false, // Set to true if you're running Apache and it supports mod_rewrite and .htaccess files.
  66. 'DebugMode' => false, // Set to false to minimize technical details from being output by Flux. WARNING: DO NOT USE THIS OPTION ON A PUBLICALLY-ACCESSIBLE CP.
  67. 'UseCaptcha' => true, // Use CAPTCHA image for account registration to prevent automated account creations. (Requires GD2/FreeType2)
  68. 'UseLoginCaptcha' => false, // Use CAPTCHA image for account logins. (Requires GD2/FreeType2)
  69. 'EnableReCaptcha' => false, // Enables the use of reCAPTCHA instead of Flux's native GD2 library (http://www.google.com/recaptcha)
  70. 'ReCaptchaPublicKey' => '...', // This is your reCAPTCHA public key [REQUIRED FOR RECAPTCHA] (sign up at http://www.google.com/recaptcha)
  71. 'ReCaptchaPrivateKey' => '...', // This is your reCAPTCHA private key [REQUIRED FOR RECAPTCHA] (sign up at http://www.google.com/recaptcha)
  72. 'ReCaptchaTheme' => 'white', // ReCaptcha theme to use (see: http://code.google.com/apis/recaptcha/docs/customization.html#Standard_Themes)
  73. 'DisplaySinglePages' => true, // Whether or not to display paging for single page results.
  74. 'ForwardYears' => 15, // (Visual) The number of years to display ahead of the current year in date inputs.
  75. 'BackwardYears' => 30, // (Visual) The number of years to display behind the current year in date inputs.
  76. 'ColumnSortAscending' => ' ▲', // (Visual) Text displayed for ascending sorted column names.
  77. 'ColumnSortDescending' => ' ▼', // (Visual) Text displayed for descending sorted column names.
  78. 'CreditExchangeRate' => 1.0, // The rate at which credits are exchanged for dollars.
  79. 'MinDonationAmount' => 2.0, // Minimum donation amount. (NOTE: Actual donations made that are less than this account won't be exchanged)
  80. 'DonationCurrency' => 'USD', // Preferred donation currency. Only donations made in this currency will be processed for credit deposits.
  81. 'MoneyDecimalPlaces' => 2, // (Visual) Number of decimal places to display in amount.
  82. 'MoneyThousandsSymbol' => ',', // (Visual) Thousandths place separator (a period in European currencies).
  83. 'MoneyDecimalSymbol' => '.', // (Visual) Decimal separator (a comma in European currencies).
  84. 'AcceptDonations' => true, // Whether or not to accept donations.
  85. 'PayPalIpnUrl' => 'www.sandbox.paypal.com', // The URL for PayPal's IPN responses (www.paypal.com for live and www.sandbox.paypal.com for testing)
  86. 'PayPalBusinessEmail' => 'admin@localhost', // Enter the e-mail under which you have registered your business account.
  87. 'PayPalReceiverEmails' => array( // These are the receiver e-mail addresses who are allowed to receive payment.
  88. //'admin2@localhost', // -- This array may be empty if you only use one e-mail
  89. //'admin3@localhost' // -- because your Business Email is also checked.
  90. ),
  91. 'GStorageLeaderOnly' => false, // Only allow guild leader to view guild storage rather than all members?
  92. 'DivorceKeepChild' => false, // Keep child after divorce?
  93. 'DivorceKeepRings' => false, // Keep wedding rings after divorce?
  94. 'IpWhitelistPattern' => // PCRE Format Pattern. It's recommended you add your gameserver, webserver and server owner's IPs here.
  95. '(127\.0\.0\.1|0(\.[0\*]){3})', // WARNING: This string isn't escaped so be careful which chars you use!
  96. // By default, whitelists 127.0.0.1 (localhost) and 0.0.0.0 (all interfaces; whitelists all wildcard bans that can achive this too)
  97. 'AllowIpBanLogin' => false, // Allow logging into account from banned IP.
  98. 'AllowTempBanLogin' => false, // Allow logging in of temporarily banned accounts.
  99. 'AllowPermBanLogin' => false, // Allow logging in of permanently banned accounts.
  100. 'AutoRemoveTempBans' => true, // Automatically remove expired temporary bans on certain pages.
  101. 'ItemShopMaxCost' => 99, // Max price an item can be sold for.
  102. 'ItemShopMaxQuantity' => 99, // Max quantity the item may be sold at once for.
  103. 'HideFromWhosOnline' => 10, // Levels greater than or equal to this will be hidden from the "Who's Online" page.
  104. 'HideFromMapStats' => 10, // Levels greater than or equal to this will be hidden from the "Map Stats" page.
  105. 'ChargeGenderChange' => 0, // You can specify this as the number of credits to charge for gender change. Can be 0 for free change.
  106. 'BanPaymentStatuses' => array( // Payment statuses that will automatically ban the account owner if received.
  107. 'Cancelled_Reversal', // -- 'Cancelled_Reversal'
  108. 'Reversed', // -- 'Reversed'
  109. ),
  110.  
  111. 'HoldUntrustedAccount' => 0, // This is the time in hours to hold a donation crediting process for, if the account
  112. // isn't a trusted account. Specify 0 or false to disable this feature.
  113.  
  114. 'AutoUnholdAccount' => false, // Enable this to auto-unhold an account and credit it if the transaction is still
  115. // valid. This only applies if you are using the HoldUnstrustedAccount feature.
  116. // If you want to run a cron job instead, you can make a request to the '/donate/update'
  117. // module/action with the InstallerPassword as the password to run the update task.
  118. // With clean URLs: http://<server>/<baseURI>/donate/update?password=<InstallerPassword>
  119. // Without clean URLs: http://<server>/<baseURI>?module=donate&action=update&password=<InstallerPassword>
  120. // NOTE: This option is HIGHLY inefficient, it's recommended to run a cron job instead.
  121.  
  122. 'AutoPruneAccounts' => false, // Enable this to automatically prune expired accounts. Enabling this is a performance
  123. // performance killer. See 'AutoUnholdAccount' for running this task as a cron job,
  124. // the module is 'account' and the action is 'prune'.
  125. // With clean URLs: http://<server>/<baseURI>/account/prune?password=<InstallerPassword>
  126. // Without clean URLs: http://<server>/<baseURI>?module=account&action=prune&password=<InstallerPassword>
  127.  
  128. 'ShopImageExtensions' => array( // These are the image extensions allowed for uploading in the item shop.
  129. 'png', 'jpg', 'gif', 'bmp', 'jpeg'
  130. ),
  131. 'NoResetPassLevel' => AccountLevel::HELPER, // Level of account to prevent password reset using control panel.
  132.  
  133. 'CharRankingLimit' => 20, //
  134. 'GuildRankingLimit' => 20, //
  135. 'ZenyRankingLimit' => 20, //
  136. 'DeathRankingLimit' => 20, //
  137. 'RankingHideLevel' => AccountLevel::LOWGM, //
  138. 'InfoHideZenyLevel' => AccountLevel::LOWGM, // Level of account to hide zeny from in server information page.
  139.  
  140. 'CharRankingThreshold' => 0, // Number of days the character must have logged in within to be listed in character ranking. (0 = disabled)
  141. 'ZenyRankingThreshold' => 0, // Number of days the character must have logged in within to be listed in zeny ranking. (0 = disabled)
  142. 'DeathRankingThreshold' => 0, // Number of days the character must have logged in within to be listed in death ranking. (0 = disabled)
  143.  
  144. 'HideTempBannedCharRank' => false, // Hide temporarily banned characters from ranking.
  145. 'HidePermBannedCharRank' => true, // Hide permanently banned characters from ranking.
  146.  
  147. 'HideTempBannedZenyRank' => false, // Hide temporarily banned characters from ranking.
  148. 'HidePermBannedZenyRank' => true, // Hide permanently banned characters from ranking.
  149.  
  150. 'HideTempBannedDeathRank' => false, // Hide temporarily banned characters from ranking.
  151. 'HidePermBannedDeathRank' => true, // Hide permanently banned characters from ranking.
  152.  
  153. 'HideTempBannedStats' => false, // Hide temporarily banned accounts from statistics.
  154. 'HidePermBannedStats' => true, // Hide permanently banned accounts from statistics.
  155.  
  156. 'SortJobsByAmount' => false, // Sort job class information on statistics page by descending quantity (false = Sort by Job ID).
  157.  
  158. 'CpLoginLogShowPassword' => false, // Show password in CP login log (also see access.php's SeeCpLoginLogPass).
  159.  
  160. 'CpResetLogShowPassword' => false, // Show password in CP "password resets" log (also see access.php's SeeCpResetPass).
  161.  
  162. 'CpChangeLogShowPassword' => false, // Show password in CP "password changes" log (also see access.php's SeeCpChangePass).
  163.  
  164. 'AdminMenuNewStyle' => true, // Use new-style admin menu; Applies to 'default' theme.
  165.  
  166. // These are the main menu items that should be displayed by themes.
  167. // They route to modules and actions. Whether they are displayed or
  168. // not at any given time depends on the user's account level and/or
  169. // their login status.
  170. 'MenuItems' => array(
  171. 'Main Menu' => array(
  172. 'Home' => array('module' => 'main'),
  173. //'Forums' => array('exturl' => 'http://www.fluxro.com/community'),
  174. ),
  175. 'Account' => array(
  176. 'Register' => array('module' => 'account', 'action' => 'create'),
  177. 'Login' => array('module' => 'account', 'action' => 'login'),
  178. 'Logout' => array('module' => 'account', 'action' => 'logout'),
  179. 'History' => array('module' => 'history'),
  180. 'My Account' => array('module' => 'account', 'action' => 'view'),
  181. ),
  182. 'Donations' => array(
  183. 'Purchase' => array('module' => 'purchase'),
  184. 'Donate' => array('module' => 'donate'),
  185. ),
  186. 'Information' => array(
  187. 'Server Info.' => array('module' => 'server', 'action' => 'info'),
  188. 'Server Status' => array('module' => 'server', 'action' => 'status'),
  189. 'WoE Hours' => array('module' => 'woe'),
  190. 'Castles' => array('module' => 'castle'),
  191. "Who's Online" => array('module' => 'character', 'action' => 'online'),
  192. 'Map Statistics'=> array('module' => 'character', 'action' => 'mapstats'),
  193. 'Ranking Info.' => array('module' => 'ranking', 'action' => 'character'),
  194. ),
  195. 'Database' => array(
  196. 'Item Database' => array('module' => 'item'),
  197. 'Mob Database' => array('module' => 'monster'),
  198. ),
  199. 'Misc. Stuff' => array(
  200. 'eA Logs' => array('module' => 'logdata'),
  201. 'CP Logs' => array('module' => 'cplog'),
  202. 'IP Ban List' => array('module' => 'ipban'),
  203. 'Accounts' => array('module' => 'account'),
  204. 'Characters' => array('module' => 'character'),
  205. 'Guilds' => array('module' => 'guild'),
  206. 'Reload' => array('module' => 'reload'),
  207. 'Send Mail' => array('module' => 'mail'),
  208. 'Re-Install' => array('module' => 'install', 'action' => 'reinstall'),
  209. //'Auction' => array('module' => 'auction'),
  210. //'Economy' => array('module' => 'economy'),
  211. )
  212. ),
  213.  
  214. // Sub-menu items that are displayed for any action belonging to a
  215. // particular module. The format it simple.
  216. 'SubMenuItems' => array(
  217. 'history' => array(
  218. 'gamelogin' => 'Game Logins',
  219. 'cplogin' => 'CP Logins',
  220. 'emailchange'=> 'E-Mail Changes',
  221. 'passchange' => 'Password Changes',
  222. 'passreset' => 'Password Resets'
  223. ),
  224. 'account' => array(
  225. 'index' => 'List Accounts',
  226. 'view' => 'View Account',
  227. 'changepass' => 'Change Password',
  228. 'changemail' => 'Change E-mail',
  229. 'changesex' => 'Change Gender',
  230. 'transfer' => 'Transfer Credits',
  231. 'xferlog' => 'Credit Transfer History',
  232. 'cart' => 'Go to Shopping Cart',
  233. 'login' => 'Login',
  234. 'create' => 'Register',
  235. 'resetpass' => 'Reset Password',
  236. 'resend' => 'Resend E-mail Confirmation'
  237. ),
  238. 'guild' => array(
  239. 'index' => 'List Guilds',
  240. 'export' => 'Export Guild Emblems'
  241. ),
  242. 'server' => array(
  243. 'status' => 'View Status',
  244. 'status-xml' => 'View Status as XML'
  245. ),
  246. 'logdata' => array(
  247. //'char' => 'Characters',
  248. //'inter' => 'Interactions',
  249. 'command' => 'Commands',
  250. //'branch' => 'Branches',
  251. 'chat' => 'Chat Messages',
  252. 'login' => 'Logins',
  253. //'mvp' => 'MVP',
  254. //'npc' => 'NPC',
  255. 'pick' => 'Item Picks',
  256. //'zeny' => 'Zeny'
  257. ),
  258. 'cplog' => array(
  259. 'paypal' => 'PayPal Transactions',
  260. 'login' => 'Logins',
  261. 'resetpass' => 'Password Resets',
  262. 'changepass' => 'Password Changes',
  263. 'changemail' => 'E-mail Changes',
  264. 'ban' => 'Account Bans',
  265. 'ipban' => 'IP Bans'
  266. ),
  267. 'reload' => array(
  268. 'mobskill' => 'Mob Skills'
  269. ),
  270. 'purchase' => array(
  271. 'index' => 'Shop',
  272. 'cart' => 'Go to Cart',
  273. 'checkout' => 'Checkout',
  274. 'clear' => 'Empty Cart',
  275. 'pending' => 'Pending Redemption'
  276. ),
  277. 'donate' => array(
  278. 'index' => 'Make a Donation',
  279. 'history' => 'Donation History',
  280. 'trusted' => 'Trusted PayPal E-mails'
  281. ),
  282. 'ipban' => array(
  283. 'index' => 'IP Ban List',
  284. 'add' => 'Add IP Ban'
  285. ),
  286. 'ranking' => array(
  287. 'character' => 'Character Ranking',
  288. 'guild' => 'Guild Ranking',
  289. 'zeny' => 'Zeny Ranking',
  290. 'death' => 'Death Ranking'
  291. ),
  292. 'item' => array(
  293. 'index' => 'List Items',
  294. 'add' => 'Add Item'
  295. )
  296. ),
  297.  
  298. 'AllowMD5PasswordSearch' => false,
  299. 'ReallyAllowMD5PasswordSearch' => false, // Are you POSITIVELY sure?
  300.  
  301. // Specifies which modules and actions should be ignored by Tidy
  302. // (enabled/disabled by the OutputCleanHTML option).
  303. 'TidyIgnore' => array(
  304. array('module' => 'captcha'),
  305. array('module' => 'guild', 'action' => 'emblem')
  306. ),
  307.  
  308. // Job classes, loaded from another file to avoid cluttering this one.
  309. // There isn't normally a need to modify this file, unless it's been
  310. // modified in an update. (In English: DON'T TOUCH THIS.)
  311. 'JobClasses' => include('jobs.php'),
  312. 'JobClassIndex' => array_flip(include('jobs.php')),
  313.  
  314. // Homunculus class IDs and their corresponding names.
  315. // Best not to mess with this either.
  316. 'HomunClasses' => include('homunculus.php'),
  317.  
  318. // Item Types with their corresponding names.
  319. // Shouldn't touch this either.
  320. 'ItemTypes' => include('itemtypes.php'),
  321.  
  322. // Specil Item Types with their corresponding names (For Weapons & Ammo by default).
  323. // Shouldn't touch this either.
  324. 'ItemTypes2' => include('itemtypes2.php'),
  325.  
  326. // Common Equip Location Combinations with their corresponding names.
  327. // Shouldn't touch this unless you've added custom combinations.
  328. 'EquipLocationCombinations' => include('equip_location_combinations.php'),
  329.  
  330. // Error Code -> Error Type mapping.
  331. // Shouldn't need touching, however modifying loginerrors.php should be relatively safe.
  332. 'LoginErrors' => include('loginerrors.php'),
  333.  
  334. // eA equip jobs mapping.
  335. 'EquipJobs' => include('equip_jobs.php'),
  336.  
  337. // eA equip locations mapping.
  338. 'EquipLocations' => include('equip_locations.php'),
  339.  
  340. // eA equip upper mapping.
  341. 'EquipUpper' => include('equip_upper.php'),
  342.  
  343. // eA monster races mapping.
  344. 'MonsterRaces' => include('races.php'),
  345.  
  346. // eA elements mapping.
  347. 'Elements' => include('elements.php'),
  348.  
  349. // eA attributes mapping.
  350. 'Attributes' => include('attributes.php'),
  351.  
  352. // eA monster modes mapping.
  353. 'MonsterModes' => include('monstermode.php'),
  354.  
  355. // Item shop categories.
  356. 'ShopCategories' => include('shopcategories.php'),
  357.  
  358. // Item pick types.
  359. 'PickTypes' => include('picktypes.php'),
  360.  
  361. // Castle names.
  362. 'CastleNames' => include('castlenames.php'),
  363.  
  364. // DON'T TOUCH. THIS IS FOR DEVELOPERS.
  365. 'FluxTables' => array(
  366. 'CreditsTable' => 'cp_credits',
  367. 'CreditTransferTable' => 'cp_xferlog',
  368. 'ItemShopTable' => 'cp_itemshop',
  369. 'TransactionTable' => 'cp_txnlog',
  370. 'RedemptionTable' => 'cp_redeemlog',
  371. 'AccountCreateTable' => 'cp_createlog',
  372. 'AccountBanTable' => 'cp_banlog',
  373. 'IpBanTable' => 'cp_ipbanlog',
  374. 'DonationTrustTable' => 'cp_trusted',
  375. 'AccountPrefsTable' => 'cp_loginprefs',
  376. 'CharacterPrefsTable' => 'cp_charprefs',
  377. 'ResetPasswordTable' => 'cp_resetpass',
  378. 'ChangeEmailTable' => 'cp_emailchange',
  379. 'LoginLogTable' => 'cp_loginlog',
  380. 'ChangePasswordTable' => 'cp_pwchange'
  381. ),
  382.  
  383. // Do not change these unless you also rename the files in FLUX_ROOT/lib/eA/
  384. 'MobSkillDb1' => FLUX_ROOT.'/lib/eA/mob_skill_db.txt',
  385. 'MobSkillDb2' => FLUX_ROOT.'/lib/eA/mob_skill_db2.txt',
  386.  
  387. // This is the combined file of the Mob Skill DBs minus the comments and clutter.
  388. 'MobSkillDb' => FLUX_ROOT.'/lib/eA/mob_skills.txt'
  389. );
  390. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement