Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.94 KB | None | 0 0
  1. Clockwork.setting:AddNumberSlider(frameworkStr, "Mouvement de tête:", "cwHeadbobScale", 0, 1, 1, "L'angle dans lequel la tête tournera passivement");
  2. Clockwork.setting:AddNumberSlider(chatBoxStr, "Nombres de lignes de chat:", "cwMaxChatLines", 1, 10, 0, "Le nombre de lignes à afficher dans le chat.");
  3.  
  4. Clockwork.setting:AddCheckBox(frameworkStr, "Active le log admin", "cwShowLog", "Whether or not to show the admin console log.", function()
  5. return Clockwork.player:IsAdmin(Clockwork.Client);
  6. end);
  7.  
  8. Clockwork.setting:AddCheckBox(frameworkStr, "Enable the twelve hour clock.", "cwTwelveHourClock", "Whether or not to show a twelve hour clock.");
  9. Clockwork.setting:AddCheckBox(frameworkStr, "Show bars at the top of the screen.", "cwTopBars", "Whether or not to show bars at the top of the screen.");
  10. Clockwork.setting:AddCheckBox(frameworkStr, "Enable the hints system.", "cwShowHints", "Whether or not to show you any hints.");
  11. Clockwork.setting:AddMultiChoice(frameworkStr, L("Language")..":", "cwLang", langTable, L("LangDesc"));
  12. Clockwork.setting:AddCheckBox(frameworkStr, "Enable Vignette.", "cwShowVignette", "Whether or not to draw the vignette.");
  13.  
  14. Clockwork.setting:AddCheckBox(chatBoxStr, "Show timestamps on messages.", "cwShowTimeStamps", "Whether or not to show you timestamps on messages.");
  15. Clockwork.setting:AddCheckBox(chatBoxStr, "Show messages related to Clockwork.", "cwShowClockwork", "Whether or not to show you any Clockwork messages.");
  16. Clockwork.setting:AddCheckBox(chatBoxStr, "Show messages from the server.", "cwShowServer", "Whether or not to show you any server messages.");
  17. Clockwork.setting:AddCheckBox(chatBoxStr, "Show out-of-character messages.", "cwShowOOC", "Whether or not to show you any out-of-character messages.");
  18. Clockwork.setting:AddCheckBox(chatBoxStr, "Show in-character messages.", "cwShowIC", "Whether or not to show you any in-character messages.");
  19.  
  20. Clockwork.setting:AddMultiChoice(themeStr, themeStr..":", "cwActiveTheme", themeTable, "The current active GUI theme to display.", function ()
  21. return (Clockwork.config:Get("modify_themes"):GetBoolean());
  22. end);
  23. Clockwork.setting:AddColorMixer(themeStr, "Text Color:", "cwTextColor", "The Text Color", function()
  24. return (!Clockwork.theme:IsFixed());
  25. end);
  26. Clockwork.setting:AddColorMixer(themeStr, "Background Color:", "cwBackColor", "The Background Color");
  27. Clockwork.setting:AddNumberSlider(themeStr, "TabMenu X-Axis:", "cwTabPosX", 0, ScrW(), 0, "The position of the tab menu on the X axis.");
  28. Clockwork.setting:AddNumberSlider(themeStr, "TabMenu Y-Axis:", "cwTabPosY", 0, ScrH(), 0, "The position of the tab menu on the Y axis.");
  29. Clockwork.setting:AddNumberSlider(themeStr, "BackMenu X-Axis:", "cwBackX", 0, ScrW(), 0, "The position of the background on the X axis.");
  30. Clockwork.setting:AddNumberSlider(themeStr, "BackMenu Y-Axis:", "cwBackY", 0, ScrH(), 0, "The position of the background on the Y axis.");
  31. Clockwork.setting:AddNumberSlider(themeStr, "BackMenu Width:", "cwBackW", 0, ScrW(), 0, "The width of the background.");
  32. Clockwork.setting:AddNumberSlider(themeStr, "BackMenu Height:", "cwBackH", 0, ScrH(), 0, "The height of the background.");
  33. Clockwork.setting:AddCheckBox(themeStr, "Fade Panels:", "cwFadePanels", "Whether or not to fade in and out menu panels.");
  34. Clockwork.setting:AddCheckBox(themeStr, "Show Material:", "cwShowMaterial", "Whether or not to show a material background.");
  35. Clockwork.setting:AddCheckBox(themeStr, "Show Gradient:", "cwShowGradient", "Whether or not to show a gradient background.");
  36. Clockwork.setting:AddTextEntry(themeStr, "Character Text:", "cwCharString", "The word(s) to be displayed on the character button.");
  37. Clockwork.setting:AddTextEntry(themeStr, "Close Text:", "cwCloseString", "The word(s) to be displayed on the close menu button.");
  38. Clockwork.setting:AddTextEntry(themeStr, "Material:", "cwMaterial", "The material to be used for the tab menu.");
  39.  
  40. Clockwork.setting:AddCheckBox("Admin ESP", "Enable the admin ESP.", "cwAdminESP", "Whether or not to show the admin ESP.", function()
  41. return Clockwork.player:IsAdmin(Clockwork.Client);
  42. end);
  43.  
  44. Clockwork.setting:AddCheckBox("Admin ESP", "Draw ESP Bars.", "cwESPBars", "Whether or not to draw progress bars for certain values.", function()
  45. return Clockwork.player:IsAdmin(Clockwork.Client);
  46. end);
  47.  
  48. Clockwork.setting:AddCheckBox("Admin ESP", "Show item entities.", "cwItemESP", "Whether or not to view items in the admin ESP.", function()
  49. return Clockwork.player:IsAdmin(Clockwork.Client);
  50. end);
  51.  
  52. Clockwork.setting:AddCheckBox("Admin ESP", "Show salesmen entities.", "cwSaleESP", "Whether or not to view salesmen in the admin ESP.", function()
  53. return Clockwork.player:IsAdmin(Clockwork.Client);
  54. end);
  55.  
  56. Clockwork.setting:AddNumberSlider("Admin ESP", "ESP Interval:", "cwESPTime", 0, 2, 0, "The amount of time between ESP checks.", function()
  57. return Clockwork.player:IsAdmin(Clockwork.Client);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement