Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.60 KB | None | 0 0
  1. local PerformanceEnhancements = {}
  2. PerformanceEnhancements.Trees = {
  3.     { -- On Phone, if Graphics <= 7, get rid of the top trees on the all sides of the map
  4.         GraphicsLevel = 7; -- Below or equal to
  5.         Devices = {"MobilePhone"};
  6.         Remove = {
  7.             { TreeType = "TopBackTrees"; }; -- 1436 Parts Removed
  8.             { TreeType = "TopSideTrees"; }; -- 1236 Parts Removed
  9.             { TreeType = "TopEnemyTrees"; }; -- 2244 Parts Removed
  10.         }
  11.     };
  12.    
  13.     { -- On PC, Tablet, and Console, if Graphics <= 8, get rid of half the top trees on player side of the map
  14.         GraphicsLevel = 8; -- Below or equal to
  15.         Devices = {"PC", "MobileTablet", "Console"};
  16.         Remove = {
  17.             { TreeType = "TopBackTrees"; FirstHalfOnly = true }; -- 718 Parts Removed
  18.         }
  19.     };
  20.    
  21.     { -- On PC, Tablet, and Console, if Graphics <= 7, get rid of other half of top trees on player side of the map
  22.         GraphicsLevel = 7; -- Below or equal to
  23.         Devices = {"PC", "MobileTablet", "Console"};
  24.         Remove = {
  25.             { TreeType = "TopBackTrees"; SecondHalfOnly = true }; -- 718 Parts Removed
  26.         }
  27.     };
  28.    
  29.     { -- On PC, Tablet, and Console, if Graphics <= 6 get rid of half the top trees on player side of the map
  30.         GraphicsLevel = 6; -- Below or equal to
  31.         Devices = {"PC", "MobileTablet", "Console"};
  32.         Remove = {
  33.             { TreeType = "TopSideTrees"; FirstHalfOnly = true }; -- 618 Parts Removed
  34.         }
  35.     };
  36.    
  37.     { -- On PC, Tablet, and Console, if Graphics <= 5 get rid of other half of top trees on player side of the map
  38.         GraphicsLevel = 5; -- Below or equal to
  39.         Devices = {"PC", "MobileTablet", "Console"};
  40.         Remove = {
  41.             { TreeType = "TopSideTrees"; SecondHalfOnly = true }; -- 618 Parts Removed
  42.         }
  43.     };
  44.    
  45.     { -- On PC, Tablet, and Console, if Graphics <= 4, get rid of top trees on enemy side of the map
  46.         GraphicsLevel = 4; -- Below or equal to
  47.         Devices = {"PC", "MobileTablet", "Console"};
  48.         Remove = {
  49.             { TreeType = "TopEnemyTrees"; FirstHalfOnly = true }; -- 1122 Parts Removed
  50.         }
  51.     };
  52.    
  53.     { -- On PC, Tablet, and Console, if Graphics <= 3, get rid of top trees on enemy side of the map
  54.         GraphicsLevel = 3; -- Below or equal to
  55.         Devices = {"PC", "MobileTablet", "Console"};
  56.         Remove = {
  57.             { TreeType = "TopEnemyTrees"; SecondHalfOnly = true }; -- 1122 Parts Removed
  58.         }
  59.     };
  60.    
  61.     { -- On Phone and Tablet, if Graphics <= 3, get rid of trunks on all trees (top dont have any)
  62.         GraphicsLevel = 3; -- Below or equal to
  63.         Devices = {"MobilePhone", "MobileTablet"};
  64.         Remove = {
  65.             { TreeType = "HillTree"; OnlyRemoveTrunks = true }; -- 552 Parts Removed
  66.             { TreeType = "BackTree"; OnlyRemoveTrunks = true }; -- 880 Parts Removed
  67.         }
  68.     };
  69. }
  70.  
  71. return PerformanceEnhancements
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement