· 4 years ago · Aug 30, 2021, 11:02 PM
1<?php
2
3//--# Databse Information --+
4$dbhost = 'localhost'; // Change only if server is different
5$dbname = "RustKillRecords"; // Name of Database you want to use for RustKillRecords
6$dbuser = "RustKR"; // Username connected RustKillRecords Database -- DO NOT USE HOST USERNAME!
7$dbpassword = "killrecords"; // User password for RustKillRecords Databse -- DO NOT USE HOST PASSWORD!
8$tablename = "KillRecords"; // Table name inside database that records are stored in
9$configsecretkey = "SecretKey"; // Same key used in KillRecords config on your Rust Server
10
11//--# Display Options #--+
12// Set to match your server KillRecord Config
13
14// Show Player Kills
15$playerkills = 'true';
16// Show Chicken Kills
17$chickenkills = 'true';
18// Show Boar Kills
19$boarkills = 'true';
20// Show Stag Kills
21$stagkills = 'true';
22// Show Wolf Kills
23$wolfkills = 'true';
24// Show Bear Kills
25$bearkills = 'true';
26// Show Scientist Kills
27$scientistkills = 'true';
28// Show Tunnel Dweller Kills
29$tunneldweller = 'true';
30// Show Loot Containers Destroyed
31$lootcontainers = 'true';
32// Show Animals Harvested
33$animalcorpse = 'true';
34// Show Bodies Harvested
35$bodycorpse = 'true';
36// Show Deaths
37$deaths = 'true';
38
39?>