Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
1,063
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.56 KB | None | 0 0
  1. hostname = "Premium Exile Chernarus";
  2. password = "";
  3. passwordAdmin = 3ok4v2;
  4. serverCommandPassword = 3ok4v1;
  5. logFile = "server.log";
  6. verifySignatures = 1; // Do NOT use verifySignatures=2! It costs too many FPS
  7. BattlEye = 1;
  8. requiredBuild = 141764; // 1.70 stable
  9. allowedLoadFileExtensions[] = {:};
  10. allowedPreprocessFileExtensions[] = {"sqf"};
  11. allowedHTMLLoadExtensions[] = {"html"};
  12. motdInterval = 5;
  13. maxPlayers = 100;
  14. voteMissionPlayers = 200;
  15. voteThreshold = 200;
  16. allowedVoteCmds[] = {};
  17. allowedVotedAdminCmds[] = {};
  18. disableVoN = 0;
  19. vonCodecQuality = 30;
  20. persistent = 1;
  21. kickDuplicate = 1;
  22. equalModRequired = 0;
  23. kickClientsOnSlowNetwork = 0;
  24. timeStampFormat = "short";
  25. onUserConnected = "";
  26. onUserDisconnected = "";
  27. doubleIdDetected = "";
  28. onUnsignedData = "kick (_this select 0)";
  29. onHackedData = "kick (_this select 0)";
  30. onDifferentData = "kick (_this select 0)";
  31. motd[] = {"Welcome to Arma 3 Exile Mod!", "www.exilemod.com", "Enjoy your stay!" };
  32.  
  33. class Missions
  34. {
  35. class Exile
  36. {
  37. template = Exile.Tanoa; // Exile.Namalsk, Exile.Altis
  38.  
  39. // do NOT use custom difficulties!
  40. // Use either ExileRegular or ExileHardcore
  41. // or you will break Exile!
  42. difficulty = "ExileRegular";
  43. };
  44. };
  45.  
  46. -------------------------------------------------------------------------------------------------------------------------------------
  47. /*
  48. Author: Chris(tian) "infiSTAR" Lorenzen
  49. Contact: infiSTAR23@gmail.com // www.infiSTAR.de
  50.  
  51. Copyright infiSTAR - 2011 - 2016. All rights reserved.
  52. Christian (Chris) L. (infiSTAR23@gmail.com) Developer of infiSTAR
  53.  
  54. Description:
  55. Arma AntiHack & AdminTools - infiSTAR.de
  56.  
  57. UPDATEEMAIL for http://update.infiSTAR.de is:
  58. 'nick_fowlie@hotmail.com'
  59.  
  60. Last download was on:
  61. '24-05-2017 01-48-12';
  62. */
  63. class Cfg_infiSTAR_settings {
  64. /*
  65. "serverCommandPassword" is serverCommandPassword - in your servers config.cfg
  66. if your config.cfg does not have serverCommandPassword yet, simply add it in a new line:
  67. serverCommandPassword = "changeme";
  68.  
  69. This is VERY IMPORTANT as it is needed to KICK & BAN people.
  70.  
  71. It will try to get this password from "@ExileServer\addons\exile_server_config" first. If you did not set a password there (config.cpp),
  72. then it will take what you put here.
  73. */
  74. serverCommandPassword = 3ok4v1;
  75.  
  76. /*
  77. "passwordAdmin" is passwordAdmin - in your servers config.cfg, needed for servercommands from client
  78.  
  79. This is used to be able to use the "login" function ingame. Will log you in as Arma "Admin".
  80. */
  81. passwordAdmin = 3ok4v2;
  82. /* serverCommandPassword and passwordAdmin should always be different passwords or it could cause problems! */
  83.  
  84.  
  85. /* "_OPEN_ADMIN_MENU_KEY": Key to open the menu (google DIK_KeyCodes (0x3B is F1)) */
  86. OPEN_ADMIN_MENU_KEY = 0x3B;
  87. HIDE_FROM_PLAYERS = "false"; /* So no normal can see it :)! */
  88. announce_adminstate_changed = "false"; /* whenever you type !admin as an admin it will announce that you logged out or in to all players on the server! */
  89. use_html_load_on_adminmenu = "true"; /* default and recommended is "true". infiSTAR updates and news are announced in the top right corner when you open the AdminMenu if this is "true"! */
  90.  
  91.  
  92.  
  93. /* "LogAdminActions": Sends actions done by each admin to the server to log it to the .txt file (if infiSTAR dlls are used) and .rpt file + sends it back to all other admins. */
  94. LogAdminActions = "true";
  95. enableIngameLogs = "true";
  96.  
  97. /*
  98. if you set "needAdminNameTag" to "true", this string needs to be a part of the admins name, or he can't use infiSTAR Admin Menu!
  99. example names: "[Admin] infiSTAR" or "infiSTAR [Admin]"
  100. note: this is case sensitive as well, meaning "infiSTAR [admin]" would not work as we set it in our example to "[Admin]"
  101. */
  102. needAdminNameTag = "false";
  103. AdminNameTag = "[Admin]";
  104.  
  105. /*
  106. Noficiations shown to all players on the server. Could be used to replace BEC messages.
  107. {first occurrence after x min, show again after x min, show message for x seconds, font size (recommended is 0.6), xpos, ypos,text color, font, text (<br/> is a linebreak)}
  108.  
  109. if you want the client to see a message only once when logging in, you put the first and second entry in the array to -1.
  110. Example:
  111. {-1, -1, 4, 0.6, 0, 0, "#ff0000", "OrbitronLight", "Welcome to our server"}
  112.  
  113. xpos and ypos need to be within your monitor. to high numbers and you simply won't see the text..
  114. ~ x-range is between -0.7 to +1
  115. ~ y-range is between -0.4 to +1
  116.  
  117. Arma Fonts:
  118. PuristaLight
  119. PuristaMedium
  120. PuristaSemiBold
  121. PuristaBold
  122. LucidaConsoleB
  123. EtelkaMonospacePro
  124. EtelkaMonospaceProBold
  125. EtelkaNarrowMediumPro
  126. TahomaB
  127.  
  128. Exile Fonts:
  129. OrbitronLight
  130. OrbitronMedium
  131. PressStart2P
  132. RobotoMedium
  133. RobotoRegular
  134. NOTE: do not use " within the text.
  135. */
  136. ENABLE_NOTIFICATION_MESSAGES = "true";
  137. NOTIFY_MSG_ARRAY[] =
  138. {
  139. {-1, -1, 6, 0.6, 0, 0, "#ff0000", "OrbitronLight", "Welcome to our server"},
  140. {-1, -1, 4, 0.6, 0, 0, "#1900FF", "OrbitronLight", "Enjoy!"},
  141. {-1, 45, 5, 0.6, "safeZoneX", "0.5", "#048B5B", "OrbitronLight", "Protected and administrated by<br/>infiSTAR.de AdminTools, AntiHack and more!"},
  142. {-1, 20, 10, 0.36, -0.7, 0.84, "#e5e5e5", "PuristaMedium","Feel free to visit<br/>infiSTAR.de"}
  143. };
  144.  
  145.  
  146. /*
  147. {chatCommand (text typed in chat), color, size, font, text shown to player}
  148. only triggers if the EXACT text is typed!
  149. NOTE: do not use " within the text.
  150. */
  151. chatCommands[] =
  152. {
  153. {"!ts","#2784D6","1","OrbitronMedium","ts.mycommunity.com"},
  154. {"!website","#2784D6","1","OrbitronMedium","www.mycommunity.com"},
  155. {"!admin","#2784D6","1","OrbitronMedium","please visit ts.mycommunity.com"}
  156. };
  157.  
  158. /*
  159. {chatCommand (text typed in chat) partitial, color, size, font, text shown to player}
  160. "Hello, why is there no loot on this map?" <- will trigger the example below!
  161. NOTE: do not use " within the text.
  162. */
  163. chatCommandsP[] =
  164. {
  165. {"no loot","#2784D6","1","OrbitronMedium","You cannot loot from non arma buildings in this map, you must move around - check the shipping yards for best loot"}
  166. };
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173. /*
  174. If admin has rights to "Create Billboard", he will have new options to create a Billboard ingame with one of the following textures
  175. {"name shown in adminmenu","path to texture"}
  176.  
  177. should be looking somewhat like this:
  178. {"example picture","\mpmissions\Exile.Altis.pbo\example.paa"}
  179.  
  180. the picture has to be available on EACH client AND the server.
  181. So you either need a client-side mod for it or you need to put it in the MPMission
  182. */
  183. pathToCustomBillBoardTextures[] =
  184. {
  185. {"Doggy","exile_assets\texture\flag\flag_mate_21dmd_co.paa"},
  186. {"Spawny","exile_assets\texture\flag\flag_mate_spawny_co.paa"},
  187. {"Dickbutt","exile_assets\texture\flag\flag_misc_dickbutt_co.paa"},
  188. {"Vish","exile_assets\texture\flag\flag_mate_vish_co.paa"}
  189. };
  190.  
  191.  
  192. /* "startAsNormal": if you add admin UIDs in here as well, they will start as almost "normal" player instead of with admin menu and such. */
  193. startAsNormal[] =
  194. {
  195. "UID1","UID2","UID3","..."
  196. };
  197.  
  198. /* "hiddenSuperAdmin": These admins are seen as normal players by normal admins, their actions are not logged either (to keep an eye out on your admins) */
  199. hiddenSuperAdmin[] =
  200. {
  201. "UID1","UID2","UID3","..."
  202. };
  203.  
  204. adminUIDandAccess[] =
  205. {
  206. {
  207. {"76561198057012631,0"}, /* Admins with UIDs in this Array have their Access defined in the array below. */
  208. {
  209. "Teleport On Map Click","Teleport - Target To Me","Teleport - Me To Target",
  210. "Teleport In Facing Direction (10m steps)","Drag and drop units on the map",
  211. "spectating","Delete Vehicle","FlyUp","ShowGear","Show Server Information",
  212. "HealSelf","HealRepairNear","AdminLog","Freeze","UnFreeze","Restrain","UnRestrain",
  213. "==== Loadouts ====","==== Base Deleter ====","Items spawn menu",
  214. "Remove Gear","Revive","Heal","Restore","Flip Vehicle","Move In My Vehicle","Move In Target Vehicle","Parachute Target","Eject","Eject Crew",
  215. "Player ESP","Player ESP (safezone style)","AI ESP","Dead ESP","Loot ESP",
  216. "Vehicle Marker","Flag Marker (with radius)","Box/Safe/Container Marker","DeadPlayer Marker",
  217. "God Mode","God Mode (no stats change)","Vehicle God Mode","Lower Terrain","Vehboost","UnlimAmmo","noRecoil","FastFire","Stealth / Invisible",
  218. "Disable Announces","Mass Message","Change Time","Spawn Support-Boxes","Create Billboard","Change ViewDistance",
  219. "Spawn Ammo","Login as Arma Admin","BIS FreeRoam Cam (works with ESP)","FreeRoam Cam (does not work with ESP)",
  220. "Request Steam Name","showinfo",
  221. "UnlockLockVehicle","Copy Worldspace(coords) to RPT & Chat",
  222.  
  223. "Spawn Vehicles","Spawn Persistent Vehicles","Trader Menu",
  224.  
  225. "Kill","Explode","Force Disconnect",
  226. "Kick (Silent)","Kick (Announce)","Ban (Silent)","Ban (Announce)","TempBan (Silent)","TempBan (Announce)",
  227.  
  228. "AdminConsole",
  229. "DebugConsole",
  230. "Execute code on server (DebugConsole)","Execute code global (DebugConsole)","Execute code local (DebugConsole)",
  231. "Lock Server (DebugConsole)","UnLock Server (DebugConsole)","Ban (DebugConsole)","Kick (DebugConsole)",
  232.  
  233. "Change Money on Player","Change Money on Bank","Change Respect",
  234.  
  235. "MapIcons",
  236. "MapIcons: Buildings","MapIcons: Flags",
  237. "MapIcons: Player","MapIcons: DeadPlayer","MapIcons: Vehicles",
  238. "MapIcons: Vehicle Types","MapIcons: Vehicle lockstate","MapIcons: DeadVehicles",
  239. "MapIcons: AI",
  240. "Arsenal", // Adds Arsenal to the mousewheel actions if you press "," on the Numpad!
  241. "Unconscious","Remove Unconscious",
  242. "Light", // Zeus like Lighting from the Air strikes down at selected player / target / location - use ctrl+1 or the menu to use it!
  243.  
  244. "Spawn Zombie on Target Location!", // This only works when you are using ExilZ / RyanZombies
  245.  
  246. ""
  247. }
  248. },
  249. {
  250. {"0,0"}, /* Admins with UIDs in this Array have their Access defined in the array below. */
  251. {
  252. "Teleport On Map Click","Teleport - Target To Me","Teleport - Me To Target",
  253. "Teleport In Facing Direction (10m steps)","Drag and drop units on the map",
  254. "spectating","Delete Vehicle","FlyUp","ShowGear","Show Server Information",
  255. "HealSelf","HealRepairNear","AdminLog","Freeze","UnFreeze","Restrain","UnRestrain",
  256. "==== Loadouts ====","==== Base Deleter ====","Items spawn menu",
  257. "Remove Gear","Revive","Heal","Restore","Flip Vehicle","Move In My Vehicle","Move In Target Vehicle","Parachute Target","Eject","Eject Crew",
  258. "Player ESP","Player ESP (safezone style)","AI ESP","Dead ESP","Loot ESP",
  259. "Vehicle Marker","Flag Marker (with radius)","Box/Safe/Container Marker","DeadPlayer Marker",
  260. "God Mode","God Mode (no stats change)","Vehicle God Mode","Lower Terrain","Vehboost","UnlimAmmo","noRecoil","FastFire","Stealth / Invisible",
  261. "Disable Announces","Mass Message","Change Time","Spawn Support-Boxes","Create Billboard","Change ViewDistance",
  262. "Spawn Ammo","Login as Arma Admin","BIS FreeRoam Cam (works with ESP)","FreeRoam Cam (does not work with ESP)",
  263. "Request Steam Name","showinfo",
  264. "UnlockLockVehicle","Copy Worldspace(coords) to RPT & Chat",
  265.  
  266. "Spawn Vehicles","Spawn Persistent Vehicles","Trader Menu",
  267.  
  268. "Kill","Explode","Force Disconnect",
  269. "Kick (Silent)","Kick (Announce)","Ban (Silent)","Ban (Announce)","TempBan (Silent)","TempBan (Announce)",
  270.  
  271. "AdminConsole",
  272. "DebugConsole",
  273. "Execute code on server (DebugConsole)","Execute code global (DebugConsole)","Execute code local (DebugConsole)",
  274. "Lock Server (DebugConsole)","UnLock Server (DebugConsole)","Ban (DebugConsole)","Kick (DebugConsole)",
  275.  
  276. "Change Money on Player","Change Money on Bank","Change Respect",
  277.  
  278. "MapIcons",
  279. "MapIcons: Buildings","MapIcons: Flags",
  280. "MapIcons: Player","MapIcons: DeadPlayer","MapIcons: Vehicles",
  281. "MapIcons: Vehicle Types","MapIcons: Vehicle lockstate","MapIcons: DeadVehicles",
  282. "MapIcons: AI",
  283. "Arsenal", // Adds Arsenal to the mousewheel actions if you press "," on the Numpad!
  284. "Unconscious","Remove Unconscious",
  285. "Light", // Zeus like Lighting from the Air strikes down at selected player / target / location - use ctrl+1 or the menu to use it!
  286.  
  287. "Spawn Zombie on Target Location!", // This only works when you are using ExilZ / RyanZombies
  288.  
  289. ""
  290. }
  291. },
  292. {
  293. {"0,0"}, /* Admins with UIDs in this Array have their Access defined in the array below. */
  294. {
  295. "Teleport On Map Click","Teleport - Target To Me","Teleport - Me To Target",
  296. "Teleport In Facing Direction (10m steps)","Drag and drop units on the map",
  297. "spectating","Delete Vehicle","FlyUp","ShowGear","Show Server Information",
  298. "HealSelf","HealRepairNear","AdminLog","Freeze","UnFreeze","Restrain","UnRestrain",
  299. "==== Loadouts ====","==== Base Deleter ====","Items spawn menu",
  300. "Remove Gear","Revive","Heal","Restore","Flip Vehicle","Move In My Vehicle","Move In Target Vehicle","Parachute Target","Eject","Eject Crew",
  301. "Player ESP","Player ESP (safezone style)","AI ESP","Dead ESP","Loot ESP",
  302. "Vehicle Marker","Flag Marker (with radius)","Box/Safe/Container Marker","DeadPlayer Marker",
  303. "God Mode","God Mode (no stats change)","Vehicle God Mode","Lower Terrain","Vehboost","UnlimAmmo","noRecoil","FastFire","Stealth / Invisible",
  304. "Disable Announces","Mass Message","Change Time","Spawn Support-Boxes","Create Billboard","Change ViewDistance",
  305. "Spawn Ammo","Login as Arma Admin","BIS FreeRoam Cam (works with ESP)","FreeRoam Cam (does not work with ESP)",
  306. "Request Steam Name","showinfo",
  307. "UnlockLockVehicle","Copy Worldspace(coords) to RPT & Chat",
  308.  
  309. "Spawn Vehicles","Spawn Persistent Vehicles","Trader Menu",
  310.  
  311. "Kill","Explode","Force Disconnect",
  312. "Kick (Silent)","Kick (Announce)","Ban (Silent)","Ban (Announce)","TempBan (Silent)","TempBan (Announce)",
  313.  
  314. "AdminConsole",
  315. "DebugConsole",
  316. "Execute code on server (DebugConsole)","Execute code global (DebugConsole)","Execute code local (DebugConsole)",
  317. "Lock Server (DebugConsole)","UnLock Server (DebugConsole)","Ban (DebugConsole)","Kick (DebugConsole)",
  318.  
  319. "Change Money on Player","Change Money on Bank","Change Respect",
  320.  
  321. "MapIcons",
  322. "MapIcons: Buildings","MapIcons: Flags",
  323. "MapIcons: Player","MapIcons: DeadPlayer","MapIcons: Vehicles",
  324. "MapIcons: Vehicle Types","MapIcons: Vehicle lockstate","MapIcons: DeadVehicles",
  325. "MapIcons: AI",
  326. "Arsenal", // Adds Arsenal to the mousewheel actions if you press "," on the Numpad!
  327. "Unconscious","Remove Unconscious",
  328. "Light", // Zeus like Lighting from the Air strikes down at selected player / target / location - use ctrl+1 or the menu to use it!
  329.  
  330. "Spawn Zombie on Target Location!", // This only works when you are using ExilZ / RyanZombies
  331.  
  332. ""
  333. }
  334. }
  335. };
  336.  
  337.  
  338.  
  339. /****************************************************************************************************/
  340. /********************OPTIONS BELOW REQUIRE CHANGES TO YOUR EXILE SERVER DATABASE!********************/
  341. /****************************************************************************************************/
  342. /*
  343. Use Database WhiteList?
  344. if "USE_DATABASE_WHITELIST = "true";", UIDs that are not whitelisted in your exile server database, will be kicked on connect.
  345.  
  346. To use this, you need to use what I've added to "infiSTAR.de_Exile\SERVER_ARMA3_FOLDER\db_related_changes"
  347. */
  348. USE_DATABASE_WHITELIST = "false";
  349.  
  350. /*
  351. Use Log to database?
  352. if "USE_LOG_TO_DATABASE = "true";", infiSTAR will log to your exile server database! (yes I know this is great!)
  353.  
  354. To use this, you need to use what I've added to "infiSTAR.de_Exile\SERVER_ARMA3_FOLDER\db_related_changes"
  355. */
  356. USE_LOG_TO_DATABASE = "false";
  357. /****************************************************************************************************/
  358. /********************OPTIONS ABOVE REQUIRE CHANGES TO YOUR EXILE SERVER DATABASE!********************/
  359. /****************************************************************************************************/
  360. /*
  361. ARMA_LOG.dll SETTINGS
  362. LOG_PATH = ""; is the Arma3Server directory
  363. LOG_PATH = "infiSTAR_Logs/"; would be a folder called "infiSTAR_Logs" within your Arma3Server directory.
  364. You need to create the defined folder if it doesn't exist. If you don't create it - the DLL won't be able to write any Log files ! ! !
  365. */
  366. LOG_PATH = "";
  367. WRITE_LOG_FILES = "true";
  368.  
  369.  
  370. /*
  371. What is this?
  372. infiSTAR has a global ban system so hackers don't jump around servers and learn how to bypass infiSTAR.
  373.  
  374. There was a situation where a group of people asked why their friend could not join the server.
  375. Well he was globally banned for hacking.. anyways - if you as a server admin want him to get in even tho he is globally banned,
  376. just ask for his UID and add the UID in the array below.
  377. */
  378. UID_SKIP_GLOBAL_BAN_CHECK[] =
  379. {
  380. "UID1","UID2","UID3","..."
  381. };
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390. /*
  391. Use UID WhiteList?
  392. if "USE_UID_WHITELIST = "true";", UIDs that are not in "UID_WHITELIST" array, will be kicked on connect.
  393. This even counts for Admins!
  394. */
  395. USE_UID_WHITELIST = "false";
  396. UID_WHITELIST[] =
  397. {
  398. "UID1","UID2","UID3","..."
  399. };
  400.  
  401. ExileDevFriendlyMode = "true"; /* adds Exile Devs to your AdminList - makes it easier for them to debug their mod live */
  402.  
  403.  
  404. /* What ESCAPE Menu shows */
  405. ESCMNUTOP = "AntiHack & AdminTools";
  406. ESCMNUBOT = "by infiSTAR.de";
  407. BRIEFING_MSG = "false"; /* use mission briefing message: if "BRIEFING_MSG = "false";" then the message will be replaced by infiSTAR */
  408. HTML_LOAD_URL = ""; /* HTML_LOAD_URL = ""; == disabled and if you set a url it will be shown in ESCAPE menu. HTML in Arma/this is limited. Try it :) example: "http://goo.gl/gb0o7b" */
  409. ENABLE_PRIVATE_CHAT_MENU = "true"; /* players can open it by typing !chat in chat or by custom controls -> "Use Action 3" */
  410. PRIVATE_CHAT_MENU_8GNETWORK = "false"; /* if this is "true" - players will only be able to use private chat if they enable 8GNetwork in their xm8 */
  411.  
  412.  
  413.  
  414.  
  415.  
  416. class infiSTAR_RESTART_SYSTEM {
  417. enableSystem = "true";
  418.  
  419. USE_RESTART_TIME_IN_M = "true";
  420. RESTART_TIME_IN_M = 180; /* restart time in minutes (default: 180min == 3 hours) */
  421. TIME_FUNCTION_USED = "diag_tickTime"; /* diag_tickTime (starts with arma3server.exe), time (starts with mpmission init) */
  422.  
  423.  
  424. USE_RESTART_FIXED_TIME_ARRAY = "false";
  425. RESTART_TIMES[] = { /* {hour,minute} .. put in the times when your server is supposed to restart (real time). */
  426. {00,00},
  427. {02,00},
  428. {04,00},
  429. {06,00},
  430. {08,00},
  431. {10,00},
  432. {12,00},
  433. {14,00},
  434. {16,00},
  435. {18,00},
  436. {20,00},
  437. {22,00}
  438. };
  439.  
  440.  
  441. USE_SHUTDOWN = "true";
  442. SERVER_END_FUNCTION = "#shutdown"; /* SERVER_END_FUNCTION -> #shutdown or #restartserver */
  443. RESTART_WARNING_SOUND = "Alarm"; /* for example: Alarm or air_raid */
  444.  
  445. RESTART_IN_X_ARRAY[] = {15,10,5,4,3,2,1}; /* Announce the a restart x mins before it happens (x stands for each number) */
  446. };
  447.  
  448.  
  449.  
  450.  
  451. /* Allow Player to vote Day/Night by typing vote day / vote night in Chat*/
  452. DayNightVote = "true";
  453. MRV = 0.3; /* if "DayNightVote = "true";" - Minimum votes required. Percentage of players needed to pass the vote. */
  454. MVP = 0.51; /* if "DayNightVote = "true";" - Minimum vote percentage. A setting that dictates the minimum vote percentage that needs to be reached for the vote to pass. */
  455. VCT = 900; /* if "DayNightVote = "true";" - Time (in seconds) to wait until nex vote is possible. */
  456.  
  457.  
  458. /* Allow players to type !pee to start peeing */
  459. allowPee = "true";
  460.  
  461. /* Enable jumping instead of GetOver function (infiSTAR jumping is a custom jump animation :P) */
  462. enableJump = "true";
  463.  
  464.  
  465.  
  466. /*
  467. The following 4 options can be disabled by putting the value to -1. For example "TGV = -1;"
  468.  
  469. TGV: if set to 50 grass will be very low for better client FPS.. default is 25. ~35 is good performance and grass :)
  470.  
  471. old infiSTAR default values were:
  472. TGV = 40;
  473. VDV = 1000;
  474. VOV = 800;
  475. SVD = 50;
  476. */
  477. /* Terrain Grid Value */ TGV = 40;
  478. /* ViewDistance Value */ VDV = 1200;
  479. /* ObjectViewDistance */ VOV = 1200;
  480. /* ShadowViewDistance */ SVD = 50;
  481.  
  482.  
  483. /*
  484. This will set your vehicle back if you try to ram somebody within the safeZone
  485. */
  486. block_safeZone_ramming = "false";
  487. /****************************************************************************************************/
  488. /***************************FIXES DUE TO ARMA BEING BROKEN - BELOW***********************************/
  489. /****************************************************************************************************/
  490. /*
  491. *readded new old uniform and vest check since some people asked for it.
  492. http://www.exilemod.com/topic/14179-miss-uniform_and_vest_check/
  493. the game is still broken and sometimes you can see people naked when they are not.
  494. I did not add the old check back in, I made a new one making use of new functions :)
  495. */
  496. fix_uniform_and_vest = "true";
  497.  
  498.  
  499. /*
  500. So far only checking for duped backpacks and not taking any actions besides logging. Need to test more before It will start to remove duped items.
  501. */
  502. experimental_dupe_check = "true";
  503.  
  504.  
  505. /*
  506. re-assigning "InventoryOpened" eventhandler to stop glitch open a locked safe
  507. */
  508. stopSafeGlitchAndCorpseDupe = "true";
  509.  
  510.  
  511. /*
  512. checks if player tries to dupe using the "disconnect trick" -> sends a ping to the server whenever a player opens the escape menu
  513. */
  514. disconnect_dupe_check = "true";
  515.  
  516.  
  517. /*
  518. there is a way for players to dupe items if they drive a vehicle close to a trader, open the trader menu and then have a friend sit in the driver of the vehicle.
  519. Now they can sell the same item unlimited times and it won't vanish from the vehicle..
  520. That issue is fixed with this check!
  521. */
  522. fix_trader_dupe = "true";
  523.  
  524. /*
  525. server side check for the famous "wastedump dupe" as well as client side cooldown
  526. the timer can not be lower than 120 seconds. if it was lower the check would not be working.
  527. */
  528. fix_wastedump_dupe = "true";
  529.  
  530. /*
  531. several people standing infront of the same corpse and pressing all take-all the same time, would dupe the loot.
  532. This fixes it.
  533. */
  534. fix_takeall_dupe = "true";
  535.  
  536.  
  537.  
  538.  
  539. /*
  540. if a player is near a flag where he has no buildrights, he can't vault/getover/lean close to buildingparts (to prevent glitching!)
  541. */
  542. block_glitch_actions = "true";
  543.  
  544.  
  545. /*
  546. checks if a players tries to glitch through a wall (if player is allowed to build in that territory, it will not be logged.)
  547. */
  548. wall_glitch_object = "true";
  549. wall_glitch_revert = "true"; // Teleport player back to last safe postion
  550. /*
  551. If a player model intersects with a wall, the player will be teleport back to where he was before he intersected with it..
  552.  
  553. extra punishments possible:
  554. 0 - no punishment
  555. 1 - knockout for 60 seconds
  556. 2 - kill
  557.  
  558. hardcore punishments
  559. 3 - handcuff
  560. 4 - kick
  561. 5 - ban (not recommended)
  562. */
  563. wall_glitch_punish = 0;
  564.  
  565.  
  566.  
  567. /*
  568. stops players from glitching into bases using "eject" or "getout" of a vehicle..
  569. */
  570. wall_glitch_vehicle = "true";
  571. /****************************************************************************************************/
  572. /***************************FIXES DUE TO ARMA BEING BROKEN - ABOVE***********************************/
  573. /****************************************************************************************************/
  574. addBulletCamTo_APDS_Ammo = "true"; // This adds the Exile BulletCam to any APDS Projectile!
  575.  
  576. class infiSTAR_handleDamage {
  577. /*
  578. This whole handleDamage does not effect admins!
  579. */
  580. enable = "true";
  581.  
  582. PvP_ReflectDamage = "false"; /* should reflect damage from player vs player (the player still takes damage) */
  583. PvP_BlockDamage = "false"; /* should block damage from player vs player */
  584.  
  585. /*
  586. block damage completely if the source of the damage is NULL
  587. (for example if you crash into a bush the source is NULL)
  588. */
  589. BlockNullSource = "false";
  590. };
  591.  
  592.  
  593. /*
  594. The allowed lists below need the "title" of the action!
  595.  
  596. Only logs BadActions (and removes them) but does not kick or ban.
  597. */
  598. BadActionCheck = "false"; /* log and remove all actions that are not white-listed */
  599. allowedActions[] = {"Break free","Use AutoLockPicker","Craft Vehicle"};
  600. allowedActionsPartial[] = {"paint"};
  601. BadActionContentCheck = "true"; /* Check the functions assigned to all actions, regardless any white-list */
  602.  
  603.  
  604.  
  605. KCM = "true"; /* Just close ALL CommandingMenus */
  606. CMC = "false"; /* Check for CommandingMenus that are not in the allowedCommandingMenus array */
  607. allowedCommandingMenus[] = {"#user:example","#user:example2"};
  608.  
  609.  
  610. task_force_radio = "false"; /* put this to "true" if you allow task force radio on your server! */
  611. reset_inGameUIEventHandler = "true"; /* reset inGameUIEventHandler */
  612. checkFilePatchingEnabled = "true"; /* checks if filepatching is enabled on the client (if it is, the client could inject any script based hack easily) */
  613. checkCfgPatches = "true"; /* checks serve side Cfg Patches vs Client side (logs as "Bad Class found in CfgPatches >> xxx") */
  614. check_Notifications = "false"; /* checks if BIS_fnc_showNotification was used, as it is used with many hacks - some custom addons however use them too. */
  615. check_doors_n_gates = "true"; /* Fixes Hatches (so when they are locked, they stay closed..) and closes every door that's locked + keeps closing it in case somebody tries to hack open it! */
  616. attach_to_check = "false"; /* logs and detaches attached vehicles that are close.. basically completely disallow attaching of vehicles! */
  617. slingload_check = "false"; /* forbid sling loading / rope attaching a vehicle with a crew */
  618.  
  619.  
  620. checkPopTabIncrease = "true";
  621. LogPopTabIncrease = 15000; /* Only if checkPopTabIncrease = "true"; logs if PopTabs increased by x within ~50 seconds */
  622. BanPopTabIncrease = 500000; /* Only if checkPopTabIncrease = "true"; bans a player if PopTabs increase by more than x within ~50 seconds */
  623.  
  624. checkRespectIncrease = "true";
  625. LogRespectIncrease = 5000; /* Only if checkRespectIncrease = "true"; logs if respect increased by x within ~50 seconds */
  626. BanRespectIncrease = 50000; /* Only if checkRespectIncrease = "true"; bans a player if respect increases by more than x within ~50 seconds */
  627.  
  628.  
  629.  
  630. /* Check for Map Menu & Map Sub-Menu */
  631. CMM = "true";
  632. maxMapMenuEntries = 6; /* "Map Menu has been changed x entries found - Texts: y" incase you want to add some briefing to your map menu. Only matters if you have CMM = "true"; */
  633.  
  634. /* if steam api.steampowered.com is working, this might be a nice feature */
  635. check_steam_ban = "false"; /* will announce and log steambanned players - using GetPlayerBans v1 */
  636. ban_for_steam_ban = "false"; /* if "check_steam_ban = "true";" then steambanned players will get banned from your Arma server! */
  637.  
  638.  
  639. /*
  640. This set to "true" will create a log of players being hit on your server
  641. */
  642. MPH = "true";
  643.  
  644.  
  645. /*
  646. This will check from serverside if a playerobject received damage but did not take it
  647. */
  648. GodModeCheck = "false";
  649.  
  650.  
  651.  
  652. /*
  653. Anti Teleport
  654. UAT = "false"; To disable Anti Teleport
  655. Arrays below show position & radius where Teleporting is allowed.
  656. Mainly for the Traders (because when you purchase a vehicle, it teleports you into the vehicle)
  657.  
  658. You can white-list "Teleport Zones" by adding them like below:
  659. class allowTP {
  660. custom[] = {
  661. {{0,0,0},1},
  662. {{1,1,1},1},
  663. {{2,2,2},1}
  664. };
  665. };
  666. Trading zones are white-listed by default.
  667. */
  668. UAT = "true";
  669. class allowTP {
  670. custom[] = {};
  671. };
  672.  
  673.  
  674.  
  675. /* Check Drawing on the Map (global channel) */
  676. CHECK_DRAWING = "false"; /* logs & deletes global drawing */
  677.  
  678.  
  679.  
  680. /* Check Local Markers */
  681. CLM = "false"; /* "false" if you do not want LocalMarker to be checked. */
  682.  
  683. /* Use aLocalM array */
  684. UMW = "false"; /* use allowed marker array from below (for example AltisLife uses house_ and others in there) or A.I. Missions */
  685. /* aLocalM: if "CLM" && UMW - this array of names will be allowed */
  686. aLocalM[] = {"MissionMarker"};
  687.  
  688.  
  689. /*
  690. Not allowed Chat words on server.
  691. Example:
  692. badkickChat[] = {"blue"}; or badbanChat[] = {"blue"};
  693. will log and kick or ban if somebody writes "blue goat" or "blues" in the chat (not case sensitive).
  694.  
  695. Example 2:
  696. This will most likely stop people from writing Cyrillic (Russian) (I've been asked for this)
  697. badkickChat[] = {"й","д","и","б","ь","т"};
  698. */
  699. badkickChat[] = {};
  700. badbanChat[] = {};
  701.  
  702.  
  703. /* Not allowed Names on server. Example: badNamesFull[] = {"THE"}; would kick all players that are named "THE", it would NOT kick players named "THE CAR" (not case sensitive) */
  704. badNamesFull[] = {};
  705.  
  706. /* Not allowed Names on server. Example: badNamesPartial[] = {"THE"}; would kick all players with names like "the car" as it includes "THE" (not case sensitive) */
  707. badNamesPartial[] = {"admin"};
  708.  
  709.  
  710. /* Not allowed Group Names on server. Example: badGroupNames[] = {"THE"}; would rename all groups with names like "the car" as it includes "THE" (not case sensitive) */
  711. badGroupNames[] = {"admin"};
  712.  
  713.  
  714.  
  715. /*
  716. if somebody talks on one of the following channels, his channel will be switched to "direct" channel
  717. 0 = Global
  718. 1 = Side
  719. 2 = Command
  720. 3 = Group
  721. 4 = Vehicle
  722. 5 = Direct <-- this is where people get switched too if they talk in one of the blacklisted channels!
  723. 6-15 = Custom Radio (see radioChannelCreate)
  724. */
  725. disAllowVon[] = {1,2};
  726.  
  727. /* badIDDsToKick will be checked before badIDDsToClose, badIDDsToClose will be checked before allowedIDDs */
  728. /* badIDDsToKick: Forbidden Idds that will get you Kicked by the AH */
  729. badIDDsToKick[] =
  730. {
  731. -1338,-1337,-1341,17,19,30,32,45,56,59,62,64,69,71,110,125,
  732. 132,133,155,156,165,166,167,312,313,
  733. 1320,1321,1340,1341,1342,1343,1344,1345,1346,1347,
  734. 2727,2928,2929,3030,316000,9899,0110,
  735. 6900,552266
  736. };
  737.  
  738. /* badIDDsToClose: Forbidden Idds that will get closed by the AH */
  739. badIDDsToClose[] =
  740. {
  741. -1,2,3,7,17,19,25,26,27,28,29,30,31,32,37,40,41,43,44,45,51,52,53,56,74,85,
  742. 106,126,127,132,146,147,150,151,152,153,154,155,159,162,164,262,
  743. 314,632,1320,2121,148,163,129,169,157,69,156,165,166,167,312,1321,2727,
  744. -1341,1341
  745. };
  746.  
  747. /* Use IDD White-List ? */ UDW = "true";
  748. /* allowedIDDs: Insert IDDs here to prevent them from being closed! */
  749. allowedIDDs[] =
  750. {
  751. /* default idds */
  752. -1,0,4,5,6,8,12,18,24,49,54,55,70,101,160,174,177,999,131,63,602,301,
  753.  
  754. /* exile idds */
  755. 24001,24002,20023,24005,24004,24010,24025,20021,20017,24012,24027,
  756. 20019,20016,24007,20024,20018,24008,24011,24015,24000,24006,24014,
  757. 20020,24026,4002,4000,4001,4003,1500,
  758.  
  759. 24033,24030,24029,24028,24031,24034,
  760.  
  761. 4004,21000, // Bounty system and MarXet
  762. 8457, // http://www.exilemod.com/topic/9040-xm8-apps/
  763. 65431, // r3f menu fix
  764. 6666, // Paintshop
  765. 0711, // Advanced Banking
  766. 0720, // Virtual Garage
  767. 5501,5502,5503,5504,5505,5506,5507, // BRAma Cookbook
  768. -1339,-1340, // custom infiSTAR dialogs (some editor & a private chat menu)
  769.  
  770. /* main idd - never delete it */
  771. 46
  772. };
  773.  
  774.  
  775.  
  776. /*
  777. important check to make sure certain variables are set and have the correct type!
  778. */
  779. variableTypeChecks[] =
  780. {
  781. {'ExileIsPlayingRussianRoulette',"false"},
  782. {'ExileClientIsHandcuffed',"false"},
  783. {'ExilePlayerInSafezone',"false"},
  784. {'ExileClientIsAutoRunning',"false"},
  785. {'ExileCurrentBreachingObject',objNull},
  786. {'ExileClientInteractionObject',objNull},
  787. {'HTML_LOAD_URL3',''},
  788. {'infiSTAR_lastJumptime',0},
  789. {'PLAYER_IN_VEHICLE',"false"},
  790. {'ExileSystemSpawnThread',[]}
  791. };
  792.  
  793.  
  794. /*
  795. it is highly recommended to have this check turned on (useBlacklistedVariableCheck = "true";)
  796. shows "BadVariable in xxxxxxxx " in the logs.
  797. */
  798. useBlacklistedVariableCheck = "true";
  799. blacklistedVariables[] =
  800. {
  801. "bis_debug_cam",
  802. "arsenalopened","bis_fnc_arsenal_fullarsenal","babecore_escm_mousepos",
  803. "bis_fnc_dbg_reminder_value","bis_fnc_dbg_reminder","bis_menu_groupcommunication","bis_fnc_addcommmenuitem_menu",
  804. "rscspectator","rscspectator_hints","rscspectator_display","rscspectator_playericon",
  805. "rscspectator_view","rscspectator_map","rscspectator_vision","rscspectator_keys",
  806. "rscspectator_interface","bis_fnc_camera_target","andy_loopz","initfileone","finie_s_p",
  807. "time","servertime","myplayeruid","hhahaaaaar","charliesheenkeybinds","kickoff","yolo","runonce","notakeybind","action1","supa_licenses","autokick","wallaisseikun","mainmenu",
  808. "gefclose","gefwhite","gefred","gefgreen","gefcyan","firsthint","new_queued","fn_exec","fnd_fnc_select","fnx3","antihackkick","tele","dmap","goldens_global_shit_yeah","glass911_run",
  809. "geardialog_create","lystokeypress","thirtysix","ly_swaggerlikeus","jkeyszz","n2","boxofmagic","mainscripts","dmc_fnc_4danews","infistarbypass","exec_text","vehicle_dblclick","init_main",
  810. "esp_count","nute_dat_bomber","s_cash100k","xposplayer","ly_re_onetime","skar_checka","mainscriptsv4","viewdistance","check_load","already_load","meins","f1","dummy","plane_jump",
  811. "c_player","mouseclickeh","distp","nec2","menu_i_run_color_lp","glassv1nce_bindhandler","thecar","fastanimes","getinpassenger","iaimon","dmc_re_onetime","func_execonserver","fnc_serverkicknice",
  812. "kick_admins","dasmokeon","hovering","r_kelly_be_flying","vincelol_altislife","life_fnc_byassskaroah","ah_fnc_mp","jayre","fn_newsbanner","hack_news","trollfuncs",
  813. "fanatic_infipass","keybindings_xxx","andysclosed","userfuncs","altisfuncs","remexe","bb_nofatigue","bis_fnc_diagkey_var_code","first_page","get_in_d","i_t_s__m_e_o","smissles","whippy_esp",
  814. "targetfuncs2","life_fnc_antifreeeeze","ly_keyforward","ty_re_onetime","life_fnc_xaaxaa","mein1","goddamnvehiclesxd","mystic_fnc_esp_distance","esp_id_setter","dummymen","whipbut","userfuncs",
  815. "krohdofreedom","selectedplayer","lmenu1","ggplayer","throx_menu_item","lvl1","init_menu_slew","d_b_r_t_y_slew","v6_gef","xasfjisisafudmmyx","kekse","updated_re_36","first","second",
  816. "sni_prz_zzz_targetplayer","healit","o_fnc_arma","mlrn_exec","running_threads","catchemall12274","killtarget","gmtoggle","t1","fuck_me_keyp","cheatcurator"
  817. };
  818.  
  819. /*
  820. due to new hacking methods it is necessary to check variables on objects..
  821. since most server have 50.000+ objects this can cost a lot client fps but it should still be used.. for the greater good!
  822. */
  823. useObjectVariableCheck = "false";
  824.  
  825.  
  826.  
  827. UVC_adminspawn = "false"; /* use vehicle check(s) on vehicles spawned by infiSTAR.de admin? */
  828. /*
  829. Use vehicle white list? (everything not on white-list will be flagged as BadVehicle and deleted!)
  830. "EXILE" vehicles are white-listed by default!
  831. */
  832. VehicleWhiteList_check = "false";
  833. VehicleWhiteList[] =
  834. {
  835. "B_Parachute","B_Parachute_02_F","O_Parachute_02_F","Steerable_Parachute_F",
  836. "I_UAV_01_F","B_HMG_01_high_F","O_HMG_01_F","B_Heli_Transport_01_F","B_Heli_Transport_01_camo_F","O_MRAP_02_gmg_F","O_static_AT_F","Land_Camping_Light_F"
  837. };
  838.  
  839. /*
  840. Use forbidden vehicle check? (everything in the ForbiddenVehicles will be flagged as BadVehicle and deleted (even when it is on the white-list)!)
  841. */
  842. ForbiddenVehicles_check = "true";
  843. ForbiddenVehicles[] =
  844. {
  845. "B_MBT_01_arty_F","B_Truck_01_ammo_F"
  846. };
  847.  
  848. /*
  849. If you use VehicleWhiteList_check or ForbiddenVehicles_check then the vehicle check automatically checks for locally created vehicles.
  850. Locally created vehicles are these that get created by a player and not the server. E.g. when a player assambles a UAV or a static weapon!
  851. Also some public posted scripts for example the "bike script" are creating the vehicle (the bike) locally (so the type of the vehicle needs to get added to the array below!).
  852. */
  853. LocalWhitelist[] =
  854. {
  855. "O_HMG_01_weapon_F","O_HMG_01_F","O_HMG_01_support_F","I_UavTerminal","I_UAV_01_backpack_F",
  856. "Exile_Bike_OldBike","B_HMG_01_F","B_HMG_01_high_F","O_HMG_01_high_F"
  857. };
  858.  
  859.  
  860.  
  861.  
  862. UFI = "false"; /* Use "ForbiddenItems"/Item Check(s) */
  863. UIW = "false"; /* if "UIW = "true";" then it checks if the items the individual player has are in "ItemWhiteList" */
  864. ItemWhiteList[] =
  865. {
  866. "AllowThisItem1","AllowThisItem2"
  867. };
  868. ForbiddenItems[] =
  869. {
  870. "autocannon_Base_F","autocannon_30mm","autocannon_35mm","autocannon_40mm_CTWS","autocannon_30mm_CTWS","Bomb_04_Plane_CAS_01_F",
  871. "Bomb_03_Plane_CAS_02_F","cannon_105mm","cannon_120mm","cannon_120mm_long","cannon_125mm","Cannon_30mm_Plane_CAS_02_F","gatling_20mm",
  872. "gatling_25mm","gatling_30mm","Gatling_30mm_Plane_CAS_01_F","GBU12BombLauncher","GMG_20mm","GMG_40mm","GMG_UGV_40mm","HMG_127_MBT",
  873. "HMG_127","HMG_127_APC","HMG_01","HMG_M2","HMG_NSVT","LMG_Minigun2","LMG_RCWS","LMG_M200","LMG_Minigun","LMG_Minigun_heli","LMG_coax",
  874. "Missile_AGM_02_Plane_CAS_01_F","Missile_AA_04_Plane_CAS_01_F","Missile_AA_03_Plane_CAS_02_F","Missile_AGM_01_Plane_CAS_02_F","missiles_DAGR",
  875. "missiles_DAR","missiles_ASRAAM","missiles_SCALPEL","missiles_titan","missiles_titan_static","missiles_Zephyr","Mk82BombLauncher","mortar_82mm",
  876. "mortar_155mm_AMOS","rockets_Skyfire","rockets_230mm_GAT","Rocket_04_HE_Plane_CAS_01_F","Rocket_04_AP_Plane_CAS_01_F","Rocket_03_HE_Plane_CAS_02_F",
  877. "Rocket_03_AP_Plane_CAS_02_F","Twin_Cannon_20mm"
  878. };
  879.  
  880.  
  881.  
  882. /*
  883. custom Box content:
  884. just an item like it is in the example with "ItemMap" will put the item once in the box.
  885. if an array is used like the {"ItemGPS",5} example, well I assume you could guess what it will do.
  886.  
  887. You can just define as many as you want.
  888. {
  889. "BOX NAME", // function name in the admin menu
  890. {
  891. "Item1","Item2", // one per just item in a string
  892. {"Item1",5},{"Item2",10} // second entry in each array defiens how many of items of the first entry are wanted.
  893. }
  894. }
  895.  
  896. The last closing bracket in an array can not have a "," afterwards. So make sure to have no syntax errors here.
  897. */
  898. allSupportBoxes[] =
  899. {
  900. {
  901. "Support-Box1",
  902. {
  903. "Exile_Item_Flag","Exile_Item_CookingPot",
  904. {"Exile_Item_Codelock",5},{"Exile_Item_DuctTape",10},{"Exile_Item_InstaDoc",10},
  905. {"Exile_Item_Energydrink",10},{"Exile_Item_ExtensionCord",5},{"Exile_Item_FloodLightKit",5},
  906. {"Exile_Item_FortificationUpgrade",5},{"Exile_Item_FuelCanisterFull",5},{"Exile_Item_GloriousKnakworst_Cooked",10},
  907. {"Exile_Item_LightBulb",5},{"Exile_Item_Matches",5},{"Exile_Item_MetalBoard",5},
  908. {"Exile_Item_MetalPole",5},{"Exile_Item_PlasticBottleFreshWater",10},{"Exile_Item_PortableGeneratorKit",5},
  909. {"Exile_Item_Rope",15},{"Exile_Item_SafeKit",15},{"Exile_Magazine_Battery",15}
  910. }
  911. },
  912. {
  913. "Support-Box2",
  914. {
  915. "Exile_Item_Flag",
  916. {"Exile_Item_WoodDoorKit",15},{"Exile_Item_WoodDoorwayKit",15},{"Exile_Item_WoodDrawBridgeKit",15},
  917. {"Exile_Item_WoodFloorKit",15},{"Exile_Item_WoodFloorPortKit",15},{"Exile_Item_WoodGateKit",15},
  918. {"Exile_Item_WoodLog",15},{"Exile_Item_WoodPlank",15},{"Exile_Item_WoodStairsKit",15},
  919. {"Exile_Item_WoodSupportKit",15},{"Exile_Item_WoodWallHalfKit",15},{"Exile_Item_WoodWallKit",15},
  920. {"Exile_Item_WoodWindowKit",15},{"Exile_Item_WorkBenchKit",15}
  921. }
  922. },
  923. {
  924. "Support-Box3",
  925. {
  926. {"Exile_Item_Flag",5},{"Exile_Item_WoodDoorKit",15},{"Exile_Item_WoodWallKit",15},
  927. {"Exile_Item_WoodWindowKit",15},{"Exile_Item_WoodFloorKit",15},{"Exile_Item_SafeKit",5}
  928. }
  929. },
  930. {
  931. "Support-Box4",
  932. {
  933. "ItemMap",{"ItemGPS",5},"ItemWatch"
  934. }
  935. }
  936. };
  937. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement