Forum
CS2D General Construction thingConstruction thing
2 replies 1
mp_building_limit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
buildings = { --		{name(Do not change this), limit}; [1]	=	{"Barricade", "999"}; [2] =	{"Barbed Wire", "999"}; [3] =	{"Wall I", "999"}; [4] =	{"Wall II", "999"}; [5] =	{"Wall III", "999"}; [6] =	{"Gate Field", "999"}; [7] =	{"Dispenser", "5"}; [8] =	{"Turret", "1"}; [9] =	{"Supply", "15"}; [13] =	{"Teleporter Entrance", "3"}; [14] =	{"Teleporter Exit", "3"}; } for _, func in pairs(buildings) do parse ('mp_building_limit "'..func[1]..'" '..func[2]) end
1