summaryrefslogtreecommitdiff
path: root/gamemode/configure_me.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/configure_me.lua')
-rw-r--r--gamemode/configure_me.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/gamemode/configure_me.lua b/gamemode/configure_me.lua
index e52b961..86bbd89 100644
--- a/gamemode/configure_me.lua
+++ b/gamemode/configure_me.lua
@@ -9,3 +9,20 @@
//Make sure that this is the gamemode folder name
GM.GAMEMODE_FOLDER_NAME = "gmsurvival"
+
+
+if (GMS == nil) then GMS = {} end
+
+//If you're experienceing network latency, lowering this might help. If too low, might cause graphical errors on the client when displaying resources
+//max:32
+GMS.NETINT_BITCOUNT = 16
+
+//NPC's that drop loot balls
+GMS.LootableNPCs = {
+ "npc_antlion",
+ "npc_antlionguard",
+ "npc_crow",
+ "npc_seagull",
+ "npc_pigeon",
+ "npc_zombie"
+}