Advertisement
Guest User

Untitled

a guest
Jan 12th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.46 KB | None | 0 0
  1. /**
  2. * The name of the theme. No translation should be applied.
  3. * Must match the name of the file (except for the '.json' suffix removed)
  4. */
  5. @Getter @Expose
  6. private String name = "ModernBlue_EN";
  7.  
  8. /**
  9. * The author of the theme
  10. */
  11. @Getter @Expose
  12. private String author = "Reflex Development Team (DarksideCode)";
  13.  
  14. /**
  15. * The string that is added as an opening bracket before
  16. * the title. Can be, for example, "[", "<", "("
  17. */
  18. @Getter @Expose
  19. private String openingBracket = "&9&lгАМ";
  20.  
  21. /**
  22. * The string that is added as an closing bracket after
  23. * the title. Can be, for example, "] ", "> ", ") ",
  24. * with tailing space and color code, if needed
  25. */
  26. @Getter @Expose
  27. private String closingBracket = "&9&lгАН&r";
  28.  
  29. /**
  30. * The title displayed between the opening and the closing brackets.
  31. * For example, "Reflex", "KekAntiCheat", "AC"
  32. */
  33. @Getter @Expose
  34. private String title = "&r&bReflex";
  35.  
  36. /**
  37. * The message that is sent to the player that tries
  38. * to execute a Reflex command he has't got permissions for
  39. */
  40. @Getter @Expose
  41. private String noPermissions = "You're too weak! More power is needed";
  42.  
  43. /**
  44. * The message that is displayed when a Reflex command
  45. * that accepts an online player as one of its parameters
  46. * execution fails (the parameter is missing or the
  47. * specified player is offline or never existed)
  48. */
  49. @Getter @Expose
  50. private String cmdInvalidPlayer = "The specified player is that far away that I can't find them! ";
  51.  
  52. /**
  53. * The message that is displayed when a Reflex command
  54. * that accepts a string as one of its parameters execution
  55. * fails (the parameter is missing or is invalid)
  56. */
  57. @Getter @Expose
  58. private String cmdInvalidMessage = "The entered message is either invalid or not actually entered";
  59.  
  60. /**
  61. * The message that is displayed when a Reflex command
  62. * that accepts a duration string as one of its parameters
  63. * execution fails (the parameter is missing or cannot be parsed)
  64. */
  65. @Getter @Expose
  66. private String cmdInvalidDuration = "Invalid duration. Format: '-1' for permanent; '1 [s|m|h|d|w|M|Y]' for 1 second|minute|hour|day|week|month|year";
  67.  
  68. /**
  69. * The message that is displayed when a Reflex command
  70. * that accepts a Reflex check name as one of its parameters
  71. * execution fails (the parameter is missing or there
  72. * are no any checks with the specified name)
  73. */
  74. @Getter @Expose
  75. private String cmdInvalidCheck = "The entered check name is either invalid or not actually entered";
  76.  
  77. /**
  78. * The message that is displayed when a Reflex command
  79. * that accepts a boolean as one of its parameters execution
  80. * fails (the parameter is missing or cannot be parsed)
  81. */
  82. @Getter @Expose
  83. private String cmdInvalidBoolean = "Invalid boolean parameter. Must be either &9true&r or &9false&r";
  84.  
  85. /**
  86. * The message that is displayed when a Reflex command
  87. * that accepts an integer as one of its parameters execution
  88. * fails (the parameter is missing or cannot be parsed)
  89. */
  90. @Getter @Expose
  91. private String cmdInvalidInt = "The entered integer is either invalid or not actually entered";
  92.  
  93. /**
  94. * The message that is displayed when a Reflex command
  95. * that accepts an integer as one of its parameters execution
  96. * fails because the specified integer is equal or less than zero
  97. */
  98. @Getter @Expose
  99. private String cmdNegativeInt = "The number must be greater than zero";
  100.  
  101. /**
  102. * The message that is displayed when a Reflex command
  103. * that accepts a command string as one of its parameters
  104. * execution fails (the parameter is missing or is invalid)
  105. */
  106. @Getter @Expose
  107. private String cmdInvalidCommand = "The entered command is either invalid or not actually entered";
  108.  
  109. /**
  110. * The message that is displayed when a Reflex command
  111. * that accepts an operation string as one of its parameters
  112. * execution fails (the parameter is missing or the command
  113. * does not contain the specified operation)
  114. */
  115. @Getter @Expose
  116. private String cmdInvalidOperation = "Although I'm kinda professional, I can't perform that operation... Maybe because it's missing...";
  117.  
  118. /**
  119. * The message that is displayed when a Reflex command
  120. * that accepts a database type string as one of its parameters
  121. * execution fails (the parameter is missing or the specified
  122. * database type is not supported)
  123. */
  124. @Getter @Expose
  125. private String cmdInvalidDbType = "Invalid database type (sadly, only MySQL is currently supported)";
  126.  
  127. /**
  128. * The message that is displayed when a Reflex command
  129. * that accepts a database host string as one of its parameters
  130. * execution fails (the parameter is missing or the specified
  131. * database host is invalid)
  132. */
  133. @Getter @Expose
  134. private String cmdInvalidDbHost = "Invalid database host";
  135.  
  136. /**
  137. * The message that is displayed when a Reflex command
  138. * that accepts a database port string as one of its parameters
  139. * execution fails (the parameter is missing or the specified
  140. * database port is invalid)
  141. */
  142. @Getter @Expose
  143. private String cmdInvalidDbPort = "Invalid database port";
  144.  
  145. /**
  146. * The message that is displayed when a Reflex command
  147. * that accepts a database name string as one of its parameters
  148. * execution fails (the parameter is missing or the specified
  149. * database name is invalid)
  150. */
  151. @Getter @Expose
  152. private String cmdInvalidDbName = "Invalid database name";
  153.  
  154. /**
  155. * The message that is displayed when a Reflex command
  156. * that accepts a database username string as one of its parameters
  157. * execution fails (the parameter is missing or the specified
  158. * database username is invalid)
  159. */
  160. @Getter @Expose
  161. private String cmdInvalidDbUser = "Invalid database username";
  162.  
  163. /**
  164. * The message that is displayed when a Reflex command
  165. * that accepts a database password string as one of its parameters
  166. * execution fails (the parameter is missing or the specified
  167. * database password is invalid)
  168. */
  169. @Getter @Expose
  170. private String cmdInvalidDbPass = "Invalid database password";
  171.  
  172. /**
  173. * The message that is displayed when a Reflex command
  174. * that can only be executed by players is dispatched
  175. * in the server console
  176. */
  177. @Getter @Expose
  178. private String cmdPlayersOnly = "Too much power! Try to do that gentler or as a player. &9&lTIP&r&9:&r for console verbose, turn the &9general.console_verbose&r option in the config on";
  179.  
  180. /**
  181. * The message that is displayed when an unknown/invalid Reflex
  182. * command is being attempted to execute (e.g. '/reflex sadasd').
  183. * Advises the command sender to use /reflex help
  184. */
  185. @Getter @Expose
  186. private String cmdUnknownSubcmd = "Are you trying to break everything again?! Please use &9/help&r for the list of all commands Reflex actually has!";
  187.  
  188. /**
  189. * The message that is displayed when the "/reflex debug" command
  190. * gets executed again before the previous execution ended
  191. */
  192. @Getter @Expose
  193. private String debugBusy = "Hold on! Debug collection is already in progress...";
  194.  
  195. /**
  196. * The message that is displayed when the "/reflex debug" command
  197. * gets executed with too low delay from its last execution
  198. */
  199. @Getter @Expose
  200. private String debugSpam = "A debug paste has already been created recently: &9%link%";
  201.  
  202. /**
  203. * The message that is displayed when the "/reflex debug" command
  204. * gets executed and the debugging process begins
  205. */
  206. @Getter @Expose
  207. private String creatingDebug = "Hold on! Creating debug paste...";
  208.  
  209. /**
  210. * The message that is displayed when the "/reflex debug" command
  211. * gets executed and the debugging process ends successfully
  212. */
  213. @Getter @Expose
  214. private String debugSuccess = "Successfully created a debug paste: &9%link%";
  215.  
  216. /**
  217. * The message that is displayed when the "/reflex debug" command
  218. * gets executed and the debugging process ends with an error
  219. */
  220. @Getter @Expose
  221. private String debugFailure = "Failed to create a debug paste. See console for details";
  222.  
  223. /**
  224. * The String that shown instead of the Neural Network version and in
  225. * some other places when the server is using the Cloud Computings service
  226. */
  227. @Getter @Expose
  228. private String cloud = "&9CLOUD";
  229.  
  230. /**
  231. * The String that is shown instead of a player name
  232. * in some messages if the actions is done by server console
  233. */
  234. @Getter @Expose
  235. private String console = "CONSOLE";
  236.  
  237. /**
  238. * The message that is displayed when the /reflex tps command is executed
  239. */
  240. @Getter @Expose
  241. private String tps = "According to Reflex, the server ticks around &9%tps%&r times in a second";
  242.  
  243. /**
  244. * The message that is displayed when the Reflex
  245. * configuration has been successfully reloaded
  246. */
  247. @Getter @Expose
  248. private String configReloaded = "Configuration has been reloaded successfully";
  249.  
  250. /**
  251. * The message that is displayed when the '/reflex bypass PLAYER CHECK true'
  252. * command has been used, and the given player can now bypass the given check
  253. */
  254. @Getter @Expose
  255. private String allowedBypass = "&7%player%&r can now bypass &9%check%&r. I'm not responsable if he destroys the server now!";
  256.  
  257. /**
  258. * The message that is displayed when the '/reflex bypass PLAYER CHECK false'
  259. * command has been used, and the given player can no longer bypass the given check
  260. */
  261. @Getter @Expose
  262. private String forbadeBypass = "&7%player%&r can no longer bypass &9%check%&r. Safety is back!";
  263.  
  264. /**
  265. * The message that is displayed when the /reflex dump
  266. * command gets used and the dumping process begins
  267. */
  268. @Getter @Expose
  269. private String dumpingBegan = "Hold on! Dumping...";
  270.  
  271. /**
  272. * The message that is displayed when the /reflex dump
  273. * command gets used and the dumping process ends successfully
  274. */
  275. @Getter @Expose
  276. private String dumpingDone = "Successfully created a dump: &9%file%";
  277.  
  278. /**
  279. * The message that is displayed when the /reflex packetdebug command
  280. * gets used and Reflex enables packet debugging for the given player
  281. */
  282. @Getter @Expose
  283. private String enabledPacketDebug = "Enabled packet debug for &9%player%";
  284.  
  285. /**
  286. * The message that is displayed when the /reflex packetdebug command
  287. * gets used and Reflex disables packet debugging for the given player
  288. */
  289. @Getter @Expose
  290. private String disabledPacketDebug = "Disabled packet debug for &9%player%";
  291.  
  292. /**
  293. * The messages that is displayed when the '/reflex packetdebug save PLAYER'
  294. * gets used again with too low delay from the last use
  295. */
  296. @Getter @Expose
  297. private String packetDebugSpam = "Hold on! You are doing saves too quickly!";
  298.  
  299. /**
  300. * The message that is displayed when the '/reflex packetdebug save PLAYER'
  301. * command gets used on a player, packet debugging for which is disabled
  302. */
  303. @Getter @Expose
  304. private String packetDebugInactive = "Packet debugging for &9%player%&r is disabled. Enable it with &9/reflex packetdebug toggle %player%&r first!";
  305.  
  306. /**
  307. * The message that is displayed when the /reflex packetdebug save
  308. * command gets used while the saving process is already running
  309. */
  310. @Getter @Expose
  311. private String packetDebugInProgress = "Hold on! Saving is already in progress...";
  312.  
  313. /**
  314. * The message that is displayed when the /reflex packetdebug save
  315. * command gets used, and the saving process ends successfully
  316. */
  317. @Getter @Expose
  318. private String packetDebugSaved = "Packet debug for player &9%player%&r was saved successfully: &9%link%";
  319.  
  320. /**
  321. * The message that is displayed when the /reflex reset command
  322. * is used on a player, and the data of one gets reset successfully
  323. */
  324. @Getter @Expose
  325. private String reflexReset = "Let the &9%player%&r's sins go";
  326.  
  327. /**
  328. * The message that is displayed when the /reflex setdb command
  329. * gets used, and the database setup process ends sucessfully
  330. */
  331. @Getter @Expose
  332. private String setdbSuccess = "The database configuration has been updated successfully. If you wish to clone it to other servers, just copy the &9dbconf&r file which can be found in the Reflex working directory";
  333.  
  334. /**
  335. * The message that is sent when the /reflex timings on
  336. * command gets executed while the timings are already active
  337. */
  338. @Getter @Expose
  339. private String timingsAlreadyActive = "Timings are already active!";
  340.  
  341. /**
  342. * The message that is sent when the /reflex timings on
  343. * command gets executed, and the timings get enabled successfully
  344. */
  345. @Getter @Expose
  346. private String timingsEnabled = "Enabled timings. Watching the performance now!";
  347.  
  348. /**
  349. * The message that is sent when the /reflex timings save
  350. * command gets executed while timings are not enabled
  351. */
  352. @Getter @Expose
  353. private String timingsInactive = "Timings turned off. Enable them with &9/reflex timings on";
  354.  
  355. /**
  356. * The message that is sent when the /reflex timings save
  357. * command gets executed, and the saving process begins
  358. */
  359. @Getter @Expose
  360. private String timingsSaving = "Hold on! The timings are being saved...";
  361.  
  362. /**
  363. * The message that is sent when the /reflex timings save
  364. * command gets executed, and the saving process ends successfully
  365. */
  366. @Getter @Expose
  367. private String timingsSaved = "Done! The file with timings can be found in &9%dir%";
  368.  
  369. /**
  370. * The message that is sent when the /reflex unban command
  371. * gets executed, and the specified player gets unbanned successfully
  372. */
  373. @Getter @Expose
  374. private String unbanned = "Unbanned player &9%player%";
  375.  
  376. /**
  377. * The message that is sent when the /reflex unban command
  378. * gets executed, and the specified player is not banned
  379. */
  380. @Getter @Expose
  381. private String notBanned = "The player &9%player%&r is not banned.. yet..";
  382.  
  383. /**
  384. * The message that is sent when the /reflex verbose command
  385. * gets executed, and verbose gets enabled for its sender
  386. */
  387. @Getter @Expose
  388. private String enabledVerbose = "Enabled verbose. Prepare for 20 GB chat messages/ms!";
  389.  
  390. /**
  391. * The message that is sent when the /reflex verbose command
  392. * gets executed, and verbose gets disabled for its sender
  393. */
  394. @Getter @Expose
  395. private String disabledVerbose = "Disabled verbose. Let the tranquility reign!";
  396.  
  397. /**
  398. * The message that is displayed whenever a Reflex command
  399. * is used incorrectly. Prints out the valid command usage
  400. */
  401. @Getter @Expose
  402. private String usage = "Usage: &9%usage%";
  403.  
  404. /**
  405. * The usage of the '/reflex ban' command. Displayed in the 'usage' string instead of %usage%
  406. */
  407. @Getter @Expose
  408. private String banUsage = "ban <player> <duration> <message>";
  409.  
  410. /**
  411. * The usage of the '/reflex broadcast' command. Displayed in the 'usage' string instead of %usage%
  412. */
  413. @Getter @Expose
  414. private String broadcastUsage = "broadcast <message>";
  415.  
  416. /**
  417. * The usage of the '/reflex bypass' command. Displayed in the 'usage' string instead of %usage%
  418. */
  419. @Getter @Expose
  420. private String bypassUsage = "bypass <player> <check> [true|false]";
  421.  
  422. /**
  423. * The usage of the '/reflex delay' command. Displayed in the 'usage' string instead of %usage%
  424. */
  425. @Getter @Expose
  426. private String delayUsage = "delay <seconds> <command>";
  427.  
  428. /**
  429. * The usage of the '/reflex kick' command. Displayed in the 'usage' string instead of %usage%
  430. */
  431. @Getter @Expose
  432. private String kickUsage = "kick <player> <message>";
  433.  
  434. /**
  435. * The usage of the '/reflex notify' command. Displayed in the 'usage' string instead of %usage%
  436. */
  437. @Getter @Expose
  438. private String notifyUsage = "notify <message>";
  439.  
  440. /**
  441. * The usage of the '/reflex packetdebug' command. Displayed in the 'usage' string instead of %usage%
  442. */
  443. @Getter @Expose
  444. private String packetdebugUsage = "packetdebug <toggle|save> <player>";
  445.  
  446. /**
  447. * The usage of the '/reflex reset' command. Displayed in the 'usage' string instead of %usage%
  448. */
  449. @Getter @Expose
  450. private String resetUsage = "reset <player>";
  451.  
  452. /**
  453. * The usage of the '/reflex setdb' command. Displayed in the 'usage' string instead of %usage%
  454. */
  455. @Getter @Expose
  456. private String setdbUsage = "setdb <type> <host> <port> <database name> <username> <password>";
  457.  
  458. /**
  459. * The usage of the '/reflex timings' command. Displayed in the 'usage' string instead of %usage%
  460. */
  461. @Getter @Expose
  462. private String timingsUsage = "timings <on|save>";
  463.  
  464. /**
  465. * The usage of the '/reflex unban' command. Displayed in the 'usage' string instead of %usage%
  466. */
  467. @Getter @Expose
  468. private String unbanUsage = "unban <player>";
  469.  
  470. /**
  471. * The message that is broadcasted whenever a player
  472. * is getting banned using /reflex ban
  473. */
  474. @Getter @Expose
  475. private String banBroadcast = "&7%player% &fwas banned for cheating";
  476.  
  477. /**
  478. * The message that is broadcasted whenever a player
  479. * is getting kicked using /reflex kick
  480. */
  481. @Getter @Expose
  482. private String kickBroadcast = "&7%player% &fwas kicked for cheating";
  483.  
  484. /**
  485. * The header of the /reflex help message
  486. */
  487. @Getter @Expose
  488. private String reflexHelpTitle = "Available commands:";
  489.  
  490. /**
  491. * The description of the '/reflex' command in the help message
  492. */
  493. @Getter @Expose
  494. private String cmdDescReflex = "Display info about the installed Reflex version";
  495.  
  496. /**
  497. * The description of the '/reflex help' command in the help message
  498. */
  499. @Getter @Expose
  500. private String cmdDescReflexHelp = "Display the list of available commands";
  501.  
  502. /**
  503. * The description of the '/reflex broadcast' command in the help message
  504. */
  505. @Getter @Expose
  506. private String cmdDescReflexBroadcast = "Broadcast a message to all online players";
  507.  
  508. /**
  509. * The description of the '/reflex notify' command in the help message
  510. */
  511. @Getter @Expose
  512. private String cmdDescReflexNotify = "Broadcast a message to the staff members";
  513.  
  514. /**
  515. * The description of the '/reflex verbose' command in the help message
  516. */
  517. @Getter @Expose
  518. private String cmdDescReflexVerbose = "Toggle in-game logs (verbose)";
  519.  
  520. /**
  521. * The description of the '/reflex kick' command in the help message
  522. */
  523. @Getter @Expose
  524. private String cmdDescReflexKick = "Kick a player with configured visuals";
  525.  
  526. /**
  527. * The description of the '/reflex ban' command in the help message
  528. */
  529. @Getter @Expose
  530. private String cmdDescReflexBan = "Ban a player with configured visuals";
  531.  
  532. /**
  533. * The description of the '/reflex unban' command in the help message
  534. */
  535. @Getter @Expose
  536. private String cmdDescReflexUnban = "Unban a player banned using Reflex ban";
  537.  
  538. /**
  539. * The description of the '/reflex delay' command in the help message
  540. */
  541. @Getter @Expose
  542. private String cmdDescReflexDelay = "Run a command with a delay";
  543.  
  544. /**
  545. * The description of the '/reflex reload' command in the help message
  546. */
  547. @Getter @Expose
  548. private String cmdDescReflexReload = "Reload Reflex configuration";
  549.  
  550. /**
  551. * The description of the '/reflex setdb' command in the help message
  552. */
  553. @Getter @Expose
  554. private String cmdDescReflexSetdb = "Setup a database";
  555.  
  556. /**
  557. * The description of the '/reflex bypass' command in the help message
  558. */
  559. @Getter @Expose
  560. private String cmdDescReflexBypass = "Toggle the bypass of a check for a player";
  561.  
  562. /**
  563. * The description of the '/reflex timings' command in the help message
  564. */
  565. @Getter @Expose
  566. private String cmdDescReflexTimings = "Detailed performance and timing control";
  567.  
  568. /**
  569. * The description of the '/reflex tps' command in the help message
  570. */
  571. @Getter @Expose
  572. private String cmdDescReflexTps = "Display the server TPS calculated by Reflex";
  573.  
  574. /**
  575. * The description of the '/reflex debug' command in the help message
  576. */
  577. @Getter @Expose
  578. private String cmdDescReflexDebug = "Create a server info paste for bug reports";
  579.  
  580. /**
  581. * The description of the '/reflex reset' command in the help message
  582. */
  583. @Getter @Expose
  584. private String cmdDescReflexReset = "Reset all the Reflex data for a player";
  585.  
  586. /**
  587. * The description of the '/reflex dump' command in the help message
  588. */
  589. @Getter @Expose
  590. private String cmdDescReflexDump = "Dump detailed Reflex memory/CPU usage";
  591.  
  592. /**
  593. * The description of the '/reflex packetdebug' command in the help message
  594. */
  595. @Getter @Expose
  596. private String cmdDescReflexPacketdebug = "Log server packets sent to a player";
  597.  
  598. /**
  599. * The format of the messages send with /reflex broadcast
  600. */
  601. @Getter @Expose
  602. private String broadcastFormat = "&7%sender%&r %message%";
  603.  
  604. /**
  605. * The format of the notifications send with /reflex notify
  606. */
  607. @Getter @Expose
  608. private String notifyFormat = "&9&lпЉИ&r&bStaff&9&lпЉЙ&7%sender%&r %message%";
  609.  
  610. /**
  611. * The format of the flags (violations) in verbose in chat.
  612. * In logs and in console, the same format is used, except
  613. * for the color codes being removed
  614. */
  615. @Getter @Expose
  616. private String verboseFormat = "&7%player% &f%check% &9%vl% (+%mod%)%tags%";
  617.  
  618. /**
  619. * The color of tags in verbose messages
  620. */
  621. @Getter @Expose
  622. private String verboseTagsCol = "&7";
  623.  
  624. /**
  625. * The symbol that is put between the tags in verbose
  626. * messages in order to separate them from each other
  627. */
  628. @Getter @Expose
  629. private String verboseTagsSeparator = "&8гГї";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement