Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.18 KB | None | 0 0
  1. CLOTHESMOD.Config.CommunityName = "ArcadiaRP French"
  2.  
  3. --[[
  4. A list of all languages can be found in the clothesmod/languages folder
  5. Add the name of the .lua file with the lang you want between the quotes
  6. ( ex : put "english" to use the translation of the english.lua file in the lanaguages folder )
  7. ]]
  8. CLOTHESMOD.Config.Lang = "french"
  9.  
  10.  
  11. CLOTHESMOD.Config.PriceChangingName = 1000
  12. CLOTHESMOD.Config.MoneyUnit = "$"
  13.  
  14. --[[
  15. Players are able to create their own clothes for money,
  16. define bellow the prices that they have to pay for the empty t-shirt and that
  17. they have to add for each element. ( img/text )
  18. ]]
  19. CLOTHESMOD.Config.EditableTop = 800
  20. CLOTHESMOD.Config.PricePerText = 100
  21. CLOTHESMOD.Config.PricePerImg = 200
  22.  
  23. -- surgery prices
  24. CLOTHESMOD.Config.PriceToChangeSex = 5000
  25. CLOTHESMOD.Config.PriceToChangeHead = 2500
  26. CLOTHESMOD.Config.PriceToChangeEyes = 1000
  27.  
  28. --[[
  29. Set CLOTHESMOD.Config.CanOpenInventory to false to prevent all players to drop their clothes by opening their inventory ( it prevents nudity )
  30. You also can change the key to open the inventory by edit CLOTHESMOD.Config.KeyInventory
  31. A list of keys is available there :
  32. http://wiki.garrysmod.com/page/Enums/BUTTON_CODE
  33. ]]
  34.  
  35. CLOTHESMOD.Config.CanOpenInventory = true
  36. CLOTHESMOD.Config.KeyInventory = KEY_I
  37.  
  38. --[[
  39. When you open the wardrobe, you are able to remove your clothes.
  40. This option allow you to not show the "Remove" button on the clothes.
  41. By this way, players can't remove their clothes in the wardrobe.
  42. true = activated,
  43. false = deactivated
  44. ]]
  45. CLOTHESMOD.Config.CanRemoveClothesInWardrobe = true
  46.  
  47. -- Sound in the introduction menu? true = yes, false = no
  48. CLOTHESMOD.Config.HasSound = true
  49.  
  50. -- upload a .mp3 of your sound and put the link to it here
  51. CLOTHESMOD.Config.IntroSoundURL = "https://s25.onlinevideoconverter.com/download?file=f5e4e4j9d3b1g6"
  52.  
  53. -- list of jobs with uniforms, the players will have the models of the job instead of their one.
  54.  
  55. --[[
  56. Jobs added in the ForbiddenJobs list will not be affected by this script.
  57. They'll keep the head that you've chosen in your jobs.lua file
  58. Add between the quotation marks the name of the job
  59. ]]
  60. CLOTHESMOD.Config.ForbiddenJobs = {
  61. [TEAM_MEDECIN]=true,
  62. [TEAM_POLICE] = true,
  63. [TEAM_CHEFPOLICE] = true,
  64. [TEAM_SWAT] = true,
  65. [TEAM_CHEFSWAT] = true,
  66. [TEAM_SNIPERSWAT] = true,
  67. [TEAM_FBI] = true,
  68. [TEAM_POLICEURGENCECHEF] = true,
  69. [TEAM_POLICEURGENCE] = true,
  70. [TEAM_MAIRE] = true,
  71. [TEAM_BANQUE] = true,
  72. [TEAM_BAC] = true,
  73. [TEAM_POMPIER] = true,
  74. }
  75.  
  76. --[[
  77. ForbiddenJobsWithHeads is a most advanced feature.
  78. You can use it to do that jobs with uniforms ( police, medic, etc. ) keep their head when they take their uniform.
  79. In the following example :
  80. ["Police"]={
  81. ["male01"] = "models/taggart/police01/male_01.mdl",
  82. ["male02"] = "models/taggart/police01/male_02.mdl",
  83. ["male03"] = "models/taggart/police01/male_03.mdl",
  84. ["male04"] = "models/taggart/police01/male_04.mdl",
  85. ["male05"] = "models/taggart/police01/male_05.mdl",
  86. ["male06"] = "models/taggart/police01/male_06.mdl",
  87. ["male07"] = "models/taggart/police01/male_07.mdl",
  88. ["male08"] = "models/taggart/police01/male_08.mdl",
  89. ["male09"] = "models/taggart/police01/male_09.mdl",
  90. ["female01"] = "models/taggart/police01/male_01.mdl", -- i don't find any for women sorry
  91. ["female02"] = "models/taggart/police01/male_02.mdl",
  92. ["female03"] = "models/taggart/police01/male_03.mdl",
  93. ["female04"] = "models/taggart/police01/male_04.mdl",
  94. ["female05"] = "models/taggart/police01/male_05.mdl",
  95. ["female06"] = "models/taggart/police01/male_06.mdl"
  96. },
  97.  
  98. Do not touch the ["male01"], ["male02"] etc. which are used by the script to work well.
  99. Change the "Police" by the name of the team.
  100. Change "models/taggart/police01/male_01.mdl" by the model with the head of the male_01 ( https://www.combinecontrol.com/chars/citizens_male_01.png )
  101. You can use this list https://www.combinecontrol.com/allowedmodels.php to know the male_number and the female_number
  102. ]]
  103. -- https://steamcommunity.com/sharedfiles/filedetails/?id=576517817
  104. CLOTHESMOD.Config.ForbiddenJobsWithHeads = {
  105. ["Civil Protection"]={
  106. ["male01"] = "models/taggart/police01/male_01.mdl",
  107. ["male02"] = "models/taggart/police01/male_02.mdl",
  108. ["male03"] = "models/taggart/police01/male_03.mdl",
  109. ["male04"] = "models/taggart/police01/male_04.mdl",
  110. ["male05"] = "models/taggart/police01/male_05.mdl",
  111. ["male06"] = "models/taggart/police01/male_06.mdl",
  112. ["male07"] = "models/taggart/police01/male_07.mdl",
  113. ["male08"] = "models/taggart/police01/male_08.mdl",
  114. ["male09"] = "models/taggart/police01/male_09.mdl",
  115. ["female01"] = "models/taggart/police01/male_01.mdl", -- i don't find any for women sorry
  116. ["female02"] = "models/taggart/police01/male_02.mdl",
  117. ["female03"] = "models/taggart/police01/male_03.mdl",
  118. ["female04"] = "models/taggart/police01/male_04.mdl",
  119. ["female05"] = "models/taggart/police01/male_05.mdl",
  120. ["female06"] = "models/taggart/police01/male_06.mdl"
  121. },
  122. }
  123.  
  124. -- Usergroups who can use the admin commands ( see the list in the addon description )
  125. CLOTHESMOD.Config.ModGroups = {
  126. "admin",
  127. "owner",
  128. "fondateur",
  129. "superadmin",
  130. "moderateur"
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement