· 8 years ago · Mar 21, 2018, 02:02 PM
1local meta = FindMetaTable( "Player" )
2
3TeamTable = {}
4RegTable = {}
5RegRanks = {}
6
7local admintable = {
8 ["moderator"] = true,
9 ["server manager"] = true,
10 ["staff manager"] = true,
11 ["head event master"] = true,
12 ["developer"] = true,
13 ["owner"] = true,
14 ["superadmin"] = true,
15 ["community manager"] = true,
16 ["event master"] = true,
17 ["admin"] = true,
18 ["head developer"] = true,
19 ["senior developer"] = true,
20 ["trial moderator"] = true,
21 ["senior moderator"] = true,
22 ["trial event master"] = true,
23 ["senior event master"] = true,
24 ["junior event master"] = true,
25 ["founder"] = true,
26}
27
28function meta:IsAdmin()
29 if admintable[ string.lower( self:GetUserGroup() ) ] then return true end
30 return false
31end
32
33function CreateTeam( name, teamtbl )
34
35 if !istable( teamtbl ) then ErrorNoHalt( "Failed to create team, " .. ( name or "nil" ) ) return end
36
37 teamtbl.Description = teamtbl.Description or ""
38 teamtbl.Weapons = teamtbl.Weapons or {}
39 --teamtbl.Health = teamtbl.Health or 100
40 teamtbl.Colour = teamtbl.Colour or Color( 255, 255, 255 )
41 teamtbl.Side = teamtbl.Side or 0
42 teamtbl.Rank = teamtbl.Rank or 0
43 teamtbl.Model = teamtbl.Model or ""
44 teamtbl.Bodygroups = teamtbl.Bodygroups or ""
45 teamtbl.Regiment = teamtbl.Regiment or ""
46 teamtbl.Name = name
47
48 local count = table.Count( TeamTable )
49
50 teamtbl.Count = count
51
52 team.SetUp( count, name, teamtbl.Colour )
53 TeamTable[ count ] = teamtbl
54 local shouldteam = true
55 for k, v in pairs( RegTable ) do
56 if v.Regiment == teamtbl.Regiment then shouldteam = false break end
57 end
58 if shouldteam then
59 table.insert( RegTable, teamtbl )
60 end
61 RegRanks[ teamtbl.Regiment ] = RegRanks[ teamtbl.Regiment ] or {}
62 RegRanks[ teamtbl.Regiment ][ count ] = name
63
64 --util.PrecacheModel( teamtbl.Model )
65
66 if type(teamtbl.Model) == "table" then
67 for _, v in pairs(teamtbl.Model) do util.PrecacheModel(v) end
68 else
69 util.PrecacheModel( teamtbl.Model )
70 end
71
72 return count
73
74end
75
76if SERVER then
77
78 if ( !sql.TableExists( "jobdata" ) ) then
79
80 sql.Query( "CREATE TABLE IF NOT EXISTS jobdata ( steamid TEXT NOT NULL PRIMARY KEY, value TEXT );" )
81
82 end
83
84 function meta:GetJData( name, default )
85
86 name = string.format( "%s[%s]", self:SteamID64(), name )
87 local val = sql.QueryValue( "SELECT value FROM jobdata WHERE steamid = " .. sql.SQLStr( name ) .. " LIMIT 1" )
88 if ( val == nil ) then return default end
89
90 return val
91
92 end
93
94 function meta:SetJData( name, value )
95
96 name = string.format( "%s[%s]", self:SteamID64(), name )
97 sql.Query( "REPLACE INTO jobdata ( steamid, value ) VALUES ( " .. sql.SQLStr( name ) .. ", " .. sql.SQLStr( value ) .. " )" )
98
99 end
100
101 function GM:PlayerInitialSpawn( ply )
102
103 if ply:GetJData( "job", nil ) ~= nil then
104
105 local job = ply:GetJData( "job", nil )
106 local tbl = TeamTable[ tonumber( job ) ]
107 ply:SetTeam( job )
108 ply:Spawn()
109 --ply:SetModel( tbl.Model )
110 if type(tbl.Model) == "table" then
111 ply:SetModel( table.Random(tbl.Model) )
112 else
113 ply:SetModel( tbl.Model )
114 end
115
116 else
117
118 local tbl = TeamTable[ TEAM_ST_RECRUIT ]
119
120 ply:SetJData( "job", TEAM_ST_RECRUIT )
121 ply:SetTeam( TEAM_ST_RECRUIT )
122 --ply:SetModel( tbl.Model )
123 if type(tbl.Model) == "table" then
124 ply:SetModel( table.Random(tbl.Model) )
125 else
126 ply:SetModel( tbl.Model )
127 end
128 end
129
130 end
131
132 if !file.Exists( "spawns.txt", "DATA" ) then file.Write( "spawns.txt", util.TableToJSON( {} ) ) end
133
134 local spawnTable = util.JSONToTable( file.Read( "spawns.txt", "DATA" ) )
135
136 hook.Add( "PlayerSay", "SetSpawn", function( ply, text )
137
138 if !ply:IsSuperAdmin() then return end
139
140 text = string.Explode( " ", text )
141
142 if string.lower( text[ 1 ] ) == "!setspawn" or string.lower( text[ 1 ] ) == "/setspawn" then
143
144 if text[ 2 ] == nil then return "" end
145
146 local t = string.lower( table.concat( text, " ", 2 ) )
147
148 spawnTable[ game.GetMap() ] = spawnTable[ game.GetMap() ] or {}
149 spawnTable[ game.GetMap() ][ t ] = ply:GetPos()
150 file.Write( "spawns.txt", util.TableToJSON( spawnTable ) )
151
152 ply:PrintMessage( HUD_PRINTTALK, "Spawn set." )
153
154 return ""
155
156 end
157
158 end )
159
160 function GM:PlayerSpawn( ply )
161
162 ply:SetRunSpeed( 240 )
163 ply:SetWalkSpeed( 160 )
164 if ply:IsAdmin() then
165 ply:Give("weapon_physgun")
166 ply:Give("gmod_tool")
167 end
168
169 if TeamTable[ ply:Team() ] then
170
171 local tbl = TeamTable[ ply:Team() ]
172
173 if spawnTable[ game.GetMap() ] and spawnTable[ game.GetMap() ][ string.lower( tbl.Regiment ) ] then
174
175 ply:SetPos( spawnTable[ game.GetMap() ][ string.lower( tbl.Regiment ) ] )
176
177 elseif game.GetMap() == "rp_stardestroyer_v1" and spawnTable[ string.lower( tbl.Regiment ) ] then
178
179 ply:SetPos( spawnTable[ string.lower( tbl.Regiment ) ] )
180
181 end
182
183 end
184
185 if ply:GetJData( "job", nil ) ~= nil then
186
187 local job = ply:GetJData( "job", nil )
188 local tbl = TeamTable[ tonumber( job ) ]
189
190 --ply:SetModel( tbl.Model )
191
192 if type(tbl.Model) == "table" then
193 ply:SetModel( table.Random(tbl.Model) )
194 else
195 ply:SetModel( tbl.Model )
196 end
197
198 --ply:SetHealth(tbl.Health)
199 --ply:SetMaxHealth(tbl.Health)
200
201 ply:SetBodyGroups(tbl.Bodygroups)
202
203 local weps = tbl.Weapons
204
205 for i = 1, #weps do
206
207 ply:Give( weps[ i ] )
208
209 end
210
211 ply:Give( "weapon_empty_hands" )
212 ply:Give( "climb_swep2" )
213 ply:Give( "bkeycard" )
214
215 weps = ply:GetWeapons()
216
217 for i = 1, #weps do
218
219 ply:GiveAmmo( 256, weps[ i ]:GetPrimaryAmmoType(), true )
220
221 end
222
223 end
224
225 end
226
227end
228
229
230TEAM_ST_RECRUIT = CreateTeam( "ST Recruit", {
231 Description = "Recruit",
232 Weapons = {"tfa_swch_e11_nodmg"},
233 Colour = Color(96, 96, 96, 255 ),
234 Side = 1,
235 Rank = 0,
236 Model = "models/player/tiki/white.mdl",
237 Regiment = "Recruit",
238} )
239
240TEAM_ST_PVT = CreateTeam( "ST Private", {
241 Description = "Member of the Storm Trooper Core",
242 Weapons = {"tfa_swch_e11"},
243 Colour = Color(102, 0, 102, 255 ),
244 Side = 1,
245 Rank = 1,
246 Model = "models/player/fatal/troopers/trooper.mdl",
247 Regiment = "Storm Trooper",
248} )
249
250TEAM_ST_PFC = CreateTeam( "ST Private First Class", {
251 Description = "Member of the Storm Trooper Core",
252 Weapons = {"tfa_swch_e11"},
253 Colour = Color(102, 0, 102, 255 ),
254 Side = 1,
255 Rank = 2,
256 Model = "models/player/fatal/troopers/trooper.mdl",
257 Regiment = "Storm Trooper",
258} )
259
260TEAM_ST_LCPL = CreateTeam( "ST Lance Corporal", {
261 Description = "models/player/fatal/troopers/trooper.mdl",
262 Weapons = {"tfa_swch_e11"},
263 Colour = Color(102, 0, 102, 255 ),
264 Side = 1,
265 Rank = 3,
266 Model = "models/player/fatal/troopers/trooper.mdl",
267 Regiment = "Storm Trooper",
268} )
269
270TEAM_ST_CPL = CreateTeam( "ST Corporal", {
271 Description = "Member of the Storm Trooper Core",
272 Weapons = {"tfa_swch_e11"},
273 Colour = Color(102, 0, 102, 255 ),
274 Side = 1,
275 Rank = 4,
276 Model = "models/player/fatal/troopers/trooper.mdl",
277 Regiment = "Storm Trooper",
278} )
279
280TEAM_ST_SGT = CreateTeam( "ST Sergeant", {
281 Description = "Member of the Storm Trooper Core",
282 Weapons = {"tfa_swch_e11"},
283 Colour = Color(102, 0, 102, 255 ),
284 Side = 1,
285 Rank = 5,
286 Model = "models/player/fatal/troopers/sergeant.mdl",
287 Regiment = "Storm Trooper",
288} )
289
290TEAM_ST_SSGT = CreateTeam( "ST Staff Sergeant", {
291 Description = "Member of the Storm Trooper Core",
292 Weapons = {"tfa_swch_e11"},
293 Colour = Color(102, 0, 102, 255 ),
294 Side = 1,
295 Rank = 6,
296 Model = "models/player/fatal/troopers/sergeant.mdl",
297 Regiment = "Storm Trooper",
298} )
299
300TEAM_ST_MSGT = CreateTeam( "ST Master Sergeant", {
301 Description = "Member of the Storm Trooper Core",
302 Weapons = {"tfa_swch_e11"},
303 Colour = Color(102, 0, 102, 255 ),
304 Side = 1,
305 Rank = 7,
306 Model = "models/player/fatal/troopers/sergeant.mdl",
307 Regiment = "Storm Trooper",
308} )
309
310TEAM_ST_OFFICERCADET = CreateTeam( "ST Officer Cadet", {
311 Description = "Member of the Storm Trooper Core",
312 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
313 Colour = Color(102, 0, 102, 255 ),
314 Side = 1,
315 Rank = 8,
316 Model = "models/player/fatal/troopers/officer.mdl",
317 Regiment = "Storm Trooper",
318} )
319
320TEAM_ST_WO = CreateTeam( "ST Warrant Officer", {
321 Description = "Member of the Storm Trooper Core",
322 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
323 Colour = Color(102, 0, 102, 255 ),
324 Side = 1,
325 Rank = 9,
326 Model = "models/player/fatal/troopers/officer.mdl",
327 Regiment = "Storm Trooper",
328} )
329
330TEAM_ST_LT = CreateTeam( "ST Lieutenant", {
331 Description = "Member of the Storm Trooper Core",
332 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
333 Colour = Color(102, 0, 102, 255 ),
334 Side = 1,
335 Rank = 10,
336 Model = "models/player/fatal/troopers/officer.mdl",
337 Regiment = "Storm Trooper",
338} )
339
340TEAM_ST_FLT = CreateTeam( "ST First Lieutenant", {
341 Description = "Member of the Storm Trooper Core",
342 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
343 Colour = Color(102, 0, 102, 255 ),
344 Side = 1,
345 Rank = 11,
346 Model = "models/player/fatal/troopers/officer.mdl",
347 Regiment = "Storm Trooper",
348} )
349
350TEAM_ST_CAPT = CreateTeam( "ST Captain", {
351 Description = "Member of the Storm Trooper Core",
352 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
353 Colour = Color(102, 0, 102, 255 ),
354 Side = 1,
355 Rank = 12,
356 Model = "models/player/fatal/troopers/officer.mdl",
357 Regiment = "Storm Trooper",
358} )
359
360TEAM_ST_MAJ = CreateTeam( "ST Major", {
361 Description = "Member of the Storm Trooper Core",
362 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
363 Colour = Color(102, 0, 102, 255 ),
364 Side = 1,
365 Rank = 13,
366 Model = "models/player/fatal/troopers/officer.mdl",
367 Regiment = "Storm Trooper",
368} )
369
370TEAM_ST_COLO = CreateTeam( "ST Colonel", {
371 Description = "Member of the Storm Trooper Core",
372 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
373 Colour = Color(102, 0, 102, 255 ),
374 Side = 1,
375 Rank = 14,
376 Model = "models/player/fatal/troopers/officer.mdl",
377 Regiment = "Storm Trooper",
378} )
379
380TEAM_ST_HCOLO = CreateTeam( "ST High Colonel", {
381 Description = "Member of the Storm Trooper Core",
382 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
383 Colour = Color(102, 0, 102, 255 ),
384 Side = 1,
385 Rank = 15,
386 Model = "models/player/fatal/troopers/officer.mdl",
387 Regiment = "Storm Trooper",
388} )
389
390TEAM_ST_CMD = CreateTeam( "ST Commander", {
391 Description = "Commander of the Storm Trooper Core",
392 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
393 Colour = Color(102, 0, 102, 255 ),
394 Side = 1,
395 Rank = 16,
396 Model = "models/player/fatal/troopers/commander.mdl",
397 Regiment = "Storm Trooper",
398} )
399
400TEAM_ST_BRIG = CreateTeam( "ST Brigadier", {
401 Description = "Commander of the Storm Trooper Core",
402 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
403 Colour = Color(102, 0, 102, 255 ),
404 Side = 1,
405 Rank = 17,
406 Model = "models/player/fatal/troopers/commander.mdl",
407 Regiment = "Storm Trooper",
408} )
409
410TEAM_ST_MAJG = CreateTeam( "ST Major General", {
411 Description = "Commander of the Storm Trooper Core",
412 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
413 Colour = Color(102, 0, 102, 255 ),
414 Side = 1,
415 Rank = 18,
416 Model = "models/x1cw/x1cw_2.mdl",
417 Regiment = "Storm Trooper",
418} )
419
420TEAM_ST_LTG = CreateTeam( "ST Lieutenant General", {
421 Description = "Commander of the Storm Trooper Core",
422 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
423 Colour = Color(102, 0, 102, 255 ),
424 Side = 1,
425 Rank = 19,
426 Model = "models/x1cw/x1cw_2.mdl",
427 Regiment = "Storm Trooper",
428} )
429
430TEAM_ST_GEN = CreateTeam( "ST General", {
431 Description = "General of the Storm Trooper Core",
432 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
433 Colour = Color(102, 0, 102, 255 ),
434 Side = 1,
435 Rank = 20,
436 Model = "models/x1cw/x1cw_2.mdl",
437 Regiment = "Storm Trooper",
438} )
439
440TEAM_SNOW_PVT = CreateTeam( "SO Private", {
441 Description = "Member of the Snow Trooper Battalion",
442 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19"},
443 Colour = Color(102, 178, 255, 255),
444 Side = 1,
445 Rank = 1,
446 Model = "models/player/sono/starwars/snowtrooper.mdl",
447 Regiment = "Snow Trooper",
448} )
449
450TEAM_SNOW_PFC = CreateTeam( "SO Private First Class", {
451 Description = "Member of the Snow Trooper Battalion",
452 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19"},
453 Colour = Color(102, 178, 255, 255),
454 Side = 1,
455 Rank = 2,
456 Model = "models/player/sono/starwars/snowtrooper.mdl",
457 Regiment = "Snow Trooper",
458} )
459
460TEAM_SNOW_LCPL = CreateTeam( "SO Lance Corporal", {
461 Description = "Member of the Snow Trooper Battalion",
462 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19"},
463 Colour = Color(102, 178, 255, 255),
464 Side = 1,
465 Rank = 3,
466 Model = "models/player/sono/starwars/snowtrooper.mdl",
467 Regiment = "Snow Trooper",
468} )
469
470TEAM_SNOW_CPL = CreateTeam( "SO Corporal", {
471 Description = "Member of the Snow Trooper Battalion",
472 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
473 Colour = Color(102, 178, 255, 255),
474 Side = 1,
475 Rank = 4,
476 Model = "models/player/sono/starwars/snowtrooper.mdl",
477 Regiment = "Snow Trooper",
478} )
479
480TEAM_SNOW_SGT = CreateTeam( "SO Sergeant", {
481 Description = "Member of the Snow Trooper Battalion",
482 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
483 Colour = Color(102, 178, 255, 255),
484 Side = 1,
485 Rank = 5,
486 Model = "models/player/sono/starwars/snowflame.mdl",
487 Regiment = "Snow Trooper",
488} )
489
490TEAM_SNOW_SSGT = CreateTeam( "SO Staff Sergeant", {
491 Description = "Member of the Snow Trooper Battalion",
492 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
493 Colour = Color(102, 178, 255, 255),
494 Side = 1,
495 Rank = 6,
496 Model = "models/player/sono/starwars/snowflame.mdl",
497 Regiment = "Snow Trooper",
498} )
499
500TEAM_SNOW_MSGT = CreateTeam( "SO Master Sergeant", {
501 Description = "Member of the Snow Trooper Battalion",
502 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
503 Colour = Color(102, 178, 255, 255),
504 Side = 1,
505 Rank = 7,
506 Model = "models/player/sono/starwars/snowflame.mdl",
507 Regiment = "Snow Trooper",
508} )
509
510TEAM_SNOW_OFFICERCADET = CreateTeam( "SO Officer Cadet", {
511 Description = "Member of the Snow Trooper Battalion",
512 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
513 Colour = Color(102, 178, 255, 255),
514 Side = 1,
515 Rank = 8,
516 Model = "models/player/sono/starwars/snowflame.mdl",
517 Regiment = "Snow Trooper",
518} )
519
520TEAM_SNOW_WO = CreateTeam( "SO Warrant Officer", {
521 Description = "Member of the Snow Trooper Battalion",
522 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
523 Colour = Color(102, 178, 255, 255),
524 Side = 1,
525 Rank = 9,
526 Model = "models/player/sono/starwars/snowsniper.mdl",
527 Regiment = "Snow Trooper",
528} )
529
530TEAM_SNOW_LT = CreateTeam( "SO Lieutenant", {
531 Description = "Member of the Snow Trooper Battalion",
532 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
533 Colour = Color(102, 178, 255, 255),
534 Side = 1,
535 Rank = 10,
536 Model = "models/player/sono/starwars/snowsniper.mdl",
537 Regiment = "Snow Trooper",
538} )
539
540TEAM_SNOW_FLT = CreateTeam( "SO First Lieutenant", {
541 Description = "Member of the Snow Trooper Battalion",
542 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
543 Colour = Color(102, 178, 255, 255),
544 Side = 1,
545 Rank = 11,
546 Model = "models/player/sono/starwars/snowsniper.mdl",
547 Regiment = "Snow Trooper",
548} )
549
550TEAM_SNOW_CAPT = CreateTeam( "SO Captain", {
551 Description = "Member of the Snow Trooper Battalion",
552 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
553 Colour = Color(102, 178, 255, 255),
554 Side = 1,
555 Rank = 12,
556 Model = "models/player/sono/starwars/snowsniper.mdl",
557 Regiment = "Snow Trooper",
558} )
559
560TEAM_SNOW_MAJ = CreateTeam( "SO Major", {
561 Description = "Member of the Snow Trooper Battalion",
562 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
563 Colour = Color(102, 178, 255, 255),
564 Side = 1,
565 Rank = 13,
566 Model = "models/player/sono/starwars/snowsniper.mdl",
567 Regiment = "Snow Trooper",
568} )
569
570TEAM_SNOW_COLO = CreateTeam( "SO Colonel", {
571 Description = "Member of the Snow Trooper Battalion",
572 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
573 Colour = Color(102, 178, 255, 255),
574 Side = 1,
575 Rank = 14,
576 Model = "models/player/sono/starwars/snowsniper.mdl",
577 Regiment = "Snow Trooper",
578} )
579
580TEAM_SNOW_HCOLO = CreateTeam( "SO High Colonel", {
581 Description = "Member of the Snow Trooper Battalion",
582 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
583 Colour = Color(102, 178, 255, 255),
584 Side = 1,
585 Rank = 15,
586 Model = "models/player/sono/starwars/snowshadow.mdl",
587 Regiment = "Snow Trooper",
588} )
589
590TEAM_SNOW_CMD = CreateTeam( "SO Commander", {
591 Description = "Commander of the Snow Trooper Battalion",
592 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
593 Colour = Color(102, 178, 255, 255),
594 Side = 1,
595 Rank = 16,
596 Model = "models/player/sono/starwars/snowshadow.mdl",
597 Regiment = "Snow Trooper",
598} )
599
600TEAM_SNOW_BRIG = CreateTeam( "SO Brigadier", {
601 Description = "Commander of the Snow Trooper Battalion",
602 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
603 Colour = Color(102, 178, 255, 255),
604 Side = 1,
605 Rank = 17,
606 Model = "models/player/sono/starwars/snowshadow.mdl",
607 Regiment = "Snow Trooper",
608} )
609
610TEAM_SNOW_MAJG = CreateTeam( "SO Major General", {
611 Description = "Commander of the Snow Trooper Battalion",
612 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
613 Colour = Color(102, 178, 255, 255),
614 Side = 1,
615 Rank = 18,
616 Model = "models/player/sono/starwars/snowshadow.mdl",
617 Regiment = "Snow Trooper",
618} )
619
620TEAM_SNOW_LTG = CreateTeam( "SO Lieutenant General", {
621 Description = "Commander of the Snow Trooper Battalion",
622 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
623 Colour = Color(102, 178, 255, 255),
624 Side = 1,
625 Rank = 19,
626 Model = "models/player/sono/starwars/snowshadow.mdl",
627 Regiment = "Snow Trooper",
628} )
629
630TEAM_SNOW_GEN = CreateTeam( "SO General", {
631 Description = "Commander of the Snow Trooper Battalion",
632 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
633 Colour = Color(102, 178, 255, 255),
634 Side = 1,
635 Rank = 20,
636 Model = "models/player/sono/starwars/snowshadow.mdl",
637 Regiment = "Snow Trooper",
638} )
639
640TEAM_SCOUT_PVT = CreateTeam( "ST Private {W}", {
641 Description = "Member of the Scout Trooper Core",
642 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
643 Colour = Color(102, 0, 102, 255 ),
644 Side = 1,
645 Rank = 1,
646 Model = "models/sono/swbf3/scout.mdl",
647 Regiment = "Storm Trooper",
648} )
649
650TEAM_SCOUT_PFC = CreateTeam( "ST Private First Class {W}", {
651 Description = "Member of the Scout Trooper Core",
652 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
653 Colour = Color(102, 0, 102, 255 ),
654 Side = 1,
655 Rank = 2,
656 Model = "models/sono/swbf3/scout.mdl",
657 Regiment = "Storm Trooper",
658} )
659
660TEAM_SCOUT_LCPL = CreateTeam( "ST Lance Corporal {W}", {
661 Description = "Member of the Scout Trooper Core",
662 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
663 Colour = Color(102, 0, 102, 255 ),
664 Side = 1,
665 Rank = 3,
666 Model = "models/sono/swbf3/scout.mdl",
667 Regiment = "Storm Trooper",
668} )
669
670TEAM_SCOUT_CPL = CreateTeam( "ST Corporal {W}", {
671 Description = "Member of the Scout Trooper Core",
672 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
673 Colour = Color(102, 0, 102, 255 ),
674 Side = 1,
675 Rank = 4,
676 Model = "models/sono/swbf3/scout.mdl",
677 Regiment = "Storm Trooper",
678} )
679
680TEAM_SCOUT_SGT = CreateTeam( "ST SGT {W}", {
681 Description = "Member of the Scout Trooper Core",
682 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
683 Colour = Color(102, 0, 102, 255 ),
684 Side = 1,
685 Rank = 5,
686 Model = "models/sono/swbf3/sergeant.mdl",
687 Regiment = "Storm Trooper",
688} )
689
690TEAM_SCOUT_SSGT = CreateTeam( "ST Staff Sergeant {W}", {
691 Description = "Member of the Scout Trooper Core",
692 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
693 Colour = Color(102, 0, 102, 255 ),
694 Side = 1,
695 Rank = 6,
696 Model = "models/sono/swbf3/sergeant.mdl",
697 Regiment = "Storm Trooper",
698} )
699
700TEAM_SCOUT_MSGT = CreateTeam( "ST Master Sergeant {W}", {
701 Description = "Member of the Scout Trooper Core",
702 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
703 Colour = Color(102, 0, 102, 255 ),
704 Side = 1,
705 Rank = 7,
706 Model = "models/sono/swbf3/sergeant.mdl",
707 Regiment = "Storm Trooper",
708} )
709
710TEAM_SCOUT_OFFICERCADET = CreateTeam( "ST Officer Cadet {W}", {
711 Description = "Member of the Scout Trooper Core",
712 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
713 Colour = Color(102, 0, 102, 255 ),
714 Side = 1,
715 Rank = 8,
716 Model = "models/sono/swbf3/officer.mdl",
717 Regiment = "Storm Trooper",
718} )
719
720TEAM_SCOUT_WO = CreateTeam( "ST Warrant Officer {W}", {
721 Description = "Member of the Scout Trooper Core",
722 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
723 Colour = Color(102, 0, 102, 255 ),
724 Side = 1,
725 Rank = 9,
726 Model = "models/sono/swbf3/officer.mdl",
727 Regiment = "Storm Trooper",
728} )
729
730TEAM_SCOUT_LT = CreateTeam( "ST Lieutenant {W}", {
731 Description = "Member of the Scout Trooper Core",
732 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
733 Colour = Color(102, 0, 102, 255 ),
734 Side = 1,
735 Rank = 10,
736 Model = "models/sono/swbf3/officer.mdl",
737 Regiment = "Storm Trooper",
738} )
739
740TEAM_SCOUT_FLT = CreateTeam( "ST First Lieutenant {W}", {
741 Description = "Member of the Scout Trooper Core",
742 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
743 Colour = Color(102, 0, 102, 255 ),
744 Side = 1,
745 Rank = 11,
746 Model = "models/sono/swbf3/officer.mdl",
747 Regiment = "Storm Trooper",
748} )
749
750TEAM_SCOUT_CAPT = CreateTeam( "ST Captain {W}", {
751 Description = "Member of the Scout Trooper Core",
752 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
753 Colour = Color(102, 0, 102, 255 ),
754 Side = 1,
755 Rank = 12,
756 Model = "models/sono/swbf3/officer.mdl",
757 Regiment = "Storm Trooper",
758} )
759
760TEAM_SCOUT_MAJ = CreateTeam( "ST Major {W}", {
761 Description = "Member of the Scout Trooper Core",
762 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
763 Colour = Color(102, 0, 102, 255 ),
764 Side = 1,
765 Rank = 13,
766 Model = "models/sono/swbf3/officer.mdl",
767 Regiment = "Storm Trooper",
768} )
769
770TEAM_SCOUT_COLO = CreateTeam( "ST Colonel {W}", {
771 Description = "Member of the Scout Trooper Core",
772 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
773 Colour = Color(102, 0, 102, 255 ),
774 Side = 1,
775 Rank = 14,
776 Model = "models/sono/swbf3/officer.mdl",
777 Regiment = "Storm Trooper",
778} )
779
780TEAM_SCOUT_HCOLO = CreateTeam( "ST High Colonel {W}", {
781 Description = "Member of the Scout Trooper Core",
782 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
783 Colour = Color(102, 0, 102, 255 ),
784 Side = 1,
785 Rank = 15,
786 Model = "models/sono/swbf3/officer.mdl",
787 Regiment = "Storm Trooper",
788} )
789
790TEAM_SCOUT_CMD = CreateTeam( "ST Commander {W}", {
791 Description = "Commander of the Scout Trooper Core",
792 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
793 Colour = Color(102, 0, 102, 255 ),
794 Side = 1,
795 Rank = 16,
796 Model = "models/sono/swbf3/commander.mdl",
797 Regiment = "Storm Trooper",
798} )
799
800TEAM_SCOUT_BRIG = CreateTeam( "SC Brigadier", {
801 Description = "Commander of the Scout Trooper Core",
802 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
803 Colour = Color(218, 218, 218, 255),
804 Side = 1,
805 Rank = 17,
806 Model = "models/sono/swbf3/commander.mdl",
807 Regiment = "DO NOT USE",
808} )
809
810TEAM_SCOUT_MAJG = CreateTeam( "SC Major General", {
811 Description = "Commander of the Scout Trooper Core",
812 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
813 Colour = Color(218, 218, 218, 255),
814 Side = 1,
815 Rank = 18,
816 Model = "models/sono/swbf3/commander.mdl",
817 Regiment = "DO NOT USE",
818} )
819
820TEAM_SCOUT_LTG = CreateTeam( "SC Lieutenant General", {
821 Description = "Commander of the Scout Trooper Core",
822 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
823 Colour = Color(218, 218, 218, 255),
824 Side = 1,
825 Rank = 19,
826 Model = "models/sono/swbf3/commander.mdl",
827 Regiment = "DO NOT USE",
828} )
829
830TEAM_SCOUT_GEN = CreateTeam( "SC General", {
831 Description = "General of the Scout Trooper Core",
832 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
833 Colour = Color(218, 218, 218, 255),
834 Side = 1,
835 Rank = 20,
836 Model = "models/sono/swbf3/shadow.mdl",
837 Regiment = "DO NOT USE",
838} )
839
840TEAM_212TH_PVT = CreateTeam( "212th Private", {
841 Description = "Member of the 212th Trooper Core",
842 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
843 Colour = Color(255, 193, 0, 255),
844 Side = 1,
845 Rank = 1,
846 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
847 Regiment = "212th Trooper",
848} )
849
850TEAM_212TH_PFC = CreateTeam( "212th Private First Class", {
851 Description = "Member of the 212th Trooper Core",
852 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
853 Colour = Color(255, 193, 0, 255),
854 Side = 1,
855 Rank = 2,
856 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
857 Regiment = "212th Trooper",
858} )
859
860TEAM_212TH_LCPL = CreateTeam( "212th Lance Corporal", {
861 Description = "Member of the 212th Trooper Core",
862 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
863 Colour = Color(255, 193, 0, 255),
864 Side = 1,
865 Rank = 3,
866 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
867 Regiment = "212th Trooper",
868} )
869
870TEAM_212TH_CPL = CreateTeam( "212th Corporal", {
871 Description = "Member of the 212th Trooper Core",
872 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
873 Colour = Color(255, 193, 0, 255),
874 Side = 1,
875 Rank = 4,
876 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
877 Regiment = "212th Trooper",
878} )
879
880TEAM_212TH_SGT = CreateTeam( "212th Sergeant", {
881 Description = "Member of the 212th Trooper Core",
882 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
883 Colour = Color(255, 193, 0, 255),
884 Side = 1,
885 Rank = 5,
886 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
887 Regiment = "212th Trooper",
888} )
889
890TEAM_212TH_SSGT = CreateTeam( "212th Staff Sergeant", {
891 Description = "Member of the 212th Trooper Core",
892 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
893 Colour = Color(255, 193, 0, 255),
894 Side = 1,
895 Rank = 6,
896 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
897 Regiment = "212th Trooper",
898} )
899
900TEAM_212TH_MSGT = CreateTeam( "212th Master Sergeant", {
901 Description = "Member of the 212th Trooper Core",
902 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
903 Colour = Color(255, 193, 0, 255),
904 Side = 1,
905 Rank = 7,
906 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
907 Regiment = "212th Trooper",
908} )
909
910TEAM_212TH_OFFICERCADET = CreateTeam( "212th Officer Cadet", {
911 Description = "Member of the 212th Trooper Core",
912 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
913 Colour = Color(255, 193, 0, 255),
914 Side = 1,
915 Rank = 8,
916 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
917 Regiment = "212th Trooper",
918} )
919
920TEAM_212TH_WO = CreateTeam( "212th Warrant Officer", {
921 Description = "Member of the 212th Trooper Core",
922 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
923 Colour = Color(255, 193, 0, 255),
924 Side = 1,
925 Rank = 9,
926 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
927 Regiment = "212th Trooper",
928} )
929
930TEAM_212TH_LT = CreateTeam( "212th Lieutenant", {
931 Description = "Member of the 212th Trooper Core",
932 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
933 Colour = Color(255, 193, 0, 255),
934 Side = 1,
935 Rank = 10,
936 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
937 Regiment = "212th Trooper",
938} )
939
940TEAM_212TH_FLT = CreateTeam( "212th First Lieutenant", {
941 Description = "Member of the 212th Trooper Core",
942 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
943 Colour = Color(255, 193, 0, 255),
944 Side = 1,
945 Rank = 11,
946 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
947 Regiment = "212th Trooper",
948} )
949
950TEAM_212TH_CAPT = CreateTeam( "212th Captain", {
951 Description = "Member of the 212th Trooper Core",
952 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
953 Colour = Color(255, 193, 0, 255),
954 Side = 1,
955 Rank = 12,
956 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
957 Regiment = "212th Trooper",
958} )
959
960TEAM_212TH_MAJ = CreateTeam( "212th Major", {
961 Description = "Member of the 212th Trooper Core",
962 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
963 Colour = Color(255, 193, 0, 255),
964 Side = 1,
965 Rank = 13,
966 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
967 Regiment = "212th Trooper",
968} )
969
970TEAM_212TH_COLO = CreateTeam( "212th Colonel", {
971 Description = "Member of the 212th Trooper Core",
972 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
973 Colour = Color(255, 193, 0, 255),
974 Side = 1,
975 Rank = 14,
976 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
977 Regiment = "212th Trooper",
978} )
979
980TEAM_212TH_HCOLO = CreateTeam( "212th High Colonel", {
981 Description = "Member of the 212th Trooper Core",
982 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
983 Colour = Color(255, 193, 0, 255),
984 Side = 1,
985 Rank = 15,
986 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
987 Regiment = "212th Trooper",
988} )
989
990TEAM_212TH_CMD = CreateTeam( "212th Commander", {
991 Description = "Commander of the 212th Trooper Core",
992 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
993 Colour = Color(255, 193, 0, 255),
994 Side = 1,
995 Rank = 16,
996 Model = "models/player/commander_cody/commander_cody.mdl",
997 Regiment = "212th Trooper",
998} )
999
1000TEAM_212TH_BRIG = CreateTeam( "212th Brigadier", {
1001 Description = "Commander of the 212th Trooper Core",
1002 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
1003 Colour = Color(255, 193, 0, 255),
1004 Side = 1,
1005 Rank = 17,
1006 Model = "models/player/commander_cody/commander_cody.mdl",
1007 Regiment = "212th Trooper",
1008} )
1009
1010TEAM_212TH_MAJG = CreateTeam( "212th Major General", {
1011 Description = "Commander of the 212th Trooper Core",
1012 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
1013 Colour = Color(255, 193, 0, 255),
1014 Side = 1,
1015 Rank = 18,
1016 Model = "models/player/commander_cody/commander_cody.mdl",
1017 Regiment = "212th Trooper",
1018} )
1019
1020TEAM_212TH_LTG = CreateTeam( "212th Lieutenant General", {
1021 Description = "Commander of the 212th Trooper Core",
1022 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
1023 Colour = Color(255, 193, 0, 255),
1024 Side = 1,
1025 Rank = 19,
1026 Model = "models/player/commander_cody/commander_cody.mdl",
1027 Regiment = "212th Trooper",
1028} )
1029
1030TEAM_212TH_GEN = CreateTeam( "212th General", {
1031 Description = "General of the 212th Trooper Core",
1032 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
1033 Colour = Color(255, 193, 0, 255),
1034 Side = 1,
1035 Rank = 20,
1036 Model = "models/sono/swbf3/shadow.mdl",
1037 Regiment = "212th Trooper",
1038} )
1039
1040TEAM_442ND_PVT = CreateTeam( "442nd Private", {
1041 Description = "Member of the 442nd Siege Battalion",
1042 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1043 Colour = Color(182, 255, 0, 255),
1044 Side = 1,
1045 Rank = 1,
1046 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1047 Regiment = "442nd Trooper",
1048} )
1049
1050TEAM_442ND_PFC = CreateTeam( "442nd Private First Class", {
1051 Description = "Member of the 442nd Siege Battalion",
1052 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1053 Colour = Color(182, 255, 0, 255),
1054 Side = 1,
1055 Rank = 2,
1056 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1057 Regiment = "442nd Trooper",
1058} )
1059
1060TEAM_442ND_LCPL = CreateTeam( "442nd Lance Corporal", {
1061 Description = "Member of the 442nd Siege Battalion",
1062 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1063 Colour = Color(182, 255, 0, 255),
1064 Side = 1,
1065 Rank = 3,
1066 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1067 Regiment = "442nd Trooper",
1068} )
1069
1070TEAM_442ND_CPL = CreateTeam( "442nd Corporal", {
1071 Description = "Member of the 442nd Siege Battalion",
1072 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1073 Colour = Color(182, 255, 0, 255),
1074 Side = 1,
1075 Rank = 4,
1076 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1077 Regiment = "442nd Trooper",
1078} )
1079
1080TEAM_442ND_SGT = CreateTeam( "442nd Sergeant", {
1081 Description = "Member of the 442nd Siege Battalion",
1082 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1083 Colour = Color(182, 255, 0, 255),
1084 Side = 1,
1085 Rank = 5,
1086 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1087 Regiment = "442nd Trooper",
1088} )
1089
1090TEAM_442ND_SSGT = CreateTeam( "442nd Staff Sergeant", {
1091 Description = "Member of the 442nd Siege Battalion",
1092 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1093 Colour = Color(182, 255, 0, 255),
1094 Side = 1,
1095 Rank = 6,
1096 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1097 Regiment = "442nd Trooper",
1098} )
1099
1100TEAM_442ND_MSGT = CreateTeam( "442nd Master Sergeant", {
1101 Description = "Member of the 442nd Siege Battalion",
1102 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1103 Colour = Color(182, 255, 0, 255),
1104 Side = 1,
1105 Rank = 7,
1106 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1107 Regiment = "442nd Trooper",
1108} )
1109
1110TEAM_442ND_OFFICERCADET = CreateTeam( "442nd Officer Cadet", {
1111 Description = "Member of the 442nd Siege Battalion",
1112 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1113 Colour = Color(182, 255, 0, 255),
1114 Side = 1,
1115 Rank = 8,
1116 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1117 Regiment = "442nd Trooper",
1118} )
1119
1120TEAM_442ND_WO = CreateTeam( "442nd Warrant Officer", {
1121 Description = "Member of the 442nd Siege Battalion",
1122 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1123 Colour = Color(182, 255, 0, 255),
1124 Side = 1,
1125 Rank = 9,
1126 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1127 Regiment = "442nd Trooper",
1128} )
1129
1130TEAM_442ND_LT = CreateTeam( "442nd Lieutenant", {
1131 Description = "Member of the 442nd Siege Battalion",
1132 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1133 Colour = Color(182, 255, 0, 255),
1134 Side = 1,
1135 Rank = 10,
1136 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1137 Regiment = "442nd Trooper",
1138} )
1139
1140TEAM_442ND_FLT = CreateTeam( "442nd First Lieutenant", {
1141 Description = "Member of the 442nd Siege Battalion",
1142 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1143 Colour = Color(182, 255, 0, 255),
1144 Side = 1,
1145 Rank = 11,
1146 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1147 Regiment = "442nd Trooper",
1148} )
1149
1150TEAM_442ND_CAPT = CreateTeam( "442nd Captain", {
1151 Description = "Member of the 442nd Siege Battalion",
1152 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1153 Colour = Color(182, 255, 0, 255),
1154 Side = 1,
1155 Rank = 12,
1156 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1157 Regiment = "442nd Trooper",
1158} )
1159
1160TEAM_442ND_MAJ = CreateTeam( "442nd Major", {
1161 Description = "Member of the 442nd Siege Battalion",
1162 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1163 Colour = Color(182, 255, 0, 255),
1164 Side = 1,
1165 Rank = 13,
1166 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1167 Regiment = "442nd Trooper",
1168} )
1169
1170TEAM_442ND_COLO = CreateTeam( "442nd Colonel", {
1171 Description = "Member of the 442nd Siege Battalion",
1172 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1173 Colour = Color(182, 255, 0, 255),
1174 Side = 1,
1175 Rank = 14,
1176 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1177 Regiment = "442nd Trooper",
1178} )
1179
1180TEAM_442ND_HCOLO = CreateTeam( "442nd High Colonel", {
1181 Description = "Member of the 442nd Siege Battalion",
1182 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1183 Colour = Color(182, 255, 0, 255),
1184 Side = 1,
1185 Rank = 15,
1186 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1187 Regiment = "442nd Trooper",
1188} )
1189
1190TEAM_442ND_CMD = CreateTeam( "442nd Commander", {
1191 Description = "Commander of the 442nd Siege Battalion",
1192 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1193 Colour = Color(182, 255, 0, 255),
1194 Side = 1,
1195 Rank = 16,
1196 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1197 Regiment = "442nd Trooper",
1198} )
1199
1200TEAM_442ND_BRIG = CreateTeam( "442nd Brigadier", {
1201 Description = "Commander of the 442nd Siege Battalion",
1202 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1203 Colour = Color(182, 255, 0, 255),
1204 Side = 1,
1205 Rank = 17,
1206 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1207 Regiment = "442nd Trooper",
1208} )
1209
1210TEAM_442ND_MAJG = CreateTeam( "442nd Major General", {
1211 Description = "Commander of the 442nd Siege Battalion",
1212 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1213 Colour = Color(182, 255, 0, 255),
1214 Side = 1,
1215 Rank = 18,
1216 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1217 Regiment = "442nd Trooper",
1218} )
1219
1220TEAM_442ND_LTG = CreateTeam( "442nd Lieutenant General", {
1221 Description = "Commander of the 442nd Siege Battalion",
1222 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1223 Colour = Color(182, 255, 0, 255),
1224 Side = 1,
1225 Rank = 19,
1226 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1227 Regiment = "442nd Trooper",
1228} )
1229
1230TEAM_442ND_GEN = CreateTeam( "442nd General", {
1231 Description = "General of the 442nd Siege Battalion",
1232 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1233 Colour = Color(182, 255, 0, 255),
1234 Side = 1,
1235 Rank = 20,
1236 Model = "models/sono/swbf3/shadow.mdl",
1237 Regiment = "442nd Trooper",
1238} )
1239
1240TEAM_SHADOW_PVT = CreateTeam( "SW Private", {
1241 Description = "Member of the Shadow Trooper Battalion",
1242 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1243 Colour = Color(32, 32, 32, 255),
1244 Side = 1,
1245 Rank = 1,
1246 Model = "models/player/banks/troopers1/trooper1.mdl",
1247 Regiment = "Shadow Trooper",
1248} )
1249
1250TEAM_SHADOW_PFC = CreateTeam( "SW Private First Class", {
1251 Description = "Member of the Shadow Trooper Battalion",
1252 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1253 Colour = Color(32, 32, 32, 255),
1254 Side = 1,
1255 Rank = 2,
1256 Model = "models/player/banks/troopers1/trooper1.mdl",
1257 Regiment = "Shadow Trooper",
1258} )
1259
1260TEAM_SHADOW_LCPL = CreateTeam( "SW Lance Corporal", {
1261 Description = "Member of the Shadow Trooper Battalion",
1262 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1263 Colour = Color(32, 32, 32, 255),
1264 Side = 1,
1265 Rank = 3,
1266 Model = "models/player/banks/troopers1/trooper1.mdl",
1267 Regiment = "Shadow Trooper",
1268} )
1269
1270TEAM_SHADOW_CPL = CreateTeam( "SW Corporal", {
1271 Description = "Member of the Shadow Trooper Battalion",
1272 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1273 Colour = Color(32, 32, 32, 255),
1274 Side = 1,
1275 Rank = 4,
1276 Model = "models/player/banks/troopers1/trooper1.mdl",
1277 Regiment = "Shadow Trooper",
1278} )
1279
1280TEAM_SHADOW_SGT = CreateTeam( "SW Sergeant", {
1281 Description = "Member of the Shadow Trooper Battalion",
1282 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1283 Colour = Color(32, 32, 32, 255),
1284 Side = 1,
1285 Rank = 5,
1286 Model = "models/player/banks/troopers1/sergeant1.mdl",
1287 Regiment = "Shadow Trooper",
1288} )
1289
1290TEAM_SHADOW_SSGT = CreateTeam( "SW Staff Sergeant", {
1291 Description = "Member of the Shadow Trooper Battalion",
1292 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1293 Colour = Color(32, 32, 32, 255),
1294 Side = 1,
1295 Rank = 6,
1296 Model = "models/player/banks/troopers1/sergeant1.mdl",
1297 Regiment = "Shadow Trooper",
1298} )
1299
1300TEAM_SHADOW_MSGT = CreateTeam( "SW Master Sergeant", {
1301 Description = "Member of the Shadow Trooper Battalion",
1302 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1303 Colour = Color(32, 32, 32, 255),
1304 Side = 1,
1305 Rank = 7,
1306 Model = "models/player/banks/troopers1/sergeant1.mdl",
1307 Regiment = "Shadow Trooper",
1308} )
1309
1310TEAM_SHADOW_OFFICERCADET = CreateTeam( "SW Officer Cadet", {
1311 Description = "Member of the Shadow Trooper Battalion",
1312 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1313 Colour = Color(32, 32, 32, 255),
1314 Side = 1,
1315 Rank = 8,
1316 Model = "models/player/banks/troopers1/officer1.mdl",
1317 Regiment = "Shadow Trooper",
1318} )
1319
1320TEAM_SHADOW_WO = CreateTeam( "SW Warrant Officer", {
1321 Description = "Member of the Shadow Trooper Battalion",
1322 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1323 Colour = Color(32, 32, 32, 255),
1324 Side = 1,
1325 Rank = 9,
1326 Model = "models/player/banks/troopers1/officer1.mdl",
1327 Regiment = "Shadow Trooper",
1328} )
1329
1330TEAM_SHADOW_LT = CreateTeam( "SW Lieutenant", {
1331 Description = "Member of the Shadow Trooper Battalion",
1332 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1333 Colour = Color(32, 32, 32, 255),
1334 Side = 1,
1335 Rank = 10,
1336 Model = "models/player/banks/troopers1/officer1.mdl",
1337 Regiment = "Shadow Trooper",
1338} )
1339
1340TEAM_SHADOW_FLT = CreateTeam( "SW First Lieutenant", {
1341 Description = "Member of the Shadow Trooper Battalion",
1342 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1343 Colour = Color(32, 32, 32, 255),
1344 Side = 1,
1345 Rank = 11,
1346 Model = "models/player/banks/troopers1/officer1.mdl",
1347 Regiment = "Shadow Trooper",
1348} )
1349
1350TEAM_SHADOW_CAPT = CreateTeam( "SW Captain", {
1351 Description = "Member of the Shadow Trooper Battalion",
1352 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1353 Colour = Color(32, 32, 32, 255),
1354 Side = 1,
1355 Rank = 12,
1356 Model = "models/player/banks/troopers1/officer1.mdl",
1357 Regiment = "Shadow Trooper",
1358} )
1359
1360TEAM_SHADOW_MAJ = CreateTeam( "SW Major", {
1361 Description = "Member of the Shadow Trooper Battalion",
1362 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1363 Colour = Color(32, 32, 32, 255),
1364 Side = 1,
1365 Rank = 13,
1366 Model = "models/player/banks/troopers1/officer1.mdl",
1367 Regiment = "Shadow Trooper",
1368} )
1369
1370TEAM_SHADOW_COLO = CreateTeam( "SW Colonel", {
1371 Description = "Member of the Shadow Trooper Battalion",
1372 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1373 Colour = Color(32, 32, 32, 255),
1374 Side = 1,
1375 Rank = 14,
1376 Model = "models/player/banks/troopers1/officer1.mdl",
1377 Regiment = "Shadow Trooper",
1378} )
1379
1380TEAM_SHADOW_HCOLO = CreateTeam( "SW High Colonel", {
1381 Description = "Member of the Shadow Trooper Battalion",
1382 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1383 Colour = Color(32, 32, 32, 255),
1384 Side = 1,
1385 Rank = 15,
1386 Model = "models/player/banks/troopers1/officer1.mdl",
1387 Regiment = "Shadow Trooper",
1388} )
1389
1390TEAM_SHADOW_CMD = CreateTeam( "SW Commander", {
1391 Description = "Commander of the Shadow Trooper Battalion",
1392 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1393 Colour = Color(32, 32, 32, 255),
1394 Side = 1,
1395 Rank = 16,
1396 Model = "models/player/banks/commander1/commander1.mdl",
1397 Regiment = "Shadow Trooper",
1398} )
1399
1400TEAM_SHADOW_BRIG = CreateTeam( "SW Brigadier", {
1401 Description = "Commander of the Shadow Trooper Battalion",
1402 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1403 Colour = Color(32, 32, 32, 255),
1404 Side = 1,
1405 Rank = 17,
1406 Model = "models/player/banks/commander1/commander1.mdl",
1407 Regiment = "Shadow Trooper",
1408} )
1409
1410TEAM_SHADOW_MAJG = CreateTeam( "SW Major General", {
1411 Description = "Commander of the Shadow Trooper Battalion",
1412 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1413 Colour = Color(32, 32, 32, 255),
1414 Side = 1,
1415 Rank = 18,
1416 Model = "models/player/banks/commander1/commander1.mdl",
1417 Regiment = "Shadow Trooper",
1418} )
1419
1420TEAM_SHADOW_LTG = CreateTeam( "SW Lieutenant General", {
1421 Description = "Commander of the Shadow Trooper Battalion",
1422 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1423 Colour = Color(32, 32, 32, 255),
1424 Side = 1,
1425 Rank = 19,
1426 Model = "models/player/banks/commander1/commander1.mdl",
1427 Regiment = "Shadow Trooper",
1428} )
1429
1430TEAM_SHADOW_GEN = CreateTeam( "SW General", {
1431 Description = "General of the Shadow Trooper Battalion",
1432 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1433 Colour = Color(32, 32, 32, 255),
1434 Side = 1,
1435 Rank = 20,
1436 Model = "models/sono/swbf3/shadow.mdl",
1437 Regiment = "Shadow Trooper",
1438} )
1439
1440
1441TEAM_JUMP_PVT = CreateTeam( "JT Private", {
1442 Description = "Member of the Jump Trooper Battalion",
1443 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1444 Colour = Color(0, 102, 102, 255),
1445 Side = 1,
1446 Rank = 1,
1447 Model = "models/banks/ig/jt2/jt2.mdl",
1448 Regiment = "Jump Trooper",
1449} )
1450
1451TEAM_JUMP_PFC = CreateTeam( "JT Private First Class", {
1452 Description = "Member of the Jump Trooper Battalion",
1453 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1454 Colour = Color(0, 102, 102, 255),
1455 Side = 1,
1456 Rank = 2,
1457 Model = "models/banks/ig/jt2/jt2.mdl",
1458 Regiment = "Jump Trooper",
1459} )
1460
1461TEAM_JUMP_LCPL = CreateTeam( "JT Lance Corporal", {
1462 Description = "Member of the Jump Trooper Battalion",
1463 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1464 Colour = Color(0, 102, 102, 255),
1465 Side = 1,
1466 Rank = 3,
1467 Model = "models/banks/ig/jt2/jt2.mdl",
1468 Regiment = "Jump Trooper",
1469} )
1470
1471TEAM_JUMP_CPL = CreateTeam( "JT Corporal", {
1472 Description = "Member of the Jump Trooper Battalion",
1473 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1474 Colour = Color(0, 102, 102, 255),
1475 Side = 1,
1476 Rank = 4,
1477 Model = "models/banks/ig/jt2/jt2.mdl",
1478 Regiment = "Jump Trooper",
1479} )
1480
1481TEAM_JUMP_SGT = CreateTeam( "JT Sergeant", {
1482 Description = "Member of the Jump Trooper Battalion",
1483 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1484 Colour = Color(0, 102, 102, 255),
1485 Side = 1,
1486 Rank = 5,
1487 Model = "models/banks/ig/jt4/jt4.mdl",
1488 Regiment = "Jump Trooper",
1489} )
1490
1491TEAM_JUMP_SSGT = CreateTeam( "JT Staff Sergeant", {
1492 Description = "Member of the Jump Trooper Battalion",
1493 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1494 Colour = Color(0, 102, 102, 255),
1495 Side = 1,
1496 Rank = 6,
1497 Model = "models/banks/ig/jt4/jt4.mdl",
1498 Regiment = "Jump Trooper",
1499} )
1500
1501TEAM_JUMP_MSGT = CreateTeam( "JT Master Sergeant", {
1502 Description = "Member of the Jump Trooper Battalion",
1503 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1504 Colour = Color(0, 102, 102, 255),
1505 Side = 1,
1506 Rank = 7,
1507 Model = "models/banks/ig/jt4/jt4.mdl",
1508 Regiment = "Jump Trooper",
1509} )
1510
1511TEAM_JUMP_OFFICERCADET = CreateTeam( "JT Officer Cadet", {
1512 Description = "Member of the Jump Trooper Battalion",
1513 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1514 Colour = Color(0, 102, 102, 255),
1515 Side = 1,
1516 Rank = 8,
1517 Model = "models/banks/ig/jt3/jt3.mdl",
1518 Regiment = "Jump Trooper",
1519} )
1520
1521TEAM_JUMP_WO = CreateTeam( "JT Warrant Officer", {
1522 Description = "Member of the Jump Trooper Battalion",
1523 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1524 Colour = Color(0, 102, 102, 255),
1525 Side = 1,
1526 Rank = 9,
1527 Model = "models/banks/ig/jt3/jt3.mdl",
1528 Regiment = "Jump Trooper",
1529} )
1530
1531TEAM_JUMP_LT = CreateTeam( "JT Lieutenant", {
1532 Description = "Member of the Jump Trooper Battalion",
1533 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1534 Colour = Color(0, 102, 102, 255),
1535 Side = 1,
1536 Rank = 10,
1537 Model = "models/banks/ig/jt3/jt3.mdl",
1538 Regiment = "Jump Trooper",
1539} )
1540
1541TEAM_JUMP_FLT = CreateTeam( "JT First Lieutenant", {
1542 Description = "Member of the Jump Trooper Battalion",
1543 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1544 Colour = Color(0, 102, 102, 255),
1545 Side = 1,
1546 Rank = 11,
1547 Model = "models/banks/ig/jt3/jt3.mdl",
1548 Regiment = "Jump Trooper",
1549} )
1550
1551TEAM_JUMP_CAPT = CreateTeam( "JT Captain", {
1552 Description = "Member of the Jump Trooper Battalion",
1553 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1554 Colour = Color(0, 102, 102, 255),
1555 Side = 1,
1556 Rank = 12,
1557 Model = "models/banks/ig/jt5/jt5.mdl",
1558 Regiment = "Jump Trooper",
1559} )
1560
1561TEAM_JUMP_MAJ = CreateTeam( "JT Major", {
1562 Description = "Member of the Jump Trooper Battalion",
1563 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1564 Colour = Color(0, 102, 102, 255),
1565 Side = 1,
1566 Rank = 13,
1567 Model = "models/banks/ig/jt5/jt5.mdl",
1568 Regiment = "Jump Trooper",
1569} )
1570
1571TEAM_JUMP_COLO = CreateTeam( "JT Colonel", {
1572 Description = "Member of the Jump Trooper Battalion",
1573 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1574 Colour = Color(0, 102, 102, 255),
1575 Side = 1,
1576 Rank = 14,
1577 Model = "models/banks/ig/jt5/jt5.mdl",
1578 Regiment = "Jump Trooper",
1579} )
1580
1581TEAM_JUMP_HCOLO = CreateTeam( "JT High Colonel", {
1582 Description = "Member of the Jump Trooper Battalion",
1583 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1584 Colour = Color(0, 102, 102, 255),
1585 Side = 1,
1586 Rank = 15,
1587 Model = "models/banks/ig/jt5/jt5.mdl",
1588 Regiment = "Jump Trooper",
1589} )
1590
1591TEAM_JUMP_CMD = CreateTeam( "JT Commander", {
1592 Description = "Commander of the Jump Trooper Battalion",
1593 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1594 Colour = Color(0, 102, 102, 255),
1595 Side = 1,
1596 Rank = 16,
1597 Model = "models/banks/ig/jt1/jt1.mdl",
1598 Regiment = "Jump Trooper",
1599} )
1600
1601TEAM_JUMP_BRIG = CreateTeam( "JT Brigadier", {
1602 Description = "Commander of the Jump Trooper Battalion",
1603 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1604 Colour = Color(0, 102, 102, 255),
1605 Side = 1,
1606 Rank = 17,
1607 Model = "models/banks/ig/jt1/jt1.mdl",
1608 Regiment = "Jump Trooper",
1609} )
1610
1611TEAM_JUMP_MAJG = CreateTeam( "JT Major General", {
1612 Description = "Commander of the Jump Trooper Battalion",
1613 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1614 Colour = Color(0, 102, 102, 255),
1615 Side = 1,
1616 Rank = 18,
1617 Model = "models/banks/ig/jt1/jt1.mdl",
1618 Regiment = "Jump Trooper",
1619} )
1620
1621TEAM_JUMP_LTG = CreateTeam( "JT Lieutenant General", {
1622 Description = "Commander of the Jump Trooper Battalion",
1623 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1624 Colour = Color(0, 102, 102, 255),
1625 Side = 1,
1626 Rank = 19,
1627 Model = "models/banks/ig/jt1/jt1.mdl",
1628 Regiment = "Jump Trooper",
1629} )
1630
1631TEAM_JUMP_GEN = CreateTeam( "JT General", {
1632 Description = "General of the Jump Trooper Battalion",
1633 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1634 Colour = Color(0, 102, 102, 255),
1635 Side = 1,
1636 Rank = 20,
1637 Model = "models/sono/swbf3/shadow.mdl",
1638 Regiment = "Jump Trooper",
1639} )
1640
1641TEAM_DEATH_PVT = CreateTeam( "DT Private", {
1642 Description = "Member of the Death Trooper Battalion",
1643 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1644 Colour = Color(32, 32, 32, 255),
1645 Side = 1,
1646 Rank = 1,
1647 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1648 Regiment = "Death Trooper",
1649} )
1650
1651TEAM_DEATH_PFC = CreateTeam( "DT Private First Class", {
1652 Description = "Member of the Death Trooper Battalion",
1653 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1654 Colour = Color(32, 32, 32, 255),
1655 Side = 1,
1656 Rank = 2,
1657 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1658 Regiment = "Death Trooper",
1659} )
1660
1661TEAM_DEATH_LCPL = CreateTeam( "DT Lance Corporal", {
1662 Description = "Member of the Death Trooper Battalion",
1663 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1664 Colour = Color(32, 32, 32, 255),
1665 Side = 1,
1666 Rank = 3,
1667 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1668 Regiment = "Death Trooper",
1669} )
1670
1671TEAM_DEATH_CPL = CreateTeam( "DT Corporal", {
1672 Description = "Member of the Death Trooper Battalion",
1673 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1674 Colour = Color(32, 32, 32, 255),
1675 Side = 1,
1676 Rank = 4,
1677 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1678 Regiment = "Death Trooper",
1679} )
1680
1681TEAM_DEATH_SGT = CreateTeam( "DT Sergeant", {
1682 Description = "Member of the Death Trooper Battalion",
1683 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1684 Colour = Color(32, 32, 32, 255),
1685 Side = 1,
1686 Rank = 5,
1687 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1688 Regiment = "Death Trooper",
1689} )
1690
1691TEAM_DEATH_SSGT = CreateTeam( "DT Staff Sergeant", {
1692 Description = "Member of the Death Trooper Battalion",
1693 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1694 Colour = Color(32, 32, 32, 255),
1695 Side = 1,
1696 Rank = 6,
1697 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1698 Regiment = "Death Trooper",
1699} )
1700
1701TEAM_DEATH_MSGT = CreateTeam( "DT Master Sergeant", {
1702 Description = "Member of the Death Trooper Battalion",
1703 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1704 Colour = Color(32, 32, 32, 255),
1705 Side = 1,
1706 Rank = 7,
1707 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1708 Regiment = "Death Trooper",
1709} )
1710
1711TEAM_DEATH_OFFICERCADET = CreateTeam( "DT Officer Cadet", {
1712 Description = "Member of the Death Trooper Battalion",
1713 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1714 Colour = Color(32, 32, 32, 255),
1715 Side = 1,
1716 Rank = 8,
1717 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1718 Regiment = "Death Trooper",
1719} )
1720
1721TEAM_DEATH_WO = CreateTeam( "DT Warrant Officer", {
1722 Description = "Member of the Death Trooper Battalion",
1723 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1724 Colour = Color(32, 32, 32, 255),
1725 Side = 1,
1726 Rank = 9,
1727 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1728 Regiment = "Death Trooper",
1729} )
1730
1731TEAM_DEATH_LT = CreateTeam( "DT Lieutenant", {
1732 Description = "Member of the Death Trooper Battalion",
1733 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1734 Colour = Color(32, 32, 32, 255),
1735 Side = 1,
1736 Rank = 10,
1737 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1738 Regiment = "Death Trooper",
1739} )
1740
1741TEAM_DEATH_FLT = CreateTeam( "DT First Lieutenant", {
1742 Description = "Member of the Death Trooper Battalion",
1743 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1744 Colour = Color(32, 32, 32, 255),
1745 Side = 1,
1746 Rank = 11,
1747 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1748 Regiment = "Death Trooper",
1749} )
1750
1751TEAM_DEATH_CAPT = CreateTeam( "DT Captain", {
1752 Description = "Member of the Death Trooper Battalion",
1753 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1754 Colour = Color(32, 32, 32, 255),
1755 Side = 1,
1756 Rank = 12,
1757 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1758 Regiment = "Death Trooper",
1759} )
1760
1761TEAM_DEATH_MAJ = CreateTeam( "DT Major", {
1762 Description = "Member of the Death Trooper Battalion",
1763 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1764 Colour = Color(32, 32, 32, 255),
1765 Side = 1,
1766 Rank = 13,
1767 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1768 Regiment = "Death Trooper",
1769} )
1770
1771TEAM_DEATH_COLO = CreateTeam( "DT Colonel", {
1772 Description = "Member of the Death Trooper Battalion",
1773 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1774 Colour = Color(32, 32, 32, 255),
1775 Side = 1,
1776 Rank = 14,
1777 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1778 Regiment = "Death Trooper",
1779} )
1780
1781TEAM_DEATH_HCOLO = CreateTeam( "DT High Colonel", {
1782 Description = "Member of the Death Trooper Battalion",
1783 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1784 Colour = Color(32, 32, 32, 255),
1785 Side = 1,
1786 Rank = 15,
1787 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1788 Regiment = "Death Trooper",
1789} )
1790
1791TEAM_DEATH_CMD = CreateTeam( "DT Commander", {
1792 Description = "Commander of the Death Trooper Battalion",
1793 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1794 Colour = Color(32, 32, 32, 255),
1795 Side = 1,
1796 Rank = 16,
1797 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1798 Regiment = "Death Trooper",
1799} )
1800
1801TEAM_DEATH_BRIG = CreateTeam( "DT Brigadier", {
1802 Description = "Commander of the Death Trooper Battalion",
1803 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1804 Colour = Color(32, 32, 32, 255),
1805 Side = 1,
1806 Rank = 17,
1807 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1808 Regiment = "Death Trooper",
1809} )
1810
1811TEAM_DEATH_MAJG = CreateTeam( "DT Major General", {
1812 Description = "Commander of the Death Trooper Battalion",
1813 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1814 Colour = Color(32, 32, 32, 255),
1815 Side = 1,
1816 Rank = 18,
1817 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1818 Regiment = "Death Trooper",
1819} )
1820
1821TEAM_DEATH_LTG = CreateTeam( "DT Lieutenant General", {
1822 Description = "Commander of the Death Trooper Battalion",
1823 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1824 Colour = Color(32, 32, 32, 255),
1825 Side = 1,
1826 Rank = 19,
1827 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1828 Regiment = "Death Trooper",
1829} )
1830
1831TEAM_DEATH_GEN = CreateTeam( "DT General", {
1832 Description = "General of the Death Trooper Battalion",
1833 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1834 Colour = Color(32, 32, 32, 255),
1835 Side = 1,
1836 Rank = 20,
1837 Model = "models/sono/swbf3/shadow.mdl",
1838 Regiment = "Death Trooper",
1839} )
1840
1841TEAM_SHORE_PVT = CreateTeam( "SR Private", {
1842 Description = "Member of the Shore Trooper Battalion",
1843 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1844 Colour = Color(255, 153, 51, 255),
1845 Side = 1,
1846 Rank = 1,
1847 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1848 Regiment = "Shore Trooper",
1849} )
1850
1851TEAM_SHORE_PFC = CreateTeam( "SR Private First Class", {
1852 Description = "Member of the Shore Trooper Battalion",
1853 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1854 Colour = Color(255, 153, 51, 255),
1855 Side = 1,
1856 Rank = 2,
1857 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1858 Regiment = "Shore Trooper",
1859} )
1860
1861TEAM_SHORE_LCPL = CreateTeam( "SR Lance Corporal", {
1862 Description = "Member of the Shore Trooper Battalion",
1863 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1864 Colour = Color(255, 153, 51, 255),
1865 Side = 1,
1866 Rank = 3,
1867 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1868 Regiment = "Shore Trooper",
1869} )
1870
1871TEAM_SHORE_CPL = CreateTeam( "SR Corporal", {
1872 Description = "Member of the Shore Trooper Battalion",
1873 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1874 Colour = Color(255, 153, 51, 255),
1875 Side = 1,
1876 Rank = 4,
1877 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1878 Regiment = "Shore Trooper",
1879} )
1880
1881TEAM_SHORE_SGT = CreateTeam( "SR Sergeant", {
1882 Description = "Member of the Shore Trooper Battalion",
1883 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1884 Colour = Color(255, 153, 51, 255),
1885 Side = 1,
1886 Rank = 5,
1887 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1888 Regiment = "Shore Trooper",
1889} )
1890
1891TEAM_SHORE_SSGT = CreateTeam( "SR Staff Sergeant", {
1892 Description = "Member of the Shore Trooper Battalion",
1893 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1894 Colour = Color(255, 153, 51, 255),
1895 Side = 1,
1896 Rank = 6,
1897 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1898 Regiment = "Shore Trooper",
1899} )
1900
1901TEAM_SHORE_MSGT = CreateTeam( "SR Master Sergeant", {
1902 Description = "Member of the Shore Trooper Battalion",
1903 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1904 Colour = Color(255, 153, 51, 255),
1905 Side = 1,
1906 Rank = 7,
1907 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1908 Regiment = "Shore Trooper",
1909} )
1910
1911TEAM_SHORE_OFFICERCADET = CreateTeam( "SR Officer Cadet", {
1912 Description = "Member of the Shore Trooper Battalion",
1913 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1914 Colour = Color(255, 153, 51, 255),
1915 Side = 1,
1916 Rank = 8,
1917 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1918 Regiment = "Shore Trooper",
1919} )
1920
1921TEAM_SHORE_WO = CreateTeam( "SR Warrant Officer", {
1922 Description = "Member of the Shore Trooper Battalion",
1923 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1924 Colour = Color(255, 153, 51, 255),
1925 Side = 1,
1926 Rank = 9,
1927 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1928 Regiment = "Shore Trooper",
1929} )
1930
1931TEAM_SHORE_LT = CreateTeam( "SR Lieutenant", {
1932 Description = "Member of the Shore Trooper Battalion",
1933 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1934 Colour = Color(255, 153, 51, 255),
1935 Side = 1,
1936 Rank = 10,
1937 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1938 Regiment = "Shore Trooper",
1939} )
1940
1941TEAM_SHORE_FLT = CreateTeam( "SR First Lieutenant", {
1942 Description = "Member of the Shore Trooper Battalion",
1943 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1944 Colour = Color(255, 153, 51, 255),
1945 Side = 1,
1946 Rank = 11,
1947 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1948 Regiment = "Shore Trooper",
1949} )
1950
1951TEAM_SHORE_CAPT = CreateTeam( "SR Captain", {
1952 Description = "Member of the Shore Trooper Battalion",
1953 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c", "zeus_thermaldet"},
1954 Colour = Color(255, 153, 51, 255),
1955 Side = 1,
1956 Rank = 12,
1957 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1958 Regiment = "Shore Trooper",
1959} )
1960
1961TEAM_SHORE_MAJ = CreateTeam( "SR Major", {
1962 Description = "Member of the Shore Trooper Battalion",
1963 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c", "zeus_thermaldet"},
1964 Colour = Color(255, 153, 51, 255),
1965 Side = 1,
1966 Rank = 13,
1967 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1968 Regiment = "Shore Trooper",
1969} )
1970
1971TEAM_SHORE_COLO = CreateTeam( "SR Colonel", {
1972 Description = "Member of the Shore Trooper Battalion",
1973 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c", "zeus_thermaldet"},
1974 Colour = Color(255, 153, 51, 255),
1975 Side = 1,
1976 Rank = 14,
1977 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1978 Regiment = "Shore Trooper",
1979} )
1980
1981TEAM_SHORE_HCOLO = CreateTeam( "SR High Colonel", {
1982 Description = "Member of the Shore Trooper Battalion",
1983 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c", "zeus_thermaldet"},
1984 Colour = Color(255, 153, 51, 255),
1985 Side = 1,
1986 Rank = 15,
1987 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1988 Regiment = "Shore Trooper",
1989} )
1990
1991TEAM_SHORE_CMD = CreateTeam( "SR Commander", {
1992 Description = "Commander of the Shore Trooper Battalion",
1993 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c", "zeus_thermaldet"},
1994 Colour = Color(255, 153, 51, 255),
1995 Side = 1,
1996 Rank = 16,
1997 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1998 Regiment = "Shore Trooper",
1999} )
2000
2001TEAM_SHORE_BRIG = CreateTeam( "SR Brigadier", {
2002 Description = "Commander of the Shore Trooper Battalion",
2003 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c", "zeus_thermaldet"},
2004 Colour = Color(255, 153, 51, 255),
2005 Side = 1,
2006 Rank = 17,
2007 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
2008 Regiment = "Shore Trooper",
2009} )
2010
2011TEAM_SHORE_MAJG = CreateTeam( "SR Major General", {
2012 Description = "Commander of the Shore Trooper Battalion",
2013 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c", "zeus_thermaldet"},
2014 Colour = Color(255, 153, 51, 255),
2015 Side = 1,
2016 Rank = 18,
2017 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
2018 Regiment = "Shore Trooper",
2019} )
2020
2021TEAM_SHORE_LTG = CreateTeam( "SR Lieutenant General", {
2022 Description = "Commander of the Shore Trooper Battalion",
2023 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c", "zeus_thermaldet"},
2024 Colour = Color(255, 153, 51, 255),
2025 Side = 1,
2026 Rank = 19,
2027 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
2028 Regiment = "Shore Trooper",
2029} )
2030
2031TEAM_SHORE_GEN = CreateTeam( "SR General", {
2032 Description = "General of the Shore Trooper Battalion",
2033 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c", "zeus_thermaldet"},
2034 Colour = Color(255, 153, 51, 255),
2035 Side = 1,
2036 Rank = 20,
2037 Model = "models/sono/swbf3/shadow.mdl",
2038 Regiment = "Shore Trooper",
2039} )
2040
2041TEAM_NOVA_PVT = CreateTeam( "NT Private", {
2042 Description = "Member of the Nova Trooper Battalion",
2043 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2044 Colour = Color(0, 204, 102, 255),
2045 Side = 1,
2046 Rank = 1,
2047 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2048 Regiment = "Nova Trooper",
2049} )
2050
2051TEAM_NOVA_PFC = CreateTeam( "NT Private First Class", {
2052 Description = "Member of the Nova Trooper Battalion",
2053 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2054 Colour = Color(0, 204, 102, 255),
2055 Side = 1,
2056 Rank = 2,
2057 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2058 Regiment = "Nova Trooper",
2059} )
2060
2061TEAM_NOVA_LCPL = CreateTeam( "NT Lance Corporal", {
2062 Description = "Member of the Nova Trooper Battalion",
2063 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2064 Colour = Color(0, 204, 102, 255),
2065 Side = 1,
2066 Rank = 3,
2067 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2068 Regiment = "Nova Trooper",
2069} )
2070
2071TEAM_NOVA_CPL = CreateTeam( "NT Corporal", {
2072 Description = "Member of the Nova Trooper Battalion",
2073 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2074 Colour = Color(0, 204, 102, 255),
2075 Side = 1,
2076 Rank = 4,
2077 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2078 Regiment = "Nova Trooper",
2079} )
2080
2081TEAM_NOVA_SGT = CreateTeam( "NT Sergeant", {
2082 Description = "Member of the Nova Trooper Battalion",
2083 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2084 Colour = Color(0, 204, 102, 255),
2085 Side = 1,
2086 Rank = 5,
2087 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2088 Regiment = "Nova Trooper",
2089} )
2090
2091TEAM_NOVA_SSGT = CreateTeam( "NT Staff Sergeant", {
2092 Description = "Member of the Nova Trooper Battalion",
2093 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2094 Colour = Color(0, 204, 102, 255),
2095 Side = 1,
2096 Rank = 6,
2097 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2098 Regiment = "Nova Trooper",
2099} )
2100
2101TEAM_NOVA_MSGT = CreateTeam( "NT Master Sergeant", {
2102 Description = "Member of the Nova Trooper Battalion",
2103 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2104 Colour = Color(0, 204, 102, 255),
2105 Side = 1,
2106 Rank = 7,
2107 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2108 Regiment = "Nova Trooper",
2109} )
2110
2111TEAM_NOVA_OFFICERCADET = CreateTeam( "NT Officer Cadet", {
2112 Description = "Member of the Nova Trooper Battalion",
2113 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2114 Colour = Color(0, 204, 102, 255),
2115 Side = 1,
2116 Rank = 8,
2117 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2118 Regiment = "Nova Trooper",
2119} )
2120
2121TEAM_NOVA_WO = CreateTeam( "NT Warrant Officer", {
2122 Description = "Member of the Nova Trooper Battalion",
2123 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2124 Colour = Color(0, 204, 102, 255),
2125 Side = 1,
2126 Rank = 9,
2127 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2128 Regiment = "Nova Trooper",
2129} )
2130
2131TEAM_NOVA_LT = CreateTeam( "NT Lieutenant", {
2132 Description = "Member of the Nova Trooper Battalion",
2133 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2134 Colour = Color(0, 204, 102, 255),
2135 Side = 1,
2136 Rank = 10,
2137 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2138 Regiment = "Nova Trooper",
2139} )
2140
2141TEAM_NOVA_FLT = CreateTeam( "NT First Lieutenant", {
2142 Description = "Member of the Nova Trooper Battalion",
2143 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2144 Colour = Color(0, 204, 102, 255),
2145 Side = 1,
2146 Rank = 11,
2147 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2148 Regiment = "Nova Trooper",
2149} )
2150
2151TEAM_NOVA_CAPT = CreateTeam( "NT Captain", {
2152 Description = "Member of the Nova Trooper Battalion",
2153 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2154 Colour = Color(0, 204, 102, 255),
2155 Side = 1,
2156 Rank = 12,
2157 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2158 Regiment = "Nova Trooper",
2159} )
2160
2161TEAM_NOVA_MAJ = CreateTeam( "NT Major", {
2162 Description = "Member of the Nova Trooper Battalion",
2163 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2164 Colour = Color(0, 204, 102, 255),
2165 Side = 1,
2166 Rank = 13,
2167 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2168 Regiment = "Nova Trooper",
2169} )
2170
2171TEAM_NOVA_COLO = CreateTeam( "NT Colonel", {
2172 Description = "Member of the Nova Trooper Battalion",
2173 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2174 Colour = Color(0, 204, 102, 255),
2175 Side = 1,
2176 Rank = 14,
2177 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2178 Regiment = "Nova Trooper",
2179} )
2180
2181TEAM_NOVA_HCOLO = CreateTeam( "NT High Colonel", {
2182 Description = "Member of the Nova Trooper Battalion",
2183 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2184 Colour = Color(0, 204, 102, 255),
2185 Side = 1,
2186 Rank = 15,
2187 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2188 Regiment = "Nova Trooper",
2189} )
2190
2191TEAM_NOVA_CMD = CreateTeam( "NT Commander", {
2192 Description = "Commander of the Nova Trooper Battalion",
2193 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2194 Colour = Color(0, 204, 102, 255),
2195 Side = 1,
2196 Rank = 16,
2197 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2198 Regiment = "Nova Trooper",
2199} )
2200
2201TEAM_NOVA_BRIG = CreateTeam( "NT Brigadier", {
2202 Description = "Commander of the Nova Trooper Battalion",
2203 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2204 Colour = Color(0, 204, 102, 255),
2205 Side = 1,
2206 Rank = 17,
2207 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2208 Regiment = "Nova Trooper",
2209} )
2210
2211TEAM_NOVA_MAJG = CreateTeam( "NT Major General", {
2212 Description = "Commander of the Nova Trooper Battalion",
2213 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2214 Colour = Color(0, 204, 102, 255),
2215 Side = 1,
2216 Rank = 18,
2217 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2218 Regiment = "Nova Trooper",
2219} )
2220
2221TEAM_NOVA_LTG = CreateTeam( "NT Lieutenant General", {
2222 Description = "Commander of the Nova Trooper Battalion",
2223 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2224 Colour = Color(0, 204, 102, 255),
2225 Side = 1,
2226 Rank = 19,
2227 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2228 Regiment = "Nova Trooper",
2229} )
2230
2231TEAM_NOVA_GEN = CreateTeam( "NT General", {
2232 Description = "General of the Nova Trooper Battalion",
2233 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2234 Colour = Color(0, 204, 102, 255),
2235 Side = 1,
2236 Rank = 20,
2237 Model = "models/sono/swbf3/shadow.mdl",
2238 Regiment = "Nova Trooper",
2239} )
2240
2241TEAM_MEDICAL_PVT = CreateTeam( "MT Private", {
2242 Description = "Member of the Medical Trooper Core",
2243 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2244 Colour = Color(255, 51, 255, 255),
2245 Side = 1,
2246 Rank = 1,
2247 Model = "models/player/banks/mtroopers/mtrooper.mdl",
2248 Regiment = "Medical Trooper",
2249} )
2250
2251TEAM_MEDICAL_PFC = CreateTeam( "MT Private First Class", {
2252 Description = "Member of the Medical Trooper Core",
2253 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2254 Colour = Color(255, 51, 255, 255),
2255 Side = 1,
2256 Rank = 2,
2257 Model = "models/player/banks/mtroopers/mtrooper.mdl",
2258 Regiment = "Medical Trooper",
2259} )
2260
2261TEAM_MEDICAL_LCPL = CreateTeam( "MT Lance Corporal", {
2262 Description = "Member of the Medical Trooper Core",
2263 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2264 Colour = Color(255, 51, 255, 255),
2265 Side = 1,
2266 Rank = 3,
2267 Model = "models/player/banks/mtroopers/mtrooper.mdl",
2268 Regiment = "Medical Trooper",
2269} )
2270
2271TEAM_MEDICAL_CPL = CreateTeam( "MT Corporal", {
2272 Description = "Member of the Medical Trooper Core",
2273 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2274 Colour = Color(255, 51, 255, 255),
2275 Side = 1,
2276 Rank = 4,
2277 Model = "models/player/banks/mtroopers/mtrooper.mdl",
2278 Regiment = "Medical Trooper",
2279} )
2280
2281TEAM_MEDICAL_SGT = CreateTeam( "MT Sergeant", {
2282 Description = "Member of the Medical Trooper Core",
2283 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2284 Colour = Color(255, 51, 255, 255),
2285 Side = 1,
2286 Rank = 5,
2287 Model = "models/player/banks/mtroopers/msergeant.mdl",
2288 Regiment = "Medical Trooper",
2289} )
2290
2291TEAM_MEDICAL_SSGT = CreateTeam( "MT Staff Sergeant", {
2292 Description = "Member of the Medical Trooper Core",
2293 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2294 Colour = Color(255, 51, 255, 255),
2295 Side = 1,
2296 Rank = 6,
2297 Model = "models/player/banks/mtroopers/msergeant.mdl",
2298 Regiment = "Medical Trooper",
2299} )
2300
2301TEAM_MEDICAL_MSGT = CreateTeam( "MT Master Sergeant", {
2302 Description = "Member of the Medical Trooper Core",
2303 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2304 Colour = Color(255, 51, 255, 255),
2305 Side = 1,
2306 Rank = 7,
2307 Model = "models/player/banks/mtroopers/msergeant.mdl",
2308 Regiment = "Medical Trooper",
2309} )
2310
2311TEAM_MEDICAL_OFFICERCADET = CreateTeam( "MT Officer Cadet", {
2312 Description = "Member of the Medical Trooper Core",
2313 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2314 Colour = Color(255, 51, 255, 255),
2315 Side = 1,
2316 Rank = 8,
2317 Model = "models/player/banks/mtroopers/msergeant.mdl",
2318 Regiment = "Medical Trooper",
2319} )
2320
2321TEAM_MEDICAL_WO = CreateTeam( "MT Warrant Officer", {
2322 Description = "Member of the Medical Trooper Core",
2323 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2324 Colour = Color(255, 51, 255, 255),
2325 Side = 1,
2326 Rank = 9,
2327 Model = "models/player/banks/mtroopers/msergeant.mdl",
2328 Regiment = "Medical Trooper",
2329} )
2330
2331TEAM_MEDICAL_LT = CreateTeam( "MT Lieutenant", {
2332 Description = "Member of the Medical Trooper Core",
2333 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2334 Colour = Color(255, 51, 255, 255),
2335 Side = 1,
2336 Rank = 10,
2337 Model = "models/player/banks/mtroopers/mofficer.mdl",
2338 Regiment = "Medical Trooper",
2339} )
2340
2341TEAM_MEDICAL_FLT = CreateTeam( "MT First Lieutenant", {
2342 Description = "Member of the Medical Trooper Core",
2343 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2344 Colour = Color(255, 51, 255, 255),
2345 Side = 1,
2346 Rank = 11,
2347 Model = "models/player/banks/mtroopers/mofficer.mdl",
2348 Regiment = "Medical Trooper",
2349} )
2350
2351TEAM_MEDICAL_CAPT = CreateTeam( "MT Captain", {
2352 Description = "Member of the Medical Trooper Core",
2353 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2354 Colour = Color(255, 51, 255, 255),
2355 Side = 1,
2356 Rank = 12,
2357 Model = "models/player/banks/mtroopers/mofficer.mdl",
2358 Regiment = "Medical Trooper",
2359} )
2360
2361TEAM_MEDICAL_MAJ = CreateTeam( "MT Major", {
2362 Description = "Member of the Medical Trooper Core",
2363 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2364 Colour = Color(255, 51, 255, 255),
2365 Side = 1,
2366 Rank = 13,
2367 Model = "models/player/banks/mtroopers/mofficer.mdl",
2368 Regiment = "Medical Trooper",
2369} )
2370
2371TEAM_MEDICAL_COLO = CreateTeam( "MT Lieutenant Colonel", {
2372 Description = "Member of the Medical Trooper Core",
2373 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2374 Colour = Color(255, 51, 255, 255),
2375 Side = 1,
2376 Rank = 14,
2377 Model = "models/player/banks/mtroopers/mcolonel.mdl",
2378 Regiment = "Medical Trooper",
2379} )
2380
2381TEAM_MEDICAL_COLO = CreateTeam( "MT Colonel", {
2382 Description = "Member of the Medical Trooper Core",
2383 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2384 Colour = Color(255, 51, 255, 255),
2385 Side = 1,
2386 Rank = 14,
2387 Model = "models/player/banks/mtroopers/mcolonel.mdl",
2388 Regiment = "Medical Trooper",
2389} )
2390
2391TEAM_MEDICAL_HCOLO = CreateTeam( "MT High Colonel", {
2392 Description = "Member of the Medical Trooper Core",
2393 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2394 Colour = Color(255, 51, 255, 255),
2395 Side = 1,
2396 Rank = 15,
2397 Model = "models/player/banks/mtroopers/mcolonel.mdl",
2398 Regiment = "Medical Trooper",
2399} )
2400
2401TEAM_MEDICAL_CMD = CreateTeam( "MT Commander", {
2402 Description = "Commander of the Medical Trooper Core",
2403 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2404 Colour = Color(255, 51, 255, 255),
2405 Side = 1,
2406 Rank = 16,
2407 Model = "models/player/banks/mcommander/mcommander.mdl",
2408 Regiment = "Medical Trooper",
2409} )
2410
2411TEAM_MEDICAL_BRIG = CreateTeam( "MT Brigadier", {
2412 Description = "Commander of the Medical Trooper Core",
2413 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2414 Colour = Color(255, 51, 255, 255),
2415 Side = 1,
2416 Rank = 17,
2417 Model = "models/player/banks/mcommander/mcommander.mdl",
2418 Regiment = "Medical Trooper",
2419} )
2420
2421TEAM_MEDICAL_MAJG = CreateTeam( "MT Major General", {
2422 Description = "Commander of the Medical Trooper Core",
2423 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2424 Colour = Color(255, 51, 255, 255),
2425 Side = 1,
2426 Rank = 18,
2427 Model = "models/player/banks/mcommander/mcommander.mdl",
2428 Regiment = "Medical Trooper",
2429} )
2430
2431TEAM_MEDICAL_LTG = CreateTeam( "MT Lieutenant General", {
2432 Description = "Commander of the Medical Trooper Core",
2433 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2434 Colour = Color(255, 51, 255, 255),
2435 Side = 1,
2436 Rank = 19,
2437 Model = "models/player/banks/mcommander/mcommander.mdl",
2438 Regiment = "Medical Trooper",
2439} )
2440
2441TEAM_MEDICAL_GEN = CreateTeam( "MT General", {
2442 Description = "General of the Medical Trooper Core",
2443 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2444 Colour = Color(255, 51, 255, 255),
2445 Side = 1,
2446 Rank = 20,
2447 Model = "models/player/banks/mcommander/mcommander.mdl",
2448 Regiment = "Medical Trooper",
2449} )
2450
2451TEAM_SHOCK_PVT = CreateTeam( "SK Private", {
2452 Description = "Member of the Shock Trooper Battalion",
2453 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser", "tfa_swch_dlt19", "tfa_swch_se14c"},
2454 Colour = Color(255, 51, 51, 255),
2455 Side = 1,
2456 Rank = 1,
2457 Model = "models/sono/shocktrooper/trooper.mdl",
2458 Regiment = "Shock Trooper",
2459} )
2460
2461TEAM_SHOCK_PFC = CreateTeam( "SK Private First Class", {
2462 Description = "Member of the Shock Trooper Battalion",
2463 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser", "tfa_swch_dlt19", "tfa_swch_se14c"},
2464 Colour = Color(255, 51, 51, 255),
2465 Side = 1,
2466 Rank = 2,
2467 Model = "models/sono/shocktrooper/trooper.mdl",
2468 Regiment = "Shock Trooper",
2469} )
2470
2471TEAM_SHOCK_LCPL = CreateTeam( "SK Lance Corporal", {
2472 Description = "Member of the Shock Trooper Battalion",
2473 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser", "tfa_swch_dlt19", "tfa_swch_se14c"},
2474 Colour = Color(255, 51, 51, 255),
2475 Side = 1,
2476 Rank = 3,
2477 Model = "models/sono/shocktrooper/trooper.mdl",
2478 Regiment = "Shock Trooper",
2479} )
2480
2481TEAM_SHOCK_CPL = CreateTeam( "SK Corporal", {
2482 Description = "Member of the Shock Trooper Battalion",
2483 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser", "tfa_swch_dlt19", "tfa_swch_se14c"},
2484 Colour = Color(255, 51, 51, 255),
2485 Side = 1,
2486 Rank = 4,
2487 Model = "models/sono/shocktrooper/trooper.mdl",
2488 Regiment = "Shock Trooper",
2489} )
2490
2491TEAM_SHOCK_SGT = CreateTeam( "SK Sergeant", {
2492 Description = "Member of the Shock Trooper Battalion",
2493 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser", "tfa_swch_se14c"},
2494 Colour = Color(255, 51, 51, 255),
2495 Side = 1,
2496 Rank = 5,
2497 Model = "models/sono/shocktrooper/sergeant.mdl",
2498 Regiment = "Shock Trooper",
2499} )
2500
2501TEAM_SHOCK_SSGT = CreateTeam( "SK Staff Sergeant", {
2502 Description = "Member of the Shock Trooper Battalion",
2503 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser", "tfa_swch_se14c"},
2504 Colour = Color(255, 51, 51, 255),
2505 Side = 1,
2506 Rank = 6,
2507 Model = "models/sono/shocktrooper/sergeant.mdl",
2508 Regiment = "Shock Trooper",
2509} )
2510
2511TEAM_SHOCK_MSGT = CreateTeam( "SK Master Sergeant", {
2512 Description = "Member of the Shock Trooper Battalion",
2513 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser", "tfa_swch_se14c"},
2514 Colour = Color(255, 51, 51, 255),
2515 Side = 1,
2516 Rank = 7,
2517 Model = "models/sono/shocktrooper/sergeant.mdl",
2518 Regiment = "Shock Trooper",
2519} )
2520
2521TEAM_SHOCK_OFFICERCADET = CreateTeam( "SK Officer Cadet", {
2522 Description = "Member of the Shock Trooper Battalion",
2523 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2524 Colour = Color(255, 51, 51, 255),
2525 Side = 1,
2526 Rank = 8,
2527 Model = "models/sono/shocktrooper/officer.mdl",
2528 Regiment = "Shock Trooper",
2529} )
2530
2531TEAM_SHOCK_WO = CreateTeam( "SK Warrant Officer", {
2532 Description = "Member of the Shock Trooper Battalion",
2533 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2534 Colour = Color(255, 51, 51, 255),
2535 Side = 1,
2536 Rank = 9,
2537 Model = "models/sono/shocktrooper/officer.mdl",
2538 Regiment = "Shock Trooper",
2539} )
2540
2541TEAM_SHOCK_LT = CreateTeam( "SK Lieutenant", {
2542 Description = "Member of the Shock Trooper Battalion",
2543 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2544 Colour = Color(255, 51, 51, 255),
2545 Side = 1,
2546 Rank = 10,
2547 Model = "models/sono/shocktrooper/officer.mdl",
2548 Regiment = "Shock Trooper",
2549} )
2550
2551TEAM_SHOCK_FLT = CreateTeam( "SK First Lieutenant", {
2552 Description = "Member of the Shock Trooper Battalion",
2553 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2554 Colour = Color(255, 51, 51, 255),
2555 Side = 1,
2556 Rank = 11,
2557 Model = "models/sono/shocktrooper/officer.mdl",
2558 Regiment = "Shock Trooper",
2559} )
2560
2561TEAM_SHOCK_CAPT = CreateTeam( "SK Captain", {
2562 Description = "Member of the Shock Trooper Battalion",
2563 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2564 Colour = Color(255, 51, 51, 255),
2565 Side = 1,
2566 Rank = 12,
2567 Model = "models/sono/shocktrooper/officer.mdl",
2568 Regiment = "Shock Trooper",
2569} )
2570
2571TEAM_SHOCK_MAJ = CreateTeam( "SK Major", {
2572 Description = "Member of the Shock Trooper Battalion",
2573 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2574 Colour = Color(255, 51, 51, 255),
2575 Side = 1,
2576 Rank = 13,
2577 Model = "models/sono/shocktrooper/officer.mdl",
2578 Regiment = "Shock Trooper",
2579} )
2580
2581TEAM_SHOCK_COLO = CreateTeam( "SK Colonel", {
2582 Description = "Member of the Shock Trooper Battalion",
2583 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2584 Colour = Color(255, 51, 51, 255),
2585 Side = 1,
2586 Rank = 14,
2587 Model = "models/sono/shocktrooper/officer.mdl",
2588 Regiment = "Shock Trooper",
2589} )
2590
2591TEAM_SHOCK_HCOLO = CreateTeam( "SK High Colonel", {
2592 Description = "Member of the Shock Trooper Battalion",
2593 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2594 Colour = Color(255, 51, 51, 255),
2595 Side = 1,
2596 Rank = 15,
2597 Model = "models/sono/shocktrooper/officer.mdl",
2598 Regiment = "Shock Trooper",
2599} )
2600
2601TEAM_SHOCK_CMD = CreateTeam( "SK Commander", {
2602 Description = "Commander of the Shock Trooper Battalion",
2603 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2604 Colour = Color(255, 51, 51, 255),
2605 Side = 1,
2606 Rank = 16,
2607 Model = "models/sono/shocktrooper/commander.mdl",
2608 Regiment = "Shock Trooper",
2609} )
2610
2611TEAM_SHOCK_BRIG = CreateTeam( "SK Brigadier", {
2612 Description = "Commander of the Shock Trooper Battalion",
2613 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2614 Colour = Color(255, 51, 51, 255),
2615 Side = 1,
2616 Rank = 17,
2617 Model = "models/sono/shocktrooper/commander.mdl",
2618 Regiment = "Shock Trooper",
2619} )
2620
2621TEAM_SHOCK_MAJG = CreateTeam( "SK Major General", {
2622 Description = "Commander of the Shock Trooper Battalion",
2623 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2624 Colour = Color(255, 51, 51, 255),
2625 Side = 1,
2626 Rank = 18,
2627 Model = "models/sono/shocktrooper/commander.mdl",
2628 Regiment = "Shock Trooper",
2629} )
2630
2631TEAM_SHOCK_LTG = CreateTeam( "SK Lieutenant General", {
2632 Description = "Commander of the Shock Trooper Battalion",
2633 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2634 Colour = Color(255, 51, 51, 255),
2635 Side = 1,
2636 Rank = 19,
2637 Model = "models/sono/shocktrooper/commander.mdl",
2638 Regiment = "Shock Trooper",
2639} )
2640
2641TEAM_SHOCK_GEN = CreateTeam( "SK General", {
2642 Description = "General of the Shock Trooper Battalion",
2643 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2644 Colour = Color(255, 51, 51, 255),
2645 Side = 1,
2646 Rank = 20,
2647 Model = "models/sono/swbf3/shadow.mdl",
2648 Regiment = "Shock Trooper",
2649} )
2650
2651TEAM_RIOT_PVT = CreateTeam( "RT Private", {
2652 Description = "Member of the Riot Trooper Company",
2653 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2654 Colour = Color(255, 51, 51, 255),
2655 Side = 1,
2656 Rank = 1,
2657 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2658 Regiment = "Riot Trooper",
2659} )
2660
2661TEAM_RIOT_PFC = CreateTeam( "RT Private First Class", {
2662 Description = "Member of the Riot Trooper Company",
2663 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2664 Colour = Color(255, 51, 51, 255),
2665 Side = 1,
2666 Rank = 2,
2667 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2668 Regiment = "Riot Trooper",
2669} )
2670
2671TEAM_RIOT_LCPL = CreateTeam( "RT Lance Corporal", {
2672 Description = "Member of the Riot Trooper Company",
2673 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2674 Colour = Color(255, 51, 51, 255),
2675 Side = 1,
2676 Rank = 3,
2677 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2678 Regiment = "Riot Trooper",
2679} )
2680
2681TEAM_RIOT_CPL = CreateTeam( "RT Corporal", {
2682 Description = "Member of the Riot Trooper Company",
2683 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2684 Colour = Color(255, 51, 51, 255),
2685 Side = 1,
2686 Rank = 4,
2687 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2688 Regiment = "Riot Trooper",
2689} )
2690
2691TEAM_RIOT_SGT = CreateTeam( "RT Sergeant", {
2692 Description = "Member of the Riot Trooper Company",
2693 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2694 Colour = Color(255, 51, 51, 255),
2695 Side = 1,
2696 Rank = 5,
2697 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2698 Regiment = "Riot Trooper",
2699} )
2700
2701TEAM_RIOT_SSGT = CreateTeam( "RT Staff Sergeant", {
2702 Description = "Member of the Riot Trooper Company",
2703 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2704 Colour = Color(255, 51, 51, 255),
2705 Side = 1,
2706 Rank = 6,
2707 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2708 Regiment = "Riot Trooper",
2709} )
2710
2711TEAM_RIOT_MSGT = CreateTeam( "RT Master Sergeant", {
2712 Description = "Member of the Riot Trooper Company",
2713 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2714 Colour = Color(255, 51, 51, 255),
2715 Side = 1,
2716 Rank = 7,
2717 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2718 Regiment = "Riot Trooper",
2719} )
2720
2721TEAM_RIOT_OFFICERCADET = CreateTeam( "RT Officer Cadet", {
2722 Description = "Member of the Riot Trooper Company",
2723 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2724 Colour = Color(255, 51, 51, 255),
2725 Side = 1,
2726 Rank = 8,
2727 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2728 Regiment = "Riot Trooper",
2729} )
2730
2731TEAM_RIOT_WO = CreateTeam( "RT Warrant Officer", {
2732 Description = "Member of the Riot Trooper Company",
2733 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2734 Colour = Color(255, 51, 51, 255),
2735 Side = 1,
2736 Rank = 9,
2737 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2738 Regiment = "Riot Trooper",
2739} )
2740
2741TEAM_RIOT_LT = CreateTeam( "RT Lieutenant", {
2742 Description = "Member of the Riot Trooper Company",
2743 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2744 Colour = Color(255, 51, 51, 255),
2745 Side = 1,
2746 Rank = 10,
2747 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2748 Regiment = "Riot Trooper",
2749} )
2750
2751TEAM_RIOT_FLT = CreateTeam( "RT First Lieutenant", {
2752 Description = "Member of the Riot Trooper Company",
2753 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2754 Colour = Color(255, 51, 51, 255),
2755 Side = 1,
2756 Rank = 11,
2757 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2758 Regiment = "Riot Trooper",
2759} )
2760
2761TEAM_RIOT_CAPT = CreateTeam( "RT Captain", {
2762 Description = "Member of the Riot Trooper Company",
2763 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2764 Colour = Color(255, 51, 51, 255),
2765 Side = 1,
2766 Rank = 12,
2767 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2768 Regiment = "Riot Trooper",
2769} )
2770
2771TEAM_RIOT_MAJ = CreateTeam( "RT Major", {
2772 Description = "Member of the Riot Trooper Company",
2773 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2774 Colour = Color(255, 51, 51, 255),
2775 Side = 1,
2776 Rank = 13,
2777 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2778 Regiment = "Riot Trooper",
2779} )
2780
2781TEAM_RIOT_COLO = CreateTeam( "RT Colonel", {
2782 Description = "Member of the Riot Trooper Company",
2783 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2784 Colour = Color(255, 51, 51, 255),
2785 Side = 1,
2786 Rank = 14,
2787 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2788 Regiment = "Riot Trooper",
2789} )
2790
2791TEAM_RIOT_HCOLO = CreateTeam( "RT High Colonel", {
2792 Description = "Member of the Riot Trooper Company",
2793 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2794 Colour = Color(255, 51, 51, 255),
2795 Side = 1,
2796 Rank = 15,
2797 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2798 Regiment = "Riot Trooper",
2799} )
2800
2801TEAM_RIOT_CMD = CreateTeam( "RT Commander", {
2802 Description = "Commander of the Riot Trooper Company",
2803 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2804 Colour = Color(255, 51, 51, 255),
2805 Side = 1,
2806 Rank = 16,
2807 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2808 Regiment = "Riot Trooper",
2809} )
2810
2811TEAM_RIOT_BRIG = CreateTeam( "RT Brigadier", {
2812 Description = "Commander of the Riot Trooper Company",
2813 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2814 Colour = Color(255, 51, 51, 255),
2815 Side = 1,
2816 Rank = 17,
2817 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2818 Regiment = "Riot Trooper",
2819} )
2820
2821TEAM_RIOT_MAJG = CreateTeam( "RT Major General", {
2822 Description = "Commander of the Riot Trooper Company",
2823 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2824 Colour = Color(255, 51, 51, 255),
2825 Side = 1,
2826 Rank = 18,
2827 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2828 Regiment = "Riot Trooper",
2829} )
2830
2831TEAM_RIOT_LTG = CreateTeam( "RT Lieutenant General", {
2832 Description = "Commander of the Riot Trooper Company",
2833 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2834 Colour = Color(255, 51, 51, 255),
2835 Side = 1,
2836 Rank = 19,
2837 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2838 Regiment = "Riot Trooper",
2839} )
2840
2841TEAM_RIOT_GEN = CreateTeam( "RT General", {
2842 Description = "General of the Riot Trooper Company",
2843 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2844 Colour = Color(255, 51, 51, 255),
2845 Side = 1,
2846 Rank = 20,
2847 Model = "models/sono/swbf3/shadow.mdl",
2848 Regiment = "Riot Trooper",
2849} )
2850
2851TEAM_VF_PVT = CreateTeam( "VF Private", {
2852 Description = "Member of the Vader's Fist Trooper Battalion",
2853 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2854 Colour = Color(51, 51, 255, 255),
2855 Side = 1,
2856 Rank = 1,
2857 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2858 Regiment = "Vader's Fist Trooper",
2859} )
2860
2861TEAM_VF_PFC = CreateTeam( "VF Private First Class", {
2862 Description = "Member of the Vader's Fist Trooper Battalion",
2863 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2864 Colour = Color(51, 51, 255, 255),
2865 Side = 1,
2866 Rank = 2,
2867 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2868 Regiment = "Vader's Fist Trooper",
2869} )
2870
2871TEAM_VF_LCPL = CreateTeam( "VF Lance Corporal", {
2872 Description = "Member of the Vader's Fist Trooper Battalion",
2873 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2874 Colour = Color(51, 51, 255, 255),
2875 Side = 1,
2876 Rank = 3,
2877 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2878 Regiment = "Vader's Fist Trooper",
2879} )
2880
2881TEAM_VF_CPL = CreateTeam( "VF Corporal", {
2882 Description = "Member of the Vader's Fist Trooper Battalion",
2883 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2884 Colour = Color(51, 51, 255, 255),
2885 Side = 1,
2886 Rank = 4,
2887 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2888 Regiment = "Vader's Fist Trooper",
2889} )
2890
2891TEAM_VF_SGT = CreateTeam( "VF Sergeant", {
2892 Description = "Member of the Vader's Fist Trooper Battalion",
2893 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2894 Colour = Color(51, 51, 255, 255),
2895 Side = 1,
2896 Rank = 5,
2897 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2898 Regiment = "Vader's Fist Trooper",
2899} )
2900
2901TEAM_VF_SSGT = CreateTeam( "VF Staff Sergeant", {
2902 Description = "Member of the Vader's Fist Trooper Battalion",
2903 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2904 Colour = Color(51, 51, 255, 255),
2905 Side = 1,
2906 Rank = 6,
2907 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2908 Regiment = "Vader's Fist Trooper",
2909} )
2910
2911TEAM_VF_MSGT = CreateTeam( "VF Master Sergeant", {
2912 Description = "Member of the Vader's Fist Trooper Battalion",
2913 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2914 Colour = Color(51, 51, 255, 255),
2915 Side = 1,
2916 Rank = 7,
2917 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2918 Regiment = "Vader's Fist Trooper",
2919} )
2920
2921TEAM_VF_OFFICERCADET = CreateTeam( "VF Officer Cadet", {
2922 Description = "Member of the Vader's Fist Trooper Battalion",
2923 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2924 Colour = Color(51, 51, 255, 255),
2925 Side = 1,
2926 Rank = 8,
2927 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2928 Regiment = "Vader's Fist Trooper",
2929} )
2930
2931TEAM_VF_WO = CreateTeam( "VF Warrant Officer", {
2932 Description = "Member of the Vader's Fist Trooper Battalion",
2933 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2934 Colour = Color(51, 51, 255, 255),
2935 Side = 1,
2936 Rank = 9,
2937 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2938 Regiment = "Vader's Fist Trooper",
2939} )
2940
2941TEAM_VF_LT = CreateTeam( "VF Lieutenant", {
2942 Description = "Member of the Vader's Fist Trooper Battalion",
2943 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2944 Colour = Color(51, 51, 255, 255),
2945 Side = 1,
2946 Rank = 10,
2947 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2948 Regiment = "Vader's Fist Trooper",
2949} )
2950
2951TEAM_VF_FLT = CreateTeam( "VF First Lieutenant", {
2952 Description = "Member of the Vader's Fist Trooper Battalion",
2953 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2954 Colour = Color(51, 51, 255, 255),
2955 Side = 1,
2956 Rank = 11,
2957 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2958 Regiment = "Vader's Fist Trooper",
2959} )
2960
2961TEAM_VF_CAPT = CreateTeam( "VF Captain", {
2962 Description = "Member of the Vader's Fist Trooper Battalion",
2963 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2964 Colour = Color(51, 51, 255, 255),
2965 Side = 1,
2966 Rank = 12,
2967 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2968 Regiment = "Vader's Fist Trooper",
2969} )
2970
2971TEAM_VF_MAJ = CreateTeam( "VF Major", {
2972 Description = "Member of the Vader's Fist Trooper Battalion",
2973 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2974 Colour = Color(51, 51, 255, 255),
2975 Side = 1,
2976 Rank = 13,
2977 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2978 Regiment = "Vader's Fist Trooper",
2979} )
2980
2981TEAM_VF_COLO = CreateTeam( "VF Colonel", {
2982 Description = "Member of the Vader's Fist Trooper Battalion",
2983 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2984 Colour = Color(51, 51, 255, 255),
2985 Side = 1,
2986 Rank = 14,
2987 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2988 Regiment = "Vader's Fist Trooper",
2989} )
2990
2991TEAM_VF_HCOLO = CreateTeam( "VF High Colonel", {
2992 Description = "Member of the Vader's Fist Trooper Battalion",
2993 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2994 Colour = Color(51, 51, 255, 255),
2995 Side = 1,
2996 Rank = 15,
2997 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2998 Regiment = "Vader's Fist Trooper",
2999} )
3000
3001TEAM_VF_CMD = CreateTeam( "VF Commander", {
3002 Description = "Commander of the Vader's Fist Trooper Battalion",
3003 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c", "tfa_sw_dc17dual"},
3004 Colour = Color(51, 51, 255, 255),
3005 Side = 1,
3006 Rank = 16,
3007 Model = "models/player/venator/tk_arc/tk_vertigo.mdl",
3008 Regiment = "Vader's Fist Trooper",
3009} )
3010
3011TEAM_VF_BRIG = CreateTeam( "VF Brigadier", {
3012 Description = "Commander of the Vader's Fist Trooper Battalion",
3013 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c", "tfa_sw_dc17dual"},
3014 Colour = Color(51, 51, 255, 255),
3015 Side = 1,
3016 Rank = 17,
3017 Model = "models/player/venator/501st_stormtrooper/501st_stormtrooper.mdl",
3018 Regiment = "Vader's Fist Trooper",
3019} )
3020
3021TEAM_VF_MAJG = CreateTeam( "VF Major General", {
3022 Description = "Commander of the Vader's Fist Trooper Battalion",
3023 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c", "tfa_sw_dc17dual"},
3024 Colour = Color(51, 51, 255, 255),
3025 Side = 1,
3026 Rank = 18,
3027 Model = "models/player/venator/501st_stormtrooper/501st_stormtrooper.mdl",
3028 Regiment = "Vader's Fist Trooper",
3029} )
3030
3031TEAM_VF_LTG = CreateTeam( "VF Lieutenant General", {
3032 Description = "Commander of the Vader's Fist Trooper Battalion",
3033 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c", "tfa_sw_dc17dual"},
3034 Colour = Color(51, 51, 255, 255),
3035 Side = 1,
3036 Rank = 19,
3037 Model = "models/player/venator/501st_stormtrooper/501st_stormtrooper.mdl",
3038 Regiment = "Vader's Fist Trooper",
3039} )
3040
3041TEAM_VF_GEN = CreateTeam( "VF General", {
3042 Description = "General of the Vader's Fist Trooper Battalion",
3043 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c", "tfa_sw_dc17dual"},
3044 Colour = Color(51, 51, 255, 255),
3045 Side = 1,
3046 Rank = 20,
3047 Model = "models/sono/swbf3/shadow.mdl",
3048 Regiment = "Vader's Fist Trooper",
3049} )
3050
3051TEAM_TERROR_PVT = CreateTeam( "TT Private", {
3052 Description = "Member of the Terror Trooper Squad",
3053 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3054 Colour = Color(157, 157, 157, 255),
3055 Side = 1,
3056 Rank = 1,
3057 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3058 Regiment = "Terror Trooper",
3059} )
3060
3061TEAM_TERROR_PFC = CreateTeam( "TT Private First Class", {
3062 Description = "Member of the Terror Trooper Squad",
3063 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3064 Colour = Color(157, 157, 157, 255),
3065 Side = 1,
3066 Rank = 2,
3067 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3068 Regiment = "Terror Trooper",
3069} )
3070
3071TEAM_TERROR_LCPL = CreateTeam( "TT Lance Corporal", {
3072 Description = "Member of the Terror Trooper Squad",
3073 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3074 Colour = Color(157, 157, 157, 255),
3075 Side = 1,
3076 Rank = 3,
3077 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3078 Regiment = "Terror Trooper",
3079} )
3080
3081TEAM_TERROR_CPL = CreateTeam( "TT Corporal", {
3082 Description = "Member of the Terror Trooper Squad",
3083 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3084 Colour = Color(157, 157, 157, 255),
3085 Side = 1,
3086 Rank = 4,
3087 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3088 Regiment = "Terror Trooper",
3089} )
3090
3091TEAM_TERROR_SGT = CreateTeam( "TT Sergeant", {
3092 Description = "Member of the Terror Trooper Squad",
3093 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3094 Colour = Color(157, 157, 157, 255),
3095 Side = 1,
3096 Rank = 5,
3097 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3098 Regiment = "Terror Trooper",
3099} )
3100
3101TEAM_TERROR_SSGT = CreateTeam( "TT Staff Sergeant", {
3102 Description = "Member of the Terror Trooper Squad",
3103 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3104 Colour = Color(157, 157, 157, 255),
3105 Side = 1,
3106 Rank = 6,
3107 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3108 Regiment = "Terror Trooper",
3109} )
3110
3111TEAM_TERROR_MSGT = CreateTeam( "TT Master Sergeant", {
3112 Description = "Member of the Terror Trooper Squad",
3113 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3114 Colour = Color(157, 157, 157, 255),
3115 Side = 1,
3116 Rank = 7,
3117 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3118 Regiment = "Terror Trooper",
3119} )
3120
3121TEAM_TERROR_OFFICERCADET = CreateTeam( "TT Officer Cadet", {
3122 Description = "Member of the Terror Trooper Squad",
3123 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3124 Colour = Color(157, 157, 157, 255),
3125 Side = 1,
3126 Rank = 8,
3127 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3128 Regiment = "Terror Trooper",
3129} )
3130
3131TEAM_TERROR_WO = CreateTeam( "TT Warrant Officer", {
3132 Description = "Member of the Terror Trooper Squad",
3133 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3134 Colour = Color(157, 157, 157, 255),
3135 Side = 1,
3136 Rank = 9,
3137 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3138 Regiment = "Terror Trooper",
3139} )
3140
3141TEAM_TERROR_LT = CreateTeam( "TT Lieutenant", {
3142 Description = "Member of the Terror Trooper Squad",
3143 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3144 Colour = Color(157, 157, 157, 255),
3145 Side = 1,
3146 Rank = 10,
3147 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3148 Regiment = "Terror Trooper",
3149} )
3150
3151TEAM_TERROR_FLT = CreateTeam( "TT First Lieutenant", {
3152 Description = "Member of the Terror Trooper Squad",
3153 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3154 Colour = Color(157, 157, 157, 255),
3155 Side = 1,
3156 Rank = 11,
3157 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3158 Regiment = "Terror Trooper",
3159} )
3160
3161TEAM_TERROR_CAPT = CreateTeam( "TT Captain", {
3162 Description = "Member of the Terror Trooper Squad",
3163 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3164 Colour = Color(157, 157, 157, 255),
3165 Side = 1,
3166 Rank = 12,
3167 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3168 Regiment = "Terror Trooper",
3169} )
3170
3171TEAM_TERROR_MAJ = CreateTeam( "TT Major", {
3172 Description = "Member of the Terror Trooper Squad",
3173 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3174 Colour = Color(157, 157, 157, 255),
3175 Side = 1,
3176 Rank = 13,
3177 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3178 Regiment = "Terror Trooper",
3179} )
3180
3181TEAM_TERROR_COLO = CreateTeam( "TT Colonel", {
3182 Description = "Member of the Terror Trooper Squad",
3183 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3184 Colour = Color(157, 157, 157, 255),
3185 Side = 1,
3186 Rank = 14,
3187 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3188 Regiment = "Terror Trooper",
3189} )
3190
3191TEAM_TERROR_HCOLO = CreateTeam( "TT High Colonel", {
3192 Description = "Member of the Terror Trooper Squad",
3193 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3194 Colour = Color(157, 157, 157, 255),
3195 Side = 1,
3196 Rank = 15,
3197 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3198 Regiment = "Terror Trooper",
3199} )
3200
3201TEAM_TERROR_CMD = CreateTeam( "TT Commander", {
3202 Description = "Commander of the Terror Trooper Squad",
3203 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3204 Colour = Color(157, 157, 157, 255),
3205 Side = 1,
3206 Rank = 16,
3207 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3208 Regiment = "Terror Trooper",
3209} )
3210
3211TEAM_TERROR_BRIG = CreateTeam( "TT Brigadier", {
3212 Description = "Commander of the Terror Trooper Squad",
3213 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3214 Colour = Color(157, 157, 157, 255),
3215 Side = 1,
3216 Rank = 17,
3217 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3218 Regiment = "Terror Trooper",
3219} )
3220
3221TEAM_TERROR_MAJG = CreateTeam( "TT Major General", {
3222 Description = "Commander of the Terror Trooper Squad",
3223 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3224 Colour = Color(157, 157, 157, 255),
3225 Side = 1,
3226 Rank = 18,
3227 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3228 Regiment = "Terror Trooper",
3229} )
3230
3231TEAM_TERROR_LTG = CreateTeam( "TT Lieutenant General", {
3232 Description = "Commander of the Terror Trooper Squad",
3233 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3234 Colour = Color(157, 157, 157, 255),
3235 Side = 1,
3236 Rank = 19,
3237 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3238 Regiment = "Terror Trooper",
3239} )
3240
3241TEAM_TERROR_GEN = CreateTeam( "TT General", {
3242 Description = "General of the Terror Trooper Squad",
3243 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3244 Colour = Color(157, 157, 157, 255),
3245 Side = 1,
3246 Rank = 20,
3247 Model = "models/sono/swbf3/shadow.mdl",
3248 Regiment = "Terror Trooper",
3249} )
3250
3251TEAM_MAGMA_PVT = CreateTeam( "MG Private", {
3252 Description = "Member of the Magma Trooper Battalion",
3253 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3254 Colour = Color(182, 255, 0, 255),
3255 Side = 1,
3256 Rank = 1,
3257 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3258 Regiment = "Magma Trooper",
3259} )
3260
3261TEAM_MAGMA_PFC = CreateTeam( "MG Private First Class", {
3262 Description = "Member of the Magma Trooper Battalion",
3263 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3264 Colour = Color(182, 255, 0, 255),
3265 Side = 1,
3266 Rank = 2,
3267 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3268 Regiment = "Magma Trooper",
3269} )
3270
3271TEAM_MAGMA_LCPL = CreateTeam( "MG Lance Corporal", {
3272 Description = "Member of the Magma Trooper Battalion",
3273 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3274 Colour = Color(182, 255, 0, 255),
3275 Side = 1,
3276 Rank = 3,
3277 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3278 Regiment = "Magma Trooper",
3279} )
3280
3281TEAM_MAGMA_CPL = CreateTeam( "MG Corporal", {
3282 Description = "Member of the Magma Trooper Battalion",
3283 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3284 Colour = Color(182, 255, 0, 255),
3285 Side = 1,
3286 Rank = 4,
3287 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3288 Regiment = "Magma Trooper",
3289} )
3290
3291TEAM_MAGMA_SGT = CreateTeam( "MG Sergeant", {
3292 Description = "Member of the Magma Trooper Battalion",
3293 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3294 Colour = Color(182, 255, 0, 255),
3295 Side = 1,
3296 Rank = 5,
3297 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3298 Regiment = "Magma Trooper",
3299} )
3300
3301TEAM_MAGMA_SSGT = CreateTeam( "MG Staff Sergeant", {
3302 Description = "Member of the Magma Trooper Battalion",
3303 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3304 Colour = Color(182, 255, 0, 255),
3305 Side = 1,
3306 Rank = 6,
3307 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3308 Regiment = "Magma Trooper",
3309} )
3310
3311TEAM_MAGMA_MSGT = CreateTeam( "MG Master Sergeant", {
3312 Description = "Member of the Magma Trooper Battalion",
3313 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3314 Colour = Color(182, 255, 0, 255),
3315 Side = 1,
3316 Rank = 7,
3317 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3318 Regiment = "Magma Trooper",
3319} )
3320
3321TEAM_MAGMA_OFFICERCADET = CreateTeam( "MG Officer Cadet", {
3322 Description = "Member of the Magma Trooper Battalion",
3323 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3324 Colour = Color(182, 255, 0, 255),
3325 Side = 1,
3326 Rank = 8,
3327 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3328 Regiment = "Magma Trooper",
3329} )
3330
3331TEAM_MAGMA_WO = CreateTeam( "MG Warrant Officer", {
3332 Description = "Member of the Magma Trooper Battalion",
3333 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3334 Colour = Color(182, 255, 0, 255),
3335 Side = 1,
3336 Rank = 9,
3337 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3338 Regiment = "Magma Trooper",
3339} )
3340
3341TEAM_MAGMA_LT = CreateTeam( "MG Lieutenant", {
3342 Description = "Member of the Magma Trooper Battalion",
3343 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3344 Colour = Color(182, 255, 0, 255),
3345 Side = 1,
3346 Rank = 10,
3347 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3348 Regiment = "Magma Trooper",
3349} )
3350
3351TEAM_MAGMA_FLT = CreateTeam( "MG First Lieutenant", {
3352 Description = "Member of the Magma Trooper Battalion",
3353 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3354 Colour = Color(182, 255, 0, 255),
3355 Side = 1,
3356 Rank = 11,
3357 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3358 Regiment = "Magma Trooper",
3359} )
3360
3361TEAM_MAGMA_CAPT = CreateTeam( "MG Captain", {
3362 Description = "Member of the Magma Trooper Battalion",
3363 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3364 Colour = Color(182, 255, 0, 255),
3365 Side = 1,
3366 Rank = 12,
3367 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3368 Regiment = "Magma Trooper",
3369} )
3370
3371TEAM_MAGMA_MAJ = CreateTeam( "MG Major", {
3372 Description = "Member of the Magma Trooper Battalion",
3373 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3374 Colour = Color(182, 255, 0, 255),
3375 Side = 1,
3376 Rank = 13,
3377 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3378 Regiment = "Magma Trooper",
3379} )
3380
3381TEAM_MAGMA_COLO = CreateTeam( "MG Colonel", {
3382 Description = "Member of the Magma Trooper Battalion",
3383 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3384 Colour = Color(182, 255, 0, 255),
3385 Side = 1,
3386 Rank = 14,
3387 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3388 Regiment = "Magma Trooper",
3389} )
3390
3391TEAM_MAGMA_HCOLO = CreateTeam( "MG High Colonel", {
3392 Description = "Member of the Magma Trooper Battalion",
3393 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3394 Colour = Color(182, 255, 0, 255),
3395 Side = 1,
3396 Rank = 15,
3397 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3398 Regiment = "Magma Trooper",
3399} )
3400
3401TEAM_MAGMA_CMD = CreateTeam( "MG Commander", {
3402 Description = "Commander of the Magma Trooper Battalion",
3403 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3404 Colour = Color(182, 255, 0, 255),
3405 Side = 1,
3406 Rank = 16,
3407 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3408 Regiment = "Magma Trooper",
3409} )
3410
3411TEAM_MAGMA_BRIG = CreateTeam( "MG Brigadier", {
3412 Description = "Commander of the Magma Trooper Battalion",
3413 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3414 Colour = Color(182, 255, 0, 255),
3415 Side = 1,
3416 Rank = 17,
3417 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3418 Regiment = "Magma Trooper",
3419} )
3420
3421TEAM_MAGMA_MAJG = CreateTeam( "MG Major General", {
3422 Description = "Commander of the Magma Trooper Battalion",
3423 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3424 Colour = Color(182, 255, 0, 255),
3425 Side = 1,
3426 Rank = 18,
3427 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3428 Regiment = "Magma Trooper",
3429} )
3430
3431TEAM_MAGMA_LTG = CreateTeam( "MG Lieutenant General", {
3432 Description = "Commander of the Magma Trooper Battalion",
3433 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3434 Colour = Color(182, 255, 0, 255),
3435 Side = 1,
3436 Rank = 19,
3437 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3438 Regiment = "Magma Trooper",
3439} )
3440
3441TEAM_MAGMA_GEN = CreateTeam( "MG General", {
3442 Description = "General of the Magma Trooper Battalion",
3443 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3444 Colour = Color(182, 255, 0, 255),
3445 Side = 1,
3446 Rank = 20,
3447 Model = "models/sono/swbf3/shadow.mdl",
3448 Regiment = "Magma Trooper",
3449} )
3450
3451TEAM_IMPERIALCOMMANDO_PVT = CreateTeam( "IC Private", {
3452 Description = "Member of the Imperial Commando Unit",
3453 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3454 Colour = Color(82, 173, 239, 255),
3455 Side = 1,
3456 Rank = 1,
3457 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3458 Regiment = "Imperial Commando",
3459} )
3460
3461TEAM_IMPERIALCOMMANDO_PFC = CreateTeam( "IC Private First Class", {
3462 Description = "Member of the Imperial Commando Unit",
3463 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3464 Colour = Color(82, 173, 239, 255),
3465 Side = 1,
3466 Rank = 2,
3467 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3468 Regiment = "Imperial Commando",
3469} )
3470
3471TEAM_IMPERIALCOMMANDO_LCPL = CreateTeam( "IC Lance Corporal", {
3472 Description = "Member of the Imperial Commando Unit",
3473 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3474 Colour = Color(82, 173, 239, 255),
3475 Side = 1,
3476 Rank = 3,
3477 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3478 Regiment = "Imperial Commando",
3479} )
3480
3481TEAM_IMPERIALCOMMANDO_CPL = CreateTeam( "IC Corporal", {
3482 Description = "Member of the Imperial Commando Unit",
3483 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3484 Colour = Color(82, 173, 239, 255),
3485 Side = 1,
3486 Rank = 4,
3487 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3488 Regiment = "Imperial Commando",
3489} )
3490
3491TEAM_IMPERIALCOMMANDO_SGT = CreateTeam( "IC Sergeant", {
3492 Description = "Member of the Imperial Commando Unit",
3493 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3494 Colour = Color(82, 173, 239, 255),
3495 Side = 1,
3496 Rank = 5,
3497 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3498 Regiment = "Imperial Commando",
3499} )
3500
3501TEAM_IMPERIALCOMMANDO_SSGT = CreateTeam( "IC Staff Sergeant", {
3502 Description = "Member of the Imperial Commando Unit",
3503 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3504 Colour = Color(82, 173, 239, 255),
3505 Side = 1,
3506 Rank = 6,
3507 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3508 Regiment = "Imperial Commando",
3509} )
3510
3511TEAM_IMPERIALCOMMANDO_MSGT = CreateTeam( "IC Master Sergeant", {
3512 Description = "Member of the Imperial Commando Unit",
3513 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3514 Colour = Color(82, 173, 239, 255),
3515 Side = 1,
3516 Rank = 7,
3517 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3518 Regiment = "Imperial Commando",
3519} )
3520
3521TEAM_IMPERIALCOMMANDO_OFFICERCADET = CreateTeam( "IC Officer Cadet", {
3522 Description = "Member of the Imperial Commando Unit",
3523 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3524 Colour = Color(82, 173, 239, 255),
3525 Side = 1,
3526 Rank = 8,
3527 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3528 Regiment = "Imperial Commando",
3529} )
3530
3531TEAM_IMPERIALCOMMANDO_WO = CreateTeam( "IC Warrant Officer", {
3532 Description = "Member of the Imperial Commando Unit",
3533 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3534 Colour = Color(82, 173, 239, 255),
3535 Side = 1,
3536 Rank = 9,
3537 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3538 Regiment = "Imperial Commando",
3539} )
3540
3541TEAM_IMPERIALCOMMANDO_LT = CreateTeam( "IC Lieutenant", {
3542 Description = "Member of the Imperial Commando Unit",
3543 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3544 Colour = Color(82, 173, 239, 255),
3545 Side = 1,
3546 Rank = 10,
3547 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3548 Regiment = "Imperial Commando",
3549} )
3550
3551TEAM_IMPERIALCOMMANDO_FLT = CreateTeam( "IC First Lieutenant", {
3552 Description = "Member of the Imperial Commando Unit",
3553 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3554 Colour = Color(82, 173, 239, 255),
3555 Side = 1,
3556 Rank = 11,
3557 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3558 Regiment = "Imperial Commando",
3559} )
3560
3561TEAM_IMPERIALCOMMANDO_CAPT = CreateTeam( "IC Captain", {
3562 Description = "Member of the Imperial Commando Unit",
3563 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3564 Colour = Color(82, 173, 239, 255),
3565 Side = 1,
3566 Rank = 12,
3567 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3568 Regiment = "Imperial Commando",
3569} )
3570
3571TEAM_IMPERIALCOMMANDO_MAJ = CreateTeam( "IC Major", {
3572 Description = "Member of the Imperial Commando Unit",
3573 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3574 Colour = Color(82, 173, 239, 255),
3575 Side = 1,
3576 Rank = 13,
3577 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3578 Regiment = "Imperial Commando",
3579} )
3580
3581TEAM_IMPERIALCOMMANDO_LCOLO = CreateTeam( "IC Lieutenant Colonel", {
3582 Description = "Member of the Imperial Commando Unit",
3583 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3584 Colour = Color(82, 173, 239, 255),
3585 Side = 1,
3586 Rank = 15,
3587 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3588 Regiment = "Imperial Commando",
3589} )
3590
3591TEAM_IMPERIALCOMMANDO_COLO = CreateTeam( "IC Colonel", {
3592 Description = "Member of the Imperial Commando Unit",
3593 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3594 Colour = Color(82, 173, 239, 255),
3595 Side = 1,
3596 Rank = 14,
3597 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3598 Regiment = "Imperial Commando",
3599} )
3600
3601TEAM_IMPERIALCOMMANDO_CMD = CreateTeam( "IC Commander", {
3602 Description = "Commander of the Imperial Commando Unit",
3603 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3604 Colour = Color(82, 173, 239, 255),
3605 Side = 1,
3606 Rank = 16,
3607 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3608 Regiment = "Imperial Commando",
3609} )
3610
3611TEAM_IMPERIALCOMMANDO_BRIG = CreateTeam( "IC Brigadier", {
3612 Description = "Commander of the Imperial Commando Unit",
3613 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3614 Colour = Color(82, 173, 239, 255),
3615 Side = 1,
3616 Rank = 17,
3617 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3618 Regiment = "Imperial Commando",
3619} )
3620
3621TEAM_IMPERIALCOMMANDO_MAJG = CreateTeam( "IC Major General", {
3622 Description = "Commander of the Imperial Commando Unit",
3623 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3624 Colour = Color(82, 173, 239, 255),
3625 Side = 1,
3626 Rank = 18,
3627 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3628 Regiment = "Imperial Commando",
3629} )
3630
3631TEAM_IMPERIALCOMMANDO_LTG = CreateTeam( "IC Lieutenant General", {
3632 Description = "Commander of the Imperial Commando Unit",
3633 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3634 Colour = Color(82, 173, 239, 255),
3635 Side = 1,
3636 Rank = 19,
3637 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3638 Regiment = "Imperial Commando",
3639} )
3640
3641TEAM_IMPERIALCOMMANDO_GEN = CreateTeam( "IC General", {
3642 Description = "General of the Imperial Commando Unit",
3643 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c", "zeus_flashbang"},
3644 Colour = Color(82, 173, 239, 255),
3645 Side = 1,
3646 Rank = 20,
3647 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3648 Regiment = "Imperial Commando",
3649} )
3650
3651TEAM_CIC_PVT = CreateTeam( "CIC Private", {
3652 Description = "General of the Imperial Commando Unit",
3653 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3654 Colour = Color(82, 173, 239, 255),
3655 Side = 1,
3656 Rank = 1,
3657 Model = "models/player/omega/starwars/2.mdl",
3658 Regiment = "Cinder Squad",
3659} )
3660
3661TEAM_CIC_PFC = CreateTeam( "CIC Private First Class", {
3662 Description = "General of the Imperial Commando Unit",
3663 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3664 Colour = Color(82, 173, 239, 255),
3665 Side = 1,
3666 Rank = 2,
3667 Model = "models/player/omega/starwars/2.mdl",
3668 Regiment = "Cinder Squad",
3669} )
3670
3671TEAM_CIC_LCPL = CreateTeam( "CIC Lance Corporal", {
3672 Description = "General of the Imperial Commando Unit",
3673 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3674 Colour = Color(82, 173, 239, 255),
3675 Side = 1,
3676 Rank = 3,
3677 Model = "models/player/omega/starwars/2.mdl",
3678 Regiment = "Cinder Squad",
3679} )
3680
3681TEAM_CIC_CPL = CreateTeam( "CIC Corporal", {
3682 Description = "General of the Imperial Commando Unit",
3683 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3684 Colour = Color(82, 173, 239, 255),
3685 Side = 1,
3686 Rank = 4,
3687 Model = "models/player/omega/starwars/2.mdl",
3688 Regiment = "Cinder Squad",
3689} )
3690
3691TEAM_CIC_SGT = CreateTeam( "CIC Sergeant", {
3692 Description = "General of the Imperial Commando Unit",
3693 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3694 Colour = Color(82, 173, 239, 255),
3695 Side = 1,
3696 Rank = 5,
3697 Model = "models/player/omega/starwars/2.mdl",
3698 Regiment = "Cinder Squad",
3699} )
3700
3701TEAM_CIC_SSGT = CreateTeam( "CIC Staff Sergeant", {
3702 Description = "General of the Imperial Commando Unit",
3703 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3704 Colour = Color(82, 173, 239, 255),
3705 Side = 1,
3706 Rank = 6,
3707 Model = "models/player/omega/starwars/2.mdl",
3708 Regiment = "Cinder Squad",
3709} )
3710
3711TEAM_CIC_MSGT = CreateTeam( "CIC Master Sergeant", {
3712 Description = "General of the Imperial Commando Unit",
3713 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3714 Colour = Color(82, 173, 239, 255),
3715 Side = 1,
3716 Rank = 7,
3717 Model = "models/player/omega/starwars/2.mdl",
3718 Regiment = "Cinder Squad",
3719} )
3720
3721TEAM_CIC_WO = CreateTeam( "CIC Warrant Officer", {
3722 Description = "General of the Imperial Commando Unit",
3723 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3724 Colour = Color(82, 173, 239, 255),
3725 Side = 1,
3726 Rank = 8,
3727 Model = "models/player/omega/starwars/2.mdl",
3728 Regiment = "Cinder Squad",
3729} )
3730
3731TEAM_CIC_OC = CreateTeam( "CIC Officer Cadet", {
3732 Description = "General of the Imperial Commando Unit",
3733 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3734 Colour = Color(82, 173, 239, 255),
3735 Side = 1,
3736 Rank = 9,
3737 Model = "models/player/omega/starwars/2.mdl",
3738 Regiment = "Cinder Squad",
3739} )
3740
3741TEAM_CIC_2LT = CreateTeam( "CIC Second Lieutenant", {
3742 Description = "General of the Imperial Commando Unit",
3743 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3744 Colour = Color(82, 173, 239, 255),
3745 Side = 1,
3746 Rank = 10,
3747 Model = "models/player/omega/starwars/2.mdl",
3748 Regiment = "Cinder Squad",
3749} )
3750
3751TEAM_CIC_1LT = CreateTeam( "CIC 1st Lieutenant", {
3752 Description = "General of the Imperial Commando Unit",
3753 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3754 Colour = Color(82, 173, 239, 255),
3755 Side = 1,
3756 Rank = 11,
3757 Model = "models/player/omega/starwars/2.mdl",
3758 Regiment = "Cinder Squad",
3759} )
3760
3761TEAM_CIC_CPT = CreateTeam( "CIC Captain", {
3762 Description = "General of the Imperial Commando Unit",
3763 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3764 Colour = Color(82, 173, 239, 255),
3765 Side = 1,
3766 Rank = 12,
3767 Model = "models/player/omega/starwars/2.mdl",
3768 Regiment = "Cinder Squad",
3769} )
3770
3771TEAM_CIC_MJR = CreateTeam( "CIC Major", {
3772 Description = "General of the Imperial Commando Unit",
3773 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3774 Colour = Color(82, 173, 239, 255),
3775 Side = 1,
3776 Rank = 13,
3777 Model = "models/player/omega/starwars/2.mdl",
3778 Regiment = "Cinder Squad",
3779} )
3780
3781TEAM_CIC_LCOLO = CreateTeam( "CIC Lieutenant Colonel", {
3782 Description = "General of the Imperial Commando Unit",
3783 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3784 Colour = Color(82, 173, 239, 255),
3785 Side = 1,
3786 Rank = 14,
3787 Model = "models/player/omega/starwars/2.mdl",
3788 Regiment = "Cinder Squad",
3789} )
3790
3791TEAM_CIC_COLO = CreateTeam( "CIC Colonel", {
3792 Description = "General of the Imperial Commando Unit",
3793 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3794 Colour = Color(82, 173, 239, 255),
3795 Side = 1,
3796 Rank = 15,
3797 Model = "models/player/omega/starwars/2.mdl",
3798 Regiment = "Cinder Squad",
3799} )
3800
3801TEAM_CIC_CMD = CreateTeam( "CIC Commander", {
3802 Description = "General of the Imperial Commando Unit",
3803 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3804 Colour = Color(82, 173, 239, 255),
3805 Side = 1,
3806 Rank = 16,
3807 Model = "models/player/omega/starwars/2.mdl",
3808 Regiment = "Cinder Squad",
3809} )
3810
3811TEAM_CIC_BRIG = CreateTeam( "CIC Brigadier", {
3812 Description = "General of the Imperial Commando Unit",
3813 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3814 Colour = Color(82, 173, 239, 255),
3815 Side = 1,
3816 Rank = 17,
3817 Model = "models/player/omega/starwars/2.mdl",
3818 Regiment = "Cinder Squad",
3819} )
3820
3821TEAM_CIC_MAJG = CreateTeam( "CIC Major General", {
3822 Description = "General of the Imperial Commando Unit",
3823 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3824 Colour = Color(82, 173, 239, 255),
3825 Side = 1,
3826 Rank = 18,
3827 Model = "models/player/omega/starwars/2.mdl",
3828 Regiment = "Cinder Squad",
3829} )
3830
3831TEAM_CIC_LTG = CreateTeam( "CIC Lieutenant General", {
3832 Description = "General of the Imperial Commando Unit",
3833 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3834 Colour = Color(82, 173, 239, 255),
3835 Side = 1,
3836 Rank = 19,
3837 Model = "models/player/omega/starwars/2.mdl",
3838 Regiment = "Cinder Squad",
3839} )
3840
3841TEAM_CIC_GEN = CreateTeam( "CIC General", {
3842 Description = "General of the Imperial Commando Unit",
3843 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3844 Colour = Color(82, 173, 239, 255),
3845 Side = 1,
3846 Rank = 20,
3847 Model = "models/player/omega/starwars/2.mdl",
3848 Regiment = "Cinder Squad",
3849} )
3850
3851TEAM_NAVY_JCREW = CreateTeam( "Navy Junior Crewman", {
3852 Description = "Member of the Navy",
3853 Weapons = {"weapon_dt12", "tfa_swch_dh17", "tfa_swch_e11"},
3854 Colour = Color(102, 102, 0, 255),
3855 Side = 1,
3856 Rank = 1,
3857 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3858 Regiment = "Navy",
3859} )
3860
3861TEAM_NAVY_CREW = CreateTeam( "Navy Crewman", {
3862 Description = "Member of the Navy",
3863 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3864 Colour = Color(102, 102, 0, 255),
3865 Side = 1,
3866 Rank = 2,
3867 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3868 Regiment = "Navy",
3869} )
3870
3871TEAM_NAVY_ACREW = CreateTeam( "Navy Able Crewman", {
3872 Description = "Member of the Navy",
3873 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3874 Colour = Color(102, 102, 0, 255),
3875 Side = 1,
3876 Rank = 3,
3877 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3878 Regiment = "Navy",
3879} )
3880
3881TEAM_NAVY_SCREW = CreateTeam( "Navy Senior Crewman", {
3882 Description = "Member of the Navy",
3883 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3884 Colour = Color(102, 102, 0, 255),
3885 Side = 1,
3886 Rank = 4,
3887 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3888 Regiment = "Navy",
3889} )
3890
3891TEAM_NAVY_LCREW = CreateTeam( "Navy Leading Crewman", {
3892 Description = "Member of the Navy",
3893 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3894 Colour = Color(102, 102, 0, 255),
3895 Side = 1,
3896 Rank = 5,
3897 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3898 Regiment = "Navy",
3899} )
3900
3901TEAM_NAVY_CHIEF = CreateTeam( "Navy Chief", {
3902 Description = "Member of the Navy",
3903 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3904 Colour = Color(102, 102, 0, 255),
3905 Side = 1,
3906 Rank = 6,
3907 Model = "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl",
3908 Regiment = "Navy",
3909} )
3910
3911TEAM_NAVY_MCHIEF = CreateTeam( "Navy Master Chief", {
3912 Description = "Member of the Navy",
3913 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3914 Colour = Color(102, 102, 0, 255),
3915 Side = 1,
3916 Rank = 7,
3917 Model = "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl",
3918 Regiment = "Navy",
3919} )
3920
3921TEAM_NAVY_OFFICERCADET = CreateTeam( "Navy Officer Cadet", {
3922 Description = "Member of the Navy",
3923 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3924 Colour = Color(102, 102, 0, 255),
3925 Side = 1,
3926 Rank = 8,
3927 Model = "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl",
3928 Regiment = "Navy",
3929} )
3930
3931TEAM_NAVY_ENSIGN = CreateTeam( "Navy Ensign", {
3932 Description = "Member of the Navy",
3933 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3934 Colour = Color(102, 102, 0, 255),
3935 Side = 1,
3936 Rank = 9,
3937 Model = "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl",
3938 Regiment = "Navy",
3939} )
3940
3941TEAM_NAVY_POFFICER = CreateTeam( "Navy Petty Officer", {
3942 Description = "Member of the Navy",
3943 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3944 Colour = Color(102, 102, 0, 255),
3945 Side = 1,
3946 Rank = 10,
3947 Model = "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl",
3948 Regiment = "Navy",
3949} )
3950
3951TEAM_NAVY_SLT = CreateTeam( "Navy Sub Lieutenant", {
3952 Description = "Member of the Navy",
3953 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3954 Colour = Color(102, 102, 0, 255),
3955 Side = 1,
3956 Rank = 11,
3957 Model = "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl",
3958 Regiment = "Navy",
3959} )
3960
3961TEAM_NAVY_LT = CreateTeam( "Navy Lieutenant", {
3962 Description = "Member of the Navy",
3963 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3964 Colour = Color(102, 102, 0, 255),
3965 Side = 1,
3966 Rank = 12,
3967 Model = "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl",
3968 Regiment = "Navy",
3969} )
3970
3971TEAM_NAVY_LCMD = CreateTeam( "Navy Lieutenant Commander", {
3972 Description = "Member of the Navy",
3973 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3974 Colour = Color(102, 102, 0, 255),
3975 Side = 1,
3976 Rank = 13,
3977 Model = "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl",
3978 Regiment = "Navy",
3979} )
3980
3981TEAM_NAVY_CMD = CreateTeam( "Navy Commander", {
3982 Description = "Member of the Navy",
3983 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3984 Colour = Color(102, 102, 0, 255),
3985 Side = 1,
3986 Rank = 14,
3987 Model = "models/player/swbf_imperial_officer_admiralv2/swbf_imperial_officer_admiralv2.mdl",
3988 Regiment = "Navy",
3989} )
3990
3991TEAM_NAVY_CAPT = CreateTeam( "Navy Captain", {
3992 Description = "Member of the Navy",
3993 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3994 Colour = Color(102, 102, 0, 255),
3995 Side = 1,
3996 Rank = 15,
3997 Model = "models/player/swbf_imperial_officer_admiralv2/swbf_imperial_officer_admiralv2.mdl",
3998 Regiment = "Navy",
3999} )
4000
4001TEAM_NAVY_LCAPT = CreateTeam( "Navy Line Captain", {
4002 Description = "Officer of the Navy",
4003 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4004 Colour = Color(102, 102, 0, 255),
4005 Side = 1,
4006 Rank = 16,
4007 Model = "models/player/swbf_imperial_officer_admiralv2/swbf_imperial_officer_admiralv2.mdl",
4008 Regiment = "Navy",
4009} )
4010
4011TEAM_NAVY_COMMO = CreateTeam( "Navy Commodore", {
4012 Description = "Officer of the Navy",
4013 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4014 Colour = Color(102, 102, 0, 255),
4015 Side = 1,
4016 Rank = 17,
4017 Model = "models/player/swbf_imperial_officer_admiralv2/swbf_imperial_officer_admiralv2.mdl",
4018 Regiment = "Navy",
4019} )
4020
4021TEAM_NAVY_RADMIRAL = CreateTeam( "Navy Rear Admiral", {
4022 Description = "Admiral of the Navy",
4023 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4024 Colour = Color(102, 102, 0, 255),
4025 Side = 1,
4026 Rank = 18,
4027 Model = "models/player/swbf_imperial_officer_colonelv2/swbf_imperial_officer_colonelv2.mdl",
4028 Regiment = "Navy",
4029} )
4030
4031TEAM_NAVY_VADMIRAL = CreateTeam( "Navy Vice Admiral", {
4032 Description = "Admiral of the Navy",
4033 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4034 Colour = Color(102, 102, 0, 255),
4035 Side = 1,
4036 Rank = 19,
4037 Model = "models/player/swbf_imperial_officer_colonelv2/swbf_imperial_officer_colonelv2.mdl",
4038 Regiment = "Navy",
4039} )
4040
4041TEAM_NAVY_ADMIRAL = CreateTeam( "Navy Admiral", {
4042 Description = "Admiral of the Navy",
4043 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4044 Colour = Color(102, 102, 0, 255),
4045 Side = 1,
4046 Rank = 20,
4047 Model = "models/player/swbf_imperial_officer_colonelv2/swbf_imperial_officer_colonelv2.mdl",
4048 Regiment = "Navy",
4049} )
4050
4051TEAM_NAVY_GADMIRAL = CreateTeam( "Navy Grand Admiral", {
4052 Description = "Grand Admiral of the Navy",
4053 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4054 Colour = Color(102, 102, 0, 255),
4055 Side = 1,
4056 Rank = 21,
4057 Model = "models/player/swbf_imperial_officer_grand_admiralv2/swbf_imperial_officer_grand_admiralv2.mdl",
4058 Regiment = "Navy",
4059} )
4060
4061TEAM_NAVY_MGEN = CreateTeam( "Major General", {
4062 Description = "oversees Ground Command and use of AT-ATs",
4063 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_dt29", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser", "realistic_hook"},
4064 Colour = Color(102, 102, 0, 255),
4065 Side = 1,
4066 Rank = 22,
4067 Model = "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl",
4068 Regiment = "Navy",
4069} )
4070
4071TEAM_NAVY_IEX = CreateTeam( "Imperial Executor", {
4072 Description = "Imperial Executor of the Navy",
4073 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4074 Colour = Color(102, 102, 0, 255),
4075 Side = 1,
4076 Rank = 23,
4077 Model = "models/player/scifi_bill.mdl",
4078 Regiment = "Navy",
4079} )
4080
4081TEAM_NAVY_GADMIRALT = CreateTeam( "Navy Grand Admiral", {
4082 Description = "Grand Admiral of the Navy",
4083 Weapons = {"tfa_swch_dh17", "sswep_thrawn", "tfa_swch_e11"},
4084 Colour = Color(102, 102, 0, 255),
4085 Side = 1,
4086 Rank = 24,
4087 Model = "models/player/valley/thrawn.mdl",
4088 Regiment = "Navy",
4089} )
4090
4091TEAM_NAVY_GMOFFT = CreateTeam( "Navy Grand Moff", {
4092 Description = "Grand Admiral of the Navy",
4093 Weapons = {"tfa_swch_dlt19", "tfa_swch_dh17", "tfa_swch_ee3", "tfa_swch_e11"},
4094 Colour = Color(102, 102, 0, 255),
4095 Side = 1,
4096 Rank = 25,
4097 Model = "models/player/heracles421/tarkin/moff_tarkin.mdl",
4098 Regiment = "Navy",
4099} )
4100
4101TEAM_NAVY_JAN = CreateTeam( "Janitor", {
4102 Description = "Grand Admiral of the Navy",
4103 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4104 Colour = Color(102, 102, 0, 255),
4105 Side = 1,
4106 Rank = 1,
4107 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4108 Regiment = "Navy Engineer",
4109} )
4110
4111TEAM_NAVY_ENG1 = CreateTeam( "Navy Engineer Apprentice", {
4112 Description = "Grand Admiral of the Navy",
4113 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4114 Colour = Color(102, 102, 0, 255),
4115 Side = 1,
4116 Rank = 1,
4117 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4118 Regiment = "Navy Engineer",
4119} )
4120
4121TEAM_NAVY_ENG2 = CreateTeam( "Navy Junior Technican", {
4122 Description = "Grand Admiral of the Navy",
4123 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4124 Colour = Color(102, 102, 0, 255),
4125 Side = 1,
4126 Rank = 2,
4127 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4128 Regiment = "Navy Engineer",
4129} )
4130
4131TEAM_NAVY_ENG3 = CreateTeam( "Navy Technican", {
4132 Description = "Grand Admiral of the Navy",
4133 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4134 Colour = Color(102, 102, 0, 255),
4135 Side = 1,
4136 Rank = 3,
4137 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4138 Regiment = "Navy Engineer",
4139} )
4140
4141TEAM_NAVY_ENG4 = CreateTeam( "Navy Senior Technican", {
4142 Description = "Grand Admiral of the Navy",
4143 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4144 Colour = Color(102, 102, 0, 255),
4145 Side = 1,
4146 Rank = 4,
4147 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4148 Regiment = "Navy Engineer",
4149} )
4150
4151TEAM_NAVY_ENG5 = CreateTeam( "Master Technican", {
4152 Description = "Grand Admiral of the Navy",
4153 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4154 Colour = Color(102, 102, 0, 255),
4155 Side = 1,
4156 Rank = 5,
4157 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4158 Regiment = "Navy Engineer",
4159} )
4160
4161TEAM_NAVY_ENG6 = CreateTeam( "Junior Engineer", {
4162 Description = "Grand Admiral of the Navy",
4163 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4164 Colour = Color(102, 102, 0, 255),
4165 Side = 1,
4166 Rank = 6,
4167 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4168 Regiment = "Navy Engineer",
4169} )
4170
4171TEAM_NAVY_ENG7 = CreateTeam( "Engineer", {
4172 Description = "Grand Admiral of the Navy",
4173 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4174 Colour = Color(102, 102, 0, 255),
4175 Side = 1,
4176 Rank = 7,
4177 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4178 Regiment = "Navy Engineer",
4179} )
4180
4181TEAM_NAVY_ENG8 = CreateTeam( "Chief Engineer", {
4182 Description = "Grand Admiral of the Navy",
4183 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4184 Colour = Color(102, 102, 0, 255),
4185 Side = 1,
4186 Rank = 8,
4187 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4188 Regiment = "Navy Engineer",
4189} )
4190
4191TEAM_NAVY_ENG9 = CreateTeam( "Junior Foreman", {
4192 Description = "Grand Admiral of the Navy",
4193 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4194 Colour = Color(102, 102, 0, 255),
4195 Side = 1,
4196 Rank = 9,
4197 Model = "models/crewman/inferno_squad_crewman.mdl",
4198 Regiment = "Navy Engineer",
4199} )
4200
4201TEAM_NAVY_ENG10 = CreateTeam( "Foreman", {
4202 Description = "Grand Admiral of the Navy",
4203 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4204 Colour = Color(102, 102, 0, 255),
4205 Side = 1,
4206 Rank = 10,
4207 Model = "models/crewman/inferno_squad_crewman.mdl",
4208 Regiment = "Navy Engineer",
4209} )
4210
4211TEAM_NAVY_ENG11 = CreateTeam( "Chief Foreman", {
4212 Description = "Grand Admiral of the Navy",
4213 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4214 Colour = Color(102, 102, 0, 255),
4215 Side = 1,
4216 Rank = 11,
4217 Model = "models/crewman/inferno_squad_crewman.mdl",
4218 Regiment = "Navy Engineer",
4219} )
4220
4221TEAM_NAVY_ENG12 = CreateTeam( "Executive Director", {
4222 Description = "Grand Admiral of the Navy",
4223 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4224 Colour = Color(102, 102, 0, 255),
4225 Side = 1,
4226 Rank = 12,
4227 Model = "models/crewman/inferno_squad_crewman.mdl",
4228 Regiment = "Navy Engineer",
4229} )
4230
4231TEAM_NAVY_ENG13 = CreateTeam( "Engineer Director", {
4232 Description = "Grand Admiral of the Navy",
4233 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4234 Colour = Color(102, 102, 0, 255),
4235 Side = 1,
4236 Rank = 13,
4237 Model = "models/crewman/inferno_squad_crewman.mdl",
4238 Regiment = "Navy Engineer",
4239} )
4240
4241TEAM_OLDISB_JRO = CreateTeam( "OLDISB Junior Operative", {
4242 Description = "Member of the OLDISB",
4243 Weapons = {},
4244 Colour = Color(255, 255, 255, 255),
4245 Side = 1,
4246 Rank = 1,
4247 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
4248 Regiment = "DO NOT USE",
4249} )
4250
4251TEAM_OLDISB_O = CreateTeam( "OLDISB Operative", {
4252 Description = "Member of the OLDISB",
4253 Weapons = {},
4254 Colour = Color(255, 255, 255, 255),
4255 Side = 1,
4256 Rank = 2,
4257 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
4258 Regiment = "DO NOT USE",
4259} )
4260
4261TEAM_OLDISB_SRO = CreateTeam( "OLDISB Senior Operative", {
4262 Description = "Member of the OLDISB",
4263 Weapons = {},
4264 Colour = Color(255, 255, 255, 255),
4265 Side = 1,
4266 Rank = 3,
4267 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
4268 Regiment = "DO NOT USE",
4269} )
4270
4271TEAM_OLDISB_JAG = CreateTeam( "OLDISB Junior Agent", {
4272 Description = "Agent of the OLDISB",
4273 Weapons = {},
4274 Colour = Color(255, 255, 255, 255),
4275 Side = 1,
4276 Rank = 4,
4277 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
4278 Regiment = "DO NOT USE",
4279} )
4280
4281TEAM_OLDISB_A = CreateTeam( "OLDISB Agent", {
4282 Description = "Agent of the OLDISB",
4283 Weapons = {},
4284 Colour = Color(255, 255, 255, 255),
4285 Side = 1,
4286 Rank = 5,
4287 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
4288 Regiment = "DO NOT USE",
4289} )
4290
4291TEAM_OLDISB_SRA = CreateTeam( "OLDISB Special Agent", {
4292 Description = "Agent of the OLDISB",
4293 Weapons = {},
4294 Colour = Color(255, 255, 255, 255),
4295 Side = 1,
4296 Rank = 6,
4297 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
4298 Regiment = "DO NOT USE",
4299} )
4300
4301TEAM_OLDISB_DR = CreateTeam( "OLDISB Director", {
4302 Description = "Director of the OLDISB",
4303 Weapons = {},
4304 Colour = Color(255, 255, 255, 255),
4305 Side = 1,
4306 Rank = 16,
4307 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
4308 Regiment = "DO NOT USE",
4309} )
4310
4311TEAM_OLDISB_DRK = CreateTeam( "OLDISB Director", {
4312 Description = "Director of the OLDISB",
4313 Weapons = {},
4314 Colour = Color(255, 255, 255, 255),
4315 Side = 1,
4316 Rank = 17,
4317 Model = "models/player/hydro/swbf_krennic/swbf_krennic.mdl",
4318 Regiment = "DO NOT USE",
4319} )
4320
4321TEAM_ROYALGUARDOLD_Trainee = CreateTeam( "DO NOT USE", {
4322 Description = "Member Royal Guard Regiment",
4323 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
4324 Colour = Color(255, 51, 51, 255),
4325 Side = 1,
4326 Rank = 1,
4327 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
4328 Regiment = "DO NOT USE",
4329} )
4330
4331TEAM_ROYALGUARDOLD_SGT = CreateTeam( "DO NOT USE", {
4332 Description = "Member Royal Guard Regiment",
4333 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
4334 Colour = Color(255, 51, 51, 255),
4335 Side = 1,
4336 Rank = 2,
4337 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
4338 Regiment = "DO NOT USE",
4339} )
4340
4341TEAM_ROYALGUARDOLD_LT = CreateTeam( "DO NOT USE", {
4342 Description = "Member Royal Guard Regiment",
4343 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
4344 Colour = Color(255, 51, 51, 255),
4345 Side = 1,
4346 Rank = 3,
4347 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
4348 Regiment = "DO NOT USE",
4349} )
4350
4351TEAM_ROYALGUARDOLD_CPT = CreateTeam( "DO NOT USE", {
4352 Description = "Captain of the Royal Guard Regiment",
4353 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
4354 Colour = Color(255, 51, 51, 255),
4355 Side = 1,
4356 Rank = 3,
4357 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
4358 Regiment = "DO NOT USE",
4359} )
4360
4361TEAM_ROYALGUARDOLD_CMD = CreateTeam( "DO NOT USE", {
4362 Description = "Commander of the Royal Guard Regiment",
4363 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
4364 Colour = Color(255, 51, 51, 255),
4365 Side = 1,
4366 Rank = 3,
4367 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
4368 Regiment = "DO NOT USE",
4369} )
4370
4371TEAM_SHADOWGUARDOLD_Trainee = CreateTeam( "DO NOT USE", {
4372 Description = "Member Shadow Guard Regiment",
4373 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
4374 Colour = Color(255, 51, 51, 255),
4375 Side = 1,
4376 Rank = 1,
4377 Model = "models/imperial/guard/blackguard.mdl",
4378 Regiment = "DO NOT USE",
4379} )
4380
4381TEAM_SHADOWGUARDOLD_SGT = CreateTeam( "DO NOT USE", {
4382 Description = "Member Shadow Guard Regiment",
4383 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
4384 Colour = Color(255, 51, 51, 255),
4385 Side = 1,
4386 Rank = 5,
4387 Model = "models/imperial/guard/blackguard.mdl",
4388 Regiment = "DO NOT USE",
4389} )
4390
4391TEAM_SHADOWGUARDOLD_LT = CreateTeam( "DO NOT USE", {
4392 Description = "Member Shadow Guard Regiment",
4393 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
4394 Colour = Color(255, 51, 51, 255),
4395 Side = 1,
4396 Rank = 10,
4397 Model = "models/imperial/guard/blackguard.mdl",
4398 Regiment = "DO NOT USE",
4399} )
4400
4401TEAM_SHADOWGUARDOLD_CPT = CreateTeam( "DO NOT USE", {
4402 Description = "Captain of the Shadow Guard Regiment",
4403 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
4404 Colour = Color(255, 51, 51, 255),
4405 Side = 1,
4406 Rank = 12,
4407 Model = "models/imperial/guard/blackguard.mdl",
4408 Regiment = "DO NOT USE",
4409} )
4410
4411TEAM_SHADOWGUARDOLD_CMD = CreateTeam( "DO NOT USE", {
4412 Description = "Commander of the Shadow Guard Regiment",
4413 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
4414 Colour = Color(255, 51, 51, 255),
4415 Side = 1,
4416 Rank = 16,
4417 Model = "models/imperial/guard/blackguard.mdl",
4418 Regiment = "DO NOT USE",
4419} )
4420
4421TEAM_PILOT_JCREW = CreateTeam( "Pilot Junior Crewman", {
4422 Description = "Member of the Pilot",
4423 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4424 Colour = Color(127, 0, 255, 255),
4425 Side = 1,
4426 Rank = 1,
4427 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4428 Regiment = "Pilot",
4429} )
4430
4431TEAM_PILOT_CREW = CreateTeam( "Pilot Crewman", {
4432 Description = "Member of the Pilot",
4433 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4434 Colour = Color(127, 0, 255, 255),
4435 Side = 1,
4436 Rank = 2,
4437 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4438 Regiment = "Pilot",
4439} )
4440
4441TEAM_PILOT_ACREW = CreateTeam( "Pilot Able Crewman", {
4442 Description = "Member of the Pilot",
4443 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4444 Colour = Color(127, 0, 255, 255),
4445 Side = 1,
4446 Rank = 3,
4447 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4448 Regiment = "Pilot",
4449} )
4450
4451TEAM_PILOT_SCREW = CreateTeam( "Pilot Senior Crewman", {
4452 Description = "Member of the Pilot",
4453 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4454 Colour = Color(127, 0, 255, 255),
4455 Side = 1,
4456 Rank = 4,
4457 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4458 Regiment = "Pilot",
4459} )
4460
4461TEAM_PILOT_LCREW = CreateTeam( "Pilot Leading Crewman", {
4462 Description = "Member of the Pilot",
4463 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4464 Colour = Color(127, 0, 255, 255),
4465 Side = 1,
4466 Rank = 5,
4467 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4468 Regiment = "Pilot",
4469} )
4470
4471TEAM_PILOT_CHIEF = CreateTeam( "Pilot Chief", {
4472 Description = "Member of the Pilot",
4473 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4474 Colour = Color(127, 0, 255, 255),
4475 Side = 1,
4476 Rank = 6,
4477 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4478 Regiment = "Pilot",
4479} )
4480
4481TEAM_PILOT_MCHIEF = CreateTeam( "Pilot Master Chief", {
4482 Description = "Member of the Pilot",
4483 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4484 Colour = Color(127, 0, 255, 255),
4485 Side = 1,
4486 Rank = 7,
4487 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4488 Regiment = "Pilot",
4489} )
4490
4491TEAM_PILOT_OFFICERCADET = CreateTeam( "Pilot Officer Cadet", {
4492 Description = "Member of the Pilot",
4493 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4494 Colour = Color(127, 0, 255, 255),
4495 Side = 1,
4496 Rank = 8,
4497 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4498 Regiment = "Pilot",
4499} )
4500
4501TEAM_PILOT_ENSIGN = CreateTeam( "Pilot Ensign", {
4502 Description = "Member of the Pilot",
4503 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4504 Colour = Color(127, 0, 255, 255),
4505 Side = 1,
4506 Rank = 9,
4507 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4508 Regiment = "Pilot",
4509} )
4510
4511TEAM_PILOT_POFFICER = CreateTeam( "Pilot Petty Officer", {
4512 Description = "Member of the Pilot",
4513 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4514 Colour = Color(127, 0, 255, 255),
4515 Side = 1,
4516 Rank = 10,
4517 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4518 Regiment = "Pilot",
4519} )
4520
4521TEAM_PILOT_SLT = CreateTeam( "Pilot Sub Lieutenant", {
4522 Description = "Member of the Pilot",
4523 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4524 Colour = Color(127, 0, 255, 255),
4525 Side = 1,
4526 Rank = 12,
4527 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4528 Regiment = "Pilot",
4529} )
4530
4531TEAM_PILOT_LT = CreateTeam( "Pilot Lieutenant", {
4532 Description = "Member of the Pilot",
4533 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4534 Colour = Color(127, 0, 255, 255),
4535 Side = 1,
4536 Rank = 14,
4537 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4538 Regiment = "Pilot",
4539} )
4540
4541TEAM_PILOT_LCMD = CreateTeam( "Pilot Lieutenant Commander", {
4542 Description = "Member of the Pilot",
4543 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4544 Colour = Color(127, 0, 255, 255),
4545 Side = 1,
4546 Rank = 15,
4547 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4548 Regiment = "Pilot",
4549} )
4550
4551TEAM_PILOT_CMD = CreateTeam( "Pilot Commander", {
4552 Description = "Member of the Pilot",
4553 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dh17"},
4554 Colour = Color(127, 0, 255, 255),
4555 Side = 1,
4556 Rank = 16,
4557 Model = "models/player/sgg/starwars/tie_pilot_181st.mdl",
4558 Regiment = "Pilot",
4559 } )
4560
4561 TEAM_RSTORMT_TRAINEE = CreateTeam( "RST Trainee", {
4562 Description = "Member of the Royal Battalion",
4563 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4564 Colour = Color(230, 0, 90, 255),
4565 Side = 1,
4566 Rank = 1,
4567 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4568 Regiment = "Royal Storm Trooper",
4569 } )
4570
4571TEAM_RSTORMT_PVT = CreateTeam( "RST Private", {
4572 Description = "Member of the Royal Battalion",
4573 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4574 Colour = Color(230, 0, 90, 255),
4575 Side = 1,
4576 Rank = 2,
4577 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4578 Regiment = "Royal Storm Trooper",
4579 } )
4580
4581TEAM_RSTORMT_PFC = CreateTeam( "RST Private First Class", {
4582 Description = "Member of the Royal Battalion",
4583 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4584 Colour = Color(230, 0, 90, 255),
4585 Side = 1,
4586 Rank = 3,
4587 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4588 Regiment = "Royal Storm Trooper",
4589 } )
4590
4591TEAM_RSTORMT_LCPL = CreateTeam( "RST Lance Corporal", {
4592 Description = "Member of the Royal Battalion",
4593 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4594 Colour = Color(230, 0, 90, 255),
4595 Side = 1,
4596 Rank = 4,
4597 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4598 Regiment = "Royal Storm Trooper",
4599 } )
4600
4601TEAM_RSTORMT_CPL = CreateTeam( "RST Corporal", {
4602 Description = "Member of the Royal Battalion",
4603 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4604 Colour = Color(230, 0, 90, 255),
4605 Side = 1,
4606 Rank = 5,
4607 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4608 Regiment = "Royal Storm Trooper",
4609 } )
4610
4611TEAM_RSTORMT_SGT = CreateTeam( "RST Sergeant", {
4612 Description = "Member of the Royal Battalion",
4613 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4614 Colour = Color(230, 0, 90, 255),
4615 Side = 1,
4616 Rank = 6,
4617 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4618 Regiment = "Royal Storm Trooper",
4619 } )
4620
4621TEAM_RSTORMT_SSGT = CreateTeam( "RST Staff Sergeant", {
4622 Description = "Member of the Royal Battalion",
4623 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4624 Colour = Color(230, 0, 90, 255),
4625 Side = 1,
4626 Rank = 7,
4627 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4628 Regiment = "Royal Storm Trooper",
4629 } )
4630
4631TEAM_RSTORMT_MSGT = CreateTeam( "RST Master Sergeant", {
4632 Description = "Member of the Royal Battalion",
4633 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4634 Colour = Color(230, 0, 90, 255),
4635 Side = 1,
4636 Rank = 8,
4637 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4638 Regiment = "Royal Storm Trooper",
4639} )
4640
4641TEAM_RSTORMT_WO = CreateTeam( "RST Warrant Officer", {
4642 Description = "Member of the Royal Battalion",
4643 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4644 Colour = Color(230, 0, 90, 255),
4645 Side = 1,
4646 Rank = 9,
4647 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4648 Regiment = "Royal Storm Trooper",
4649} )
4650
4651TEAM_RSTORMT_OC = CreateTeam( "RST Officer Cadet", {
4652 Description = "Member of the Royal Battalion",
4653 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4654 Colour = Color(230, 0, 90, 255),
4655 Side = 1,
4656 Rank = 10,
4657 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4658 Regiment = "Royal Storm Trooper",
4659} )
4660
4661TEAM_RSTORMT_2LT = CreateTeam( "RST 2nd Lieutenant", {
4662 Description = "Member of the Royal Battalion",
4663 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4664 Colour = Color(230, 0, 90, 255),
4665 Side = 1,
4666 Rank = 11,
4667 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4668 Regiment = "Royal Storm Trooper",
4669} )
4670
4671TEAM_RSTORMT_1LT = CreateTeam( "RST 1st Lieutenant", {
4672 Description = "Member of the Royal Battalion",
4673 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4674 Colour = Color(230, 0, 90, 255),
4675 Side = 1,
4676 Rank = 12,
4677 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4678 Regiment = "Royal Storm Trooper",
4679} )
4680
4681TEAM_RSTORMT_CPT = CreateTeam( "RST Captain", {
4682 Description = "Member of the Royal Battalion",
4683 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4684 Colour = Color(230, 0, 90, 255),
4685 Side = 1,
4686 Rank = 13,
4687 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4688 Regiment = "Royal Storm Trooper",
4689 } )
4690
4691TEAM_RSTORMT_MAJ = CreateTeam( "RST Major", {
4692 Description = "Member of the Royal Battalion",
4693 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4694 Colour = Color(230, 0, 90, 255),
4695 Side = 1,
4696 Rank = 14,
4697 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4698 Regiment = "Royal Storm Trooper",
4699} )
4700
4701TEAM_RSTORMT_LCOL = CreateTeam( "RST Colonel", {
4702 Description = "Member of the Royal Battalion",
4703 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4704 Colour = Color(230, 0, 90, 255),
4705 Side = 1,
4706 Rank = 15,
4707 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4708 Regiment = "Royal Storm Trooper",
4709} )
4710
4711TEAM_RSTORMT_COL = CreateTeam( "RST High Colonel", {
4712 Description = "Member of the Royal Battalion",
4713 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4714 Colour = Color(230, 0, 90, 255),
4715 Side = 1,
4716 Rank = 16,
4717 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4718 Regiment = "Royal Storm Trooper",
4719} )
4720
4721TEAM_RSTORMT_COM = CreateTeam( "RST Commander", {
4722 Description = "Member of the Royal Battalion",
4723 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4724 Colour = Color(230, 0, 90, 255),
4725 Side = 1,
4726 Rank = 17,
4727 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4728 Regiment = "Royal Storm Trooper",
4729 } )
4730
4731TEAM_RSTORMT_Brigadier = CreateTeam( "RST Brigadier", {
4732 Description = "Member of the Royal Battalion",
4733 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4734 Colour = Color(230, 0, 90, 255),
4735 Side = 1,
4736 Rank = 18,
4737 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4738 Regiment = "Royal Storm Trooper",
4739 } )
4740
4741TEAM_RSTORMT_LTGEN = CreateTeam( "RST Lieutenant General", {
4742 Description = "Member of the Royal Battalion",
4743 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4744 Colour = Color(230, 0, 90, 255),
4745 Side = 1,
4746 Rank = 19,
4747 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4748 Regiment = "Royal Storm Trooper",
4749} )
4750
4751TEAM_RSTORMT_MAJGEN = CreateTeam( "RST Major General", {
4752 Description = "Member of the Royal Battalion",
4753 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4754 Colour = Color(230, 0, 90, 255),
4755 Side = 1,
4756 Rank = 20,
4757 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4758 Regiment = "Royal Storm Trooper",
4759} )
4760
4761TEAM_RSTORMT_GEN = CreateTeam( "RST General", {
4762 Description = "Member of the Royal Battalion",
4763 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_swch_se14c", "tfa_swch_rt97c"},
4764 Colour = Color(230, 0, 90, 255),
4765 Side = 1,
4766 Rank = 21,
4767 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4768 Regiment = "Royal Storm Trooper",
4769} )
4770
4771TEAM_RSTORMT_REP = CreateTeam( "Royal Representative", {
4772 Description = "Member of the Emperor's Representative",
4773 Weapons = {"tfa_swch_dh17","weapon_cuff_elastic", "tfa_swch_se14c"},
4774 Colour = Color(230, 0, 25, 255),
4775 Side = 1,
4776 Rank = 22,
4777 Model = "models/player/swbf_imperial_officer_colonelv2/swbf_imperial_officer_colonelv2.mdl",
4778 Regiment = "Royal Storm Trooper",
4779} )
4780
4781TEAM_INQUIS_TR = CreateTeam( "Inquisitor Trainee", {
4782 Description = "Trainee of the Inquisitors",
4783 Weapons = {"weapon_lightsaber", "forcechoke"},
4784 Colour = Color(161, 0, 63, 255),
4785 Side = 1,
4786 Rank = 1,
4787 Model = "models/player/valley/eighth_brother.mdl",
4788 Regiment = "Sith Inquisitor",
4789} )
4790
4791TEAM_INQUIS_APR = CreateTeam( "Inquisitor Apprentice", {
4792 Description = "Apprentice of the Inquisitors",
4793 Weapons = {"weapon_lightsaber", "forcechoke"},
4794 Colour = Color(161, 0, 63, 255),
4795 Side = 1,
4796 Rank = 2,
4797 Model = "models/player/valley/eighth_brother.mdl",
4798 Regiment = "Sith Inquisitor",
4799 } )
4800
4801TEAM_INQUIS = CreateTeam( "Inquisitor", {
4802 Description = "Member of the Inquisitors",
4803 Weapons = {"weapon_lightsaber", "forcechoke"},
4804 Colour = Color(161, 0, 63, 255),
4805 Side = 1,
4806 Rank = 3,
4807 Model = "models/player/valley/eighth_brother.mdl",
4808 Regiment = "Sith Inquisitor",
4809} )
4810
4811TEAM_INQUIS_GR = CreateTeam( "Grand Inquisitor", {
4812 Description = "Trainee of the Inquisitor",
4813 Weapons = {"weapon_lightsaber", "forcechoke"},
4814 Colour = Color(161, 0, 63, 255),
4815 Side = 1,
4816 Rank = 6,
4817 Model = "models/ethli/characters/inquisitorrebel/inquisitorrebel.mdl",
4818 Regiment = "Sith Inquisitor",
4819} )
4820
4821TEAM_INQUIS_SS = CreateTeam( "Inquisitor Seventh Sister", {
4822 Description = "Inquisitor",
4823 Weapons = {"weapon_lightsaber", "forcechoke"},
4824 Colour = Color(161, 0, 63, 255),
4825 Side = 1,
4826 Rank = 5,
4827 Model = "models/seventh/seventh_pm.mdl",
4828 Regiment = "Sith Inquisitor",
4829} )
4830
4831TEAM_MALGUS = CreateTeam( "Lord", {
4832 Description = "2000 year old sith lord",
4833 Weapons = {"weapon_lightsaber", "forcechoke"},
4834 Colour = Color(161, 0, 63, 255),
4835 Side = 1,
4836 Rank = 5,
4837 Model = "models/grealms/characters/malgus/malgus.mdl",
4838 Regiment = "Sith",
4839} )
4840
4841TEAM_SUNA = CreateTeam( "Lord", {
4842 Description = "Sith Lord",
4843 Weapons = {"weapon_lightsaber", "forcechoke"},
4844 Colour = Color(161, 0, 63, 255),
4845 Side = 1,
4846 Rank = 5,
4847 Model = "models/player/sw/revan/revan.mdl",
4848 Regiment = "Sith",
4849} )
4850
4851TEAM_JADUS = CreateTeam( "Lord", {
4852 Description = "Sith Lord",
4853 Weapons = {"weapon_lightsaber", "forcechoke"},
4854 Colour = Color(161, 0, 63, 255),
4855 Side = 1,
4856 Rank = 5,
4857 Model = "models/grealms/characters/darthjadus/darthjadus.mdl",
4858 Regiment = "Sith",
4859} )
4860
4861TEAM_SOVEREIGN = CreateTeam( "Sovereign Protector", {
4862 Description = "sith lord",
4863 Weapons = {"weapon_lightsaber", "forcechoke"},
4864 Colour = Color(161, 0, 63, 255),
4865 Side = 1,
4866 Rank = 5,
4867 Model = "models/carnor_jax_rm/carnor_jax_rm.mdl",
4868 Regiment = "Sith",
4869} )
4870
4871TEAM_DENGAR = CreateTeam( "", {
4872 Description = "sith lord",
4873 Weapons = {"tfa_swch_rt97c","weapon_cuff_elastic", "zeus_thermaldet"},
4874 Colour = Color(161, 0, 63, 255),
4875 Side = 1,
4876 Rank = 5,
4877 Model = "models/player/hydro/swbf_dengar/swbf_dengar.mdl",
4878 Regiment = "Dengar",
4879} )
4880
4881TEAM_BOBA = CreateTeam( "", {
4882 Description = "sith lord",
4883 Weapons = {"weapon_cuff_elastic","tfa_swch_ll30","tfa_swch_ee3","tfa_swch_pulsecannon","weapon_jetpack"},
4884 Colour = Color(157, 157, 157, 255),
4885 Side = 1,
4886 Rank = 5,
4887 Model = "models/nate159/swbf/hero/hero_gunslinger_bobafett.mdl",
4888 Regiment = "Boba Fett",
4889} )
4890
4891TEAM_GREEDO = CreateTeam( "", {
4892 Description = "sith lord",
4893 Weapons = {"tfa_swch_ll30","weapon_cuff_elastic"},
4894 Colour = Color(161, 0, 63, 255),
4895 Side = 1,
4896 Rank = 5,
4897 Model = "models/nate159/swbf/hero/player/hero_gunslinger_greedo_player.mdl",
4898 Regiment = "Greedo",
4899} )
4900
4901TEAM_BOSSK = CreateTeam( "", {
4902 Description = "sith lord",
4903 Weapons = {"tfa_swch_dlt19","tfa_swch_pulsecannon","weapon_cuff_elastic"},
4904 Colour = Color(161, 0, 63, 255),
4905 Side = 1,
4906 Rank = 5,
4907 Model = "models/player/hydro/swbf_bossk/swbf_bossk.mdl",
4908 Regiment = "Bossk",
4909} )
4910
4911TEAM_MOUSE = CreateTeam( "Mouse Droid", {
4912 Description = "Collects Information",
4913 Weapons = {"tfa_swch_dl44", "sswep_mouse"},
4914 Colour = Color(161, 0, 63, 255),
4915 Side = 1,
4916 Rank = 5,
4917 Model = "models/kingpommes/emperors_tower/ph_props/mouse_droid/mouse_droid.mdl",
4918 Regiment = "Mouse Droid",
4919} )
4920
4921TEAM_PROBE = CreateTeam( "Probe Droid", {
4922 Description = "Probes",
4923 Weapons = {"tfa_swch_dl44"},
4924 Colour = Color(161, 0, 63, 255),
4925 Side = 1,
4926 Rank = 5,
4927 Model = "models/starwars/syphadias/ships/probe_droid/probe_droid.mdl",
4928 Regiment = "Probe Droid",
4929} )
4930
4931TEAM_EVENT1 = CreateTeam( "", {
4932 Description = "Probes",
4933 Weapons = {""},
4934 Colour = Color(255, 255, 255, 255),
4935 Side = 1,
4936 Rank = 1,
4937 Model = "models/player/fatal/troopers/trooper.mdl",
4938 Regiment = "Event",
4939} )
4940
4941TEAM_EVENT2 = CreateTeam( "", {
4942 Description = "Probes",
4943 Weapons = {""},
4944 Colour = Color(255, 255, 255, 255),
4945 Side = 1,
4946 Rank = 1,
4947 Model = "models/player/fatal/troopers/trooper.mdl",
4948 Regiment = "Event",
4949} )
4950
4951TEAM_EVENT3 = CreateTeam( "", {
4952 Description = "Probes",
4953 Weapons = {""},
4954 Colour = Color(255, 255, 255, 255),
4955 Side = 1,
4956 Rank = 1,
4957 Model = "mmodels/player/fatal/troopers/trooper.mdl",
4958 Regiment = "Event",
4959} )
4960
4961TEAM_DARTHMAUL = CreateTeam( "Darth", {
4962 Description = "sith lord",
4963 Weapons = {"weapon_lightsaber", "forcechoke"},
4964 Colour = Color(161, 0, 63, 255),
4965 Side = 1,
4966 Rank = 5,
4967 Model = "models/player/darth/maul.mdl",
4968 Regiment = "Darth Maul",
4969} )
4970
4971TEAM_SCYTHE = CreateTeam( "Lord", {
4972 Description = "sith lord",
4973 Weapons = {"weapon_lightsaber", "forcechoke"},
4974 Colour = Color(161, 0, 63, 255),
4975 Side = 1,
4976 Rank = 5,
4977 Model = "models/vindican/vindican.mdl",
4978 Regiment = "Sith",
4979} )
4980
4981TEAM_INCINERATOR_PVT = CreateTeam( "Incinerator Private", {
4982 Description = "Member of the Incinerator Trooper Battalion",
4983 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
4984 Colour = Color(255, 157, 0, 255),
4985 Side = 1,
4986 Rank = 1,
4987 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
4988 Regiment = "Incinerator Trooper",
4989} )
4990
4991TEAM_INCINERATOR_PFC = CreateTeam( "Incinerator Private First Class", {
4992 Description = "Member of the Incinerator Trooper Battalion",
4993 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
4994 Colour = Color(255, 157, 0, 255),
4995 Side = 1,
4996 Rank = 2,
4997 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
4998 Regiment = "Incinerator Trooper",
4999} )
5000
5001TEAM_INCINERATOR_LCPL = CreateTeam( "Incinerator Lance Corporal", {
5002 Description = "Member of the Incinerator Trooper Battalion",
5003 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5004 Colour = Color(255, 157, 0, 255),
5005 Side = 1,
5006 Rank = 3,
5007 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5008 Regiment = "Incinerator Trooper",
5009} )
5010
5011TEAM_INCINERATOR_CPL = CreateTeam( "Incinerator Corporal", {
5012 Description = "Member of the Incinerator Trooper Battalion",
5013 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5014 Colour = Color(255, 157, 0, 255),
5015 Side = 1,
5016 Rank = 4,
5017 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5018 Regiment = "Incinerator Trooper",
5019} )
5020
5021TEAM_INCINERATOR_SGT = CreateTeam( "Incinerator Sergeant", {
5022 Description = "Member of the Incinerator Trooper Battalion",
5023 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5024 Colour = Color(255, 157, 0, 255),
5025 Side = 1,
5026 Rank = 5,
5027 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5028 Regiment = "Incinerator Trooper",
5029} )
5030
5031TEAM_INCINERATOR_SSGT = CreateTeam( "Incinerator Staff Sergeant", {
5032 Description = "Member of the Incinerator Trooper Battalion",
5033 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5034 Colour = Color(255, 157, 0, 255),
5035 Side = 1,
5036 Rank = 6,
5037 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5038 Regiment = "Incinerator Trooper",
5039} )
5040
5041 TEAM_INCINERATOR_MSGT = CreateTeam( "Incinerator Master Sergeant", {
5042 Description = "Member of the Incinerator Trooper Battalion",
5043 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5044 Colour = Color(255, 157, 0, 255),
5045 Side = 1,
5046 Rank = 7,
5047 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5048 Regiment = "Incinerator Trooper",
5049} )
5050
5051TEAM_INCINERATOR_OFFICERCADET = CreateTeam( "Incinerator Officer Cadet", {
5052 Description = "Member of the Incinerator Trooper Battalion",
5053 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5054 Colour = Color(255, 157, 0, 255),
5055 Side = 1,
5056 Rank = 8,
5057 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5058 Regiment = "Incinerator Trooper",
5059} )
5060
5061TEAM_INCINERATOR_WO = CreateTeam( "Incinerator Warrant Officer", {
5062 Description = "Member of the Incinerator Trooper Battalion",
5063 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5064 Colour = Color(255, 157, 0, 255),
5065 Side = 1,
5066 Rank = 9,
5067 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5068 Regiment = "Incinerator Trooper",
5069} )
5070
5071TEAM_INCINERATOR_LT = CreateTeam( "Incinerator Lieutenant", {
5072 Description = "Member of the Incinerator Trooper Battalion",
5073 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5074 Colour = Color(255, 157, 0, 255),
5075 Side = 1,
5076 Rank = 10,
5077 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5078 Regiment = "Incinerator Trooper",
5079} )
5080
5081TEAM_INCINERATOR_FLT = CreateTeam( "Incinerator First Lieutenant", {
5082 Description = "Member of the Incinerator Trooper Battalion",
5083 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5084 Colour = Color(255, 157, 0, 255),
5085 Side = 1,
5086 Rank = 11,
5087 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5088 Regiment = "Incinerator Trooper",
5089} )
5090
5091TEAM_INCINERATOR_CAPT = CreateTeam( "Incinerator Captain", {
5092 Description = "Member of the Incinerator Trooper Battalion",
5093 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5094 Colour = Color(255, 157, 0, 255),
5095 Side = 1,
5096 Rank = 12,
5097 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5098 Regiment = "Incinerator Trooper",
5099} )
5100
5101TEAM_INCINERATOR_MAJ = CreateTeam( "Incinerator Major", {
5102 Description = "Member of the Incinerator Trooper Battalion",
5103 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5104 Colour = Color(255, 157, 0, 255),
5105 Side = 1,
5106 Rank = 13,
5107 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5108 Regiment = "Incinerator Trooper",
5109} )
5110
5111TEAM_INCINERATOR_COLO = CreateTeam( "Incinerator Colonel", {
5112 Description = "Member of the Incinerator Trooper Battalion",
5113 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5114 Colour = Color(255, 157, 0, 255),
5115 Side = 1,
5116 Rank = 14,
5117 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5118 Regiment = "Incinerator Trooper",
5119} )
5120
5121TEAM_INCINERATOR_HCOLO = CreateTeam( "Incinerator High Colonel", {
5122 Description = "Member of the Incinerator Trooper Battalion",
5123 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5124 Colour = Color(255, 157, 0, 255),
5125 Side = 1,
5126 Rank = 15,
5127 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5128 Regiment = "Incinerator Trooper",
5129} )
5130
5131TEAM_INCINERATOR_CMD = CreateTeam( "Incinerator Commander", {
5132 Description = "Commander of the Incinerator Trooper Battalion",
5133 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5134 Colour = Color(255, 157, 0, 255),
5135 Side = 1,
5136 Rank = 16,
5137 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5138 Regiment = "Incinerator Trooper",
5139} )
5140
5141TEAM_INCINERATOR_BRIG = CreateTeam( "Incinerator Brigadier", {
5142 Description = "Commander of the Incinerator Trooper Battalion",
5143 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5144 Colour = Color(255, 157, 0, 255),
5145 Side = 1,
5146 Rank = 17,
5147 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5148 Regiment = "Incinerator Trooper",
5149} )
5150
5151TEAM_INCINERATOR_MAJG = CreateTeam( "Incinerator Major General", {
5152 Description = "Commander of the Incinerator Trooper Battalion",
5153 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5154 Colour = Color(255, 157, 0, 255),
5155 Side = 1,
5156 Rank = 18,
5157 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5158 Regiment = "Incinerator Trooper",
5159} )
5160
5161TEAM_INCINERATOR_LTG = CreateTeam( "Incinerator Lieutenant General", {
5162 Description = "Commander of the Incinerator Trooper Battalion",
5163 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5164 Colour = Color(255, 157, 0, 255),
5165 Side = 1,
5166 Rank = 19,
5167 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5168 Regiment = "Incinerator Trooper",
5169} )
5170
5171TEAM_INCINERATOR_GEN = CreateTeam( "Incinerator General", {
5172 Description = "Commander of the Incinerator Trooper Battalion",
5173 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5174 Colour = Color(255, 157, 0, 255),
5175 Side = 1,
5176 Rank = 20,
5177 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5178 Regiment = "Incinerator Trooper",
5179} )
5180
5181TEAM_Darman = CreateTeam( "ICS40", {
5182 Description = "Commander of the Incinerator Trooper Battalion",
5183 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "weapon_camo"},
5184 Colour = Color(82, 173, 239, 255),
5185 Side = 1,
5186 Rank = 1,
5187 Model = "models/player/omega/starwars/2.mdl",
5188 Regiment = "Imperial Commando Squad 40 Darman",
5189} )
5190
5191TEAM_Niner = CreateTeam( "ICS40", {
5192 Description = "Commander of the Incinerator Trooper Battalion",
5193 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "weapon_camo"},
5194 Colour = Color(82, 173, 239, 255),
5195 Side = 1,
5196 Rank = 2,
5197 Model = "models/player/omega/starwars/2.mdl",
5198 Regiment = "Imperial Commando Squad 40 Niner",
5199} )
5200
5201TEAM_Rede = CreateTeam( "ICS40", {
5202 Description = "Commander of the Incinerator Trooper Battalion",
5203 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "tfa_swch_dc15sa", "weapon_camo"},
5204 Colour = Color(82, 173, 239, 255),
5205 Side = 1,
5206 Rank = 3,
5207 Model = "models/player/omega/starwars/2.mdl",
5208 Regiment = "Imperial Commando Squad 40 Rede",
5209} )
5210
5211TEAM_SABG = CreateTeam( "Saber Guard", {
5212 Description = "Commander of the Incinerator Trooper Battalion",
5213 Weapons = {"weapon_lightsaber"},
5214 Colour = Color(232, 198, 125, 255),
5215 Side = 1,
5216 Rank = 1,
5217 Model = "models/player/starwars/mistersweetroll/saberguard.mdl",
5218 Regiment = "Saber Guard",
5219} )
5220
5221TEAM_SABGC = CreateTeam( "Saber Guard Commander", {
5222 Description = "Commander of the Incinerator Trooper Battalion",
5223 Weapons = {"weapon_lightsaber"},
5224 Colour = Color(232, 198, 125, 255),
5225 Side = 1,
5226 Rank = 2,
5227 Model = "models/player/starwars/mistersweetroll/saberguard.mdl",
5228 Regiment = "Saber Guard",
5229} )
5230
5231TEAM_VADER = CreateTeam( "", {
5232 Description = "pleb",
5233 Weapons = {"weapon_lightsaber", "forcechoke"},
5234 Colour = Color(161, 0, 63, 255),
5235 Side = 1,
5236 Rank = 5,
5237 Model = "models/nate159/swbf/hero/player/hero_sith_vader_player.mdl",
5238 Regiment = "Sith",
5239} )
5240
5241TEAM_PALPATINE = CreateTeam( "", {
5242 Description = "pleb",
5243 Weapons = {"weapon_lightsaber", "forcechoke"},
5244 Colour = Color(161, 0, 63, 255),
5245 Side = 1,
5246 Rank = 5,
5247 Model = "models/player/emperor_palpatine.mdl",
5248 Regiment = "Sith",
5249} )
5250
5251TEAM_MAULKILLER = CreateTeam( "", {
5252 Description = "pleb",
5253 Weapons = {"weapon_lightsaber", "forcechoke"},
5254 Colour = Color(161, 0, 63, 255),
5255 Side = 1,
5256 Rank = 5,
5257 Model = "models/player/starwars/maulkiller.mdl",
5258 Regiment = "Sith",
5259} )
5260
5261TEAM_ITC_DEMO = CreateTeam( "ITC Demolition", {
5262 Description = "Demolition member of the Imperial Thylacine Corps",
5263 Weapons = {"tfa_swch_rt97c", "zeus_thermaldet", "tfa_swch_dc15sa"},
5264 Colour = Color(0, 127, 31, 255),
5265 Side = 1,
5266 Rank = 13,
5267 Model = "models/player/sono/troopers/utapau.mdl",
5268 Regiment = "ITC",
5269} )
5270
5271TEAM_ITC_MRKS = CreateTeam( "ITC Marksman", {
5272 Description = "Marksman member of the Imperial Thylacine Corps",
5273 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_scoutpistol"},
5274 Colour = Color(0, 127, 31, 255),
5275 Side = 1,
5276 Rank = 13,
5277 Model = "models/player/sono/troopers/utapau.mdl",
5278 Regiment = "ITC",
5279} )
5280
5281TEAM_ITC_BERZERKER = CreateTeam( "ITC Interrogator ", {
5282 Description = "Berzerker member of the Imperial Thylacine Corps",
5283 Weapons = {"weapon_fists", "tfa_swch_alphablaster", "tfa_swch_se14c"},
5284 Colour = Color(0, 127, 31, 255),
5285 Side = 1,
5286 Rank = 13,
5287 Model = "models/player/sono/troopers/utapau.mdl",
5288 Regiment = "ITC",
5289} )
5290
5291TEAM_ITC_MEDIC = CreateTeam( "ITC Medic", {
5292 Description = "On feld medical responder for the Imperial Thylacine Corps",
5293 Weapons = {"weapon_bactainjector", "tfa_swch_e11", "tfa_swch_dc15sa"},
5294 Colour = Color(0, 127, 31, 255),
5295 Side = 1,
5296 Rank = 13,
5297 Model = "models/player/sono/troopers/utapau.mdl",
5298 Regiment = "ITC",
5299} )
5300
5301TEAM_ITC_CMDR = CreateTeam( "ITC Commander", {
5302 Description = "Commander of the Imperial Thylacine Corps",
5303 Weapons = {"tfa_swch_rt97c", "tfa_swch_dc15sa"},
5304 Colour = Color(0, 127, 31, 255),
5305 Side = 1,
5306 Rank = 16,
5307 Model = "models/player/sono/troopers/utapau.mdl",
5308 Regiment = "ITC",
5309} )
5310
5311TEAM_SC_PVT = CreateTeam( "SC Private", {
5312 Description = "plebbys",
5313 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5314 Colour = Color(50, 50, 50, 255 ),
5315 Side = 1,
5316 Rank = 1,
5317 Model = "models/sono/swbf3/shadow.mdl",
5318 Regiment = "Storm Commandos",
5319} )
5320
5321TEAM_SC_PFC = CreateTeam( "SC Private First Class", {
5322 Description = "plebbys",
5323 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5324 Colour = Color(50, 50, 50, 255 ),
5325 Side = 1,
5326 Rank = 2,
5327 Model = "models/sono/swbf3/shadow.mdl",
5328 Regiment = "Storm Commandos",
5329} )
5330
5331TEAM_SC_LCPL = CreateTeam( "SC Lance Corporal", {
5332 Description = "models/player/fatal/troopers/trooper.mdl",
5333 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5334 Colour = Color(50, 50, 50, 255 ),
5335 Side = 1,
5336 Rank = 3,
5337 Model = "models/sono/swbf3/shadow.mdl",
5338 Regiment = "Storm Commandos",
5339} )
5340
5341TEAM_SC_CPL = CreateTeam( "SC Corporal", {
5342 Description = "plebbys",
5343 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5344 Colour = Color(50, 50, 50, 255 ),
5345 Side = 1,
5346 Rank = 4,
5347 Model = "models/sono/swbf3/shadow.mdl",
5348 Regiment = "Storm Commandos",
5349} )
5350
5351TEAM_SC_SGT = CreateTeam( "SC Sergeant", {
5352 Description = "plebbys",
5353 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5354 Colour = Color(50, 50, 50, 255 ),
5355 Side = 1,
5356 Rank = 5,
5357 Model = "models/shepherdmod/storm/sarge/storm_sergeant.mdl",
5358 Regiment = "Storm Commandos",
5359} )
5360
5361TEAM_SC_SSGT = CreateTeam( "SC Staff Sergeant", {
5362 Description = "plebbys",
5363 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5364 Colour = Color(50, 50, 50, 255 ),
5365 Side = 1,
5366 Rank = 6,
5367 Model = "models/shepherdmod/storm/sarge/storm_sergeant.mdl",
5368 Regiment = "Storm Commandos",
5369} )
5370
5371TEAM_SC_MSGT = CreateTeam( "SC Master Sergeant", {
5372 Description = "plebbys",
5373 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5374 Colour = Color(50, 50, 50, 255 ),
5375 Side = 1,
5376 Rank = 7,
5377 Model = "models/shepherdmod/storm/sarge/storm_sergeant.mdl",
5378 Regiment = "Storm Commandos",
5379} )
5380
5381TEAM_SC_OFFICERCADET = CreateTeam( "SC Officer Cadet", {
5382 Description = "plebbys",
5383 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5384 Colour = Color(50, 50, 50, 255 ),
5385 Side = 1,
5386 Rank = 8,
5387 Model = "models/shepherdmod/storm/officer/storm_officer.mdl",
5388 Regiment = "Storm Commandos",
5389} )
5390
5391TEAM_SC_WO = CreateTeam( "SC Warrant Officer", {
5392 Description = "plebbys",
5393 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5394 Colour = Color(50, 50, 50, 255 ),
5395 Side = 1,
5396 Rank = 9,
5397 Model = "models/shepherdmod/storm/officer/storm_officer.mdl",
5398 Regiment = "Storm Commandos",
5399} )
5400
5401TEAM_SC_LT = CreateTeam( "SC Lieutenant", {
5402 Description = "plebbys",
5403 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5404 Colour = Color(50, 50, 50, 255 ),
5405 Side = 1,
5406 Rank = 10,
5407 Model = "models/shepherdmod/storm/officer/storm_officer.mdl",
5408 Regiment = "Storm Commandos",
5409} )
5410
5411TEAM_SC_FLT = CreateTeam( "SC First Lieutenant", {
5412 Description = "plebbys",
5413 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5414 Colour = Color(50, 50, 50, 255 ),
5415 Side = 1,
5416 Rank = 11,
5417 Model = "models/shepherdmod/storm/officer/storm_officer.mdl",
5418 Regiment = "Storm Commandos",
5419} )
5420
5421TEAM_SC_CAPT = CreateTeam( "SC Captain", {
5422 Description = "plebbys",
5423 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5424 Colour = Color(50, 50, 50, 255 ),
5425 Side = 1,
5426 Rank = 12,
5427 Model = "models/shepherdmod/storm/captain/storm_captain.mdl",
5428 Regiment = "Storm Commandos",
5429} )
5430
5431TEAM_SC_MAJ = CreateTeam( "SC Major", {
5432 Description = "plebbys",
5433 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5434 Colour = Color(50, 50, 50, 255 ),
5435 Side = 1,
5436 Rank = 13,
5437 Model = "models/shepherdmod/storm/captain/storm_captain.mdl",
5438 Regiment = "Storm Commandos",
5439} )
5440
5441TEAM_SC_COLO = CreateTeam( "SC Colonel", {
5442 Description = "plebbys",
5443 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5444 Colour = Color(50, 50, 50, 255 ),
5445 Side = 1,
5446 Rank = 14,
5447 Model = "models/shepherdmod/storm/captain/storm_captain.mdl",
5448 Regiment = "Storm Commandos",
5449} )
5450
5451TEAM_SC_HCOLO = CreateTeam( "SC High Colonel", {
5452 Description = "plebbys",
5453 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5454 Colour = Color(50, 50, 50, 255 ),
5455 Side = 1,
5456 Rank = 15,
5457 Model = "models/shepherdmod/storm/captain/storm_captain.mdl",
5458 Regiment = "Storm Commandos",
5459} )
5460
5461TEAM_SC_CMD = CreateTeam( "SC Commander", {
5462 Description = "Commander of the Storm Trooper Core",
5463 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5464 Colour = Color(50, 50, 50, 255 ),
5465 Side = 1,
5466 Rank = 16,
5467 Model = "models/shepherdmod/storm/Commander/storm_Commander.mdl",
5468 Regiment = "Storm Commandos",
5469} )
5470
5471TEAM_SC_BRIG = CreateTeam( "SC Brigadier", {
5472 Description = "Commander of the Storm Trooper Core",
5473 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5474 Colour = Color(50, 50, 50, 255 ),
5475 Side = 1,
5476 Rank = 17,
5477 Model = "models/shepherdmod/storm/Commander/storm_Commander.mdl",
5478 Regiment = "Storm Commandos",
5479} )
5480
5481TEAM_SC_MAJG = CreateTeam( "SC Major General", {
5482 Description = "Commander of the Storm Trooper Core",
5483 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5484 Colour = Color(50, 50, 50, 255 ),
5485 Side = 1,
5486 Rank = 18,
5487 Model = "models/shepherdmod/storm/Commander/storm_Commander.mdl",
5488 Regiment = "Storm Commandos",
5489} )
5490
5491TEAM_SC_LTG = CreateTeam( "SC Lieutenant General", {
5492 Description = "Commander of the Storm Trooper Core",
5493 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5494 Colour = Color(50, 50, 50, 255 ),
5495 Side = 1,
5496 Rank = 19,
5497 Model = "models/shepherdmod/storm/Commander/storm_Commander.mdl",
5498 Regiment = "Storm Commandos",
5499} )
5500
5501TEAM_SC_GEN = CreateTeam( "SC General", {
5502 Description = "General of the Storm Trooper Core",
5503 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5504 Colour = Color(50, 50, 50, 255 ),
5505 Side = 1,
5506 Rank = 20,
5507 Model = "models/shepherdmod/storm/Commander/storm_Commander.mdl",
5508 Regiment = "Storm Commandos",
5509} )
5510
5511TEAM_SCB_PVT = CreateTeam( "SCB Private", {
5512 Description = "plebbys",
5513 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5514 Colour = Color(50, 50, 50, 255 ),
5515 Side = 1,
5516 Rank = 1,
5517 Model = "models/sono/swbf3/forest.mdl",
5518 Regiment = "DO NOT USE",
5519} )
5520
5521TEAM_SCB_PFC = CreateTeam( "SCB Private First Class", {
5522 Description = "plebbys",
5523 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5524 Colour = Color(50, 50, 50, 255 ),
5525 Side = 1,
5526 Rank = 2,
5527 Model = "models/sono/swbf3/forest.mdl",
5528 Regiment = "DO NOT USE",
5529} )
5530
5531TEAM_SCB_LCPL = CreateTeam( "SCB Lance Corporal", {
5532 Description = "models/player/fatal/troopers/trooper.mdl",
5533 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5534 Colour = Color(50, 50, 50, 255 ),
5535 Side = 1,
5536 Rank = 3,
5537 Model = "models/sono/swbf3/forest.mdl",
5538 Regiment = "DO NOT USE",
5539} )
5540
5541TEAM_SCB_CPL = CreateTeam( "SCB Corporal", {
5542 Description = "plebbys",
5543 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5544 Colour = Color(50, 50, 50, 255 ),
5545 Side = 1,
5546 Rank = 4,
5547 Model = "models/sono/swbf3/forest.mdl",
5548 Regiment = "DO NOT USE",
5549} )
5550
5551TEAM_SCB_SGT = CreateTeam( "SCB Sergeant", {
5552 Description = "plebbys",
5553 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5554 Colour = Color(50, 50, 50, 255 ),
5555 Side = 1,
5556 Rank = 5,
5557 Model = "models/sono/swbf3/forest.mdl",
5558 Regiment = "DO NOT USE",
5559} )
5560
5561TEAM_SCB_SSGT = CreateTeam( "SCB Staff Sergeant", {
5562 Description = "plebbys",
5563 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5564 Colour = Color(50, 50, 50, 255 ),
5565 Side = 1,
5566 Rank = 6,
5567 Model = "models/sono/swbf3/forest.mdl",
5568 Regiment = "DO NOT USE",
5569} )
5570
5571TEAM_SCB_MSGT = CreateTeam( "SCB Master Sergeant", {
5572 Description = "plebbys",
5573 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5574 Colour = Color(50, 50, 50, 255 ),
5575 Side = 1,
5576 Rank = 7,
5577 Model = "models/sono/swbf3/forest.mdl",
5578 Regiment = "DO NOT USE",
5579} )
5580
5581TEAM_SCB_OFFICERCADET = CreateTeam( "SCB Officer Cadet", {
5582 Description = "plebbys",
5583 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5584 Colour = Color(50, 50, 50, 255 ),
5585 Side = 1,
5586 Rank = 8,
5587 Model = "models/sono/swbf3/forest.mdl",
5588 Regiment = "DO NOT USE",
5589} )
5590
5591TEAM_SCB_WO = CreateTeam( "SCB Warrant Officer", {
5592 Description = "plebbys",
5593 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5594 Colour = Color(50, 50, 50, 255 ),
5595 Side = 1,
5596 Rank = 9,
5597 Model = "models/sono/swbf3/forest.mdl",
5598 Regiment = "DO NOT USE",
5599} )
5600
5601TEAM_SCB_LT = CreateTeam( "SCB Lieutenant", {
5602 Description = "plebbys",
5603 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5604 Colour = Color(50, 50, 50, 255 ),
5605 Side = 1,
5606 Rank = 10,
5607 Model = "models/sono/swbf3/forest.mdl",
5608 Regiment = "DO NOT USE",
5609} )
5610
5611TEAM_SCB_FLT = CreateTeam( "SCB First Lieutenant", {
5612 Description = "plebbys",
5613 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5614 Colour = Color(50, 50, 50, 255 ),
5615 Side = 1,
5616 Rank = 11,
5617 Model = "models/sono/swbf3/forest.mdl",
5618 Regiment = "DO NOT USE",
5619} )
5620
5621TEAM_SCB_CAPT = CreateTeam( "SCB Captain", {
5622 Description = "plebbys",
5623 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5624 Colour = Color(50, 50, 50, 255 ),
5625 Side = 1,
5626 Rank = 12,
5627 Model = "models/sono/swbf3/forest.mdl",
5628 Regiment = "DO NOT USE",
5629} )
5630
5631TEAM_SCB_MAJ = CreateTeam( "SCB Major", {
5632 Description = "plebbys",
5633 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5634 Colour = Color(50, 50, 50, 255 ),
5635 Side = 1,
5636 Rank = 13,
5637 Model = "models/sono/swbf3/forest.mdl",
5638 Regiment = "DO NOT USE",
5639} )
5640
5641TEAM_SCB_COLO = CreateTeam( "SCB Colonel", {
5642 Description = "plebbys",
5643 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5644 Colour = Color(50, 50, 50, 255 ),
5645 Side = 1,
5646 Rank = 14,
5647 Model = "models/sono/swbf3/forest.mdl",
5648 Regiment = "DO NOT USE",
5649} )
5650
5651TEAM_SCB_HCOLO = CreateTeam( "SCB High Colonel", {
5652 Description = "plebbys",
5653 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5654 Colour = Color(50, 50, 50, 255 ),
5655 Side = 1,
5656 Rank = 15,
5657 Model = "models/sono/swbf3/forest.mdl",
5658 Regiment = "DO NOT USE",
5659} )
5660
5661TEAM_SCB_CMD = CreateTeam( "SCB Commander", {
5662 Description = "Commander of the Storm Trooper Core",
5663 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5664 Colour = Color(50, 50, 50, 255 ),
5665 Side = 1,
5666 Rank = 16,
5667 Model = "models/sono/swbf3/forest.mdl",
5668 Regiment = "DO NOT USE",
5669} )
5670
5671TEAM_SCB_BRIG = CreateTeam( "SCB Brigadier", {
5672 Description = "Commander of the Storm Trooper Core",
5673 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5674 Colour = Color(50, 50, 50, 255 ),
5675 Side = 1,
5676 Rank = 17,
5677 Model = "models/sono/swbf3/forest.mdl",
5678 Regiment = "DO NOT USE",
5679} )
5680
5681TEAM_SCB_MAJG = CreateTeam( "SCB Major General", {
5682 Description = "Commander of the Storm Trooper Core",
5683 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5684 Colour = Color(50, 50, 50, 255 ),
5685 Side = 1,
5686 Rank = 18,
5687 Model = "models/sono/swbf3/forest.mdl",
5688 Regiment = "DO NOT USE",
5689} )
5690
5691TEAM_SCB_LTG = CreateTeam( "SCB Lieutenant General", {
5692 Description = "Commander of the Storm Trooper Core",
5693 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5694 Colour = Color(50, 50, 50, 255 ),
5695 Side = 1,
5696 Rank = 19,
5697 Model = "models/sono/swbf3/forest.mdl",
5698 Regiment = "DO NOT USE",
5699} )
5700
5701TEAM_SCB_GEN = CreateTeam( "SCB General", {
5702 Description = "General of the Storm Trooper Core",
5703 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5704 Colour = Color(50, 50, 50, 255 ),
5705 Side = 1,
5706 Rank = 20,
5707 Model = "models/sono/swbf3/forest.mdl",
5708 Regiment = "DO NOT USE",
5709} )
5710
5711TEAM_SENTINEL = CreateTeam( "Sentinel", {
5712 Description = "pleblord",
5713 Weapons = {"tfa_swch_dc15a_bluecamo_fray", "tfa_sw_pestardual"},
5714 Colour = Color(0, 19, 77, 255),
5715 Side = 1,
5716 Rank = 5,
5717 Model = "models/jazzmcfly/jka/eg5/jka_eg5.mdl",
5718 Regiment = "Sentinel",
5719} )
5720
5721TEAM_REVAN = CreateTeam( "Darth", {
5722 Description = "sith lord",
5723 Weapons = {"weapon_lightsaber", "forcechoke"},
5724 Colour = Color(161, 0, 63, 255),
5725 Side = 1,
5726 Rank = 5,
5727 Model = "models/grealms/characters/revan_real/revan.mdl",
5728 Regiment = "Sith",
5729} )
5730
5731TEAM_REMNENT_PVT = CreateTeam( "DO NOT USE", {
5732 Description = "plebbys",
5733 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
5734 Colour = Color(142, 36, 39, 255 ),
5735 Side = 1,
5736 Rank = 1,
5737 Model = "models/ven/tk/rem/tkrem.mdl",
5738 Regiment = "DO NOT USE",
5739} )
5740
5741TEAM_REMNENT_CPL = CreateTeam( "DO NOT USE", {
5742 Description = "plebbys",
5743 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
5744 Colour = Color(142, 36, 39, 255 ),
5745 Side = 1,
5746 Rank = 2,
5747 Model = "models/ven/tk/rem/tkrem.mdl",
5748 Regiment = "DO NOT USE",
5749} )
5750
5751TEAM_REMNENT_SGT = CreateTeam( "DO NOT USE", {
5752 Description = "plebbys",
5753 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
5754 Colour = Color(142, 36, 39, 255 ),
5755 Side = 1,
5756 Rank = 3,
5757 Model = "models/ven/tk/rem/tkrem.mdl",
5758 Regiment = "DO NOT USE",
5759} )
5760
5761TEAM_REMNENT_WO = CreateTeam( "DO NOT USE", {
5762 Description = "plebbys",
5763 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
5764 Colour = Color(142, 36, 39, 255 ),
5765 Side = 1,
5766 Rank = 4,
5767 Model = "models/ven/tk/rem/tkrem.mdl",
5768 Regiment = "DO NOT USE",
5769} )
5770
5771TEAM_REMNENT_LT = CreateTeam( "DO NOT USE", {
5772 Description = "plebbys",
5773 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5774 Colour = Color(142, 36, 39, 255 ),
5775 Side = 1,
5776 Rank = 5,
5777 Model = "models/ven/tk/rem/tkrem.mdl",
5778 Regiment = "DO NOT USE",
5779} )
5780
5781
5782TEAM_REMNENT_CAPT = CreateTeam( "DO NOT USE", {
5783 Description = "plebbys",
5784 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5785 Colour = Color(142, 36, 39, 255 ),
5786 Side = 1,
5787 Rank = 6,
5788 Model = "models/ven/tk/rem/tkrem.mdl",
5789 Regiment = "DO NOT USE",
5790} )
5791
5792TEAM_REMNENT_MAJ = CreateTeam( "DO NOT USE", {
5793 Description = "plebbys",
5794 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5795 Colour = Color(142, 36, 39, 255 ),
5796 Side = 1,
5797 Rank = 7,
5798 Model = "models/ven/tk/rem/tkrem.mdl",
5799 Regiment = "DO NOT USE",
5800} )
5801
5802TEAM_REMNENT_CMD = CreateTeam( "DO NOT USE", {
5803 Description = "Commander of the Storm Trooper Core",
5804 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5805 Colour = Color(142, 36, 39, 255 ),
5806 Side = 1,
5807 Rank = 8,
5808 Model = "models/ven/tk/rem/tkrem.mdl",
5809 Regiment = "DO NOT USE",
5810} )
5811
5812TEAM_REMNENT_BRIG = CreateTeam( "DO NOT USE", {
5813 Description = "Commander of the Storm Trooper Core",
5814 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5815 Colour = Color(142, 36, 39, 255 ),
5816 Side = 1,
5817 Rank = 9,
5818 Model = "models/ven/tk/rem/tkrem.mdl",
5819 Regiment = "DO NOT USE",
5820} )
5821
5822TEAM_REMNENT_MAJG = CreateTeam( "DO NOT USE", {
5823 Description = "Commander of the Storm Trooper Core",
5824 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5825 Colour = Color(142, 36, 39, 255 ),
5826 Side = 1,
5827 Rank = 10,
5828 Model = "models/ven/tk/rem/tkrem.mdl",
5829 Regiment = "DO NOT USE",
5830} )
5831
5832TEAM_REMNENT_LTG = CreateTeam( "DO NOT USE", {
5833 Description = "Commander of the Storm Trooper Core",
5834 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5835 Colour = Color(142, 36, 39, 255 ),
5836 Side = 1,
5837 Rank = 11,
5838 Model = "models/ven/tk/rem/tkrem.mdl",
5839 Regiment = "DO NOT USE",
5840} )
5841
5842TEAM_REMNENT_GEN = CreateTeam( "DO NOT USE", {
5843 Description = "General of the Storm Trooper Core",
5844 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5845 Colour = Color(142, 36, 39, 255 ),
5846 Side = 1,
5847 Rank = 12,
5848 Model = "models/ven/tk/rem/tkrem.mdl",
5849 Regiment = "DO NOT USE",
5850} )
5851
5852TEAM_TULAKHORD = CreateTeam( "DO NOT USE", {
5853 Description = "sith lord",
5854 Weapons = {},
5855 Colour = Color(161, 0, 63, 255),
5856 Side = 1,
5857 Rank = 5,
5858 Model = "models/player/fatal/troopers/trooper.mdl",
5859 Regiment = "Do not use",
5860} )
5861
5862TEAM_KNIGHT_TRAINEE = CreateTeam( "Knight Trainee", {
5863 Description = "",
5864 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5865 Colour = Color(77, 255, 183, 255),
5866 Side = 1,
5867 Rank = 1,
5868 Model = "models/grealms/characters/zakuulknight/zakuulknight.mdl",
5869 Regiment = "Knights of Zakuul",
5870} )
5871
5872TEAM_KNIGHT_PRIVATE = CreateTeam( "Knight Private", {
5873 Description = "",
5874 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5875 Colour = Color(77, 255, 183, 255),
5876 Side = 1,
5877 Rank = 2,
5878 Model = "models/grealms/characters/zakuulknight/zakuulknight.mdl",
5879 Regiment = "Knights of Zakuul",
5880} )
5881
5882TEAM_KNIGHT_CORPORAL = CreateTeam( "Knight Corporal", {
5883 Description = "",
5884 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5885 Colour = Color(77, 255, 183, 255),
5886 Side = 1,
5887 Rank = 4,
5888 Model = "models/grealms/characters/seargeant/seargeant.mdl",
5889 Regiment = "Knights of Zakuul",
5890} )
5891TEAM_KNIGHT_SERGEANT = CreateTeam( "Knight Sergeant", {
5892 Description = "",
5893 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5894 Colour = Color(77, 255, 183, 255),
5895 Side = 1,
5896 Rank = 5,
5897 Model = "models/grealms/characters/seargeant/seargeant.mdl",
5898 Regiment = "Knights of Zakuul",
5899} )
5900TEAM_KNIGHT_LIEUTENANT = CreateTeam( "Knight Lieutenant", {
5901 Description = "",
5902 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5903 Colour = Color(77, 255, 183, 255),
5904 Side = 1,
5905 Rank = 10,
5906 Model = "models/grealms/characters/knighttroopergen/knighttroopergen.mdl",
5907 Regiment = "Knights of Zakuul",
5908} )
5909TEAM_KNIGHT_CAPTAIN = CreateTeam( "Knight Captain", {
5910 Description = "",
5911 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5912 Colour = Color(77, 255, 183, 255),
5913 Side = 1,
5914 Rank = 12,
5915 Model = "models/grealms/characters/knighttrooper/knighttrooper.mdl",
5916 Regiment = "Knights of Zakuul",
5917} )
5918
5919TEAM_KNIGHT_COMMANDER = CreateTeam( "Knight Commander", {
5920 Description = "",
5921 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5922 Colour = Color(77, 255, 183, 255),
5923 Side = 1,
5924 Rank = 16,
5925 Model = "models/banks/zakuulpaladin/zakuulpaladin.mdl",
5926 Regiment = "Knights of Zakuul",
5927} )
5928
5929TEAM_OLDISB_CHF = CreateTeam( "OLDISB Chief", {
5930 Description = "Chief of the OLDISB",
5931 Weapons = {},
5932 Colour = Color(255, 255, 255, 255),
5933 Side = 1,
5934 Rank = 4,
5935 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
5936 Regiment = "DO NOT USE",
5937} )
5938
5939TEAM_OLDISB_CONS = CreateTeam( "OLDISB Constable", {
5940 Description = "Constable of the OLDISB",
5941 Weapons = {},
5942 Colour = Color(255, 255, 255, 255),
5943 Side = 1,
5944 Rank = 8,
5945 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
5946 Regiment = "DO NOT USE",
5947} )
5948
5949TEAM_OLDISB_SCONS = CreateTeam( "OLDISB Senior Constable", {
5950 Description = "Officer of the OLDISB",
5951 Weapons = {},
5952 Colour = Color(255, 255, 255, 255),
5953 Side = 1,
5954 Rank = 9,
5955 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
5956 Regiment = "DO NOT USE",
5957} )
5958
5959TEAM_OLDISB_COLO = CreateTeam( "OLDISB Colonel", {
5960 Description = "Officer of the OLDISB",
5961 Weapons = {},
5962 Colour = Color(255, 255, 255, 255),
5963 Side = 1,
5964 Rank = 10,
5965 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
5966 Regiment = "DO NOT USE",
5967} )
5968
5969TEAM_OLDISB_SCOLO = CreateTeam( "OLDISB Senior Colonel", {
5970 Description = "Officer of the OLDISB",
5971 Weapons = {},
5972 Colour = Color(255, 255, 255, 255),
5973 Side = 1,
5974 Rank = 11,
5975 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
5976 Regiment = "DO NOT USE",
5977} )
5978
5979TEAM_PROPHET = CreateTeam( "DO NOT USE", {
5980 Description = "",
5981 Weapons = {},
5982 Colour = Color(255, 51, 51, 255),
5983 Side = 1,
5984 Rank = 5,
5985 Model = "models/nate159/req/SWTFU/sith_acolyte.mdl",
5986 Regiment = "DO NOT USE",
5987} )
5988
5989TEAM_SOR_PVT = CreateTeam( "SOR Private", {
5990 Description = "Has to be done",
5991 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
5992 Colour = Color(142, 36, 39, 255 ),
5993 Side = 1,
5994 Rank = 1,
5995 Model = "models/player/venator/tk_arc/tk_arc.mdl",
5996 Regiment = "Special Operations Regiment",
5997} )
5998
5999TEAM_SOR_PFC = CreateTeam( "SOR Private First Class", {
6000 Description = "",
6001 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6002 Colour = Color(142, 36, 39, 255 ),
6003 Side = 1,
6004 Rank = 2,
6005 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6006 Regiment = "Special Operations Regiment",
6007} )
6008
6009TEAM_SOR_LCPL = CreateTeam( "SOR Lance Corporal", {
6010 Description = "models/player/venator/tk_arc/tk_arc.mdl",
6011 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6012 Colour = Color(142, 36, 39, 255 ),
6013 Side = 1,
6014 Rank = 3,
6015 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6016 Regiment = "Special Operations Regiment",
6017} )
6018
6019TEAM_SOR_CPL = CreateTeam( "SOR Corporal", {
6020 Description = "",
6021 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6022 Colour = Color(142, 36, 39, 255 ),
6023 Side = 1,
6024 Rank = 4,
6025 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6026 Regiment = "Special Operations Regiment",
6027} )
6028
6029TEAM_SOR_SGT = CreateTeam( "SOR Sergeant", {
6030 Description = "",
6031 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6032 Colour = Color(142, 36, 39, 255 ),
6033 Side = 1,
6034 Rank = 5,
6035 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6036 Regiment = "Special Operations Regiment",
6037 } )
6038
6039TEAM_SOR_SSGT = CreateTeam( "SOR Staff Sergeant", {
6040 Description = "",
6041 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6042 Colour = Color(142, 36, 39, 255 ),
6043 Side = 1,
6044 Rank = 6,
6045 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6046 Regiment = "Special Operations Regiment",
6047} )
6048
6049TEAM_SOR_MSGT = CreateTeam( "SOR Master Sergeant", {
6050 Description = "",
6051 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6052 Colour = Color(142, 36, 39, 255 ),
6053 Side = 1,
6054 Rank = 7,
6055 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6056 Regiment = "Special Operations Regiment",
6057} )
6058
6059TEAM_SOR_WO = CreateTeam( "SOR Warrant Officer", {
6060 Description = "",
6061 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6062 Colour = Color(142, 36, 39, 255 ),
6063 Side = 1,
6064 Rank = 8,
6065 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6066 Regiment = "Special Operations Regiment",
6067} )
6068
6069TEAM_SOR_OFFICERCADET = CreateTeam( "SOR Officer Cadet", {
6070 Description = "",
6071 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6072 Colour = Color(142, 36, 39, 255 ),
6073 Side = 1,
6074 Rank = 9,
6075 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6076 Regiment = "Special Operations Regiment",
6077} )
6078
6079TEAM_SOR_LT = CreateTeam( "SOR Lieutenant", {
6080 Description = "",
6081 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6082 Colour = Color(142, 36, 39, 255 ),
6083 Side = 1,
6084 Rank = 10,
6085 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6086 Regiment = "Special Operations Regiment",
6087} )
6088
6089TEAM_SOR_FLT = CreateTeam( "SOR First Lieutenant", {
6090 Description = "",
6091 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6092 Colour = Color(142, 36, 39, 255 ),
6093 Side = 1,
6094 Rank = 11,
6095 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6096 Regiment = "Special Operations Regiment",
6097} )
6098
6099TEAM_SOR_CPT = CreateTeam( "SOR Captain", {
6100 Description = "",
6101 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6102 Colour = Color(142, 36, 39, 255 ),
6103 Side = 1,
6104 Rank = 12,
6105 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6106 Regiment = "Special Operations Regiment",
6107} )
6108
6109TEAM_SOR_MARSH = CreateTeam( "SOR Marshal", {
6110 Description = "",
6111 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6112 Colour = Color(142, 36, 39, 255 ),
6113 Side = 1,
6114 Rank = 17,
6115 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6116 Regiment = "Special Operations Regiment",
6117} )
6118
6119TEAM_SOR_DEMO = CreateTeam( "SOR Demo", {
6120 Description = "",
6121 Weapons = {"tfa_swch_alphablaster", "zeus_thermaldet", "st_e11d"},
6122 Colour = Color(142, 36, 39, 255 ),
6123 Side = 1,
6124 Rank = 5,
6125 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6126 Regiment = "Special Operations Regiment",
6127} )
6128
6129TEAM_SOR_SNIPER = CreateTeam( "SOR Sniper", {
6130 Description = "",
6131 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_se14c", "st_e11d"},
6132 Colour = Color(142, 36, 39, 255 ),
6133 Side = 1,
6134 Rank = 5,
6135 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6136 Regiment = "Special Operations Regiment",
6137} )
6138
6139TEAM_SOR_MEDIC = CreateTeam( "SOR Medic", {
6140 Description = "",
6141 Weapons = {"tfa_swch_alphablaster", "weapon_bactainjector", "st_e11d"},
6142 Colour = Color(142, 36, 39, 255 ),
6143 Side = 1,
6144 Rank = 5,
6145 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6146 Regiment = "Special Operations Regiment",
6147} )
6148
6149TEAM_SOR_HEAVY= CreateTeam( "DO NOT USE", {
6150 Description = "",
6151 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "st_e11d"},
6152 Colour = Color(142, 36, 39, 255 ),
6153 Side = 1,
6154 Rank = 5,
6155 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6156 Regiment = "DO NOT USE",
6157} )
6158
6159TEAM_MARAJADE = CreateTeam( "", {
6160 Description = "2000 year old sith lord",
6161 Weapons = {"weapon_lightsaber", "forcechoke"},
6162 Colour = Color(161, 0, 63, 255),
6163 Side = 1,
6164 Rank = 5,
6165 Model = "models/syntheticgaming/characters/marajade/marajade.mdl",
6166 Regiment = "Sith",
6167} )
6168
6169TEAM_LANDO = CreateTeam( "Lando", {
6170Description = "YTB",
6171Weapons = {"tfa_swch_dl44", "weapon_fists"},
6172Colour = Color(255, 255, 255, 255),
6173Side = 5,
6174Rank = 1,
6175Model = "=models/player/valley/lando.mdl",
6176Regiment = "Event",
6177} )
6178
6179TEAM_K2SO = CreateTeam( "KX Security Droid", {
6180Description = "topkek",
6181Weapons = {"tfa_swch_dl44", "weapon_fists", "weapon_cuff_elastic", "tfa_swch_se14c"},
6182Colour = Color(0, 255, 255, 255 ),
6183Side = 1,
6184Rank = 5,
6185Model = "models/player/valley/k2so.mdl",
6186Regiment = "KX-Series",
6187} )
6188
6189TEAM_HK51 = CreateTeam( "HK-51", {
6190 Description = "Assassin Droid",
6191 Weapons = {"tfa_swch_dc17m_br","weapon_cuff_elastic", "tfa_swch_pulsecannon"},
6192 Colour = Color(161, 0, 63, 255),
6193 Side = 1,
6194 Rank = 5,
6195 Model = "models/nikout/swtor/npc/hk51.mdl",
6196 Regiment = "HK-51",
6197} )
6198
6199TEAM_HK47 = CreateTeam( "HK-47", {
6200 Description = "Assassin Droid",
6201 Weapons = {"tfa_swch_dc17m_br","weapon_cuff_elastic", "tfa_swch_pulsecannon"},
6202 Colour = Color(161, 0, 63, 255),
6203 Side = 1,
6204 Rank = 5,
6205 Model = "models/nikout/swtor/npc/hk47.mdl",
6206 Regiment = "HK-47",
6207} )
6208
6209TEAM_31ST_PVT = CreateTeam( "31st Private", {
6210 Description = "plebbys",
6211 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6212 Colour = Color(0, 19, 77, 255),
6213 Side = 1,
6214 Rank = 1,
6215 Model = "models/player/banks/trooper/trooper.mdl",
6216 Regiment = "31st Demolitions Battalion",
6217} )
6218
6219TEAM_31ST_PFC = CreateTeam( "31st Private First Class", {
6220 Description = "plebbys",
6221 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6222 Colour = Color(0, 19, 77, 255),
6223 Side = 1,
6224 Rank = 2,
6225 Model = "models/player/banks/trooper/trooper.mdl",
6226 Regiment = "31st Demolitions Battalion",
6227} )
6228
6229TEAM_31ST_LCPL = CreateTeam( "31st Lance Corporal", {
6230 Description = "models/player/fatal/troopers/trooper.mdl",
6231 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6232 Colour = Color(0, 19, 77, 255),
6233 Side = 1,
6234 Rank = 3,
6235 Model = "models/player/banks/trooper/trooper.mdl",
6236 Regiment = "31st Demolitions Battalion",
6237} )
6238
6239TEAM_31ST_CPL = CreateTeam( "31st Corporal", {
6240 Description = "plebbys",
6241 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6242 Colour = Color(0, 19, 77, 255),
6243 Side = 1,
6244 Rank = 4,
6245 Model = "models/player/banks/trooper/trooper.mdl",
6246 Regiment = "31st Demolitions Battalion",
6247} )
6248
6249TEAM_31ST_SGT = CreateTeam( "31st Sergeant", {
6250 Description = "plebbys",
6251 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6252 Colour = Color(0, 19, 77, 255),
6253 Side = 1,
6254 Rank = 5,
6255 Model = "models/player/banks/trooper/trooper.mdl",
6256 Regiment = "31st Demolitions Battalion",
6257} )
6258
6259TEAM_31ST_SSGT = CreateTeam( "31st Staff Sergeant", {
6260 Description = "plebbys",
6261 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6262 Colour = Color(0, 19, 77, 255),
6263 Side = 1,
6264 Rank = 6,
6265 Model = "models/player/banks/trooper/trooper.mdl",
6266 Regiment = "31st Demolitions Battalion",
6267} )
6268
6269TEAM_31ST_MSGT = CreateTeam( "31st Master Sergeant", {
6270 Description = "plebbys",
6271 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6272 Colour = Color(0, 19, 77, 255),
6273 Side = 1,
6274 Rank = 7,
6275 Model = "models/player/banks/trooper/trooper.mdl",
6276 Regiment = "31st Demolitions Battalion",
6277} )
6278
6279TEAM_31ST_WO = CreateTeam( "31st Warrant Officer", {
6280 Description = "plebbys",
6281 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6282 Colour = Color(0, 19, 77, 255),
6283 Side = 1,
6284 Rank = 8,
6285 Model = "models/player/banks/officer/officer.mdl",
6286 Regiment = "31st Demolitions Battalion",
6287} )
6288
6289TEAM_31ST_OFFICERCADET = CreateTeam( "31st Officer Cadet", {
6290 Description = "plebbys",
6291 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6292 Colour = Color(0, 19, 77, 255),
6293 Side = 1,
6294 Rank = 9,
6295 Model = "models/player/banks/officer/officer.mdl",
6296 Regiment = "31st Demolitions Battalion",
6297} )
6298
6299TEAM_31ST_LT = CreateTeam( "31st Lieutenant", {
6300 Description = "plebbys",
6301 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6302 Colour = Color(0, 19, 77, 255),
6303 Side = 1,
6304 Rank = 10,
6305 Model = "models/player/banks/officer/officer.mdl",
6306 Regiment = "31st Demolitions Battalion",
6307} )
6308
6309TEAM_31ST_FLT = CreateTeam( "31st First Lieutenant", {
6310 Description = "plebbys",
6311 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6312 Colour = Color(0, 19, 77, 255),
6313 Side = 1,
6314 Rank = 11,
6315 Model = "models/player/banks/officer/officer.mdl",
6316 Regiment = "31st Demolitions Battalion",
6317} )
6318
6319TEAM_31ST_CAPT = CreateTeam( "31st Captain", {
6320 Description = "plebbys",
6321 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6322 Colour = Color(0, 19, 77, 255),
6323 Side = 1,
6324 Rank = 12,
6325 Model = "models/player/banks/officer/officer.mdl",
6326 Regiment = "31st Demolitions Battalion",
6327} )
6328
6329TEAM_31ST_MAJ = CreateTeam( "31st Major", {
6330 Description = "plebbys",
6331 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6332 Colour = Color(0, 19, 77, 255),
6333 Side = 1,
6334 Rank = 13,
6335 Model = "models/player/banks/officer/officer.mdl",
6336 Regiment = "31st Demolitions Battalion",
6337} )
6338
6339TEAM_31ST_COLO = CreateTeam( "31st Colonel", {
6340 Description = "plebbys",
6341 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6342 Colour = Color(0, 19, 77, 255),
6343 Side = 1,
6344 Rank = 14,
6345 Model = "models/player/banks/officer/officer.mdl",
6346 Regiment = "31st Demolitions Battalion",
6347} )
6348
6349TEAM_31ST_HCOLO = CreateTeam( "31st High Colonel", {
6350 Description = "plebbys",
6351 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6352 Colour = Color(0, 19, 77, 255),
6353 Side = 1,
6354 Rank = 15,
6355 Model = "models/player/banks/officer/officer.mdl",
6356 Regiment = "31st Demolitions Battalion",
6357} )
6358
6359TEAM_31ST_CMD = CreateTeam( "31st Commander", {
6360 Description = "Commander of the Storm Trooper Core",
6361 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6362 Colour = Color(0, 19, 77, 255),
6363 Side = 1,
6364 Rank = 16,
6365 Model = "models/player/banks/commander/commander.mdl",
6366 Regiment = "31st Demolitions Battalion",
6367} )
6368
6369TEAM_31ST_BRIG = CreateTeam( "31st Brigadier", {
6370 Description = "Commander of the Storm Trooper Core",
6371 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6372 Colour = Color(0, 19, 77, 255),
6373 Side = 1,
6374 Rank = 17,
6375 Model = "models/player/banks/commander/commander.mdl",
6376 Regiment = "31st Demolitions Battalion",
6377} )
6378
6379TEAM_31ST_MAJG = CreateTeam( "31st Major General", {
6380 Description = "Commander of the Storm Trooper Core",
6381 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6382 Colour = Color(0, 19, 77, 255),
6383 Side = 1,
6384 Rank = 18,
6385 Model = "models/player/banks/commander/commander.mdl",
6386 Regiment = "31st Demolitions Battalion",
6387} )
6388
6389TEAM_31ST_LTG = CreateTeam( "31st Lieutenant General", {
6390 Description = "Commander of the Storm Trooper Core",
6391 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6392 Colour = Color(0, 19, 77, 255),
6393 Side = 1,
6394 Rank = 19,
6395 Model = "models/player/banks/commander/commander.mdl",
6396 Regiment = "31st Demolitions Battalion",
6397} )
6398
6399TEAM_31ST_GEN = CreateTeam( "31st General", {
6400 Description = "General of the Storm Trooper Core",
6401 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6402 Colour = Color(0, 19, 77, 255),
6403 Side = 1,
6404 Rank = 20,
6405 Model = "models/player/banks/commander/commander.mdl",
6406 Regiment = "31st Demolitions Battalion",
6407} )
6408
6409TEAM_KNIGHT_SQUIRE = CreateTeam( "Knight Squire", {
6410 Description = "",
6411 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
6412 Colour = Color(77, 255, 183, 255),
6413 Side = 1,
6414 Rank = 6,
6415 Model = "models/grealms/characters/knighttrooperhg/knighttrooperhg.mdl",
6416 Regiment = "Knights of Zakuul",
6417} )
6418
6419TEAM_KNIGHT_TEMPLAR = CreateTeam( "Knight Templar", {
6420 Description = "",
6421 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
6422 Colour = Color(77, 255, 183, 255),
6423 Side = 1,
6424 Rank = 7,
6425 Model = "models/gonzo/zakuulguardian/zakuulguardian.mdl",
6426 Regiment = "Knights of Zakuul",
6427} )
6428
6429TEAM_KNIGHT_PALADIN = CreateTeam( "Knight Paladin", {
6430 Description = "",
6431 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
6432 Colour = Color(77, 255, 183, 255),
6433 Side = 1,
6434 Rank = 8,
6435 Model = "models/grealms/characters/darktrooper/darktrooper.mdl",
6436 Regiment = "Knights of Zakuul",
6437} )
6438
6439TEAM_HIGHGENERAL = CreateTeam( "High General", {
6440 Description = "",
6441 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6442 Colour = Color(161, 0, 63, 255),
6443 Side = 1,
6444 Rank = 5,
6445 Model = "models/player/venator/tk_arc/tk_havoc.mdl",
6446 Regiment = "Sith",
6447} )
6448
6449TEAM_ARGALUS = CreateTeam( "Lord", {
6450 Description = "Sith Lord",
6451 Weapons = {"weapon_lightsaber", "forcechoke"},
6452 Colour = Color(161, 0, 63, 255),
6453 Side = 1,
6454 Rank = 5,
6455 Model = "models/rebuilt/arcann_rebuilt.mdl",
6456 Regiment = "Sith",
6457} )
6458
6459TEAM_MALKUTHAL = CreateTeam( "Lord", {
6460 Description = "Sith Lord",
6461 Weapons = {"weapon_lightsaber", "forcechoke"},
6462 Colour = Color(161, 0, 63, 255),
6463 Side = 1,
6464 Rank = 5,
6465 Model = "models/revan/revan.mdl",
6466 Regiment = "Sith",
6467} )
6468
6469TEAM_IMPERIALCOMMANDO_ARCHANGEL = CreateTeam( "IC", {
6470 Description = "Member of the Imperial Commando Unit",
6471 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6472 Colour = Color(82, 173, 239, 255),
6473 Side = 1,
6474 Rank = 5,
6475 Model = "models/player/sono/starwars/archangel.mdl",
6476 Regiment = "Imperial Commando",
6477} )
6478
6479TEAM_IMPERIALCOMMANDO_CONTORT = CreateTeam( "IC", {
6480 Description = "Member of the Imperial Commando Unit",
6481 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6482 Colour = Color(82, 173, 239, 255),
6483 Side = 1,
6484 Rank = 5,
6485 Model = "models/player/sono/starwars/contort.mdl",
6486 Regiment = "Imperial Commando",
6487} )
6488
6489TEAM_IMPERIALCOMMANDO_GRINDER = CreateTeam( "IC", {
6490 Description = "Member of the Imperial Commando Unit",
6491 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6492 Colour = Color(82, 173, 239, 255),
6493 Side = 1,
6494 Rank = 5,
6495 Model = "models/player/sono/starwars/grinder.mdl",
6496 Regiment = "Imperial Commando",
6497} )
6498
6499TEAM_IMPERIALCOMMANDO_GRIP = CreateTeam( "IC", {
6500 Description = "Member of the Imperial Commando Unit",
6501 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6502 Colour = Color(82, 173, 239, 255),
6503 Side = 1,
6504 Rank = 5,
6505 Model = "models/player/sono/starwars/grip.mdl",
6506 Regiment = "Imperial Commando",
6507} )
6508
6509TEAM_IMPERIALCOMMANDO_HEADSHOT = CreateTeam( "IC", {
6510 Description = "Member of the Imperial Commando Unit",
6511 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6512 Colour = Color(82, 173, 239, 255),
6513 Side = 1,
6514 Rank = 5,
6515 Model = "models/player/sono/starwars/headshot.mdl",
6516 Regiment = "Imperial Commando",
6517} )
6518
6519TEAM_IMPERIALCOMMANDO_KURZ = CreateTeam( "IC", {
6520 Description = "Member of the Imperial Commando Unit",
6521 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6522 Colour = Color(82, 173, 239, 255),
6523 Side = 1,
6524 Rank = 5,
6525 Model = "models/player/sono/starwars/kurz.mdl",
6526 Regiment = "Imperial Commando",
6527} )
6528
6529TEAM_IMPERIALCOMMANDO_SCORPION = CreateTeam( "IC", {
6530 Description = "Member of the Imperial Commando Unit",
6531 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6532 Colour = Color(82, 173, 239, 255),
6533 Side = 1,
6534 Rank = 5,
6535 Model = "models/player/sono/starwars/scorpion.mdl",
6536 Regiment = "Imperial Commando",
6537} )
6538
6539TEAM_IMPERIALCOMMANDO_STRIPE = CreateTeam( "IC", {
6540 Description = "Member of the Imperial Commando Unit",
6541 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6542 Colour = Color(82, 173, 239, 255),
6543 Side = 1,
6544 Rank = 5,
6545 Model = "models/player/sono/starwars/stripe.mdl",
6546 Regiment = "Imperial Commando",
6547} )
6548
6549TEAM_IMPERIALCOMMANDO_TRANKER = CreateTeam( "IC", {
6550 Description = "Member of the Imperial Commando Unit",
6551 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6552 Colour = Color(82, 173, 239, 255),
6553 Side = 1,
6554 Rank = 5,
6555 Model = "models/player/sono/starwars/tranker.mdl",
6556 Regiment = "Imperial Commando",
6557} )
6558
6559TEAM_PVP1 = CreateTeam( "PVP-1", {
6560 Description = "",
6561 Weapons = {"tfa_swch_e11"},
6562 Colour = Color(144, 144, 144, 255),
6563 Side = 1,
6564 Rank = 1,
6565 Model = "models/player/fatal/troopers/trooper.mdl",
6566 Regiment = "PVP-1",
6567} )
6568
6569TEAM_PVP2 = CreateTeam( "PVP-2", {
6570 Description = "",
6571 Weapons = {"tfa_swch_e11"},
6572 Colour = Color(144, 144, 144, 255),
6573 Side = 1,
6574 Rank = 1,
6575 Model = "models/player/fatal/troopers/trooper.mdl",
6576 Regiment = "PVP-2",
6577} )
6578
6579TEAM_REBEL = CreateTeam( "Rebel", {
6580 Description = "",
6581 Weapons = {"tfa_swch_a280c"},
6582 Colour = Color(104, 81, 17, 255),
6583 Side = 1,
6584 Rank = 1,
6585 Model = "models/player/sgg/starwars/rebels/r_trooper/male_04.mdl",
6586 Regiment = "Rebel",
6587} )
6588
6589TEAM_ROYAL_HEAVY = CreateTeam( "RST Heavy", {
6590 Description = "Member of the Storm Trooper Core",
6591 Weapons = {"tfa_swch_e11", "weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
6592 Colour = Color(255, 51, 51, 255),
6593 Side = 1,
6594 Rank = 7,
6595 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
6596 Regiment = "Heavy Class",
6597} )
6598
6599TEAM_SHOCK_HEAVY = CreateTeam( "SK Heavy", {
6600 Description = "Member of the Shock Trooper Battalion",
6601 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser", "tfa_swch_rt97c"},
6602 Colour = Color(255, 51, 51, 255),
6603 Side = 1,
6604 Rank = 7,
6605 Model = "models/sono/shocktrooper/sergeant.mdl",
6606 Regiment = "Heavy Class",
6607} )
6608
6609TEAM_STR_PVT = CreateTeam( "STR PVT", {
6610 Description = "",
6611 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6612 Colour = Color(255, 215, 0, 255),
6613 Side = 1,
6614 Rank = 1,
6615 Model = "models/player/arf_pack/arf_jet.mdl",
6616 Regiment = "Starcrash Brigade",
6617} )
6618
6619TEAM_STR_PFC = CreateTeam( "STR PFC", {
6620 Description = "",
6621 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6622 Colour = Color(255, 215, 0, 255),
6623 Side = 1,
6624 Rank = 2,
6625 Model = "models/player/arf_pack/arf_jet.mdl",
6626 Regiment = "Starcrash Brigade",
6627} )
6628
6629TEAM_STR_LCPL = CreateTeam( "STR LCPL", {
6630 Description = "",
6631 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6632 Colour = Color(255, 215, 0, 255),
6633 Side = 1,
6634 Rank = 3,
6635 Model = "models/player/arf_pack/arf_officer.mdl",
6636 Regiment = "Starcrash Brigade",
6637} )
6638
6639TEAM_STR_CPL = CreateTeam( "STR CPL", {
6640 Description = "",
6641 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6642 Colour = Color(255, 215, 0, 255),
6643 Side = 1,
6644 Rank = 4,
6645 Model = "models/player/arf_pack/arf_officer.mdl",
6646 Regiment = "Starcrash Brigade",
6647} )
6648
6649TEAM_STR_SGT = CreateTeam( "STR SGT", {
6650 Description = "",
6651 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6652 Colour = Color(255, 215, 0, 255),
6653 Side = 1,
6654 Rank = 5,
6655 Model = "models/player/arf_pack/arf_officer.mdl",
6656 Regiment = "Starcrash Brigade",
6657} )
6658
6659TEAM_STR_SSGT = CreateTeam( "STR SSGT", {
6660 Description = "",
6661 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6662 Colour = Color(255, 215, 0, 255),
6663 Side = 1,
6664 Rank = 6,
6665 Model = "models/player/arf_pack/arf_assassin.mdl",
6666 Regiment = "Starcrash Brigade",
6667} )
6668
6669TEAM_STR_MSGT = CreateTeam( "STR MSGT", {
6670 Description = "",
6671 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6672 Colour = Color(255, 215, 0, 255),
6673 Side = 1,
6674 Rank = 7,
6675 Model = "models/player/arf_pack/arf_assassin.mdl",
6676 Regiment = "Starcrash Brigade",
6677} )
6678
6679TEAM_STR_OFFICERCADET = CreateTeam( "STR Officer Cadet", {
6680 Description = "",
6681 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6682 Colour = Color(255, 215, 0, 255),
6683 Side = 1,
6684 Rank = 8,
6685 Model = "models/player/arf_pack/arf_assassin.mdl",
6686 Regiment = "Starcrash Brigade",
6687} )
6688
6689TEAM_STR_WO = CreateTeam( "STR Warrant Officer", {
6690 Description = "",
6691 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6692 Colour = Color(255, 215, 0, 255),
6693 Side = 1,
6694 Rank = 9,
6695 Model = "models/player/arf_pack/arf_marksman.mdl",
6696 Regiment = "Starcrash Brigade",
6697} )
6698
6699TEAM_STR_LT = CreateTeam( "STR Lieutenant", {
6700 Description = "",
6701 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6702 Colour = Color(255, 215, 0, 255),
6703 Side = 1,
6704 Rank = 10,
6705 Model = "models/player/arf_pack/arf_marksman.mdl",
6706 Regiment = "Starcrash Brigade",
6707} )
6708
6709TEAM_STR_1LT = CreateTeam( "STR 1st Lieutenant", {
6710 Description = "",
6711 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6712 Colour = Color(255, 215, 0, 255),
6713 Side = 1,
6714 Rank = 11,
6715 Model = "models/player/arf_pack/arf_marksman.mdl",
6716 Regiment = "Starcrash Brigade",
6717} )
6718
6719TEAM_STR_CPT = CreateTeam( "STR Captain", {
6720 Description = "",
6721 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6722 Colour = Color(255, 215, 0, 255),
6723 Side = 1,
6724 Rank = 12,
6725 Model = "models/player/arf_pack/arf_medic.mdl",
6726 Regiment = "Starcrash Brigade",
6727} )
6728
6729TEAM_STR_MAJOR = CreateTeam( "STR Major", {
6730 Description = "",
6731 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6732 Colour = Color(255, 215, 0, 255),
6733 Side = 1,
6734 Rank = 13,
6735 Model = "models/player/arf_pack/arf_shadow.mdl",
6736 Regiment = "Starcrash Brigade",
6737} )
6738
6739TEAM_STR_COLO = CreateTeam( "STR Colonel", {
6740 Description = "",
6741 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6742 Colour = Color(255, 215, 0, 255),
6743 Side = 1,
6744 Rank = 14,
6745 Model = "models/player/arf_pack/arf_flame.mdl",
6746 Regiment = "Starcrash Brigade",
6747} )
6748
6749TEAM_STR_HCOLO = CreateTeam( "STR High Colonel", {
6750 Description = "",
6751 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6752 Colour = Color(255, 215, 0, 255),
6753 Side = 1,
6754 Rank = 15,
6755 Model = "models/player/arf_pack/arf_flame.mdl",
6756 Regiment = "Starcrash Brigade",
6757} )
6758
6759TEAM_STR_CMDR = CreateTeam( "STR Commander", {
6760 Description = "",
6761 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6762 Colour = Color(255, 215, 0, 255),
6763 Side = 1,
6764 Rank = 16,
6765 Model = "models/player/arf_pack/arf_spec.mdl",
6766 Regiment = "Starcrash Brigade",
6767} )
6768
6769TEAM_STR_BRIG = CreateTeam( "STR Brigaider", {
6770 Description = "",
6771 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6772 Colour = Color(255, 215, 0, 255),
6773 Side = 1,
6774 Rank = 17,
6775 Model = "models/player/arf_pack/arf_heavy.mdl",
6776 Regiment = "Starcrash Brigade",
6777} )
6778
6779TEAM_STR_MJRGEN = CreateTeam( "STR Major General", {
6780 Description = "",
6781 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6782 Colour = Color(255, 215, 0, 255),
6783 Side = 1,
6784 Rank = 18,
6785 Model = "models/player/arf_pack/arf_heavy.mdl",
6786 Regiment = "Starcrash Brigade",
6787} )
6788
6789TEAM_STR_LTGEN = CreateTeam( "STR Lieutenant General", {
6790 Description = "",
6791 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6792 Colour = Color(255, 215, 0, 255),
6793 Side = 1,
6794 Rank = 19,
6795 Model = "models/player/arf_pack/arf_heavy.mdl",
6796 Regiment = "Starcrash Brigade",
6797} )
6798
6799TEAM_STR_GEN = CreateTeam( "STR General", {
6800 Description = "",
6801 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6802 Colour = Color(255, 215, 0, 255),
6803 Side = 1,
6804 Rank = 20,
6805 Model = "models/player/arf_pack/arf_heavy.mdl",
6806 Regiment = "Starcrash Brigade",
6807} )
6808
6809TEAM_31_HEAVY = CreateTeam( "31st Trooper Heavy", {
6810 Description = "Member of the Storm Trooper Core",
6811 Weapons = {"tfa_swch_se14c", "weapon_frag", "tfa_swch_alphablaster", "tfa_swch_rt97c"},
6812 Colour = Color(0, 19, 77, 255),
6813 Side = 1,
6814 Rank = 7,
6815 Model = "models/player/banks/trooper/trooper.mdl",
6816 Regiment = "Heavy Class",
6817} )
6818
6819TEAM_OLDISB_KALLUS = CreateTeam( "OLDISB", {
6820 Description = "Agent of the OLDISB",
6821 Weapons = {},
6822 Colour = Color(255, 255, 255, 255),
6823 Side = 1,
6824 Rank = 6,
6825 Model = "models/player/valley/kallus.mdl",
6826 Regiment = "DO NOT USE",
6827} )
6828
6829TEAM_RB_HEAVY = CreateTeam( "Rancor Heavy", {
6830 Description = "Heavy of Rancor Battalion",
6831 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_rt97c"},
6832 Colour = Color(255, 69, 0, 255 ),
6833 Side = 1,
6834 Rank = 7,
6835 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6836 Regiment = "Heavy Class",
6837} )
6838
6839TEAM_RB_TECH = CreateTeam( "DO NOT USE", {
6840 Description = "The tech guy of Rancor Battalion",
6841 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c"},
6842 Colour = Color(255, 69, 0, 255 ),
6843 Side = 1,
6844 Rank = 5,
6845 Model = "models/player/venator/tk_arc/tk_blitz.mdl",
6846 Regiment = "DO NOT USE",
6847} )
6848
6849TEAM_RB_ENGINEER = CreateTeam( "DO NOT USE", {
6850 Description = "The Engineer of Rancor Battalion",
6851 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c"},
6852 Colour = Color(255, 69, 0, 255 ),
6853 Side = 1,
6854 Rank = 5,
6855 Model = "models/player/venator/kingsbury/tk_arc_shadow.mdl",
6856 Regiment = "DO NOT USE",
6857} )
6858
6859TEAM_RB_SNIPER = CreateTeam( "DO NOT USE", {
6860 Description = "The sniper of Rancor Battalion",
6861 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon"},
6862 Colour = Color(255, 69, 0, 255 ),
6863 Side = 1,
6864 Rank = 5,
6865 Model = "models/player/venator/tk_arc/tk_havoc.mdl",
6866 Regiment = "DO NOT USE",
6867} )
6868
6869TEAM_RB_DEMO = CreateTeam( "DO NOT USE", {
6870 Description = "Demo guy of Rancor Battalion",
6871 Weapons = {"tfa_swch_dc17m_br", "zeus_thermaldet", "tfa_swch_se14c"},
6872 Colour = Color(255, 69, 0, 255 ),
6873 Side = 1,
6874 Rank = 5,
6875 Model = "models/player/venator/kingsbury/tk_arc_hammer.mdl",
6876 Regiment = "DO NOT USE",
6877} )
6878
6879TEAM_TERROR_HEAVY = CreateTeam( "Terror Trooper Heavy", {
6880 Description = "Member of the Storm Trooper Core",
6881 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_pulsecannon", "realistic_hook", "tfa_swch_rt97c"},
6882 Colour = Color(157, 157, 157, 255),
6883 Side = 1,
6884 Rank = 7,
6885 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
6886 Regiment = "Heavy Class",
6887} )
6888
6889TEAM_ISB_SC = CreateTeam( "ISB Secretary", {
6890 Description = "Member of the Imperial Security Bureau",
6891 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6892 Colour = Color(225, 225, 153, 255 ),
6893 Side = 1,
6894 Rank = 1,
6895 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6896 Regiment = "ISB",
6897} )
6898
6899TEAM_ISB_CON = CreateTeam( "ISB Constable", {
6900 Description = "Member of the Imperial Security Bureau",
6901 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6902 Colour = Color(225, 225, 153, 255 ),
6903 Side = 1,
6904 Rank = 2,
6905 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6906 Regiment = "ISB",
6907} )
6908
6909TEAM_ISB_SNCON = CreateTeam( "ISB Senior Constable", {
6910 Description = "Member of the Imperial Security Bureau",
6911 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6912 Colour = Color(225, 225, 153, 255 ),
6913 Side = 1,
6914 Rank = 3,
6915 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6916 Regiment = "ISB",
6917} )
6918
6919TEAM_ISB_ACOP = CreateTeam( "ISB Acting Operative", {
6920 Description = "Member of the Imperial Security Bureau",
6921 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6922 Colour = Color(225, 225, 153, 255 ),
6923 Side = 1,
6924 Rank = 4,
6925 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6926 Regiment = "ISB",
6927} )
6928
6929TEAM_ISB_JNOP = CreateTeam( "ISB Junior Operative", {
6930 Description = "Member of the Imperial Security Bureau",
6931 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6932 Colour = Color(225, 225, 153, 255 ),
6933 Side = 1,
6934 Rank = 5,
6935 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6936 Regiment = "ISB",
6937} )
6938
6939TEAM_ISB_OP = CreateTeam( "ISB Operative", {
6940 Description = "Member of the Imperial Security Bureau",
6941 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6942 Colour = Color(225, 225, 153, 255 ),
6943 Side = 1,
6944 Rank = 6,
6945 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6946 Regiment = "ISB",
6947} )
6948
6949TEAM_ISB_SNOP = CreateTeam( "ISB Senior Operative", {
6950 Description = "Member of the Imperial Security Bureau",
6951 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6952 Colour = Color(225, 225, 153, 255 ),
6953 Side = 1,
6954 Rank = 7,
6955 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6956 Regiment = "ISB",
6957} )
6958
6959TEAM_ISB_MSOP = CreateTeam( "ISB Master Operative", {
6960 Description = "Member of the Imperial Security Bureau",
6961 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6962 Colour = Color(225, 225, 153, 255 ),
6963 Side = 1,
6964 Rank = 8,
6965 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6966 Regiment = "ISB",
6967} )
6968
6969TEAM_ISB_ACAGT = CreateTeam( "ISB Acting Agent", {
6970 Description = "Member of the Imperial Security Bureau",
6971 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6972 Colour = Color(225, 225, 153, 255 ),
6973 Side = 1,
6974 Rank = 9,
6975 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
6976 Regiment = "ISB",
6977} )
6978
6979TEAM_ISB_JNAGT = CreateTeam( "ISB Junior Agent", {
6980 Description = "Member of the Imperial Security Bureau",
6981 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6982 Colour = Color(225, 225, 153, 255 ),
6983 Side = 1,
6984 Rank = 10,
6985 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
6986 Regiment = "ISB",
6987} )
6988
6989TEAM_ISB_AGT = CreateTeam( "ISB Agent", {
6990 Description = "Member of the Imperial Security Bureau",
6991 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6992 Colour = Color(225, 225, 153, 255 ),
6993 Side = 1,
6994 Rank = 11,
6995 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
6996 Regiment = "ISB",
6997} )
6998
6999TEAM_ISB_SNAGT = CreateTeam( "ISB Senior Agent", {
7000 Description = "Member of the Imperial Security Bureau",
7001 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7002 Colour = Color(225, 225, 153, 255 ),
7003 Side = 1,
7004 Rank = 12,
7005 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
7006 Regiment = "ISB",
7007} )
7008
7009TEAM_ISB_SPAGT = CreateTeam( "ISB Special Agent", {
7010 Description = "Member of the Imperial Security Bureau",
7011 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7012 Colour = Color(225, 225, 153, 255 ),
7013 Side = 1,
7014 Rank = 13,
7015 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
7016 Regiment = "ISB",
7017} )
7018
7019TEAM_ISB_HAGT = CreateTeam( "ISB Head Agent", {
7020 Description = "Member of the Imperial Security Bureau",
7021 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7022 Colour = Color(225, 225, 153, 255 ),
7023 Side = 1,
7024 Rank = 14,
7025 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
7026 Regiment = "ISB",
7027} )
7028
7029TEAM_ISB_COLO = CreateTeam( "ISB Colonel", {
7030 Description = "Member of the Imperial Security Bureau",
7031 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7032 Colour = Color(225, 225, 153, 255 ),
7033 Side = 1,
7034 Rank = 15,
7035 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7036 Regiment = "ISB",
7037} )
7038
7039TEAM_ISB_SNCOLO = CreateTeam( "ISB Senior Colonel", {
7040 Description = "Member of the Imperial Security Bureau",
7041 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7042 Colour = Color(225, 225, 153, 255 ),
7043 Side = 1,
7044 Rank = 16,
7045 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7046 Regiment = "ISB",
7047} )
7048
7049TEAM_ISB_CHF = CreateTeam( "ISB Chief", {
7050 Description = "Member of the Imperial Security Bureau",
7051 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7052 Colour = Color(225, 225, 153, 255 ),
7053 Side = 1,
7054 Rank = 17,
7055 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7056 Regiment = "ISB",
7057} )
7058
7059TEAM_ISB_SNCHF = CreateTeam( "ISB Senior Chief", {
7060 Description = "Member of the Imperial Security Bureau",
7061 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7062 Colour = Color(225, 225, 153, 255 ),
7063 Side = 1,
7064 Rank = 18,
7065 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7066 Regiment = "ISB",
7067} )
7068
7069TEAM_ISB_BCHF = CreateTeam( "ISB Bureau Chief", {
7070 Description = "Member of the Imperial Security Bureau",
7071 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7072 Colour = Color(225, 225, 153, 255 ),
7073 Side = 1,
7074 Rank = 19,
7075 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7076 Regiment = "ISB",
7077} )
7078
7079TEAM_ISB_DDTR = CreateTeam( "ISB Deputy Director", {
7080 Description = "Member of the Imperial Security Bureau",
7081 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7082 Colour = Color(225, 225, 153, 255 ),
7083 Side = 1,
7084 Rank = 20,
7085 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7086 Regiment = "ISB",
7087} )
7088
7089TEAM_ISB_DTR = CreateTeam( "ISB Director", {
7090 Description = "Director of the Imperial Security Bureau",
7091 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7092 Colour = Color(225, 225, 153, 255 ),
7093 Side = 1,
7094 Rank = 21,
7095 Model = "models/player/hydro/swbf_imperial_officer_isbofficer/swbf_imperial_officer_isbofficer.mdl",
7096 Regiment = "ISB",
7097} )
7098
7099TEAM_ISB_ACAGTK = CreateTeam( "ISB Acting Agent", {
7100 Description = "Member of the Imperial Security Bureau",
7101 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7102 Colour = Color(225, 225, 153, 255 ),
7103 Side = 1,
7104 Rank = 9,
7105 Model = "models/player/valley/kallus.mdl",
7106 Regiment = "ISB",
7107} )
7108
7109TEAM_ISB_JNAGTK = CreateTeam( "ISB Junior Agent", {
7110 Description = "Member of the Imperial Security Bureau",
7111 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7112 Colour = Color(225, 225, 153, 255 ),
7113 Side = 1,
7114 Rank = 10,
7115 Model = "models/player/valley/kallus.mdl",
7116 Regiment = "ISB",
7117} )
7118
7119TEAM_ISB_AGTK = CreateTeam( "ISB Agent", {
7120 Description = "Member of the Imperial Security Bureau",
7121 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7122 Colour = Color(225, 225, 153, 255 ),
7123 Side = 1,
7124 Rank = 11,
7125 Model = "models/player/valley/kallus.mdl",
7126 Regiment = "ISB",
7127} )
7128
7129TEAM_ISB_SNAGTK = CreateTeam( "ISB Senior Agent", {
7130 Description = "Member of the Imperial Security Bureau",
7131 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7132 Colour = Color(225, 225, 153, 255 ),
7133 Side = 1,
7134 Rank = 12,
7135 Model = "models/player/valley/kallus.mdl",
7136 Regiment = "ISB",
7137} )
7138
7139TEAM_ISB_SPAGTK = CreateTeam( "ISB Special Agent", {
7140 Description = "Member of the Imperial Security Bureau",
7141 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7142 Colour = Color(225, 225, 153, 255 ),
7143 Side = 1,
7144 Rank = 13,
7145 Model = "models/player/valley/kallus.mdl",
7146 Regiment = "ISB",
7147} )
7148
7149TEAM_ISB_HAGTK = CreateTeam( "ISB Head Agent", {
7150 Description = "Member of the Imperial Security Bureau",
7151 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7152 Colour = Color(225, 225, 153, 255 ),
7153 Side = 1,
7154 Rank = 14,
7155 Model = "models/player/valley/kallus.mdl",
7156 Regiment = "ISB",
7157} )
7158
7159TEAM_ISB_DTRK = CreateTeam( "ISB Director", {
7160 Description = "Director of the Imperial Security Bureau",
7161 Weapons = {"tfa_dt29", "tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7162 Colour = Color(225, 225, 153, 255 ),
7163 Side = 1,
7164 Rank = 22,
7165 Model = "models/player/hydro/swbf_krennic/swbf_krennic.mdl",
7166 Regiment = "ISB",
7167} )
7168
7169TEAM_NAVAL_GUARD = CreateTeam( "DO NOT USE", {
7170 Description = "Member of the Naval Guard",
7171 Weapons = {"tfa_swch_rt97c", "tfa_sw_cisshot", "weapon_cuff_elastic", "tfa_swch_scoutpistol"},
7172 Colour = Color(0, 161, 255),
7173 Side = 1,
7174 Rank = 5,
7175 Model = "models/player/sono/specopstorm/specopstorm.mdl",
7176 Regiment = "DO NOT USE",
7177} )
7178
7179TEAM_DRAGORIAN = CreateTeam( "DO NOT USE", {
7180 Description = "Member of the Naval Guard",
7181 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dl44", "tfa_swch_pulsecannon"},
7182 Colour = Color(127, 95, 0, 255 ),
7183 Side = 1,
7184 Rank = 1,
7185 Model = "models/player/starwars/nhg/senateguard.mdl",
7186 Regiment = "DO NOT USE",
7187} )
7188
7189TEAM_GALEN = CreateTeam( "", {
7190 Description = "Member of the Imperial Security Bureau",
7191 Weapons = {"weapon_physgun", "tfa_swch_e11", "tfa_swch_dh17", "gmod_tool"},
7192 Colour = Color(225, 225, 153, 255 ),
7193 Side = 1,
7194 Rank = 1,
7195 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
7196 Regiment = "Galen Erso",
7197} )
7198
7199TEAM_ST_HEAVY = CreateTeam( "Storm Trooper Heavy", {
7200 Description = "Member of the Storm Trooper Core",
7201 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "tfa_swch_rt97c"},
7202 Colour = Color(102, 0, 102, 255 ),
7203 Side = 1,
7204 Rank = 7,
7205 Model = "models/player/fatal/troopers/sergeant.mdl",
7206 Regiment = "Heavy Class",
7207} )
7208
7209TEAM_CUSTOMSITH_CRISPIN = CreateTeam( "Lord", {
7210 Description = "Sith Lord",
7211 Weapons = {"weapon_lightsaber", "forcechoke"},
7212 Colour = Color(161, 0, 63, 255),
7213 Side = 1,
7214 Rank = 5,
7215 Model = "models/lord/lord.mdl",
7216 Regiment = "Sith",
7217} )
7218
7219TEAM_RB_PRIVATE = CreateTeam( "Rancor Private", {
7220 Description = "Private of Rancor Battalion",
7221 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7222 Colour = Color(255,69,0, 255 ),
7223 Side = 1,
7224 Rank = 1,
7225 Model = "models/player/venator/tk_arc/tk_arc.mdl",
7226 Regiment = "Rancor Battalion",
7227} )
7228
7229TEAM_RB_PFC = CreateTeam( "Rancor Private First Class", {
7230Description = "Private First Class of Rancor Battalion",
7231 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7232 Colour = Color(255,69,0, 255 ),
7233 Side = 1,
7234 Rank = 2,
7235 Model = "models/player/venator/tk_arc/tk_arc.mdl",
7236 Regiment = "Rancor Battalion"
7237} )
7238
7239TEAM_RB_LCPL = CreateTeam( "Rancor Lance Corporal", {
7240Description = "Lance Corporal of Rancor Battalion",
7241 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7242 Colour = Color(255,69,0, 255 ),
7243 Side = 1,
7244 Rank = 3,
7245 Model = "models/player/venator/tk_arc/tk_arc.mdl",
7246 Regiment = "Rancor Battalion",
7247} )
7248
7249TEAM_RB_CPL = CreateTeam( "Rancor Corporal", {
7250Description = "Corporal of Rancor Battalion",
7251 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7252 Colour = Color(255,69,0, 255 ),
7253 Side = 1,
7254 Rank = 4,
7255 Model = "models/player/venator/tk_arc/tk_arc.mdl",
7256 Regiment = "Rancor Battalion",
7257} )
7258
7259TEAM_RB_SGT = CreateTeam( "Rancor Sergeant", {
7260Description = "Sergeant of Rancor Battalion",
7261 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7262 Colour = Color(255,69,0, 255 ),
7263 Side = 1,
7264 Rank = 5,
7265 Model = "models/player/kingsbury/tk_arc/tk_green.mdl",
7266 Regiment = "Rancor Battalion",
7267} )
7268
7269TEAM_RB_SSGT = CreateTeam( "Rancor Staff Sergeant", {
7270Description = "Staff Sergeant of Rancor Battalion",
7271 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7272 Colour = Color(255,69,0, 255 ),
7273 Side = 1,
7274 Rank = 6,
7275 Model = "models/player/kingsbury/tk_arc/tk_green.mdl",
7276 Regiment = "Rancor Battalion"
7277} )
7278
7279TEAM_RB_MSGT = CreateTeam( "Rancor Master Sergeant", {
7280Description = "Master Sergeant of Rancor Battalion",
7281 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7282 Colour = Color(255,69,0, 255 ),
7283 Side = 1,
7284 Rank = 7,
7285 Model = "models/player/kingsbury/tk_arc/tk_green.mdl",
7286 Regiment = "Rancor Battalion"
7287} )
7288
7289TEAM_RB_OC = CreateTeam( "Rancor Officer Cadet", {
7290Description = "Officer Cadet of Rancor Battalion",
7291 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7292 Colour = Color(255,69,0, 255 ),
7293 Side = 1,
7294 Rank = 8,
7295 Model = "models/player/kingsbury/tk_arc/tk_green.mdl",
7296 Regiment = "Rancor Battalion"
7297} )
7298
7299TEAM_RB_WO = CreateTeam( "Rancor Warrant Officer", {
7300Description = "Warrant Officer of Rancor Battalion",
7301 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7302 Colour = Color(255,69,0, 255 ),
7303 Side = 1,
7304 Rank = 9,
7305 Model = "models/player/kingsbury/tk_arc/tk_blue.mdl",
7306 Regiment = "Rancor Battalion"
7307} )
7308
7309TEAM_RB_LT = CreateTeam( "Rancor Lieutenant", {
7310Description = "Lieutenant of Rancor Battalion",
7311 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7312 Colour = Color(255,69,0, 255 ),
7313 Side = 1,
7314 Rank = 10,
7315 Model = "models/player/kingsbury/tk_arc/tk_blue.mdl",
7316 Regiment = "Rancor Battalion"
7317} )
7318
7319TEAM_RB_FLT = CreateTeam( "Rancor First Lieutenant", {
7320Description = "First Lieutenant of Rancor Battalion",
7321 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7322 Colour = Color(255,69,0, 255 ),
7323 Side = 1,
7324 Rank = 11,
7325 Model = "models/player/kingsbury/tk_arc/tk_blue.mdl",
7326 Regiment = "Rancor Battalion"
7327} )
7328
7329TEAM_RB_CPT = CreateTeam( "Rancor Captain", {
7330Description = "Captain of Rancor Battalion",
7331 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7332 Colour = Color(255,69,0, 255 ),
7333 Side = 1,
7334 Rank = 12,
7335 Model = "models/player/kingsbury/tk_arc/tk_red.mdl",
7336 Regiment = "Rancor Battalion"
7337} )
7338
7339TEAM_RB_MAJOR = CreateTeam( "Rancor Major", {
7340Description = "Major of Rancor Battalion",
7341 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7342 Colour = Color(255,69,0, 255 ),
7343 Side = 1,
7344 Rank = 13,
7345 Model = "models/player/kingsbury/tk_arc/tk_red.mdl",
7346 Regiment = "Rancor Battalion"
7347} )
7348
7349TEAM_RB_Colonel = CreateTeam( "Rancor Colonel", {
7350Description = "Colonel of Rancor Battalion",
7351 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7352 Colour = Color(255,69,0, 255 ),
7353 Side = 1,
7354 Rank = 14,
7355 Model = "models/player/kingsbury/tk_arc/tk_red.mdl",
7356 Regiment = "Rancor Battalion"
7357} )
7358
7359TEAM_RB_HIGH_COLONEL = CreateTeam( "Rancor High Colonel", {
7360Description = "High Colonel of Rancor Battalion",
7361 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7362 Colour = Color(255,69,0, 255 ),
7363 Side = 1,
7364 Rank = 15,
7365 Model = "models/player/kingsbury/tk_arc/tk_red.mdl",
7366 Regiment = "Rancor Battalion"
7367} )
7368
7369TEAM_RB_COMMANDER = CreateTeam( "Rancor Commander", {
7370Description = "Commander of Rancor Battalion",
7371 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7372 Colour = Color(255,69,0, 255 ),
7373 Side = 1,
7374 Rank = 16,
7375 Model = "models/player/kingsbury/tk_arc/tk_yellow.mdl",
7376 Regiment = "Rancor Battalion"
7377} )
7378
7379TEAM_RB_BRIGIDIER = CreateTeam( "Rancor Brigadier", {
7380Description = "Brigidier of Rancor Battalion",
7381 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7382 Colour = Color(255,69,0, 255 ),
7383 Side = 1,
7384 Rank = 17,
7385 Model = "models/player/kingsbury/tk_arc/tk_yellow.mdl",
7386 Regiment = "Rancor Battalion"
7387} )
7388
7389TEAM_RB_MAJOR_GENERAL = CreateTeam( "Rancor Major General", {
7390Description = "Major General of Rancor Battalion",
7391 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7392 Colour = Color(255,69,0, 255 ),
7393 Side = 1,
7394 Rank = 18,
7395 Model = "models/player/kingsbury/tk_arc/tk_yellow.mdl",
7396 Regiment = "Rancor Battalion"
7397} )
7398
7399TEAM_RB_LIEUTENANT_GENERAL = CreateTeam( "Rancor Lieutenant General", {
7400Description = "Lieutenant General of Rancor Battalion",
7401 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7402 Colour = Color(255,69,0, 255 ),
7403 Side = 1,
7404 Rank = 19,
7405 Model = "models/player/kingsbury/tk_arc/tk_yellow.mdl",
7406 Regiment = "Rancor Battalion"
7407} )
7408
7409TEAM_RB_GENERAL = CreateTeam( "Rancor General", {
7410Description = "General of Rancor Battalion",
7411 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7412 Colour = Color(255,69,0, 255 ),
7413 Side = 1,
7414 Rank = 20,
7415 Model = "models/player/kingsbury/tk_arc/tk_yellow.mdl",
7416 Regiment = "Rancor Battalion"
7417} )
7418
7419TEAM_RB_COLT = CreateTeam( "Rancor", {
7420Description = "Colt of Rancor Battalion",
7421 Weapons = {"tfa_swch_se14c", "tfa_swch_dc17m_br", "tfa_swch_pulsecannon"},
7422 Colour = Color(255,69,0, 255 ),
7423 Side = 1,
7424 Rank = 15,
7425 Model = "models/player/venator/tk_arc/tk_colt.mdl",
7426 Regiment = "Rancor Battalion"
7427} )
7428
7429TEAM_RB_BLITZ = CreateTeam( "Rancor", {
7430Description = "Blitz of Rancor Battalion",
7431 Weapons = {"tfa_swch_se14c", "tfa_swch_dc17m_br", "tfa_swch_pulsecannon"},
7432 Colour = Color(255,69,0, 255 ),
7433 Side = 1,
7434 Rank = 12,
7435 Model = "models/player/venator/tk_arc/tk_blitz.mdl",
7436 Regiment = "Rancor Battalion"
7437} )
7438
7439TEAM_RB_HAVOC = CreateTeam( "Rancor", {
7440Description = "Lance Corporal of Rancor Battalion",
7441 Weapons = {"tfa_swch_se14c", "tfa_swch_dc17m_br", "tfa_swch_pulsecannon"},
7442 Colour = Color(255,69,0, 255 ),
7443 Side = 1,
7444 Rank = 12,
7445 Model = "models/player/venator/tk_arc/tk_havoc.mdl",
7446 Regiment = "Rancor Battalion"
7447} )
7448
7449TEAM_SITH_KORNELIUS = CreateTeam( "Lord", {
7450 Description = "Sith Lord",
7451 Weapons = {"weapon_lightsaber", "forcechoke"},
7452 Colour = Color(161, 0, 63, 255),
7453 Side = 1,
7454 Rank = 5,
7455 Model = "models/grealms/characters/darthnihilus/darthnihilus.mdl",
7456 Regiment = "Sith",
7457} )
7458
7459---------------------------------------------------------------------------
7460
7461TEAM_REMNANT_PVT = CreateTeam( "Remnant Private", {
7462 Description = "plebbys",
7463 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
7464 Colour = Color(142, 36, 39, 255 ),
7465 Side = 1,
7466 Rank = 1,
7467 Model = "models/ven/tk/rem/tkrem.mdl",
7468 Regiment = "Remnant Trooper",
7469} )
7470
7471TEAM_REMNANT_PFC = CreateTeam( "Remnant Private First Class", {
7472 Description = "plebbys",
7473 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
7474 Colour = Color(142, 36, 39, 255 ),
7475 Side = 1,
7476 Rank = 2,
7477 Model = "models/ven/tk/rem/tkrem.mdl",
7478 Regiment = "Remnant Trooper",
7479} )
7480
7481TEAM_REMNANT_LCPL = CreateTeam( "Remnant Lance Corporal", {
7482 Description = "plebbys",
7483 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
7484 Colour = Color(142, 36, 39, 255 ),
7485 Side = 1,
7486 Rank = 3,
7487 Model = "models/ven/tk/rem/tkrem.mdl",
7488 Regiment = "Remnant Trooper",
7489} )
7490
7491TEAM_REMNANT_CPL = CreateTeam( "Remnant Corporal", {
7492 Description = "plebbys",
7493 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
7494 Colour = Color(142, 36, 39, 255 ),
7495 Side = 1,
7496 Rank = 4,
7497 Model = "models/ven/tk/rem/tkrem.mdl",
7498 Regiment = "Remnant Trooper",
7499} )
7500
7501TEAM_REMNANT_SGT = CreateTeam( "Remnant Sergeant", {
7502 Description = "plebbys",
7503 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
7504 Colour = Color(142, 36, 39, 255 ),
7505 Side = 1,
7506 Rank = 5,
7507 Model = "models/ven/tk/rem/tkrem.mdl",
7508 Regiment = "Remnant Trooper",
7509} )
7510
7511TEAM_REMNANT_SSGT = CreateTeam( "Remnant Staff Sergeant", {
7512 Description = "plebbys",
7513 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
7514 Colour = Color(142, 36, 39, 255 ),
7515 Side = 1,
7516 Rank = 6,
7517 Model = "models/ven/tk/rem/tkrem.mdl",
7518 Regiment = "Remnant Trooper",
7519} )
7520
7521TEAM_REMNANT_MSGT = CreateTeam( "Remnant Master Sergeant", {
7522 Description = "plebbys",
7523 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
7524 Colour = Color(142, 36, 39, 255 ),
7525 Side = 1,
7526 Rank = 7,
7527 Model = "models/ven/tk/rem/tkrem.mdl",
7528 Regiment = "Remnant Trooper",
7529} )
7530
7531TEAM_REMNANT_OC = CreateTeam( "Remnant Officer Cadet", {
7532 Description = "plebbys",
7533 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
7534 Colour = Color(142, 36, 39, 255 ),
7535 Side = 1,
7536 Rank = 8,
7537 Model = "models/ven/tk/rem/tkrem.mdl",
7538 Regiment = "Remnant Trooper",
7539} )
7540
7541TEAM_REMNANT_WO = CreateTeam( "Remnant Warrant Officer", {
7542 Description = "plebbys",
7543 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
7544 Colour = Color(142, 36, 39, 255 ),
7545 Side = 1,
7546 Rank = 9,
7547 Model = "models/ven/tk/rem/tkrem.mdl",
7548 Regiment = "Remnant Trooper",
7549} )
7550
7551TEAM_REMNANT_LT = CreateTeam( "Remnant Lieutenant", {
7552 Description = "plebbys",
7553 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7554 Colour = Color(142, 36, 39, 255 ),
7555 Side = 1,
7556 Rank = 10,
7557 Model = "models/ven/tk/rem/tkrem.mdl",
7558 Regiment = "Remnant Trooper",
7559} )
7560
7561TEAM_REMNANT_1LT = CreateTeam( "Remnant First Lieutenant", {
7562 Description = "plebbys",
7563 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7564 Colour = Color(142, 36, 39, 255 ),
7565 Side = 1,
7566 Rank = 11,
7567 Model = "models/ven/tk/rem/tkrem.mdl",
7568 Regiment = "Remnant Trooper",
7569} )
7570
7571TEAM_REMNANT_CAPT = CreateTeam( "Remnant Captain", {
7572 Description = "plebbys",
7573 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7574 Colour = Color(142, 36, 39, 255 ),
7575 Side = 1,
7576 Rank = 12,
7577 Model = "models/ven/tk/rem/tkrem.mdl",
7578 Regiment = "Remnant Trooper",
7579} )
7580
7581TEAM_REMNANT_MAJ = CreateTeam( "Remnant Major", {
7582 Description = "plebbys",
7583 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7584 Colour = Color(142, 36, 39, 255 ),
7585 Side = 1,
7586 Rank = 13,
7587 Model = "models/ven/tk/rem/tkrem.mdl",
7588 Regiment = "Remnant Trooper",
7589} )
7590
7591TEAM_REMNANT_COLO = CreateTeam( "Remnant Colonel", {
7592 Description = "plebbys",
7593 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7594 Colour = Color(142, 36, 39, 255 ),
7595 Side = 1,
7596 Rank = 14,
7597 Model = "models/ven/tk/rem/tkrem.mdl",
7598 Regiment = "Remnant Trooper",
7599} )
7600
7601TEAM_REMNANT_HCOLO = CreateTeam( "Remnant High Colonel", {
7602 Description = "plebbys",
7603 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7604 Colour = Color(142, 36, 39, 255 ),
7605 Side = 1,
7606 Rank = 15,
7607 Model = "models/ven/tk/rem/tkrem.mdl",
7608 Regiment = "Remnant Trooper",
7609} )
7610
7611TEAM_REMNANT_CMD = CreateTeam( "Remnant Commander", {
7612 Description = "Commander of the Storm Trooper Core",
7613 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7614 Colour = Color(142, 36, 39, 255 ),
7615 Side = 1,
7616 Rank = 16,
7617 Model = "models/ven/tk/rem/tkrem.mdl",
7618 Regiment = "Remnant Trooper",
7619} )
7620
7621TEAM_REMNANT_BRIG = CreateTeam( "Remnant Brigadier", {
7622 Description = "Commander of the Storm Trooper Core",
7623 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7624 Colour = Color(142, 36, 39, 255 ),
7625 Side = 1,
7626 Rank = 17,
7627 Model = "models/ven/tk/rem/tkrem.mdl",
7628 Regiment = "Remnant Trooper",
7629} )
7630
7631TEAM_REMNANT_MAJG = CreateTeam( "Remnant Major General", {
7632 Description = "Commander of the Storm Trooper Core",
7633 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7634 Colour = Color(142, 36, 39, 255 ),
7635 Side = 1,
7636 Rank = 18,
7637 Model = "models/ven/tk/rem/tkrem.mdl",
7638 Regiment = "Remnant Trooper",
7639} )
7640
7641TEAM_REMNANT_LTG = CreateTeam( "Remnant Lieutenant General", {
7642 Description = "Commander of the Storm Trooper Core",
7643 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7644 Colour = Color(142, 36, 39, 255 ),
7645 Side = 1,
7646 Rank = 19,
7647 Model = "models/ven/tk/rem/tkrem.mdl",
7648 Regiment = "Remnant Trooper",
7649} )
7650
7651TEAM_REMNANT_GEN = CreateTeam( "Remnant General", {
7652 Description = "General of the Storm Trooper Core",
7653 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7654 Colour = Color(142, 36, 39, 255 ),
7655 Side = 1,
7656 Rank = 20,
7657 Model = "models/ven/tk/rem/tkrem.mdl",
7658 Regiment = "Remnant Trooper",
7659} )
7660
7661TEAM_INFERNO_TRE = CreateTeam( "Inferno Squad Trainee", {
7662 Description = "plebbys",
7663 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "tfa_swch_pulsecannon"},
7664 Colour = Color(217, 20, 20, 255 ),
7665 Side = 1,
7666 Rank = 1,
7667 Model = "models/pilot/inferno_squad_pilot.mdl",
7668 Regiment = "Inferno Squad",
7669} )
7670
7671TEAM_INFERNO_STRE = CreateTeam( "Inferno Squad Senior Trainee", {
7672 Description = "plebbys",
7673 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic"},
7674 Colour = Color(217, 20, 20, 255 ),
7675 Side = 1,
7676 Rank = 2,
7677 Model = "models/pilot/inferno_squad_pilot.mdl",
7678 Regiment = "Inferno Squad",
7679} )
7680
7681TEAM_INFERNO_ACOP = CreateTeam( "Inferno Squad Acting Operative", {
7682 Description = "plebbys",
7683 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7684 Colour = Color(217, 20, 20, 255 ),
7685 Side = 1,
7686 Rank = 3,
7687 Model = "models/pilot/inferno_squad_pilot.mdl",
7688 Regiment = "Inferno Squad",
7689} )
7690
7691TEAM_INFERNO_JNOP = CreateTeam( "Inferno Squad Junior Operative", {
7692 Description = "plebbys",
7693 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7694 Colour = Color(217, 20, 20, 255 ),
7695 Side = 1,
7696 Rank = 4,
7697 Model = "models/pilot/inferno_squad_pilot.mdl",
7698 Regiment = "Inferno Squad",
7699} )
7700
7701TEAM_INFERNO_OP = CreateTeam( "Inferno Squad Operative", {
7702 Description = "General of the Storm Trooper Core",
7703 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7704 Colour = Color(217, 20, 20, 255 ),
7705 Side = 1,
7706 Rank = 5,
7707 Model = "models/pilot/inferno_squad_pilot.mdl",
7708 Regiment = "Inferno Squad",
7709} )
7710
7711TEAM_INFERNO_SNOP = CreateTeam( "Inferno Squad Senior Operative", {
7712 Description = "plebbys",
7713 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7714 Colour = Color(217, 20, 20, 255 ),
7715 Side = 1,
7716 Rank = 6,
7717 Model = "models/pilot/inferno_squad_pilot.mdl",
7718 Regiment = "Inferno Squad",
7719} )
7720
7721TEAM_INFERNO_MSOP = CreateTeam( "Inferno Squad Master Operative", {
7722 Description = "plebbys",
7723 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7724 Colour = Color(217, 20, 20, 255 ),
7725 Side = 1,
7726 Rank = 7,
7727 Model = "models/pilot/inferno_squad_pilot.mdl",
7728 Regiment = "Inferno Squad",
7729} )
7730
7731TEAM_INFERNO_ACAGT = CreateTeam( "Inferno Squad Acting Agent", {
7732 Description = "plebbys",
7733 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7734 Colour = Color(217, 20, 20, 255 ),
7735 Side = 1,
7736 Rank = 8,
7737 Model = "models/pilot/inferno_squad_pilot.mdl",
7738 Regiment = "Inferno Squad",
7739} )
7740
7741TEAM_INFERNO_JNAGT = CreateTeam( "Inferno Squad Junior Agent", {
7742 Description = "plebbys",
7743 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7744 Colour = Color(217, 20, 20, 255 ),
7745 Side = 1,
7746 Rank = 9,
7747 Model = "models/pilot/inferno_squad_pilot.mdl",
7748 Regiment = "Inferno Squad",
7749} )
7750
7751TEAM_INFERNO_AGT = CreateTeam( "Inferno Squad Agent", {
7752 Description = "plebbys",
7753 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7754 Colour = Color(217, 20, 20, 255 ),
7755 Side = 1,
7756 Rank = 10,
7757 Model = "models/player/markus/ot_inferno_squad_del/ot_inferno_squad_del_playermodel.mdl",
7758 Regiment = "Inferno Squad",
7759} )
7760
7761TEAM_INFERNO_SBLT = CreateTeam( "Inferno Squad Sub Lieutenant", {
7762 Description = "plebbys",
7763 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7764 Colour = Color(217, 20, 20, 255 ),
7765 Side = 1,
7766 Rank = 11,
7767 Model = "models/player/markus/ot_inferno_squad_del/ot_inferno_squad_del_playermodel.mdl",
7768 Regiment = "Inferno Squad",
7769} )
7770
7771TEAM_INFERNO_LT = CreateTeam( "Inferno Squad Lieutenant", {
7772 Description = "plebbys",
7773 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7774 Colour = Color(217, 20, 20, 255 ),
7775 Side = 1,
7776 Rank = 12,
7777 Model = "models/player/markus/ot_inferno_squad_del/ot_inferno_squad_del_playermodel.mdl",
7778 Regiment = "Inferno Squad",
7779} )
7780
7781TEAM_INFERNO_LCMD = CreateTeam( "Inferno Squad Lieutenant Commander", {
7782 Description = "plebbys",
7783 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7784 Colour = Color(217, 20, 20, 255 ),
7785 Side = 1,
7786 Rank = 13,
7787 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7788 Regiment = "Inferno Squad",
7789} )
7790
7791TEAM_INFERNO_CMD = CreateTeam( "Inferno Squad Commander", {
7792 Description = "plebbys",
7793 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7794 Colour = Color(217, 20, 20, 255 ),
7795 Side = 1,
7796 Rank = 14,
7797 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7798 Regiment = "Inferno Squad",
7799} )
7800
7801TEAM_INFERNO_CAPT = CreateTeam( "Inferno Squad Captain", {
7802 Description = "plebbys",
7803 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7804 Colour = Color(217, 20, 20, 255 ),
7805 Side = 1,
7806 Rank = 15,
7807 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7808 Regiment = "Inferno Squad",
7809} )
7810
7811TEAM_INFERNO_LCAPT = CreateTeam( "Inferno Squad Line Captain", {
7812 Description = "plebbys",
7813 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7814 Colour = Color(217, 20, 20, 255 ),
7815 Side = 1,
7816 Rank = 16,
7817 Model = "models/player/markus/ot_inferno_squad_iden_versio/ot_inferno_squad_iden_versio_playermodel.mdl",
7818 Regiment = "Inferno Squad",
7819} )
7820
7821TEAM_INFERNO_COMMO = CreateTeam( "Inferno Squad Commodore", {
7822 Description = "Commander of the Storm Trooper Core",
7823 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7824 Colour = Color(217, 20, 20, 255 ),
7825 Side = 1,
7826 Rank = 17,
7827 Model = "models/player/markus/ot_inferno_squad_iden_versio/ot_inferno_squad_iden_versio_playermodel.mdl",
7828 Regiment = "Inferno Squad",
7829} )
7830
7831TEAM_INFERNO_RADMIRAL = CreateTeam( "Inferno Squad Rear Admiral", {
7832 Description = "Commander of the Storm Trooper Core",
7833 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7834 Colour = Color(217, 20, 20, 255 ),
7835 Side = 1,
7836 Rank = 18,
7837 Model = "models/player/markus/ot_inferno_squad_iden_versio/ot_inferno_squad_iden_versio_playermodel.mdl",
7838 Regiment = "Inferno Squad",
7839} )
7840
7841TEAM_INFERNO_VADMIRAL = CreateTeam( "Inferno Squad Vice Admiral", {
7842 Description = "Commander of the Storm Trooper Core",
7843 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7844 Colour = Color(217, 20, 20, 255 ),
7845 Side = 1,
7846 Rank = 19,
7847 Model = "models/player/markus/ot_inferno_squad_iden_versio/ot_inferno_squad_iden_versio_playermodel.mdl",
7848 Regiment = "Inferno Squad",
7849} )
7850
7851TEAM_INFERNO_ADMIRAL = CreateTeam( "Inferno Squad Admiral", {
7852 Description = "Commander of the Storm Trooper Core",
7853 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7854 Colour = Color(217, 20, 20, 255 ),
7855 Side = 1,
7856 Rank = 20,
7857 Model = "models/player/markus/ot_inferno_squad_iden_versio/ot_inferno_squad_iden_versio_playermodel.mdl",
7858 Regiment = "Inferno Squad",
7859} )
7860
7861TEAM_SCAR_PVT = CreateTeam( "SCAR Private", {
7862 Description = "Member of the Storm Trooper Core",
7863 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7864 Colour = Color(0, 72, 6, 255 ),
7865 Side = 1,
7866 Rank = 1,
7867 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7868 Regiment = "SCAR Trooper",
7869} )
7870
7871TEAM_SCAR_PFC = CreateTeam( "SCAR Private First Class", {
7872 Description = "Member of the Storm Trooper Core",
7873 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7874 Colour = Color(0, 72, 6, 255 ),
7875 Side = 1,
7876 Rank = 2,
7877 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7878 Regiment = "SCAR Trooper",
7879} )
7880
7881TEAM_SCAR_LCPL = CreateTeam( "SCAR Lance Corporal", {
7882 Description = "models/player/fatal/troopers/trooper.mdl",
7883 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7884 Colour = Color(0, 72, 6, 255 ),
7885 Side = 1,
7886 Rank = 3,
7887 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7888 Regiment = "SCAR Trooper",
7889} )
7890
7891TEAM_SCAR_CPL = CreateTeam( "SCAR Corporal", {
7892 Description = "Member of the Storm Trooper Core",
7893 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7894 Colour = Color(0, 72, 6, 255 ),
7895 Side = 1,
7896 Rank = 4,
7897 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7898 Regiment = "SCAR Trooper",
7899} )
7900
7901TEAM_SCAR_SGT = CreateTeam( "SCAR Sergeant", {
7902 Description = "Member of the Storm Trooper Core",
7903 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7904 Colour = Color(0, 72, 6, 255 ),
7905 Side = 1,
7906 Rank = 5,
7907 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7908 Regiment = "SCAR Trooper",
7909} )
7910
7911TEAM_SCAR_SSGT = CreateTeam( "SCAR Staff Sergeant", {
7912 Description = "Member of the Storm Trooper Core",
7913 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7914 Colour = Color(0, 72, 6, 255 ),
7915 Side = 1,
7916 Rank = 6,
7917 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7918 Regiment = "SCAR Trooper",
7919} )
7920
7921TEAM_SCAR_MSGT = CreateTeam( "SCAR Master Sergeant", {
7922 Description = "Member of the Storm Trooper Core",
7923 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7924 Colour = Color(0, 72, 6, 255 ),
7925 Side = 1,
7926 Rank = 7,
7927 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7928 Regiment = "SCAR Trooper",
7929} )
7930
7931TEAM_SCAR_OFFICERCADET = CreateTeam( "SCAR Officer Cadet", {
7932 Description = "Member of the Storm Trooper Core",
7933 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7934 Colour = Color(0, 72, 6, 255 ),
7935 Side = 1,
7936 Rank = 8,
7937 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7938 Regiment = "SCAR Trooper",
7939} )
7940
7941TEAM_SCAR_WO = CreateTeam( "SCAR Warrant Officer", {
7942 Description = "Member of the Storm Trooper Core",
7943 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7944 Colour = Color(0, 72, 6, 255 ),
7945 Side = 1,
7946 Rank = 9,
7947 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7948 Regiment = "SCAR Trooper",
7949} )
7950
7951TEAM_SCAR_LT = CreateTeam( "SCAR Lieutenant", {
7952 Description = "Member of the Storm Trooper Core",
7953 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7954 Colour = Color(0, 72, 6, 255 ),
7955 Side = 1,
7956 Rank = 10,
7957 Model = "models/player/banks/banks/tk_colt.mdl",
7958 Regiment = "SCAR Trooper",
7959} )
7960
7961TEAM_SCAR_FLT = CreateTeam( "SCAR First Lieutenant", {
7962 Description = "Member of the Storm Trooper Core",
7963 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7964 Colour = Color(0, 72, 6, 255 ),
7965 Side = 1,
7966 Rank = 11,
7967 Model = "models/player/banks/banks/tk_colt.mdl",
7968 Regiment = "SCAR Trooper",
7969} )
7970
7971TEAM_SCAR_CAPT = CreateTeam( "SCAR Captain", {
7972 Description = "Member of the Storm Trooper Core",
7973 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7974 Colour = Color(0, 72, 6, 255 ),
7975 Side = 1,
7976 Rank = 12,
7977 Model = "models/player/banks/banks/tk_colt.mdl",
7978 Regiment = "SCAR Trooper",
7979} )
7980
7981TEAM_SCAR_MAJ = CreateTeam( "SCAR Major", {
7982 Description = "Member of the Storm Trooper Core",
7983 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7984 Colour = Color(0, 72, 6, 255 ),
7985 Side = 1,
7986 Rank = 13,
7987 Model = "models/player/banks/banks/tk_colt.mdl",
7988 Regiment = "SCAR Trooper",
7989} )
7990
7991TEAM_SCAR_COLO = CreateTeam( "SCAR Colonel", {
7992 Description = "Member of the Storm Trooper Core",
7993 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7994 Colour = Color(0, 72, 6, 255 ),
7995 Side = 1,
7996 Rank = 14,
7997 Model = "models/player/banks/banks/tk_colt.mdl",
7998 Regiment = "SCAR Trooper",
7999} )
8000
8001TEAM_SCAR_HCOLO = CreateTeam( "SCAR High Colonel", {
8002 Description = "Member of the Storm Trooper Core",
8003 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
8004 Colour = Color(0, 72, 6, 255 ),
8005 Side = 1,
8006 Rank = 15,
8007 Model = "models/player/banks/banks/tk_colt.mdl",
8008 Regiment = "SCAR Trooper",
8009} )
8010
8011TEAM_SCAR_CMD = CreateTeam( "SCAR Commander", {
8012 Description = "Commander of the Storm Trooper Core",
8013 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
8014 Colour = Color(0, 72, 6, 255 ),
8015 Side = 1,
8016 Rank = 16,
8017 Model = "models/player/banks/banks/tk_blitz.mdl",
8018 Regiment = "SCAR Trooper",
8019} )
8020
8021TEAM_SCAR_BRIG = CreateTeam( "SCAR Brigadier", {
8022 Description = "Commander of the Storm Trooper Core",
8023 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
8024 Colour = Color(0, 72, 6, 255 ),
8025 Side = 1,
8026 Rank = 17,
8027 Model = "models/player/banks/banks/tk_blitz.mdl",
8028 Regiment = "SCAR Trooper",
8029} )
8030
8031TEAM_SCAR_MAJG = CreateTeam( "SCAR Major General", {
8032 Description = "Commander of the Storm Trooper Core",
8033 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
8034 Colour = Color(0, 72, 6, 255 ),
8035 Side = 1,
8036 Rank = 18,
8037 Model = "models/x1cw/x1cw_2.mdl",
8038 Regiment = "SCAR Trooper",
8039} )
8040
8041TEAM_SCAR_LTG = CreateTeam( "SCAR Lieutenant General", {
8042 Description = "Commander of the Storm Trooper Core",
8043 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
8044 Colour = Color(0, 72, 6, 255 ),
8045 Side = 1,
8046 Rank = 19,
8047 Model = "models/x1cw/x1cw_2.mdl",
8048 Regiment = "SCAR Trooper",
8049} )
8050
8051TEAM_SCAR_GEN = CreateTeam( "SCAR General", {
8052 Description = "General of the Storm Trooper Core",
8053 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
8054 Colour = Color(0, 72, 6, 255 ),
8055 Side = 1,
8056 Rank = 20,
8057 Model = "models/x1cw/x1cw_2.mdl",
8058 Regiment = "SCAR Trooper",
8059} )
8060
8061TEAM_MEDICAL_DROID = CreateTeam( "Medical Droid", {
8062 Description = "Member of the Medical Trooper Core",
8063 Weapons = {"tfa_swch_dl44", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
8064 Colour = Color(255, 51, 255, 255),
8065 Side = 1,
8066 Rank = 5,
8067 Model = "models/player/valley/medicaldroid.mdl",
8068 Regiment = "Medical Trooper",
8069} )
8070
8071TEAM_MHC_SC = CreateTeam( "MHC Secretary", {
8072 Description = "Member of the Military High Command",
8073 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
8074 Colour = Color(145, 0, 0, 255 ),
8075 Side = 1,
8076 Rank = 1,
8077 Model = "models/player/scifi_female_02.mdl",
8078 Regiment = "Military High Command",
8079} )
8080
8081TEAM_MHC_MJGEN = CreateTeam( "MHC Major General", {
8082 Description = "Member of the Military High Command",
8083 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc17m_br", "tfa_swch_se14c", "weapon_cuff_elastic", "weapon_taser", "realistic_hook"},
8084 Colour = Color(145, 0, 0, 255 ),
8085 Side = 1,
8086 Rank = 5,
8087 Model = "models/player/banks/tk_arc/tk_general1.mdl",
8088 Regiment = "Military High Command",
8089} )
8090
8091TEAM_MHC_LTGEN = CreateTeam( "MHC Lieutenant General", {
8092 Description = "Member of the Military High Command",
8093 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser", "realistic_hook"},
8094 Colour = Color(145, 0, 0, 255 ),
8095 Side = 1,
8096 Rank = 5,
8097 Model = "models/player/banks/tk_arc/tk_general2.mdl",
8098 Regiment = "Military High Command",
8099} )
8100
8101TEAM_MHC_GEN = CreateTeam( "MHC General", {
8102 Description = "Member of the Military High Command",
8103 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser", "realistic_hook"},
8104 Colour = Color(145, 0, 0, 255 ),
8105 Side = 1,
8106 Rank = 5,
8107 Model = "models/player/banks/tk_arc/tk_general3.mdl",
8108 Regiment = "Military High Command",
8109} )
8110
8111TEAM_MHC_HGEN = CreateTeam( "MHC High General", {
8112 Description = "Member of the Military High Command",
8113 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser", "realistic_hook"},
8114 Colour = Color(145, 0, 0, 255 ),
8115 Side = 1,
8116 Rank = 5,
8117 Model = "models/player/banks/tk_arc/tk_wolf.mdl",
8118 Regiment = "Military High Command",
8119} )
8120
8121TEAM_ROYALGUARD_PVT = CreateTeam( "Royal Guard Trainee", {
8122 Description = "Member Royal Guard Regiment",
8123 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
8124 Colour = Color(255, 51, 51, 255),
8125 Side = 1,
8126 Rank = 1,
8127 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8128 Regiment = "Royal Guard",
8129} )
8130
8131TEAM_ROYALGUARD_SGT = CreateTeam( "Royal Guard Guardsman", {
8132 Description = "Member Royal Guard Regiment",
8133 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
8134 Colour = Color(255, 51, 51, 255),
8135 Side = 1,
8136 Rank = 5,
8137 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8138 Regiment = "Royal Guard",
8139} )
8140
8141TEAM_ROYALGUARD_MSGT = CreateTeam( "Royal Guard Instructor", {
8142 Description = "Member Royal Guard Regiment",
8143 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
8144 Colour = Color(255, 51, 51, 255),
8145 Side = 1,
8146 Rank = 7,
8147 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8148 Regiment = "Royal Guard",
8149} )
8150
8151TEAM_ROYALGUARD_OC = CreateTeam( "Royal Guard Leading Guardsman", {
8152 Description = "Member Royal Guard Regiment",
8153 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
8154 Colour = Color(255, 51, 51, 255),
8155 Side = 1,
8156 Rank = 8,
8157 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8158 Regiment = "Royal Guard",
8159} )
8160
8161TEAM_ROYALGUARD_WO = CreateTeam( "Royal Guard Leading Instructor", {
8162 Description = "Member Royal Guard Regiment",
8163 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
8164 Colour = Color(255, 51, 51, 255),
8165 Side = 1,
8166 Rank = 9,
8167 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8168 Regiment = "Royal Guard",
8169} )
8170
8171TEAM_ROYALGUARD_LT = CreateTeam( "Royal Guard Master Instructor", {
8172 Description = "Member Royal Guard Regiment",
8173 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
8174 Colour = Color(255, 51, 51, 255),
8175 Side = 1,
8176 Rank = 10,
8177 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8178 Regiment = "Royal Guard",
8179} )
8180
8181TEAM_ROYALGUARD_CPT = CreateTeam( "Royal Guard Master Guardsman", {
8182 Description = "Captain of the Royal Guard Regiment",
8183 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
8184 Colour = Color(255, 51, 51, 255),
8185 Side = 1,
8186 Rank = 12,
8187 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8188 Regiment = "Royal Guard",
8189} )
8190
8191TEAM_ROYALGUARD_CMD = CreateTeam( "Royal Guard Commander", {
8192 Description = "Commander of the Royal Guard Regiment",
8193 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
8194 Colour = Color(255, 51, 51, 255),
8195 Side = 1,
8196 Rank = 16,
8197 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8198 Regiment = "Royal Guard",
8199} )
8200
8201TEAM_SHADOWGUARD_PVT = CreateTeam( "Shadow Guard Trainee", {
8202 Description = "Member Shadow Guard Regiment",
8203 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
8204 Colour = Color(255, 51, 51, 255),
8205 Side = 1,
8206 Rank = 1,
8207 Model = "models/imperial/guard/blackguard.mdl",
8208 Regiment = "Shadow Guard",
8209} )
8210
8211TEAM_SHADOWGUARD_SGT = CreateTeam( "Shadow Guard Guardsman", {
8212 Description = "Member Shadow Guard Regiment",
8213 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
8214 Colour = Color(255, 51, 51, 255),
8215 Side = 1,
8216 Rank = 5,
8217 Model = "models/imperial/guard/blackguard.mdl",
8218 Regiment = "Shadow Guard",
8219} )
8220
8221TEAM_SHADOWGUARD_MSGT = CreateTeam( "Shadow Guard Instructor", {
8222 Description = "Member Shadow Guard Regiment",
8223 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
8224 Colour = Color(255, 51, 51, 255),
8225 Side = 1,
8226 Rank = 7,
8227 Model = "models/imperial/guard/blackguard.mdl",
8228 Regiment = "Shadow Guard",
8229} )
8230
8231TEAM_SHADOWGUARD_OC = CreateTeam( "Shadow Guard Leading Guardsman", {
8232 Description = "Member Shadow Guard Regiment",
8233 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
8234 Colour = Color(255, 51, 51, 255),
8235 Side = 1,
8236 Rank = 8,
8237 Model = "models/imperial/guard/blackguard.mdl",
8238 Regiment = "Shadow Guard",
8239} )
8240
8241TEAM_SHADOWGUARD_WO = CreateTeam( "Shadow Guard Leading Instuctor", {
8242 Description = "Member Shadow Guard Regiment",
8243 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
8244 Colour = Color(255, 51, 51, 255),
8245 Side = 1,
8246 Rank = 9,
8247 Model = "models/imperial/guard/blackguard.mdl",
8248 Regiment = "Shadow Guard",
8249} )
8250
8251TEAM_SHADOWGUARD_LT = CreateTeam( "Shadow Guard Master Instructor", {
8252 Description = "Member Shadow Guard Regiment",
8253 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
8254 Colour = Color(255, 51, 51, 255),
8255 Side = 1,
8256 Rank = 10,
8257 Model = "models/imperial/guard/blackguard.mdl",
8258 Regiment = "Shadow Guard",
8259} )
8260
8261TEAM_SHADOWGUARD_CPT = CreateTeam( "Shadow Guard Master Guardsman", {
8262 Description = "Captain of the Shadow Guard Regiment",
8263 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
8264 Colour = Color(255, 51, 51, 255),
8265 Side = 1,
8266 Rank = 12,
8267 Model = "models/imperial/guard/blackguard.mdl",
8268 Regiment = "Shadow Guard",
8269} )
8270
8271TEAM_SHADOWGUARD_CMD = CreateTeam( "Shadow Guard Commander", {
8272 Description = "Commander of the Shadow Guard Regiment",
8273 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
8274 Colour = Color(255, 51, 51, 255),
8275 Side = 1,
8276 Rank = 16,
8277 Model = "models/imperial/guard/blackguard.mdl",
8278 Regiment = "Shadow Guard",
8279} )
8280
8281TEAM_INFERNO_DR = CreateTeam( "Inferno Squad Droid", {
8282 Description = "Commander of the Storm Trooper Core",
8283 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_camo", "weapon_taser", "weapon_bactainjector"},
8284 Colour = Color(217, 20, 20, 255 ),
8285 Side = 1,
8286 Rank = 5,
8287 Model = "models/player/banks/ig/droid/droid.mdl",
8288 Regiment = "Inferno Squad",
8289} )
8290
8291 TEAM_TSQ_PVT = CreateTeam( "Talon Private", {
8292 Description = "Member of Talon Squad",
8293 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8294 Colour = Color(123, 183, 137, 255 ),
8295 Side = 1,
8296 Rank = 1,
8297 Model = "models/player/sono/specopstorm/elite.mdl",
8298 Regiment = "Talon Squad",
8299 } )
8300
8301 TEAM_TSQ_PFC = CreateTeam( "Talon Private First Class", {
8302 Description = "Member of Talon Squad",
8303 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8304 Colour = Color(123, 183, 137, 255 ),
8305 Side = 1,
8306 Rank = 2,
8307 Model = "models/player/sono/specopstorm/elite.mdl",
8308 Regiment = "Talon Squad",
8309 } )
8310
8311 TEAM_TSQ_LCPL = CreateTeam( "Talon Lance Corporal", {
8312 Description = "Member of Talon Squad",
8313 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8314 Colour = Color(123, 183, 137, 255 ),
8315 Side = 1,
8316 Rank = 3,
8317 Model = "models/player/sono/specopstorm/elite.mdl",
8318 Regiment = "Talon Squad",
8319 } )
8320
8321 TEAM_TSQ_CPL = CreateTeam( "Talon Corporal", {
8322 Description = "Member of Talon Squad",
8323 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8324 Colour = Color(123, 183, 137, 255 ),
8325 Side = 1,
8326 Rank = 4,
8327 Model = "models/player/sono/specopstorm/elite.mdl",
8328 Regiment = "Talon Squad",
8329 } )
8330
8331 TEAM_TSQ_SGT = CreateTeam( "Talon Sergeant", {
8332 Description = "Member of Talon Squad",
8333 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8334 Colour = Color(123, 183, 137, 255 ),
8335 Side = 1,
8336 Rank = 5,
8337 Model = "models/player/sono/specopstorm/elite.mdl",
8338 Regiment = "Talon Squad",
8339 } )
8340
8341 TEAM_TSQ_SSGT = CreateTeam( "Talon Staff Sergeant", {
8342 Description = "Member of Talon Squad",
8343 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8344 Colour = Color(123, 183, 137, 255 ),
8345 Side = 1,
8346 Rank = 6,
8347 Model = "models/player/sono/specopstorm/elite.mdl",
8348 Regiment = "Talon Squad",
8349 } )
8350
8351 TEAM_TSQ_MSGT = CreateTeam( "Talon Master Sergeant", {
8352 Description = "Member of Talon Squad",
8353 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8354 Colour = Color(123, 183, 137, 255 ),
8355 Side = 1,
8356 Rank = 7,
8357 Model = "models/player/sono/specopstorm/elite.mdl",
8358 Regiment = "Talon Squad",
8359 } )
8360
8361 TEAM_TSQ_OFFICERCADET = CreateTeam( "Talon Officer Cadet", {
8362 Description = "Member of Talon Squad",
8363 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8364 Colour = Color(123, 183, 137, 255 ),
8365 Side = 1,
8366 Rank = 8,
8367 Model = "models/player/sono/specopstorm/elite.mdl",
8368 Regiment = "Talon Squad",
8369 } )
8370
8371 TEAM_TSQ_WO = CreateTeam( "Talon Warrant Officer", {
8372 Description = "Member of Talon Squad",
8373 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8374 Colour = Color(123, 183, 137, 255 ),
8375 Side = 1,
8376 Rank = 9,
8377 Model = "models/player/sono/specopstorm/elite.mdl",
8378 Regiment = "Talon Squad",
8379 } )
8380
8381 TEAM_TSQ_LT = CreateTeam( "Talon Lieutenant", {
8382 Description = "Member of Talon Squad",
8383 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8384 Colour = Color(123, 183, 137, 255 ),
8385 Side = 1,
8386 Rank = 10,
8387 Model = "models/player/sono/specopstorm/elite.mdl",
8388 Regiment = "Talon Squad",
8389 } )
8390
8391 TEAM_TSQ_FLT = CreateTeam( "Talon First Lieutenant", {
8392 Description = "Member of Talon Squad",
8393 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8394 Colour = Color(123, 183, 137, 255 ),
8395 Side = 1,
8396 Rank = 11,
8397 Model = "models/player/sono/specopstorm/elite.mdl",
8398 Regiment = "Talon Squad",
8399 } )
8400
8401 TEAM_TSQ_CAPT = CreateTeam( "Talon Captain", {
8402 Description = "Member of Talon Squad",
8403 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8404 Colour = Color(123, 183, 137, 255 ),
8405 Side = 1,
8406 Rank = 12,
8407 Model = "models/player/sono/specopstorm/elite.mdl",
8408 Regiment = "Talon Squad",
8409 } )
8410
8411 TEAM_TSQ_MAJ = CreateTeam( "Talon Major", {
8412 Description = "Member of Talon Squad",
8413 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8414 Colour = Color(123, 183, 137, 255 ),
8415 Side = 1,
8416 Rank = 13,
8417 Model = "models/player/sono/specopstorm/elite.mdl",
8418 Regiment = "Talon Squad",
8419 } )
8420
8421 TEAM_TSQ_COLO = CreateTeam( "Talon Colonel", {
8422 Description = "Member of Talon Squad",
8423 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8424 Colour = Color(123, 183, 137, 255 ),
8425 Side = 1,
8426 Rank = 14,
8427 Model = "models/player/sono/specopstorm/elite.mdl",
8428 Regiment = "Talon Squad",
8429 } )
8430
8431 TEAM_TSQ_HCOLO = CreateTeam( "Talon High Colonel", {
8432 Description = "Member of Talon Squad",
8433 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8434 Colour = Color(123, 183, 137, 255 ),
8435 Side = 1,
8436 Rank = 15,
8437 Model = "models/player/sono/specopstorm/elite.mdl",
8438 Regiment = "Talon Squad",
8439 } )
8440
8441 TEAM_TSQ_CMD = CreateTeam( "Talon Commander", {
8442 Description = "Member of Talon Squad",
8443 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8444 Colour = Color(123, 183, 137, 255 ),
8445 Side = 1,
8446 Rank = 16,
8447 Model = "models/player/sono/specopstorm/elite.mdl",
8448 Regiment = "Talon Squad",
8449 } )
8450
8451 TEAM_TSQ_BRIG = CreateTeam( "Talon Brigadier", {
8452 Description = "Member of Talon Squad",
8453 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8454 Colour = Color(123, 183, 137, 255 ),
8455 Side = 1,
8456 Rank = 17,
8457 Model = "models/player/sono/specopstorm/elite.mdl",
8458 Regiment = "Talon Squad",
8459 } )
8460
8461 TEAM_TSQ_MAJG = CreateTeam( "Talon Major General", {
8462 Description = "Member of Talon Squad",
8463 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8464 Colour = Color(123, 183, 137, 255 ),
8465 Side = 1,
8466 Rank = 18,
8467 Model = "models/player/sono/specopstorm/elite.mdl",
8468 Regiment = "Talon Squad",
8469 } )
8470
8471 TEAM_TSQ_LTG = CreateTeam( "Talon Lieutenant General", {
8472 Description = "Member of Talon Squad",
8473 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8474 Colour = Color(123, 183, 137, 255 ),
8475 Side = 1,
8476 Rank = 19,
8477 Model = "models/player/sono/specopstorm/elite.mdl",
8478 Regiment = "Talon Squad",
8479 } )
8480
8481 TEAM_TSQ_GEN = CreateTeam( "Talon General", {
8482 Description = "Member of Talon Squad",
8483 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8484 Colour = Color(123, 183, 137, 255 ),
8485 Side = 1,
8486 Rank = 20,
8487 Model = "models/player/sono/specopstorm/elite.mdl",
8488 Regiment = "Talon Squad",
8489 } )
8490
8491 TEAM_SMR_PVT = CreateTeam( "SM Private", {
8492 Description = "Member of the Storm Marines",
8493 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8494 Colour = Color(208, 121, 121, 255 ),
8495 Side = 1,
8496 Rank = 1,
8497 Model = "models/player/sono/specopstorm/bshadow.mdl",
8498 Regiment = "Storm Marines",
8499} )
8500
8501TEAM_SMR_PFC = CreateTeam( "SM Private First Class", {
8502 Description = "Member of the Storm Marines",
8503 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8504 Colour = Color(208, 121, 121, 255 ),
8505 Side = 1,
8506 Rank = 2,
8507 Model = "models/player/sono/specopstorm/bshadow.mdl",
8508 Regiment = "Storm Marines",
8509} )
8510
8511TEAM_SMR_LCPL = CreateTeam( "SM Lance Corporal", {
8512 Description = "Member of the Storm Marines",
8513 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8514 Colour = Color(208, 121, 121, 255 ),
8515 Side = 1,
8516 Rank = 3,
8517 Model = "models/player/sono/specopstorm/bshadow.mdl",
8518 Regiment = "Storm Marines",
8519} )
8520
8521TEAM_SMR_CPL = CreateTeam( "SM Corporal", {
8522 Description = "Member of the Storm Marines",
8523 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8524 Colour = Color(208, 121, 121, 255 ),
8525 Side = 1,
8526 Rank = 4,
8527 Model = "models/player/sono/specopstorm/bshadow.mdl",
8528 Regiment = "Storm Marines",
8529} )
8530
8531TEAM_SMR_SGT = CreateTeam( "SM Sergeant", {
8532 Description = "Member of the Storm Marines",
8533 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8534 Colour = Color(208, 121, 121, 255 ),
8535 Side = 1,
8536 Rank = 5,
8537 Model = "models/player/sono/specopstorm/bshadow.mdl",
8538 Regiment = "Storm Marines",
8539} )
8540
8541TEAM_SMR_SSGT = CreateTeam( "SM Staff Sergeant", {
8542 Description = "Member of the Storm Marines",
8543 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8544 Colour = Color(208, 121, 121, 255 ),
8545 Side = 1,
8546 Rank = 6,
8547 Model = "models/player/sono/specopstorm/bshadow.mdl",
8548 Regiment = "Storm Marines",
8549} )
8550
8551TEAM_SMR_MSGT = CreateTeam( "SM Master Sergeant", {
8552 Description = "Member of the Storm Marines",
8553 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8554 Colour = Color(208, 121, 121, 255 ),
8555 Side = 1,
8556 Rank = 7,
8557 Model = "models/player/sono/specopstorm/bshadow.mdl",
8558 Regiment = "Storm Marines",
8559} )
8560
8561TEAM_SMR_OFFICERCADET = CreateTeam( "SM Officer Cadet", {
8562 Description = "Member of the Storm Marines",
8563 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8564 Colour = Color(208, 121, 121, 255 ),
8565 Side = 1,
8566 Rank = 8,
8567 Model = "models/player/sono/specopstorm/bshadow.mdl",
8568 Regiment = "Storm Marines",
8569} )
8570
8571TEAM_SMR_WO = CreateTeam( "SM Warrant Officer", {
8572 Description = "Member of the Storm Marines",
8573 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8574 Colour = Color(208, 121, 121, 255 ),
8575 Side = 1,
8576 Rank = 9,
8577 Model = "models/player/sono/specopstorm/bshadow.mdl",
8578 Regiment = "Storm Marines",
8579} )
8580
8581TEAM_SMR_LT = CreateTeam( "SM Lieutenant", {
8582 Description = "Member of the Storm Marines",
8583 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8584 Colour = Color(208, 121, 121, 255 ),
8585 Side = 1,
8586 Rank = 10,
8587 Model = "models/player/sono/specopstorm/bshadow.mdl",
8588 Regiment = "Storm Marines",
8589} )
8590
8591TEAM_SMR_FLT = CreateTeam( "SM First Lieutenant", {
8592 Description = "Member of the Storm Marines",
8593 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8594 Colour = Color(208, 121, 121, 255 ),
8595 Side = 1,
8596 Rank = 11,
8597 Model = "models/player/sono/specopstorm/bshadow.mdl",
8598 Regiment = "Storm Marines",
8599} )
8600
8601TEAM_SMR_CAPT = CreateTeam( "SM Captain", {
8602 Description = "Member of the Storm Marines",
8603 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8604 Colour = Color(208, 121, 121, 255 ),
8605 Side = 1,
8606 Rank = 12,
8607 Model = "models/player/sono/specopstorm/bshadow.mdl",
8608 Regiment = "Storm Marines",
8609} )
8610
8611TEAM_SMR_MAJ = CreateTeam( "SM Major", {
8612 Description = "Member of the Storm Marines",
8613 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8614 Colour = Color(208, 121, 121, 255 ),
8615 Side = 1,
8616 Rank = 13,
8617 Model = "models/player/sono/specopstorm/bshadow.mdl",
8618 Regiment = "Storm Marines",
8619} )
8620
8621TEAM_SMR_COLO = CreateTeam( "SM Colonel", {
8622 Description = "Member of the Storm Marines",
8623 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8624 Colour = Color(208, 121, 121, 255 ),
8625 Side = 1,
8626 Rank = 14,
8627 Model = "models/player/sono/specopstorm/bshadow.mdl",
8628 Regiment = "Storm Marines",
8629} )
8630
8631TEAM_SMR_HCOLO = CreateTeam( "SM High Colonel", {
8632 Description = "Member of the Storm Marines",
8633 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8634 Colour = Color(208, 121, 121, 255 ),
8635 Side = 1,
8636 Rank = 15,
8637 Model = "models/player/sono/specopstorm/bshadow.mdl",
8638 Regiment = "Storm Marines",
8639} )
8640
8641TEAM_SMR_CMD = CreateTeam( "SM Commander", {
8642 Description = "Member of the Storm Marines",
8643 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8644 Colour = Color(208, 121, 121, 255 ),
8645 Side = 1,
8646 Rank = 16,
8647 Model = "models/player/sono/specopstorm/bshadow.mdl",
8648 Regiment = "Storm Marines",
8649} )
8650
8651TEAM_SMR_BRIG = CreateTeam( "SM Brigadier", {
8652 Description = "Member of the Storm Marines",
8653 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8654 Colour = Color(208, 121, 121, 255 ),
8655 Side = 1,
8656 Rank = 17,
8657 Model = "models/player/sono/specopstorm/bshadow.mdl",
8658 Regiment = "Storm Marines",
8659} )
8660
8661TEAM_SMR_MAJG = CreateTeam( "SM Major General", {
8662 Description = "Member of the Storm Marines",
8663 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8664 Colour = Color(208, 121, 121, 255 ),
8665 Side = 1,
8666 Rank = 18,
8667 Model = "models/player/sono/specopstorm/bshadow.mdl",
8668 Regiment = "Storm Marines",
8669} )
8670
8671TEAM_SMR_LTG = CreateTeam( "SM Lieutenant General", {
8672 Description = "Member of the Storm Marines",
8673 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8674 Colour = Color(208, 121, 121, 255 ),
8675 Side = 1,
8676 Rank = 19,
8677 Model = "models/player/sono/specopstorm/bshadow.mdl",
8678 Regiment = "Storm Marines",
8679} )
8680
8681TEAM_SMR_GEN = CreateTeam( "SM General", {
8682 Description = "Member of the Storm Marines",
8683 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
8684 Colour = Color(208, 121, 121, 255 ),
8685 Side = 1,
8686 Rank = 20,
8687 Model = "models/player/sono/specopstorm/bshadow.mdl",
8688 Regiment = "Storm Marines",
8689} )
8690
8691TEAM_PROPHET_PV = CreateTeam( "Prophet Visionary", {
8692 Description = "",
8693 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic"},
8694 Colour = Color(255, 51, 51, 255),
8695 Side = 1,
8696 Rank = 1,
8697 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
8698 Regiment = "Prophet",
8699} )
8700
8701TEAM_PROPHET_LP = CreateTeam( "Lesser Prophet", {
8702 Description = "",
8703 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic", "forcechoke"},
8704 Colour = Color(255, 51, 51, 255),
8705 Side = 1,
8706 Rank = 5,
8707 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
8708 Regiment = "Prophet",
8709} )
8710
8711TEAM_PROPHET_EP = CreateTeam( "Elder Prophet", {
8712 Description = "",
8713 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic", "forcechoke"},
8714 Colour = Color(255, 51, 51, 255),
8715 Side = 1,
8716 Rank = 7,
8717 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
8718 Regiment = "Prophet",
8719} )
8720
8721TEAM_PROPHET_PS = CreateTeam( "Prophet Sentinel", {
8722 Description = "",
8723 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic", "forcechoke"},
8724 Colour = Color(255, 51, 51, 255),
8725 Side = 1,
8726 Rank = 15,
8727 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
8728 Regiment = "Prophet",
8729} )
8730
8731TEAM_PROPHET_HP = CreateTeam( "High Prophet", {
8732 Description = "",
8733 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic", "forcechoke"},
8734 Colour = Color(255, 51, 51, 255),
8735 Side = 1,
8736 Rank = 16,
8737 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
8738 Regiment = "Prophet",
8739} )
8740
8741TEAM_ICCS_LD = CreateTeam( "Cinder Leader", {
8742 Description = "Member of the Cinder Squad",
8743 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
8744 Colour = Color(153, 51, 153, 255 ),
8745 Side = 1,
8746 Rank = 16,
8747 Model = "models/player/banks/omega/commander/omega.mdl",
8748 Regiment = "IC Cinder Squad",
8749} )
8750
8751TEAM_ICCS_TC = CreateTeam( "Cinder Tech", {
8752 Description = "Member of the Cinder Squad",
8753 Weapons = {"tfa_swch_dc17m_br", "keypad_cracker", "repair_tool"},
8754 Colour = Color(153, 51, 153, 255 ),
8755 Side = 1,
8756 Rank = 8,
8757 Model = "models/player/banks/omega/member/omega.mdl",
8758 Regiment = "IC Cinder Squad",
8759} )
8760
8761TEAM_ICCS_SN = CreateTeam( "Cinder Sniper", {
8762 Description = "Member of the Cinder Squad",
8763 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "realistic_hook"},
8764 Colour = Color(153, 51, 153, 255 ),
8765 Side = 1,
8766 Rank = 8,
8767 Model = "models/player/banks/omega/member/omega.mdl",
8768 Regiment = "IC Cinder Squad",
8769} )
8770
8771TEAM_ICCS_DM = CreateTeam( "Cinder Demo", {
8772 Description = "Member of the Cinder Squad",
8773 Weapons = {"tfa_swch_dc17m_br", "zeus_thermaldet", "tfa_swch_se14c"},
8774 Colour = Color(153, 51, 153, 255 ),
8775 Side = 1,
8776 Rank = 8,
8777 Model = "models/player/banks/omega/member/omega.mdl",
8778 Regiment = "IC Cinder Squad",
8779} )
8780
8781TEAM_ICAS_LD = CreateTeam( "Ahiwa Leader", {
8782 Description = "Member of the Ahiwa Squad",
8783 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
8784 Colour = Color(173, 35, 35, 255 ),
8785 Side = 1,
8786 Rank = 16,
8787 Model = "models/player/banks/ion/commander/icommander.mdl",
8788 Regiment = "IC Ahiwa Squad",
8789} )
8790
8791TEAM_ICAS_TC = CreateTeam( "Ahiwa Tech", {
8792 Description = "Member of the Ahiwa Squad",
8793 Weapons = {"tfa_swch_dc17m_br", "keypad_cracker", "repair_tool"},
8794 Colour = Color(173, 35, 35, 255 ),
8795 Side = 1,
8796 Rank = 8,
8797 Model = "models/player/banks/ion/trooper/trooper.mdl",
8798 Regiment = "IC Ahiwa Squad",
8799} )
8800
8801TEAM_ICAS_SN = CreateTeam( "Ahiwa Sniper", {
8802 Description = "Member of the Ahiwa Squad",
8803 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "realistic_hook"},
8804 Colour = Color(173, 35, 35, 255 ),
8805 Side = 1,
8806 Rank = 8,
8807 Model = "models/player/banks/ion/trooper/trooper.mdl",
8808 Regiment = "IC Ahiwa Squad",
8809} )
8810
8811TEAM_ICAS_DM = CreateTeam( "Ahiwa Demo", {
8812 Description = "Member of the Ahiwa Squad",
8813 Weapons = {"tfa_swch_dc17m_br", "zeus_thermaldet", "tfa_swch_se14c"},
8814 Colour = Color(173, 35, 35, 255 ),
8815 Side = 1,
8816 Rank = 8,
8817 Model = "models/player/banks/ion/trooper/trooper.mdl",
8818 Regiment = "IC Ahiwa Squad",
8819} )
8820
8821TEAM_ICDS_LD = CreateTeam( "Delta Leader", {
8822 Description = "Member of the Delta Squad",
8823 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
8824 Colour = Color(255, 102, 0, 255 ),
8825 Side = 1,
8826 Rank = 16,
8827 Model = "models/player/banks/delta/boss/imperialcboss.mdl",
8828 Regiment = "IC Delta Squad",
8829} )
8830
8831TEAM_ICDS_TC = CreateTeam( "Delta Tech", {
8832 Description = "Member of the Delta Squad",
8833 Weapons = {"tfa_swch_dc17m_br", "keypad_cracker", "repair_tool"},
8834 Colour = Color(255, 102, 0, 255 ),
8835 Side = 1,
8836 Rank = 8,
8837 Model = "models/player/banks/delta/fixer/imperialcfixer.mdl",
8838 Regiment = "IC Delta Squad",
8839} )
8840
8841TEAM_ICDS_SN = CreateTeam( "Delta Sniper", {
8842 Description = "Member of the Delta Squad",
8843 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "realistic_hook"},
8844 Colour = Color(255, 102, 0, 255 ),
8845 Side = 1,
8846 Rank = 8,
8847 Model = "models/player/banks/delta/sev/imperialcsev.mdl",
8848 Regiment = "IC Delta Squad",
8849} )
8850
8851TEAM_ICDS_DM = CreateTeam( "Delta Demo", {
8852 Description = "Member of the Delta Squad",
8853 Weapons = {"tfa_swch_dc17m_br", "zeus_thermaldet", "tfa_swch_se14c"},
8854 Colour = Color(255, 102, 0, 255 ),
8855 Side = 1,
8856 Rank = 8,
8857 Model = "models/player/banks/delta/scorch/imperialcscorch.mdl",
8858 Regiment = "IC Delta Squad",
8859} )
8860
8861TEAM_CUSTOMBOUNTYHUNTER1 = CreateTeam( "", {
8862 Description = "el custimo bounty hunterino",
8863 Weapons = {"tfa_swch_pulsecannon", "weapon_cuff_elastic", "tfa_swch_ee3", "tfa_swch_dlt19"},
8864 Colour = Color(161, 0, 63, 255),
8865 Side = 1,
8866 Rank = 5,
8867 Model = "models/ninja/beffect/titanfall_dm_quarian_f.mdl",
8868 Regiment = "Bounty Hunter",
8869} )
8870
8871 TEAM_RESCUE_PVT = CreateTeam( "RS Private", {
8872 Description = "Member of the Rescue Trooper Core",
8873 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8874 Colour = Color(12, 128, 74, 255),
8875 Side = 1,
8876 Rank = 1,
8877 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8878 Regiment = "Rescue Trooper",
8879} )
8880
8881TEAM_RESCUE_PFC = CreateTeam( "RS Private First Class", {
8882 Description = "Member of the Rescue Trooper Core",
8883 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8884 Colour = Color(12, 128, 74, 255),
8885 Side = 1,
8886 Rank = 2,
8887 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8888 Regiment = "Rescue Trooper",
8889} )
8890
8891TEAM_RESCUE_LCPL = CreateTeam( "RS Lance Corporal", {
8892 Description = "Member of the Rescue Trooper Core",
8893 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8894 Colour = Color(12, 128, 74, 255),
8895 Side = 1,
8896 Rank = 3,
8897 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8898 Regiment = "Rescue Trooper",
8899} )
8900
8901TEAM_RESCUE_CPL = CreateTeam( "RS Corporal", {
8902 Description = "Member of the Rescue Trooper Core",
8903 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8904 Colour = Color(12, 128, 74, 255),
8905 Side = 1,
8906 Rank = 4,
8907 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8908 Regiment = "Rescue Trooper",
8909} )
8910
8911TEAM_RESCUE_SGT = CreateTeam( "RS Sergeant", {
8912 Description = "Member of the Rescue Trooper Core",
8913 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8914 Colour = Color(12, 128, 74, 255),
8915 Side = 1,
8916 Rank = 5,
8917 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8918 Regiment = "Rescue Trooper",
8919} )
8920
8921TEAM_RESCUE_SSGT = CreateTeam( "RS Staff Sergeant", {
8922 Description = "Member of the Rescue Trooper Core",
8923 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8924 Colour = Color(12, 128, 74, 255),
8925 Side = 1,
8926 Rank = 6,
8927 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8928 Regiment = "Rescue Trooper",
8929} )
8930
8931TEAM_RESCUE_MSGT = CreateTeam( "RS Master Sergeant", {
8932 Description = "Member of the Rescue Trooper Core",
8933 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8934 Colour = Color(12, 128, 74, 255),
8935 Side = 1,
8936 Rank = 7,
8937 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8938 Regiment = "Rescue Trooper",
8939} )
8940
8941TEAM_RESCUE_OFFICERCADET = CreateTeam( "RS Officer Cadet", {
8942 Description = "Member of the Rescue Trooper Core",
8943 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8944 Colour = Color(12, 128, 74, 255),
8945 Side = 1,
8946 Rank = 8,
8947 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8948 Regiment = "Rescue Trooper",
8949} )
8950
8951TEAM_RESCUE_WO = CreateTeam( "RS Warrant Officer", {
8952 Description = "Member of the Rescue Trooper Core",
8953 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8954 Colour = Color(12, 128, 74, 255),
8955 Side = 1,
8956 Rank = 9,
8957 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8958 Regiment = "Rescue Trooper",
8959} )
8960
8961TEAM_RESCUE_LT = CreateTeam( "RS Lieutenant", {
8962 Description = "Member of the Rescue Trooper Core",
8963 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8964 Colour = Color(12, 128, 74, 255),
8965 Side = 1,
8966 Rank = 10,
8967 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8968 Regiment = "Rescue Trooper",
8969} )
8970
8971TEAM_RESCUE_FLT = CreateTeam( "RS First Lieutenant", {
8972 Description = "Member of the Rescue Trooper Core",
8973 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8974 Colour = Color(12, 128, 74, 255),
8975 Side = 1,
8976 Rank = 11,
8977 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8978 Regiment = "Rescue Trooper",
8979} )
8980
8981TEAM_RESCUE_CAPT = CreateTeam( "RS Captain", {
8982 Description = "Member of the Rescue Trooper Core",
8983 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8984 Colour = Color(12, 128, 74, 255),
8985 Side = 1,
8986 Rank = 12,
8987 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8988 Regiment = "Rescue Trooper",
8989} )
8990
8991TEAM_RESCUE_MAJ = CreateTeam( "RS Major", {
8992 Description = "Member of the Rescue Trooper Core",
8993 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8994 Colour = Color(12, 128, 74, 255),
8995 Side = 1,
8996 Rank = 13,
8997 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8998 Regiment = "Rescue Trooper",
8999} )
9000
9001TEAM_RESCUE_COLO = CreateTeam( "RS Colonel", {
9002 Description = "Member of the Rescue Trooper Core",
9003 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
9004 Colour = Color(12, 128, 74, 255),
9005 Side = 1,
9006 Rank = 14,
9007 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
9008 Regiment = "Rescue Trooper",
9009} )
9010
9011TEAM_RESCUE_HCOLO = CreateTeam( "RS High Colonel", {
9012 Description = "Member of the Rescue Trooper Core",
9013 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
9014 Colour = Color(12, 128, 74, 255),
9015 Side = 1,
9016 Rank = 15,
9017 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
9018 Regiment = "Rescue Trooper",
9019} )
9020
9021TEAM_RESCUE_CMD = CreateTeam( "RS Commander", {
9022 Description = "Commander of the Rescue Trooper Core",
9023 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
9024 Colour = Color(12, 128, 74, 255),
9025 Side = 1,
9026 Rank = 16,
9027 Model = "models/player/rescue_troopers/rescue_commander.mdl",
9028 Regiment = "Rescue Trooper",
9029} )
9030
9031TEAM_RESCUE_BRIG = CreateTeam( "RS Brigadier", {
9032 Description = "Commander of the Rescue Trooper Core",
9033 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
9034 Colour = Color(12, 128, 74, 255),
9035 Side = 1,
9036 Rank = 17,
9037 Model = "models/player/rescue_troopers/rescue_commander.mdl",
9038 Regiment = "Rescue Trooper",
9039} )
9040
9041TEAM_RESCUE_MAJG = CreateTeam( "RS Major General", {
9042 Description = "Commander of the Rescue Trooper Core",
9043 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
9044 Colour = Color(12, 128, 74, 255),
9045 Side = 1,
9046 Rank = 18,
9047 Model = "models/player/rescue_troopers/rescue_commander.mdl",
9048 Regiment = "Rescue Trooper",
9049} )
9050
9051TEAM_RESCUE_LTG = CreateTeam( "RS Lieutenant General", {
9052 Description = "Commander of the Rescue Trooper Core",
9053 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
9054 Colour = Color(12, 128, 74, 255),
9055 Side = 1,
9056 Rank = 19,
9057 Model = "models/player/rescue_troopers/rescue_commander.mdl",
9058 Regiment = "Rescue Trooper",
9059} )
9060
9061TEAM_RESCUE_GEN = CreateTeam( "RS General", {
9062 Description = "General of the Rescue Trooper Core",
9063 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
9064 Colour = Color(12, 128, 74, 255),
9065 Side = 1,
9066 Rank = 20,
9067 Model = "models/sono/swbf3/shadow.mdl",
9068 Regiment = "Rescue Trooper",
9069} )
9070
9071TEAM_SMAR_INT = CreateTeam( "Marauder Initiate", {
9072 Description = "Sith Marauder",
9073 Weapons = {"weapon_lightsaber"},
9074 Colour = Color(161, 0, 63, 255),
9075 Side = 1,
9076 Rank = 1,
9077 Model = "models/vaspyr/playermodels/experimental_sith/experimental_sith.mdl",
9078 Regiment = "Sith Marauder",
9079} )
9080
9081TEAM_SMAR_APR = CreateTeam( "Marauder Apprentice", {
9082 Description = "Sith Marauder",
9083 Weapons = {"weapon_lightsaber"},
9084 Colour = Color(161, 0, 63, 255),
9085 Side = 1,
9086 Rank = 2,
9087 Model = "models/vaspyr/playermodels/experimental_sith/experimental_sith.mdl",
9088 Regiment = "Sith Marauder",
9089} )
9090
9091TEAM_SMAR_NOV = CreateTeam( "Marauder Novice", {
9092 Description = "Sith Marauder",
9093 Weapons = {"weapon_lightsaber"},
9094 Colour = Color(161, 0, 63, 255),
9095 Side = 1,
9096 Rank = 3,
9097 Model = "models/vaspyr/playermodels/experimental_sith/experimental_sith.mdl",
9098 Regiment = "Sith Marauder",
9099} )
9100
9101TEAM_SMAR_ACO = CreateTeam( "Marauder Acolyte", {
9102 Description = "Sith Marauder",
9103 Weapons = {"weapon_lightsaber"},
9104 Colour = Color(161, 0, 63, 255),
9105 Side = 1,
9106 Rank = 4,
9107 Model = "models/vaspyr/playermodels/experimental_sith/experimental_sith.mdl",
9108 Regiment = "Sith Marauder",
9109} )
9110
9111TEAM_SMAR_ADT = CreateTeam( "Marauder Adept", {
9112 Description = "Sith Marauder",
9113 Weapons = {"weapon_lightsaber"},
9114 Colour = Color(161, 0, 63, 255),
9115 Side = 1,
9116 Rank = 5,
9117 Model = "models/vaspyr/playermodels/experimental_sith/experimental_sith.mdl",
9118 Regiment = "Sith Marauder",
9119} )
9120
9121TEAM_SMAR_WAR = CreateTeam( "Marauder Warrior", {
9122 Description = "Sith Marauder",
9123 Weapons = {"weapon_lightsaber"},
9124 Colour = Color(161, 0, 63, 255),
9125 Side = 1,
9126 Rank = 6,
9127 Model = "models/vaspyr/playermodels/experimental_sith/experimental_sith.mdl",
9128 Regiment = "Sith Marauder",
9129} )
9130
9131TEAM_SMAR_CRU = CreateTeam( "Marauder Crusader", {
9132 Description = "Sith Marauder",
9133 Weapons = {"weapon_lightsaber"},
9134 Colour = Color(161, 0, 63, 255),
9135 Side = 1,
9136 Rank = 7,
9137 Model = "models/vaspyr/playermodels/experimental_sith/experimental_sith.mdl",
9138 Regiment = "Sith Marauder",
9139} )
9140
9141TEAM_SMAR_LEA = CreateTeam( "Marauder Leader", {
9142 Description = "Sith Marauder",
9143 Weapons = {"weapon_lightsaber"},
9144 Colour = Color(161, 0, 63, 255),
9145 Side = 1,
9146 Rank = 16,
9147 Model = "models/vaspyr/playermodels/experimental_sith/experimental_sith.mdl",
9148 Regiment = "Sith Marauder",
9149} )
9150
9151TEAM_JUG_PVT = CreateTeam( "Juggernaut Private", {
9152 Description = "Imperial Juggernaut",
9153 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9154 Colour = Color(119, 244, 66, 255),
9155 Side = 1,
9156 Rank = 1,
9157 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9158 Regiment = "Juggernaut",
9159} )
9160
9161TEAM_JUG_PFC = CreateTeam( "Juggernaut Private First Class", {
9162 Description = "Imperial Juggernaut",
9163 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9164 Colour = Color(119, 244, 66, 255),
9165 Side = 1,
9166 Rank = 2,
9167 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9168 Regiment = "Juggernaut",
9169} )
9170
9171TEAM_JUG_LCP = CreateTeam( "Juggernaut Lance Corporal", {
9172 Description = "Imperial Juggernaut",
9173 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9174 Colour = Color(119, 244, 66, 255),
9175 Side = 1,
9176 Rank = 3,
9177 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9178 Regiment = "Juggernaut",
9179} )
9180
9181TEAM_JUG_CPL = CreateTeam( "Juggernaut Corporal", {
9182 Description = "Imperial Juggernaut",
9183 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9184 Colour = Color(119, 244, 66, 255),
9185 Side = 1,
9186 Rank = 4,
9187 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9188 Regiment = "Juggernaut",
9189} )
9190
9191TEAM_JUG_SGT = CreateTeam( "Juggernaut Sergeant", {
9192 Description = "Imperial Juggernaut",
9193 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9194 Colour = Color(119, 244, 66, 255),
9195 Side = 1,
9196 Rank = 5,
9197 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9198 Regiment = "Juggernaut",
9199} )
9200
9201TEAM_JUG_SSG = CreateTeam( "Juggernaut Staff Sergeant", {
9202 Description = "Imperial Juggernaut",
9203 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9204 Colour = Color(119, 244, 66, 255),
9205 Side = 1,
9206 Rank = 6,
9207 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9208 Regiment = "Juggernaut",
9209} )
9210
9211TEAM_JUG_MSG = CreateTeam( "Juggernaut Master Sergeant", {
9212 Description = "Imperial Juggernaut",
9213 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9214 Colour = Color(119, 244, 66, 255),
9215 Side = 1,
9216 Rank = 7,
9217 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9218 Regiment = "Juggernaut",
9219} )
9220
9221TEAM_JUG_OFC = CreateTeam( "Juggernaut Officer Cadet", {
9222 Description = "Imperial Juggernaut",
9223 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9224 Colour = Color(119, 244, 66, 255),
9225 Side = 1,
9226 Rank = 8,
9227 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9228 Regiment = "Juggernaut",
9229} )
9230
9231TEAM_JUG_WOF = CreateTeam( "Juggernaut Warrant Officer", {
9232 Description = "Imperial Juggernaut",
9233 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9234 Colour = Color(119, 244, 66, 255),
9235 Side = 1,
9236 Rank = 9,
9237 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9238 Regiment = "Juggernaut",
9239} )
9240
9241TEAM_JUG_LTT = CreateTeam( "Juggernaut Lieutenant", {
9242 Description = "Imperial Juggernaut",
9243 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9244 Colour = Color(119, 244, 66, 255),
9245 Side = 1,
9246 Rank = 10,
9247 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9248 Regiment = "Juggernaut",
9249} )
9250
9251TEAM_JUG_FLT = CreateTeam( "Juggernaut First Lieutenant", {
9252 Description = "Imperial Juggernaut",
9253 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9254 Colour = Color(119, 244, 66, 255),
9255 Side = 1,
9256 Rank = 11,
9257 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9258 Regiment = "Juggernaut",
9259} )
9260
9261TEAM_JUG_CPT = CreateTeam( "Juggernaut Captain", {
9262 Description = "Imperial Juggernaut",
9263 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9264 Colour = Color(119, 244, 66, 255),
9265 Side = 1,
9266 Rank = 12,
9267 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9268 Regiment = "Juggernaut",
9269} )
9270
9271TEAM_JUG_MJR = CreateTeam( "Juggernaut Major", {
9272 Description = "Imperial Juggernaut",
9273 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9274 Colour = Color(119, 244, 66, 255),
9275 Side = 1,
9276 Rank = 13,
9277 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9278 Regiment = "Juggernaut",
9279} )
9280
9281TEAM_JUG_COL = CreateTeam( "Juggernaut Colonel", {
9282 Description = "Imperial Juggernaut",
9283 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9284 Colour = Color(119, 244, 66, 255),
9285 Side = 1,
9286 Rank = 14,
9287 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9288 Regiment = "Juggernaut",
9289} )
9290
9291TEAM_JUG_HCO = CreateTeam( "Juggernaut High Colonel", {
9292 Description = "Imperial Juggernaut",
9293 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9294 Colour = Color(119, 244, 66, 255),
9295 Side = 1,
9296 Rank = 15,
9297 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9298 Regiment = "Juggernaut",
9299} )
9300
9301TEAM_JUG_CMD = CreateTeam( "Juggernaut Commander", {
9302 Description = "Imperial Juggernaut",
9303 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9304 Colour = Color(119, 244, 66, 255),
9305 Side = 1,
9306 Rank = 16,
9307 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9308 Regiment = "Juggernaut",
9309} )
9310
9311TEAM_JUG_BRG = CreateTeam( "Juggernaut Brigadier", {
9312 Description = "Imperial Juggernaut",
9313 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9314 Colour = Color(119, 244, 66, 255),
9315 Side = 1,
9316 Rank = 17,
9317 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9318 Regiment = "Juggernaut",
9319} )
9320
9321TEAM_JUG_MGN = CreateTeam( "Juggernaut Major General", {
9322 Description = "Imperial Juggernaut",
9323 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9324 Colour = Color(119, 244, 66, 255),
9325 Side = 1,
9326 Rank = 18,
9327 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9328 Regiment = "Juggernaut",
9329} )
9330
9331TEAM_JUG_LGN = CreateTeam( "Juggernaut Lieutenant General", {
9332 Description = "Imperial Juggernaut",
9333 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9334 Colour = Color(119, 244, 66, 255),
9335 Side = 1,
9336 Rank = 19,
9337 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9338 Regiment = "Juggernaut",
9339} )
9340
9341TEAM_JUG_GEN = CreateTeam( "Juggernaut General", {
9342 Description = "Imperial Juggernaut",
9343 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_z6"},
9344 Colour = Color(119, 244, 66, 255),
9345 Side = 1,
9346 Rank = 20,
9347 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9348 Regiment = "Juggernaut",
9349} )
9350
9351TEAM_TFO_PVT = CreateTeam( "TFO Private", {
9352 Description = "TFO Trooper",
9353 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9354 Colour = Color(0, 204, 255, 255),
9355 Side = 1,
9356 Rank = 1,
9357 Model = "models/player/banks/troopers/ftrooper.mdl",
9358 Regiment = "The Fallen Order",
9359} )
9360
9361TEAM_TFO_PFC = CreateTeam( "TFO Private First Class", {
9362 Description = "TFO Trooper",
9363 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9364 Colour = Color(0, 204, 255, 255),
9365 Side = 1,
9366 Rank = 2,
9367 Model = "models/player/banks/troopers/ftrooper.mdl",
9368 Regiment = "The Fallen Order",
9369} )
9370
9371TEAM_TFO_LCPL = CreateTeam( "TFO Lance Corporal", {
9372 Description = "TFO Trooper",
9373 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9374 Colour = Color(0, 204, 255, 255),
9375 Side = 1,
9376 Rank = 3,
9377 Model = "models/player/banks/troopers/ftrooper.mdl",
9378 Regiment = "The Fallen Order",
9379} )
9380
9381TEAM_TFO_CPL = CreateTeam( "TFO Corporal", {
9382 Description = "TFO Trooper",
9383 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9384 Colour = Color(0, 204, 255, 255),
9385 Side = 1,
9386 Rank = 4,
9387 Model = "models/player/banks/troopers/ftrooper.mdl",
9388 Regiment = "The Fallen Order",
9389} )
9390
9391TEAM_TFO_SGT = CreateTeam( "TFO Sergeant", {
9392 Description = "TFO Trooper",
9393 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9394 Colour = Color(0, 204, 255, 255),
9395 Side = 1,
9396 Rank = 5,
9397 Model = "models/player/banks/troopers/fsergeant.mdl",
9398 Regiment = "The Fallen Order",
9399} )
9400
9401TEAM_TFO_SSGT = CreateTeam( "TFO Staff Sergeant", {
9402 Description = "TFO Trooper",
9403 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9404 Colour = Color(0, 204, 255, 255),
9405 Side = 1,
9406 Rank = 6,
9407 Model = "models/player/banks/troopers/fsergeant.mdl",
9408 Regiment = "The Fallen Order",
9409} )
9410
9411TEAM_TFO_MSGT = CreateTeam( "TFO Master Sergeant", {
9412 Description = "TFO Trooper",
9413 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9414 Colour = Color(0, 204, 255, 255),
9415 Side = 1,
9416 Rank = 7,
9417 Model = "models/player/banks/troopers/fsergeant.mdl",
9418 Regiment = "The Fallen Order",
9419} )
9420
9421TEAM_TFO_OC = CreateTeam( "TFO Officer Cadet", {
9422 Description = "TFO Trooper",
9423 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9424 Colour = Color(0, 204, 255, 255),
9425 Side = 1,
9426 Rank = 8,
9427 Model = "models/player/banks/troopers/fsergeant.mdl",
9428 Regiment = "The Fallen Order",
9429} )
9430
9431TEAM_TFO_WO = CreateTeam( "TFO Warrant Officer", {
9432 Description = "TFO Trooper",
9433 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9434 Colour = Color(0, 204, 255, 255),
9435 Side = 1,
9436 Rank = 9,
9437 Model = "models/player/banks/troopers/fsergeant.mdl",
9438 Regiment = "The Fallen Order",
9439} )
9440
9441TEAM_TFO_LT = CreateTeam( "TFO Lieutenant", {
9442 Description = "TFO Trooper",
9443 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9444 Colour = Color(0, 204, 255, 255),
9445 Side = 1,
9446 Rank = 10,
9447 Model = "models/player/banks/fallen/tk_arc.mdl",
9448 Regiment = "The Fallen Order",
9449} )
9450
9451TEAM_TFO_1LT = CreateTeam( "TFO First Lieutenant", {
9452 Description = "TFO Trooper",
9453 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9454 Colour = Color(0, 204, 255, 255),
9455 Side = 1,
9456 Rank = 11,
9457 Model = "models/player/banks/fallen/tk_arc.mdl",
9458 Regiment = "The Fallen Order",
9459} )
9460
9461TEAM_TFO_CAPT = CreateTeam( "TFO Captain", {
9462 Description = "TFO Trooper",
9463 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9464 Colour = Color(0, 204, 255, 255),
9465 Side = 1,
9466 Rank = 12,
9467 Model = "models/player/banks/fallen/tk_arc.mdl",
9468 Regiment = "The Fallen Order",
9469} )
9470
9471TEAM_TFO_MAJ = CreateTeam( "TFO Major", {
9472 Description = "TFO Trooper",
9473 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9474 Colour = Color(0, 204, 255, 255),
9475 Side = 1,
9476 Rank = 13,
9477 Model = "models/player/banks/fallen/tk_arc.mdl",
9478 Regiment = "The Fallen Order",
9479} )
9480
9481TEAM_TFO_COLO = CreateTeam( "TFO Colonel", {
9482 Description = "TFO Trooper",
9483 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9484 Colour = Color(0, 204, 255, 255),
9485 Side = 1,
9486 Rank = 14,
9487 Model = "models/player/banks/fallen/tk_havoc.mdl",
9488 Regiment = "The Fallen Order",
9489} )
9490
9491TEAM_TFO_HCOLO = CreateTeam( "TFO High Colonel", {
9492 Description = "TFO Trooper",
9493 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9494 Colour = Color(0, 204, 255, 255),
9495 Side = 1,
9496 Rank = 15,
9497 Model = "models/player/banks/fallen/tk_havoc.mdl",
9498 Regiment = "The Fallen Order",
9499} )
9500
9501TEAM_TFO_CMD = CreateTeam( "TFO Commander", {
9502 Description = "TFO Trooper",
9503 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9504 Colour = Color(0, 204, 255, 255),
9505 Side = 1,
9506 Rank = 16,
9507 Model = "models/player/banks/fallen/tk_havoc.mdl",
9508 Regiment = "The Fallen Order",
9509} )
9510
9511TEAM_TFO_BRIG = CreateTeam( "TFO Brigadier", {
9512 Description = "TFO Trooper",
9513 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9514 Colour = Color(0, 204, 255, 255),
9515 Side = 1,
9516 Rank = 17,
9517 Model = "models/player/banks/fallen/tk_havoc.mdl",
9518 Regiment = "The Fallen Order",
9519} )
9520
9521TEAM_TFO_MAJG = CreateTeam( "TFO Major General", {
9522 Description = "TFO Trooper",
9523 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9524 Colour = Color(0, 204, 255, 255),
9525 Side = 1,
9526 Rank = 18,
9527 Model = "models/player/banks/fallen/tk_havoc.mdl",
9528 Regiment = "The Fallen Order",
9529} )
9530
9531TEAM_TFO_LTG = CreateTeam( "TFO Lieutenant General", {
9532 Description = "TFO Trooper",
9533 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9534 Colour = Color(0, 204, 255, 255),
9535 Side = 1,
9536 Rank = 19,
9537 Model = "models/player/banks/fallen/tk_havoc.mdl",
9538 Regiment = "The Fallen Order",
9539} )
9540
9541TEAM_TFO_GEN = CreateTeam( "TFO General", {
9542 Description = "TFO Trooper",
9543 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9544 Colour = Color(0, 204, 255, 255),
9545 Side = 1,
9546 Rank = 20,
9547 Model = "models/player/banks/fallen/tk_havoc.mdl",
9548 Regiment = "The Fallen Order",
9549} )
9550
9551TEAM_DROID_R4B = CreateTeam( "R4-B", {
9552 Description = "Astromech R4-B series Droid",
9553 Weapons = {"tfa_swch_se14c", "weapon_jetpack", "weapon_avpflamer", "weapon_stunstick"},
9554 Colour = Color(161, 0, 63, 255),
9555 Side = 1,
9556 Rank = 5,
9557 Model = "models/player/valley/astromechv2red.mdl",
9558 Regiment = "R4-B",
9559} )
9560
9561TEAM_ADROID_R2 = CreateTeam( "R2", {
9562 Description = "Astromech R2 series Droid",
9563 Weapons = {"tfa_swch_se14c", "weapon_jetpack", "weapon_avpflamer", "weapon_stunstick"},
9564 Colour = Color(161, 0, 63, 255),
9565 Side = 1,
9566 Rank = 1,
9567 Model = "models/kingpommes/emperors_tower/ph_props/rx_unit/r2_q5.mdl",
9568 Regiment = "Astromech Droid",
9569} )
9570
9571TEAM_ADROID_R4 = CreateTeam( "R4", {
9572 Description = "Astromech R4 series Droid",
9573 Weapons = {"tfa_swch_se14c", "weapon_jetpack", "weapon_avpflamer", "weapon_stunstick"},
9574 Colour = Color(161, 0, 63, 255),
9575 Side = 1,
9576 Rank = 2,
9577 Model = "models/kingpommes/emperors_tower/ph_props/rx_unit/r4_i9.mdl",
9578 Regiment = "Astromech Droid",
9579} )
9580
9581TEAM_ADROID_R5 = CreateTeam( "R5", {
9582 Description = "Astromech R5 series Droid",
9583 Weapons = {"tfa_swch_se14c", "weapon_jetpack", "weapon_avpflamer", "weapon_stunstick"},
9584 Colour = Color(161, 0, 63, 255),
9585 Side = 1,
9586 Rank = 3,
9587 Model = "models/kingpommes/emperors_tower/ph_props/rx_unit/r5_j2.mdl",
9588 Regiment = "Astromech Droid",
9589} )
9590
9591TEAM_BANE = CreateTeam( "", {
9592 Description = "Bounty Hunter Cad Bane.",
9593 Weapons = {"weapon_752_ll30dual", "tfa_swch_pulsecannon", "tfa_swch_ee3", "weapon_cuff_elastic", "weapon_jetpack"},
9594 Colour = Color(161, 0, 63, 255),
9595 Side = 1,
9596 Rank = 5,
9597 Model = "models/grealms/characters/cadbane/cadbane.mdl",
9598 Regiment = "Cad Bane",
9599} )
9600
9601TEAM_ISB_AGV = CreateTeam( "ISB Admiral", {
9602 Description = "Director of the Imperial Security Bureau",
9603 Weapons = {"tfa_dt29", "tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
9604 Colour = Color(225, 225, 153, 255 ),
9605 Side = 1,
9606 Rank = 23,
9607 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
9608 Regiment = "ISB",
9609} )
9610
9611TEAM_EVENT_REBELT = CreateTeam( "Rebel Trooper", {
9612 Description = "Event Job",
9613 Weapons = {"tfa_swch_a280c", "gmod_tool"},
9614 Colour = Color(255, 255, 255, 255),
9615 Side = 1,
9616 Rank = 1,
9617 Model = {"models/player/sgg/starwars/rebels/r_trooper/male_02.mdl",
9618 "models/player/sgg/starwars/rebels/r_trooper/male_03.mdl",
9619 "models/player/sgg/starwars/rebels/r_trooper/male_04.mdl",
9620 "models/player/sgg/starwars/rebels/r_trooper/male_05.mdl",
9621 "models/player/sgg/starwars/rebels/r_trooper/male_07.mdl"
9622 },
9623 Regiment = "Event",
9624} )
9625
9626
9627TEAM_EVENT_REBELC = CreateTeam( "Rebel Captain", {
9628 Description = "Event Job",
9629 Weapons = {"tfa_swch_dlt19", "gmod_tool"},
9630 Colour = Color(255, 255, 255, 255),
9631 Side = 1,
9632 Rank = 1,
9633 Model = {"models/player/sgg/starwars/rebels/r_trooper_captain/male_02.mdl",
9634 "models/player/sgg/starwars/rebels/r_trooper_captain/male_06.mdl",
9635 "models/player/sgg/starwars/rebels/r_trooper_captain/male_01.mdl",
9636 "models/player/sgg/starwars/rebels/r_trooper_captain/male_04.mdl",
9637 "models/player/sgg/starwars/rebels/r_trooper_captain/male_05.mdl"
9638 },
9639 Regiment = "Event",
9640} )
9641
9642TEAM_EVENT_REBELSNIP = CreateTeam( "Rebel Sniper", {
9643 Description = "Event Job",
9644 Weapons = {"tfa_swch_pulsecannon", "gmod_tool"},
9645 Colour = Color(255, 255, 255, 255),
9646 Side = 1,
9647 Rank = 1,
9648 Model = {"models/player/sgg/starwars/rebels/r_trooper/male_02.mdl",
9649 "models/player/sgg/starwars/rebels/r_trooper/male_03.mdl",
9650 "models/player/sgg/starwars/rebels/r_trooper/male_04.mdl",
9651 "models/player/sgg/starwars/rebels/r_trooper/male_05.mdl",
9652 "models/player/sgg/starwars/rebels/r_trooper/male_07.mdl"
9653 },
9654 Regiment = "Event",
9655} )
9656
9657TEAM_EVENT_TACDROID = CreateTeam( "Tactical Droid", {
9658 Description = "Event Job",
9659 Weapons = {"tfa_swch_e5", "gmod_tool"},
9660 Colour = Color(255, 255, 255, 255),
9661 Side = 1,
9662 Rank = 1,
9663 Model = "models/church/swtor/republicdroid/cpt_republicdroid.mdl",
9664 Regiment = "Event",
9665} )
9666
9667TEAM_EVENT_BATTLEDROID = CreateTeam( "Battledroid", {
9668 Description = "Event Job",
9669 Weapons = {"tfa_swch_e5", "gmod_tool"},
9670 Colour = Color(255, 255, 255, 255),
9671 Side = 1,
9672 Rank = 1,
9673 Model = "models/npc/hgn/swrp/swrp/droid_b1_battle.mdl",
9674 Regiment = "Event",
9675} )
9676
9677TEAM_EVENT_JEDIMAS = CreateTeam( "Jedi Master", {
9678 Description = "Event Job",
9679 Weapons = {"weapon_lightsaber", "gmod_tool"},
9680 Colour = Color(255, 255, 255, 255),
9681 Side = 1,
9682 Rank = 1,
9683 Model = {"models/padawan2/padawan2.mdl",
9684 "models/padawan3/padawan3.mdl",
9685 "models/padawan4/padawan4.mdl",
9686 "models/padawan5/padawan5.mdl",
9687 "models/padawan6/padawan6.mdl"
9688 },
9689 Regiment = "Event",
9690} )
9691
9692TEAM_EVENT_JEDIKNI = CreateTeam( "Jedi Knight", {
9693 Description = "Event Job",
9694 Weapons = {"weapon_lightsaber", "gmod_tool"},
9695 Colour = Color(255, 255, 255, 255),
9696 Side = 1,
9697 Rank = 1,
9698 Model = {"models/padawan2/padawan2.mdl",
9699 "models/padawan3/padawan3.mdl",
9700 "models/padawan4/padawan4.mdl",
9701 "models/padawan5/padawan5.mdl",
9702 "models/padawan6/padawan6.mdl"
9703 },
9704 Regiment = "Event",
9705} )
9706
9707TEAM_EVENT_JEDIPAD = CreateTeam( "Jedi Padawan", {
9708 Description = "Event Job",
9709 Weapons = {"weapon_lightsaber", "gmod_tool"},
9710 Colour = Color(255, 255, 255, 255),
9711 Side = 1,
9712 Rank = 1,
9713 Model = {"models/padawan2/padawan2.mdl",
9714 "models/padawan3/padawan3.mdl",
9715 "models/padawan4/padawan4.mdl",
9716 "models/padawan5/padawan5.mdl",
9717 "models/padawan6/padawan6.mdl"
9718 },
9719 Regiment = "Event",
9720} )
9721
9722TEAM_EVENT_MANDO = CreateTeam( "Mandalorian", {
9723 Description = "Event Job",
9724 Weapons = {"tfa_swch_ee3", "gmod_tool"},
9725 Colour = Color(255, 255, 255, 255),
9726 Side = 1,
9727 Rank = 1,
9728 Model = "models/porky-da-corgi/starwars/mandalorians/bountyhunter.mdl",
9729 Regiment = "Event",
9730} )
9731
9732TEAM_EVENT_MANDOL = CreateTeam( "Mandalorian Leader", {
9733 Description = "Event Job",
9734 Weapons = {"tfa_swch_ee3", "gmod_tool"},
9735 Colour = Color(255, 255, 255, 255),
9736 Side = 1,
9737 Rank = 1,
9738 Model = "models/porky-da-corgi/starwars/mandalorians/bountyhunter.mdl",
9739 Regiment = "Event",
9740} )
9741
9742TEAM_EVENT_BH = CreateTeam( "Bounty Hunter", {
9743 Description = "Event Job",
9744 Weapons = {"tfa_swch_ee3", "gmod_tool"},
9745 Colour = Color(255, 255, 255, 255),
9746 Side = 1,
9747 Rank = 1,
9748 Model = "models/porky-da-corgi/starwars/mandalorians/bountyhunter.mdl",
9749 Regiment = "Event",
9750} )
9751
9752TEAM_EVENT_BHLEAD = CreateTeam( "Bounty Hunter Leader", {
9753 Description = "Event Job",
9754 Weapons = {"tfa_swch_ee3", "gmod_tool"},
9755 Colour = Color(255, 255, 255, 255),
9756 Side = 1,
9757 Rank = 1,
9758 Model = "models/porky-da-corgi/starwars/mandalorians/bountyhunter.mdl",
9759 Regiment = "Event",
9760} )
9761
9762TEAM_EVENT_ZOMBIE = CreateTeam( "Zombie", {
9763 Description = "Event Job",
9764 Weapons = {"weapon_crowbar", "gmod_tool"},
9765 Colour = Color(255, 255, 255, 255),
9766 Side = 1,
9767 Rank = 1,
9768 Model = "models/player/zombie_classic.mdl",
9769 Regiment = "Event",
9770} )
9771
9772TEAM_EVENT_SENATOR = CreateTeam( "Senator", {
9773 Description = "Event Job",
9774 Weapons = {"tfa_swch_a280c", "gmod_tool"},
9775 Colour = Color(255, 255, 255, 255),
9776 Side = 1,
9777 Rank = 1,
9778 Model = {"models/player/scifi_louis.mdl",
9779 "models/player/scifi_male_08.mdl",
9780 "models/player/scifi_female_07.mdl",
9781 "models/player/scifi_female_04.mdl",
9782 "models/player/scifi_bill.mdl"},
9783 Regiment = "Event",
9784} )
9785
9786TEAM_EVENT_WOOKIEL = CreateTeam( "Wookie Leader", {
9787 Description = "Event Job",
9788 Weapons = {"tfa_swch_a280c", "zeus_thermaldet", "gmod_tool"},
9789 Colour = Color(255, 255, 255, 255),
9790 Side = 1,
9791 Rank = 1,
9792 Model = "models/player/valley/bowdaar.mdl",
9793 Regiment = "Event",
9794} )
9795
9796TEAM_EVENT_WOOKIE = CreateTeam( "Wookie", {
9797 Description = "Event Job",
9798 Weapons = {"tfa_swch_a280c", "zeus_thermaldet", "gmod_tool"},
9799 Colour = Color(255, 255, 255, 255),
9800 Side = 1,
9801 Rank = 1,
9802 Model = "models/player/valley/bowdaar.mdl",
9803 Regiment = "Event",
9804} )
9805
9806TEAM_EVENT_CIVILIAN = CreateTeam( "Civilian", {
9807 Description = "Event Job",
9808 Weapons = {"weapon_fists", "gmod_tool"},
9809 Colour = Color(255, 255, 255, 255),
9810 Side = 1,
9811 Rank = 1,
9812 Model = {"models/player/valley/gotal.mdl",
9813 "models/player/valley/bith.mdl",
9814 "models/player/valley/nossorri.mdl",
9815 "models/player/valley/jaric.mdl",
9816 "models/player/valley/kira.mdl",
9817 "models/player/valley/doc.mdl"
9818 },
9819 Regiment = "Event",
9820} )
9821
9822TEAM_EVENT_TRADER = CreateTeam( "Trader", {
9823 Description = "Event Job",
9824 Weapons = {"tfa_swch_e5", "gmod_tool"},
9825 Colour = Color(255, 255, 255, 255),
9826 Side = 1,
9827 Rank = 1,
9828 Model = {"models/player/valley/gotal.mdl",
9829 "models/player/valley/bith.mdl",
9830 "models/player/valley/nossorri.mdl",
9831 "models/player/valley/jaric.mdl",
9832 "models/player/valley/kira.mdl",
9833 "models/player/valley/doc.mdl"
9834 },
9835 Regiment = "Event",
9836} )
9837
9838TEAM_EVENT_JAWA = CreateTeam( "Jawa", {
9839 Description = "Event Job",
9840 Weapons = {"weapon_fists", "gmod_tool"},
9841 Colour = Color(255, 255, 255, 255),
9842 Side = 1,
9843 Rank = 1,
9844 Model = "models/church/swtor/jawa/cpt_jawa.mdl",
9845 Regiment = "Event",
9846} )
9847
9848TEAM_EVENT_TRAN = CreateTeam( "Trandoshan", {
9849 Description = "Event Job",
9850 Weapons = {"tfa_swch_dlt19", "gmod_tool"},
9851 Colour = Color(255, 255, 255, 255),
9852 Side = 1,
9853 Rank = 1,
9854 Model = "models/player/valley/qyzen.mdl",
9855 Regiment = "Event",
9856} )
9857
9858TEAM_NAVG_TRA = CreateTeam( "NG Trainee", {
9859 Description = "Naval Guard.",
9860 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9861 Colour = Color(45, 197, 232, 255),
9862 Side = 1,
9863 Rank = 1,
9864 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9865 Regiment = "Naval Guard",
9866} )
9867
9868TEAM_NAVG_JNR = CreateTeam( "NG Junior Crewman", {
9869 Description = "Naval Guard.",
9870 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9871 Colour = Color(45, 197, 232, 255),
9872 Side = 1,
9873 Rank = 2,
9874 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9875 Regiment = "Naval Guard",
9876} )
9877
9878TEAM_NAVG_CRW = CreateTeam( "NG Crewman", {
9879 Description = "Naval Guard.",
9880 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9881 Colour = Color(45, 197, 232, 255),
9882 Side = 1,
9883 Rank = 3,
9884 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9885 Regiment = "Naval Guard",
9886} )
9887
9888TEAM_NAVG_ABC = CreateTeam( "NG Able Crewman", {
9889 Description = "Naval Guard.",
9890 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9891 Colour = Color(45, 197, 232, 255),
9892 Side = 1,
9893 Rank = 4,
9894 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9895 Regiment = "Naval Guard",
9896} )
9897
9898TEAM_NAVG_SNC = CreateTeam( "NG Senior Crewman", {
9899 Description = "Naval Guard.",
9900 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9901 Colour = Color(45, 197, 232, 255),
9902 Side = 1,
9903 Rank = 5,
9904 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9905 Regiment = "Naval Guard",
9906} )
9907
9908TEAM_NAVG_LDC = CreateTeam( "NG Leading Crewman", {
9909 Description = "Naval Guard.",
9910 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9911 Colour = Color(45, 197, 232, 255),
9912 Side = 1,
9913 Rank = 6,
9914 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9915 Regiment = "Naval Guard",
9916} )
9917
9918TEAM_NAVG_CHF = CreateTeam( "NG Chief", {
9919 Description = "Naval Guard.",
9920 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9921 Colour = Color(45, 197, 232, 255),
9922 Side = 1,
9923 Rank = 7,
9924 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9925 Regiment = "Naval Guard",
9926} )
9927
9928TEAM_NAVG_MCH = CreateTeam( "NG Master Chief", {
9929 Description = "Naval Guard.",
9930 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9931 Colour = Color(45, 197, 232, 255),
9932 Side = 1,
9933 Rank = 8,
9934 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9935 Regiment = "Naval Guard",
9936} )
9937
9938TEAM_NAVG_POF = CreateTeam( "NG Petty Officer", {
9939 Description = "Naval Guard.",
9940 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9941 Colour = Color(45, 197, 232, 255),
9942 Side = 1,
9943 Rank = 9,
9944 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9945 Regiment = "Naval Guard",
9946} )
9947
9948TEAM_NAVG_OFC = CreateTeam( "NG Officer Cadet", {
9949 Description = "Naval Guard.",
9950 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9951 Colour = Color(45, 197, 232, 255),
9952 Side = 1,
9953 Rank = 10,
9954 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9955 Regiment = "Naval Guard",
9956} )
9957
9958TEAM_NAVG_ENS = CreateTeam( "NG Ensign", {
9959 Description = "Naval Guard.",
9960 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9961 Colour = Color(45, 197, 232, 255),
9962 Side = 1,
9963 Rank = 11,
9964 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9965 Regiment = "Naval Guard",
9966} )
9967
9968TEAM_NAVG_SLT = CreateTeam( "NG Sub-Lieutenant", {
9969 Description = "Naval Guard.",
9970 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9971 Colour = Color(45, 197, 232, 255),
9972 Side = 1,
9973 Rank = 12,
9974 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9975 Regiment = "Naval Guard",
9976} )
9977
9978TEAM_NAVG_LT = CreateTeam( "NG Lieutenant", {
9979 Description = "Naval Guard.",
9980 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9981 Colour = Color(45, 197, 232, 255),
9982 Side = 1,
9983 Rank = 13,
9984 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9985 Regiment = "Naval Guard",
9986} )
9987
9988TEAM_NAVG_LTC = CreateTeam( "NG Lieutenant Commander", {
9989 Description = "Naval Guard.",
9990 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9991 Colour = Color(45, 197, 232, 255),
9992 Side = 1,
9993 Rank = 14,
9994 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9995 Regiment = "Naval Guard",
9996} )
9997
9998TEAM_NAVG_CMD = CreateTeam( "NG Commander", {
9999 Description = "Naval Guard.",
10000 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
10001 Colour = Color(45, 197, 232, 255),
10002 Side = 1,
10003 Rank = 15,
10004 Model = "models/player/ven/remasteredshadowtrooper.mdl",
10005 Regiment = "Naval Guard",
10006} )
10007
10008TEAM_NAVG_CAP = CreateTeam( "NG Captain", {
10009 Description = "Naval Guard.",
10010 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
10011 Colour = Color(45, 197, 232, 255),
10012 Side = 1,
10013 Rank = 16,
10014 Model = "models/player/ven/remasteredshadowtrooper.mdl",
10015 Regiment = "Naval Guard",
10016} )
10017
10018TEAM_NAVG_LCPT = CreateTeam( "NG Line Captain", {
10019 Description = "Naval Guard.",
10020 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
10021 Colour = Color(45, 197, 232, 255),
10022 Side = 1,
10023 Rank = 17,
10024 Model = "models/player/ven/remasteredshadowtrooper.mdl",
10025 Regiment = "Naval Guard",
10026} )
10027
10028TEAM_NAVG_COM = CreateTeam( "NG Commodore", {
10029 Description = "Naval Guard.",
10030 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
10031 Colour = Color(45, 197, 232, 255),
10032 Side = 1,
10033 Rank = 18,
10034 Model = "models/player/ven/remasteredshadowtrooper.mdl",
10035 Regiment = "Naval Guard",
10036} )
10037
10038TEAM_PROPHET_SP = CreateTeam( "Supreme Prophet", {
10039 Description = "",
10040 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic", "forcechoke"},
10041 Colour = Color(255, 51, 51, 255),
10042 Side = 1,
10043 Rank = 16,
10044 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
10045 Regiment = "Prophet",
10046} )
10047
10048TEAM_SCOUT_HEAVY = CreateTeam( "ST {W} Heavy", {
10049 Description = "Member of the Storm Trooper Core",
10050 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon", "tfa_swch_rt97c"},
10051 Colour = Color(102, 0, 102, 255 ),
10052 Side = 1,
10053 Rank = 7,
10054 Model = "models/sono/swbf3/sergeant.mdl",
10055 Regiment = "Heavy Class",
10056} )
10057
10058TEAM_212_HEAVY = CreateTeam( "212th Heavy", {
10059 Description = "Member of the Storm Trooper Core",
10060 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "tfa_swch_rt97c"},
10061 Colour = Color(255, 193, 0, 255),
10062 Side = 1,
10063 Rank = 7,
10064 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
10065 Regiment = "Heavy Class",
10066} )
10067
10068TEAM_SHADOW_HEAVY = CreateTeam( "SW Heavy", {
10069 Description = "Member of the Storm Trooper Core",
10070 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook","tfa_swch_rt97c"},
10071 Colour = Color(32, 32, 32, 255),
10072 Side = 1,
10073 Rank = 7,
10074 Model = "models/player/banks/troopers1/sergeant1.mdl",
10075 Regiment = "Heavy Class",
10076} )
10077
10078TEAM_JUMP_HEAVY = CreateTeam( "JT Heavy", {
10079 Description = "Member of the Storm Trooper Core",
10080 Weapons = {"tfa_swch_e11", "tfa_swch_pulsecannon", "tfa_swch_rt97c"},
10081 Colour = Color(0, 102, 102, 255),
10082 Side = 1,
10083 Rank = 7,
10084 Model = "models/banks/ig/jt4/jt4.mdl",
10085 Regiment = "Heavy Class",
10086} )
10087
10088TEAM_SHORE_HEAVY = CreateTeam( "SR Heavy", {
10089 Description = "Member of the Storm Trooper Core",
10090 Weapons = {"tfa_swch_dlt19", "tfa_swch_alphablaster", "tfa_swch_se14c", "tfa_swch_rt97c"},
10091 Colour = Color(255, 153, 51, 255),
10092 Side = 1,
10093 Rank = 7,
10094 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
10095 Regiment = "Heavy Class",
10096} )
10097
10098TEAM_NOVA_HEAVY = CreateTeam( "NT Heavy", {
10099 Description = "Member of the Storm Trooper Core",
10100 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_rt97c"},
10101 Colour = Color(0, 204, 102, 255),
10102 Side = 1,
10103 Rank = 7,
10104 Model = "models/player/banks/novatrooper/novatrooper.mdl",
10105 Regiment = "Heavy Class",
10106} )
10107
10108TEAM_RIOT_HEAVY = CreateTeam( "RT Heavy", {
10109 Description = "Member of the Storm Trooper Core",
10110 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser", "weapon_policeshield", "tfa_swch_rt97c"},
10111 Colour = Color(255, 51, 51, 255),
10112 Side = 1,
10113 Rank = 7,
10114 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
10115 Regiment = "Heavy Class",
10116} )
10117
10118TEAM_VF_HEAVY = CreateTeam( "VF Heavy", {
10119 Description = "Member of the Storm Trooper Core",
10120 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "tfa_swch_rt97c"},
10121 Colour = Color(51, 51, 255, 255),
10122 Side = 1,
10123 Rank = 7,
10124 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
10125 Regiment = "Heavy Class",
10126} )
10127
10128TEAM_MAGMA_HEAVY = CreateTeam( "MG Heavy", {
10129 Description = "Member of the Storm Trooper Core",
10130 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_dh17", "tfa_swch_rt97c"},
10131 Colour = Color(182, 255, 0, 255),
10132 Side = 1,
10133 Rank = 7,
10134 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
10135 Regiment = "Heavy Class",
10136} )
10137
10138TEAM_INCIN_HEAVY = CreateTeam( "Incinerator Heavy", {
10139 Description = "Member of the Storm Trooper Core",
10140 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_avpflamer", "tfa_swch_rt97c"},
10141 Colour = Color(255, 157, 0, 255),
10142 Side = 1,
10143 Rank = 7,
10144 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
10145 Regiment = "Heavy Class",
10146} )
10147
10148TEAM_SC_HEAVY = CreateTeam( "SC Heavy", {
10149 Description = "Member of the Storm Trooper Core",
10150 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_swch_rt97c"},
10151 Colour = Color(50, 50, 50, 255 ),
10152 Side = 1,
10153 Rank = 7,
10154 Model = "models/shepherdmod/storm/sarge/storm_sergeant.mdl",
10155 Regiment = "Heavy Class",
10156} )
10157
10158TEAM_SCAR_HEAVY = CreateTeam( "SCAR Heavy", {
10159 Description = "Member of the Storm Trooper Core",
10160 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_dh_17", "weapon_camo", "tfa_swch_rt97c"},
10161 Colour = Color(0, 72, 6, 255 ),
10162 Side = 1,
10163 Rank = 7,
10164 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
10165 Regiment = "Heavy Class",
10166} )
10167
10168TEAM_TALON_HEAVY = CreateTeam( "Talon Heavy", {
10169 Description = "Member of the Storm Trooper Core",
10170 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon", "realistic_hook", "tfa_swch_rt97c"},
10171 Colour = Color(123, 183, 137, 255 ),
10172 Side = 1,
10173 Rank = 7,
10174 Model = "models/player/sono/specopstorm/elite.mdl",
10175 Regiment = "Heavy Class",
10176} )
10177
10178TEAM_SM_HEAVY = CreateTeam( "SM Heavy", {
10179 Description = "Member of the Storm Trooper Core",
10180 Weapons = {"tfa_swch_dlt19", "tfa_sw_repshot", "tfa_swch_rt97c"},
10181 Colour = Color(208, 121, 121, 255 ),
10182 Side = 1,
10183 Rank = 7,
10184 Model = "models/player/sono/specopstorm/bshadow.mdl",
10185 Regiment = "Heavy Class",
10186} )
10187
10188TEAM_NG_HEAVY = CreateTeam( "NG Heavy", {
10189 Description = "Member of the Storm Trooper Core",
10190 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_rt97c"},
10191 Colour = Color(45, 197, 232, 255),
10192 Side = 1,
10193 Rank = 7,
10194 Model = "models/player/ven/remasteredshadowtrooper.mdl",
10195 Regiment = "Heavy Class",
10196} )
10197
10198TEAM_442_HEAVY = CreateTeam( "442nd Heavy", {
10199 Description = "Member of the Storm Trooper Core",
10200 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
10201 Colour = Color(182, 255, 0, 255),
10202 Side = 1,
10203 Rank = 7,
10204 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
10205 Regiment = "Heavy Class",
10206} )
10207
10208TEAM_ALD_JC = CreateTeam( "Junior Clerk", {
10209 Description = "Member of Administrative & Logistics Division",
10210 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10211 Colour = Color(145, 0, 0, 255 ),
10212 Side = 1,
10213 Rank = 1,
10214 Model = "models/player/scifi_female_02.mdl",
10215 Regiment = "Administrative & Logistics Division",
10216} )
10217
10218TEAM_ALD_AC = CreateTeam( "Assistant Clerk", {
10219 Description = "Member of Administrative & Logistics Division",
10220 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10221 Colour = Color(145, 0, 0, 255 ),
10222 Side = 1,
10223 Rank = 2,
10224 Model = "models/player/scifi_female_02.mdl",
10225 Regiment = "Administrative & Logistics Division",
10226} )
10227
10228TEAM_ALD_UC = CreateTeam( "Under Clerk", {
10229 Description = "Member of Administrative & Logistics Division",
10230 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10231 Colour = Color(145, 0, 0, 255 ),
10232 Side = 1,
10233 Rank = 3,
10234 Model = "models/player/scifi_female_02.mdl",
10235 Regiment = "Administrative & Logistics Division",
10236} )
10237
10238TEAM_ALD_DC = CreateTeam( "Deputy Clerk", {
10239 Description = "Member of Administrative & Logistics Division",
10240 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10241 Colour = Color(145, 0, 0, 255 ),
10242 Side = 1,
10243 Rank = 4,
10244 Model = "models/player/scifi_female_02.mdl",
10245 Regiment = "Administrative & Logistics Division",
10246} )
10247
10248TEAM_ALD_C = CreateTeam( "Clerk", {
10249 Description = "Member of Administrative & Logistics Division",
10250 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10251 Colour = Color(145, 0, 0, 255 ),
10252 Side = 1,
10253 Rank = 5,
10254 Model = "models/player/scifi_female_02.mdl",
10255 Regiment = "Administrative & Logistics Division",
10256} )
10257
10258TEAM_ALD_PC = CreateTeam( "Principal Clerk", {
10259 Description = "Member of Administrative & Logistics Division",
10260 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10261 Colour = Color(145, 0, 0, 255 ),
10262 Side = 1,
10263 Rank = 6,
10264 Model = "models/player/scifi_female_02.mdl",
10265 Regiment = "Administrative & Logistics Division",
10266} )
10267
10268TEAM_ALD_US = CreateTeam( "Under Secretary", {
10269 Description = "Member of Administrative & Logistics Division",
10270 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10271 Colour = Color(145, 0, 0, 255 ),
10272 Side = 1,
10273 Rank = 7,
10274 Model = "models/player/scifi_female_02.mdl",
10275 Regiment = "Administrative & Logistics Division",
10276} )
10277
10278TEAM_ALD_DS = CreateTeam( "Deputy Secretary", {
10279 Description = "Member of Administrative & Logistics Division",
10280 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10281 Colour = Color(145, 0, 0, 255 ),
10282 Side = 1,
10283 Rank = 8,
10284 Model = "models/player/scifi_female_02.mdl",
10285 Regiment = "Administrative & Logistics Division",
10286} )
10287
10288TEAM_ALD_S = CreateTeam( "Secretary", {
10289 Description = "Member of Administrative & Logistics Division",
10290 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10291 Colour = Color(145, 0, 0, 255 ),
10292 Side = 1,
10293 Rank = 9,
10294 Model = "models/player/scifi_female_02.mdl",
10295 Regiment = "Administrative & Logistics Division",
10296} )
10297
10298TEAM_ALD_PS = CreateTeam( "Principal Secretary", {
10299 Description = "Member of Administrative & Logistics Division",
10300 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10301 Colour = Color(145, 0, 0, 255 ),
10302 Side = 1,
10303 Rank = 10,
10304 Model = "models/player/scifi_female_02.mdl",
10305 Regiment = "Administrative & Logistics Division",
10306} )
10307
10308TEAM_ALD_ES = CreateTeam( "Executive Secretary", {
10309 Description = "Member of Administrative & Logistics Division",
10310 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10311 Colour = Color(145, 0, 0, 255 ),
10312 Side = 1,
10313 Rank = 11,
10314 Model = "models/player/scifi_female_02.mdl",
10315 Regiment = "Administrative & Logistics Division",
10316} )
10317
10318TEAM_ALD_COS = CreateTeam( "Chief of Staff", {
10319 Description = "Member of Administrative & Logistics Division",
10320 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
10321 Colour = Color(145, 0, 0, 255 ),
10322 Side = 1,
10323 Rank = 12,
10324 Model = "models/player/scifi_female_02.mdl",
10325 Regiment = "Administrative & Logistics Division",
10326} )
10327
10328TEAM_IHC_GENR = CreateTeam( "General", {
10329 Description = "Member of the Imperial High Command",
10330 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_dt29", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser", "realistic_hook"},
10331 Colour = Color(145, 0, 0, 255 ),
10332 Side = 1,
10333 Rank = 1,
10334 Model = "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl",
10335 Regiment = "Imperial High Command",
10336} )
10337
10338TEAM_IHC_GADM = CreateTeam( "Grand Admiral", {
10339 Description = "Member of the Imperial High Command",
10340 Weapons = {"tfa_swch_dh17", "sswep_thrawn", "tfa_swch_e11", "tfa_dt29", "weapon_cuff_elastic", "weapon_taser", "realistic_hook"},
10341 Colour = Color(145, 0, 0, 255 ),
10342 Side = 1,
10343 Rank = 2,
10344 Model = "models/player/valley/thrawn.mdl",
10345 Regiment = "Imperial High Command",
10346} )
10347
10348TEAM_IHC_GMOFF = CreateTeam( "Grand Moff", {
10349 Description = "Member of the Imperial High Command",
10350 Weapons = {"tfa_swch_dlt19", "tfa_swch_dh17", "tfa_swch_ee3", "tfa_swch_e11", "tfa_dt29", "weapon_cuff_elastic", "weapon_taser", "realistic_hook"},
10351 Colour = Color(145, 0, 0, 255 ),
10352 Side = 1,
10353 Rank = 3,
10354 Model = "models/player/heracles421/tarkin/moff_tarkin.mdl",
10355 Regiment = "Imperial High Command",
10356} )
10357
10358TEAM_IHC_GGEN = CreateTeam( "Grand General", {
10359 Description = "Member of the Imperial High Command",
10360 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "tfa_dt29", "weapon_cuff_elastic", "weapon_taser", "realistic_hook"},
10361 Colour = Color(145, 0, 0, 255 ),
10362 Side = 1,
10363 Rank = 4,
10364 Model = "models/player/banks/tk_arc/tk_wolf.mdl",
10365 Regiment = "Imperial High Command",
10366} )
10367
10368TEAM_CS_P = CreateTeam( "CS Private", {
10369 Description = "Member of the Chimaera Squad",
10370 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10371 Colour = Color(145, 0, 0, 255 ),
10372 Side = 1,
10373 Rank = 1,
10374 Model = "models/player/banks/thrawn/pm_trooper_v1_1.mdl",
10375 Regiment = "Chimaera Squad",
10376} )
10377
10378TEAM_CS_FC = CreateTeam( "CS First Class", {
10379 Description = "Member of the Chimaera Squad",
10380 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10381 Colour = Color(145, 0, 0, 255 ),
10382 Side = 1,
10383 Rank = 2,
10384 Model = "models/player/banks/thrawn/pm_trooper_v1_1.mdl",
10385 Regiment = "Chimaera Squad",
10386} )
10387
10388TEAM_CS_LC = CreateTeam( "CS Lance Corporal", {
10389 Description = "Member of the Chimaera Squad",
10390 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10391 Colour = Color(145, 0, 0, 255 ),
10392 Side = 1,
10393 Rank = 3,
10394 Model = "models/player/banks/thrawn/pm_trooper_v1_1.mdl",
10395 Regiment = "Chimaera Squad",
10396} )
10397
10398TEAM_CS_C = CreateTeam( "CS Corporal", {
10399 Description = "Member of the Chimaera Squad",
10400 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10401 Colour = Color(145, 0, 0, 255 ),
10402 Side = 1,
10403 Rank = 4,
10404 Model = "models/player/banks/thrawn/pm_trooper_v1_1.mdl",
10405 Regiment = "Chimaera Squad",
10406} )
10407
10408TEAM_CS_S = CreateTeam( "CS Sergeant", {
10409 Description = "Member of the Chimaera Squad",
10410 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10411 Colour = Color(145, 0, 0, 255 ),
10412 Side = 1,
10413 Rank = 5,
10414 Model = "models/player/banks/thrawn/pm_nco_v1.mdl",
10415 Regiment = "Chimaera Squad",
10416} )
10417
10418TEAM_CS_SS = CreateTeam( "CS Staff Sergeant", {
10419 Description = "Member of the Chimaera Squad",
10420 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10421 Colour = Color(145, 0, 0, 255 ),
10422 Side = 1,
10423 Rank = 6,
10424 Model = "models/player/banks/thrawn/pm_nco_v1.mdl",
10425 Regiment = "Chimaera Squad",
10426} )
10427
10428TEAM_CS_MS = CreateTeam( "CS Master Sergeant", {
10429 Description = "Member of the Chimaera Squad",
10430 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10431 Colour = Color(145, 0, 0, 255 ),
10432 Side = 1,
10433 Rank = 7,
10434 Model = "models/player/banks/thrawn/pm_nco_v1.mdl",
10435 Regiment = "Chimaera Squad",
10436} )
10437
10438TEAM_CS_OC = CreateTeam( "CS Officer Cadet", {
10439 Description = "Member of the Chimaera Squad",
10440 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10441 Colour = Color(145, 0, 0, 255 ),
10442 Side = 1,
10443 Rank = 8,
10444 Model = "models/player/banks/thrawn/pm_officer_v1_0_5.mdl",
10445 Regiment = "Chimaera Squad",
10446} )
10447
10448TEAM_CS_WOC = CreateTeam( "CS Warrant Officer Cadet", {
10449 Description = "Member of the Chimaera Squad",
10450 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10451 Colour = Color(145, 0, 0, 255 ),
10452 Side = 1,
10453 Rank = 9,
10454 Model = "models/player/banks/thrawn/pm_officer_v1_0_5.mdl",
10455 Regiment = "Chimaera Squad",
10456} )
10457
10458TEAM_CS_LT = CreateTeam( "CS Lieutenant", {
10459 Description = "Member of the Chimaera Squad",
10460 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10461 Colour = Color(145, 0, 0, 255 ),
10462 Side = 1,
10463 Rank = 10,
10464 Model = "models/player/banks/thrawn/pm_officer_v1_0_5.mdl",
10465 Regiment = "Chimaera Squad",
10466} )
10467
10468TEAM_CS_1LT = CreateTeam( "CS 1st Lieutenant", {
10469 Description = "Member of the Chimaera Squad",
10470 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10471 Colour = Color(145, 0, 0, 255 ),
10472 Side = 1,
10473 Rank = 11,
10474 Model = "models/player/banks/thrawn/pm_officer_v1_0_5.mdl",
10475 Regiment = "Chimaera Squad",
10476} )
10477
10478TEAM_CS_CPT = CreateTeam( "CS Captain", {
10479 Description = "Member of the Chimaera Squad",
10480 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10481 Colour = Color(145, 0, 0, 255 ),
10482 Side = 1,
10483 Rank = 12,
10484 Model = "models/player/banks/thrawn/pm_officer_v1_0_5.mdl",
10485 Regiment = "Chimaera Squad",
10486} )
10487
10488TEAM_CS_M = CreateTeam( "CS Major", {
10489 Description = "Member of the Chimaera Squad",
10490 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10491 Colour = Color(145, 0, 0, 255 ),
10492 Side = 1,
10493 Rank = 13,
10494 Model = "models/player/banks/thrawn/pm_officer_v1_0_5.mdl",
10495 Regiment = "Chimaera Squad",
10496} )
10497
10498TEAM_CS_COL = CreateTeam( "CS Colonel", {
10499 Description = "Member of the Chimaera Squad",
10500 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10501 Colour = Color(145, 0, 0, 255 ),
10502 Side = 1,
10503 Rank = 14,
10504 Model = "models/player/banks/thrawn/pm_officer_v1_0_5.mdl",
10505 Regiment = "Chimaera Squad",
10506} )
10507
10508TEAM_CS_HC = CreateTeam( "CS High Colonel", {
10509 Description = "Member of the Chimaera Squad",
10510 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10511 Colour = Color(145, 0, 0, 255 ),
10512 Side = 1,
10513 Rank = 15,
10514 Model = "models/player/banks/thrawn/pm_officer_v1_0_5.mdl",
10515 Regiment = "Chimaera Squad",
10516} )
10517
10518TEAM_CS_COM = CreateTeam( "CS Commander", {
10519 Description = "Member of the Chimaera Squad",
10520 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10521 Colour = Color(145, 0, 0, 255 ),
10522 Side = 1,
10523 Rank = 16,
10524 Model = "models/player/banks/thrawn1/pm_chimera_co_v1_2.mdl",
10525 Regiment = "Chimaera Squad",
10526} )
10527
10528TEAM_CS_BRIG = CreateTeam( "CS Brigadier", {
10529 Description = "Member of the Chimaera Squad",
10530 Weapons = {"tfa_e11d", "Tfa_swch_se14c", "weapon_cuff_elastic"},
10531 Colour = Color(145, 0, 0, 255 ),
10532 Side = 1,
10533 Rank = 17,
10534 Model = "models/player/banks/thrawn1/pm_chimera_co_v1_2.mdl",
10535 Regiment = "Chimaera Squad",
10536} )
10537
10538local teamhp = {
10539 [ TEAM_ST_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10540 [ TEAM_ST_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10541 [ TEAM_ST_COLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10542 [ TEAM_ST_HCOLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10543 [ TEAM_ST_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10544 [ TEAM_ST_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10545 [ TEAM_ST_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10546 [ TEAM_ST_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10547 [ TEAM_ST_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10548 [ TEAM_SNOW_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10549 [ TEAM_SNOW_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10550 [ TEAM_SNOW_COLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10551 [ TEAM_SNOW_HCOLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10552 [ TEAM_SNOW_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10553 [ TEAM_SNOW_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10554 [ TEAM_SNOW_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10555 [ TEAM_SNOW_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10556 [ TEAM_SNOW_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10557 [ TEAM_SCOUT_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10558 [ TEAM_SCOUT_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10559 [ TEAM_SCOUT_COLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10560 [ TEAM_SCOUT_HCOLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10561 [ TEAM_SCOUT_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10562 [ TEAM_SCOUT_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10563 [ TEAM_SCOUT_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10564 [ TEAM_SCOUT_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10565 [ TEAM_SCOUT_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10566 [ TEAM_212TH_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10567 [ TEAM_212TH_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10568 [ TEAM_212TH_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10569 [ TEAM_212TH_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10570 [ TEAM_212TH_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10571 [ TEAM_212TH_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10572 [ TEAM_212TH_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10573 [ TEAM_212TH_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10574 [ TEAM_212TH_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10575 [ TEAM_212TH_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10576 [ TEAM_212TH_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10577 [ TEAM_212TH_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10578 [ TEAM_212TH_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10579 [ TEAM_212TH_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10580 [ TEAM_212TH_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10581 [ TEAM_212TH_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10582 [ TEAM_212TH_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10583 [ TEAM_212TH_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10584 [ TEAM_212TH_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10585 [ TEAM_212TH_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10586 [ TEAM_442ND_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10587 [ TEAM_442ND_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10588 [ TEAM_442ND_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10589 [ TEAM_442ND_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10590 [ TEAM_442ND_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10591 [ TEAM_442ND_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10592 [ TEAM_442ND_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10593 [ TEAM_442ND_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10594 [ TEAM_442ND_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10595 [ TEAM_442ND_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10596 [ TEAM_442ND_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10597 [ TEAM_442ND_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10598 [ TEAM_442ND_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10599 [ TEAM_442ND_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10600 [ TEAM_442ND_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10601 [ TEAM_442ND_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10602 [ TEAM_442ND_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10603 [ TEAM_442ND_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10604 [ TEAM_442ND_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10605 [ TEAM_442ND_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10606 [ TEAM_SHADOW_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10607 [ TEAM_SHADOW_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10608 [ TEAM_SHADOW_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10609 [ TEAM_SHADOW_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10610 [ TEAM_SHADOW_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10611 [ TEAM_SHADOW_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10612 [ TEAM_SHADOW_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10613 [ TEAM_SHADOW_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10614 [ TEAM_SHADOW_WO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10615 [ TEAM_SHADOW_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10616 [ TEAM_SHADOW_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10617 [ TEAM_SHADOW_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10618 [ TEAM_SHADOW_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10619 [ TEAM_SHADOW_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10620 [ TEAM_SHADOW_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10621 [ TEAM_SHADOW_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10622 [ TEAM_SHADOW_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10623 [ TEAM_SHADOW_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10624 [ TEAM_SHADOW_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10625 [ TEAM_SHADOW_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10626 [ TEAM_JUMP_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10627 [ TEAM_JUMP_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10628 [ TEAM_JUMP_COLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10629 [ TEAM_JUMP_HCOLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10630 [ TEAM_JUMP_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10631 [ TEAM_JUMP_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10632 [ TEAM_JUMP_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10633 [ TEAM_JUMP_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10634 [ TEAM_JUMP_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10635 [ TEAM_DEATH_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10636 [ TEAM_DEATH_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10637 [ TEAM_DEATH_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10638 [ TEAM_DEATH_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10639 [ TEAM_DEATH_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10640 [ TEAM_DEATH_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10641 [ TEAM_DEATH_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10642 [ TEAM_DEATH_OFFICERCADET ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10643 [ TEAM_DEATH_WO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10644 [ TEAM_DEATH_LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10645 [ TEAM_DEATH_FLT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10646 [ TEAM_DEATH_CAPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10647 [ TEAM_DEATH_MAJ ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10648 [ TEAM_DEATH_COLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10649 [ TEAM_DEATH_HCOLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10650 [ TEAM_DEATH_CMD ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10651 [ TEAM_DEATH_BRIG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10652 [ TEAM_DEATH_MAJG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10653 [ TEAM_DEATH_LTG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10654 [ TEAM_DEATH_GEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10655 [ TEAM_SHORE_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10656 [ TEAM_SHORE_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10657 [ TEAM_SHORE_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10658 [ TEAM_SHORE_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10659 [ TEAM_SHORE_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10660 [ TEAM_SHORE_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10661 [ TEAM_SHORE_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10662 [ TEAM_SHORE_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10663 [ TEAM_SHORE_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10664 [ TEAM_SHORE_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10665 [ TEAM_SHORE_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10666 [ TEAM_SHORE_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10667 [ TEAM_SHORE_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10668 [ TEAM_SHORE_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10669 [ TEAM_SHORE_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10670 [ TEAM_SHORE_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10671 [ TEAM_SHORE_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10672 [ TEAM_SHORE_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10673 [ TEAM_SHORE_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10674 [ TEAM_SHORE_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10675 [ TEAM_NOVA_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10676 [ TEAM_NOVA_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10677 [ TEAM_NOVA_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10678 [ TEAM_NOVA_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10679 [ TEAM_NOVA_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10680 [ TEAM_NOVA_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10681 [ TEAM_NOVA_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10682 [ TEAM_NOVA_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10683 [ TEAM_NOVA_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10684 [ TEAM_NOVA_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10685 [ TEAM_NOVA_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10686 [ TEAM_NOVA_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10687 [ TEAM_NOVA_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10688 [ TEAM_NOVA_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10689 [ TEAM_NOVA_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10690 [ TEAM_NOVA_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10691 [ TEAM_NOVA_BRIG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10692 [ TEAM_NOVA_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10693 [ TEAM_NOVA_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10694 [ TEAM_NOVA_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10695 [ TEAM_MEDICAL_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10696 [ TEAM_MEDICAL_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10697 [ TEAM_MEDICAL_COLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10698 [ TEAM_MEDICAL_HCOLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10699 [ TEAM_MEDICAL_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10700 [ TEAM_MEDICAL_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10701 [ TEAM_MEDICAL_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10702 [ TEAM_MEDICAL_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10703 [ TEAM_MEDICAL_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10704 [ TEAM_SHOCK_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10705 [ TEAM_SHOCK_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10706 [ TEAM_SHOCK_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10707 [ TEAM_SHOCK_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10708 [ TEAM_SHOCK_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10709 [ TEAM_SHOCK_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10710 [ TEAM_SHOCK_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10711 [ TEAM_SHOCK_OFFICERCADET ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10712 [ TEAM_SHOCK_WO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10713 [ TEAM_SHOCK_LT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10714 [ TEAM_SHOCK_FLT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10715 [ TEAM_SHOCK_CAPT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10716 [ TEAM_SHOCK_MAJ ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10717 [ TEAM_SHOCK_COLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10718 [ TEAM_SHOCK_HCOLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10719 [ TEAM_SHOCK_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10720 [ TEAM_SHOCK_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10721 [ TEAM_SHOCK_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10722 [ TEAM_SHOCK_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10723 [ TEAM_SHOCK_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10724 [ TEAM_RIOT_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10725 [ TEAM_RIOT_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10726 [ TEAM_RIOT_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10727 [ TEAM_RIOT_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10728 [ TEAM_RIOT_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10729 [ TEAM_RIOT_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10730 [ TEAM_RIOT_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10731 [ TEAM_RIOT_OFFICERCADET ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10732 [ TEAM_RIOT_WO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10733 [ TEAM_RIOT_LT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10734 [ TEAM_RIOT_FLT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10735 [ TEAM_RIOT_CAPT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10736 [ TEAM_RIOT_MAJ ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10737 [ TEAM_RIOT_COLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10738 [ TEAM_RIOT_HCOLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10739 [ TEAM_RIOT_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10740 [ TEAM_RIOT_BRIG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10741 [ TEAM_RIOT_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10742 [ TEAM_RIOT_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10743 [ TEAM_RIOT_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10744 [ TEAM_VF_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10745 [ TEAM_VF_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10746 [ TEAM_VF_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10747 [ TEAM_VF_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10748 [ TEAM_VF_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10749 [ TEAM_VF_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10750 [ TEAM_VF_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10751 [ TEAM_VF_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10752 [ TEAM_VF_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10753 [ TEAM_VF_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10754 [ TEAM_VF_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10755 [ TEAM_VF_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10756 [ TEAM_VF_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10757 [ TEAM_VF_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10758 [ TEAM_VF_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10759 [ TEAM_VF_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10760 [ TEAM_VF_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10761 [ TEAM_VF_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10762 [ TEAM_VF_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10763 [ TEAM_VF_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10764 [ TEAM_TERROR_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10765 [ TEAM_TERROR_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10766 [ TEAM_TERROR_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10767 [ TEAM_TERROR_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10768 [ TEAM_TERROR_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10769 [ TEAM_TERROR_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10770 [ TEAM_TERROR_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10771 [ TEAM_TERROR_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10772 [ TEAM_TERROR_WO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10773 [ TEAM_TERROR_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10774 [ TEAM_TERROR_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10775 [ TEAM_TERROR_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10776 [ TEAM_TERROR_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10777 [ TEAM_TERROR_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10778 [ TEAM_TERROR_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10779 [ TEAM_TERROR_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10780 [ TEAM_TERROR_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10781 [ TEAM_TERROR_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10782 [ TEAM_TERROR_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10783 [ TEAM_TERROR_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10784 [ TEAM_MAGMA_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10785 [ TEAM_MAGMA_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10786 [ TEAM_MAGMA_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10787 [ TEAM_MAGMA_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10788 [ TEAM_MAGMA_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10789 [ TEAM_MAGMA_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10790 [ TEAM_MAGMA_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10791 [ TEAM_MAGMA_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10792 [ TEAM_MAGMA_WO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10793 [ TEAM_MAGMA_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10794 [ TEAM_MAGMA_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10795 [ TEAM_MAGMA_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10796 [ TEAM_MAGMA_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10797 [ TEAM_MAGMA_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10798 [ TEAM_MAGMA_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10799 [ TEAM_MAGMA_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10800 [ TEAM_MAGMA_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10801 [ TEAM_MAGMA_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10802 [ TEAM_MAGMA_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10803 [ TEAM_MAGMA_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10804 [ TEAM_IMPERIALCOMMANDO_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10805 [ TEAM_IMPERIALCOMMANDO_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10806 [ TEAM_IMPERIALCOMMANDO_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10807 [ TEAM_IMPERIALCOMMANDO_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10808 [ TEAM_IMPERIALCOMMANDO_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10809 [ TEAM_IMPERIALCOMMANDO_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10810 [ TEAM_IMPERIALCOMMANDO_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10811 [ TEAM_IMPERIALCOMMANDO_OFFICERCADET ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10812 [ TEAM_IMPERIALCOMMANDO_WO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10813 [ TEAM_IMPERIALCOMMANDO_LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10814 [ TEAM_IMPERIALCOMMANDO_FLT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10815 [ TEAM_IMPERIALCOMMANDO_CAPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10816 [ TEAM_IMPERIALCOMMANDO_MAJ ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10817 [ TEAM_IMPERIALCOMMANDO_LCOLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10818 [ TEAM_IMPERIALCOMMANDO_COLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10819 [ TEAM_IMPERIALCOMMANDO_CMD ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10820 [ TEAM_IMPERIALCOMMANDO_BRIG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10821 [ TEAM_IMPERIALCOMMANDO_MAJG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10822 [ TEAM_IMPERIALCOMMANDO_LTG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10823 [ TEAM_IMPERIALCOMMANDO_GEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10824 [ TEAM_CIC_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10825 [ TEAM_CIC_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10826 [ TEAM_CIC_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10827 [ TEAM_CIC_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10828 [ TEAM_CIC_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10829 [ TEAM_CIC_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10830 [ TEAM_CIC_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10831 [ TEAM_CIC_OC ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10832 [ TEAM_CIC_WO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10833 [ TEAM_CIC_2LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10834 [ TEAM_CIC_1LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10835 [ TEAM_CIC_CPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10836 [ TEAM_CIC_MJR ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10837 [ TEAM_CIC_LCOLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10838 [ TEAM_CIC_COLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10839 [ TEAM_CIC_CMD ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10840 [ TEAM_CIC_BRIG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10841 [ TEAM_CIC_MAJG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10842 [ TEAM_CIC_LTG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10843 [ TEAM_CIC_GEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10844 [ TEAM_NAVY_ENSIGN ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10845 [ TEAM_NAVY_POFFICER ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10846 [ TEAM_NAVY_SLT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10847 [ TEAM_NAVY_LT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10848 [ TEAM_NAVY_LCMD ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10849 [ TEAM_NAVY_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10850 [ TEAM_NAVY_CAPT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10851 [ TEAM_NAVY_LCAPT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10852 [ TEAM_NAVY_COMMO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10853 [ TEAM_NAVY_RADMIRAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10854 [ TEAM_NAVY_VADMIRAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10855 [ TEAM_NAVY_ADMIRAL ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10856 [ TEAM_NAVY_GADMIRAL ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10857 [ TEAM_NAVY_MGEN] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10858 [ TEAM_NAVY_IEX ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10859 [ TEAM_NAVY_GADMIRALT ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10860 [ TEAM_NAVY_GMOFFT ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10861 [ TEAM_NAVY_ENG3 ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10862 [ TEAM_NAVY_ENG4 ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10863 [ TEAM_NAVY_ENG5 ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10864 [ TEAM_NAVY_ENG6 ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10865 [ TEAM_NAVY_ENG7 ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10866 [ TEAM_NAVY_ENG8 ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10867 [ TEAM_NAVY_ENG9 ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10868 [ TEAM_NAVY_ENG10 ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10869 [ TEAM_NAVY_ENG11 ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10870 [ TEAM_NAVY_ENG12 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10871 [ TEAM_NAVY_ENG13 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10872 [ TEAM_ROYALGUARD_PVT ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10873 [ TEAM_ROYALGUARD_SGT ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10874 [ TEAM_ROYALGUARD_MSGT ] = function( ply ) ply:SetHealth(1100) ply:SetMaxHealth(1100) end,
10875 [ TEAM_ROYALGUARD_OC ] = function( ply ) ply:SetHealth(1200) ply:SetMaxHealth(1200) end,
10876 [ TEAM_ROYALGUARD_WO ] = function( ply ) ply:SetHealth(1250) ply:SetMaxHealth(1250) end,
10877 [ TEAM_ROYALGUARD_LT ] = function( ply ) ply:SetHealth(1300) ply:SetMaxHealth(1300) end,
10878 [ TEAM_ROYALGUARD_CPT ] = function( ply ) ply:SetHealth(1400) ply:SetMaxHealth(1400) end,
10879 [ TEAM_ROYALGUARD_CMD ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10880 [ TEAM_SHADOWGUARD_PVT ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10881 [ TEAM_SHADOWGUARD_SGT ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10882 [ TEAM_SHADOWGUARD_MSGT ] = function( ply ) ply:SetHealth(1100) ply:SetMaxHealth(1100) end,
10883 [ TEAM_SHADOWGUARD_OC ] = function( ply ) ply:SetHealth(1200) ply:SetMaxHealth(1200) end,
10884 [ TEAM_SHADOWGUARD_WO ] = function( ply ) ply:SetHealth(1250) ply:SetMaxHealth(1250) end,
10885 [ TEAM_SHADOWGUARD_LT ] = function( ply ) ply:SetHealth(1300) ply:SetMaxHealth(1300) end,
10886 [ TEAM_SHADOWGUARD_CPT ] = function( ply ) ply:SetHealth(1400) ply:SetMaxHealth(1400) end,
10887 [ TEAM_SHADOWGUARD_CMD ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10888 [ TEAM_RSTORMT_TRAINEE ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10889 [ TEAM_RSTORMT_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10890 [ TEAM_RSTORMT_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10891 [ TEAM_RSTORMT_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10892 [ TEAM_RSTORMT_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10893 [ TEAM_RSTORMT_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10894 [ TEAM_RSTORMT_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10895 [ TEAM_RSTORMT_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10896 [ TEAM_RSTORMT_WO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10897 [ TEAM_RSTORMT_OC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10898 [ TEAM_RSTORMT_2LT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10899 [ TEAM_RSTORMT_1LT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10900 [ TEAM_RSTORMT_CPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10901 [ TEAM_RSTORMT_MAJ ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10902 [ TEAM_RSTORMT_LCOL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10903 [ TEAM_RSTORMT_COL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10904 [ TEAM_RSTORMT_COM ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10905 [ TEAM_RSTORMT_Brigadier ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10906 [ TEAM_RSTORMT_LTGEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10907 [ TEAM_RSTORMT_MAJGEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10908 [ TEAM_RSTORMT_GEN ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10909 [ TEAM_INQUIS_TR ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10910 [ TEAM_INQUIS_APR ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10911 [ TEAM_INQUIS ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10912 [ TEAM_INQUIS_GR ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10913 [ TEAM_INQUIS_SS ] = function( ply ) ply:SetHealth(1800) ply:SetMaxHealth(1800) end,
10914 [ TEAM_MALGUS ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10915 [ TEAM_SUNA ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10916 [ TEAM_CUSTOMSITH_CRISPIN ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10917 [ TEAM_JADUS ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10918 [ TEAM_SOVEREIGN ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10919 [ TEAM_DENGAR ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10920 [ TEAM_BOBA ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10921 [ TEAM_GREEDO ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10922 [ TEAM_BOSSK ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10923 [ TEAM_CUSTOMBOUNTYHUNTER1 ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10924 [ TEAM_DARTHMAUL ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10925 [ TEAM_SCYTHE ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10926 [ TEAM_INCINERATOR_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10927 [ TEAM_INCINERATOR_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10928 [ TEAM_INCINERATOR_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10929 [ TEAM_INCINERATOR_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10930 [ TEAM_INCINERATOR_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10931 [ TEAM_INCINERATOR_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10932 [ TEAM_INCINERATOR_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10933 [ TEAM_INCINERATOR_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10934 [ TEAM_INCINERATOR_WO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10935 [ TEAM_INCINERATOR_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10936 [ TEAM_INCINERATOR_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10937 [ TEAM_INCINERATOR_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10938 [ TEAM_INCINERATOR_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10939 [ TEAM_INCINERATOR_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10940 [ TEAM_INCINERATOR_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10941 [ TEAM_INCINERATOR_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10942 [ TEAM_INCINERATOR_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10943 [ TEAM_INCINERATOR_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10944 [ TEAM_INCINERATOR_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10945 [ TEAM_INCINERATOR_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10946 [ TEAM_Darman ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10947 [ TEAM_Niner ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10948 [ TEAM_Rede ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10949 [ TEAM_SABG ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10950 [ TEAM_SABGC ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10951 [ TEAM_VADER ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) ply:SetModelScale(1.06) end,
10952 [ TEAM_PALPATINE ] = function( ply ) ply:SetHealth(15000) ply:SetMaxHealth(15000) end,
10953 [ TEAM_MAULKILLER ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10954 [ TEAM_ITC_DEMO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10955 [ TEAM_ITC_MRKS ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10956 [ TEAM_ITC_BERZERKER ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10957 [ TEAM_ITC_MEDIC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10958 [ TEAM_ITC_CMDR ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10959 [ TEAM_EVENT3 ] = function( ply ) ply:SetHealth(50000) ply:SetMaxHealth(50000) end,
10960 [ TEAM_RSTORMT_REP ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10961 [ TEAM_SENTINEL ] = function( ply ) ply:SetHealth(3000) ply:SetMaxHealth(3000) end,
10962 [ TEAM_REVAN ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10963 [ TEAM_REMNANT_PVT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10964 [ TEAM_REMNANT_PFC ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10965 [ TEAM_REMNANT_LCPL ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10966 [ TEAM_REMNANT_CPL ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10967 [ TEAM_REMNANT_SGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10968 [ TEAM_REMNANT_SSGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10969 [ TEAM_REMNANT_MSGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10970 [ TEAM_REMNANT_OC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10971 [ TEAM_REMNANT_WO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10972 [ TEAM_REMNANT_LT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10973 [ TEAM_REMNANT_1LT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10974 [ TEAM_REMNANT_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10975 [ TEAM_REMNANT_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10976 [ TEAM_REMNANT_COLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10977 [ TEAM_REMNANT_HCOLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10978 [ TEAM_REMNANT_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10979 [ TEAM_REMNANT_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10980 [ TEAM_REMNANT_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10981 [ TEAM_REMNANT_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10982 [ TEAM_REMNANT_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10983 [ TEAM_KNIGHT_TRAINEE ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10984 [ TEAM_KNIGHT_CORPORAL ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10985 [ TEAM_KNIGHT_SERGEANT ] = function( ply ) ply:SetHealth(1100) ply:SetMaxHealth(1100) end,
10986 [ TEAM_KNIGHT_LIEUTENANT ] = function( ply ) ply:SetHealth(1200) ply:SetMaxHealth(1200) end,
10987 [ TEAM_KNIGHT_CAPTAIN ] = function( ply ) ply:SetHealth(1300) ply:SetMaxHealth(1300) end,
10988 [ TEAM_KNIGHT_COMMANDER ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10989 [ TEAM_KNIGHT_SQUIRE ] = function( ply ) ply:SetHealth(950) ply:SetMaxHealth(950) end,
10990 [ TEAM_KNIGHT_TEMPLAR ] = function( ply ) ply:SetHealth(1400) ply:SetMaxHealth(1400) end,
10991 [ TEAM_KNIGHT_PALADIN ] = function( ply ) ply:SetHealth(1300) ply:SetMaxHealth(1300) end,
10992 [ TEAM_KNIGHT_PRIVATE ] = function( ply ) ply:SetHealth(900) ply:SetMaxHealth(900) end,
10993 [ TEAM_PROPHET_PV ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10994 [ TEAM_PROPHET_LP ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10995 [ TEAM_PROPHET_EP ] = function( ply ) ply:SetHealth(1200) ply:SetMaxHealth(1200) end,
10996 [ TEAM_PROPHET_PS ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10997 [ TEAM_PROPHET_HP ] = function( ply ) ply:SetHealth(1400) ply:SetMaxHealth(1400) end,
10998 [ TEAM_SOR_PVT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10999 [ TEAM_SOR_PFC ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11000 [ TEAM_SOR_LCPL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11001 [ TEAM_SOR_CPL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11002 [ TEAM_SOR_SGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11003 [ TEAM_SOR_SSGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11004 [ TEAM_SOR_MSGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11005 [ TEAM_SOR_WO ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11006 [ TEAM_SOR_OFFICERCADET ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11007 [ TEAM_SOR_LT ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11008 [ TEAM_SOR_FLT ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11009 [ TEAM_SOR_CPT ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
11010 [ TEAM_SOR_MARSH ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
11011 [ TEAM_SOR_DEMO ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
11012 [ TEAM_SOR_SNIPER ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
11013 [ TEAM_SOR_MEDIC ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
11014 [ TEAM_MARAJADE ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
11015 [ TEAM_K2SO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) ply:SetModelScale(1.3) end,
11016 [ TEAM_HK51 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11017 [ TEAM_HK47 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11018 [ TEAM_SC_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11019 [ TEAM_SC_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11020 [ TEAM_SC_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11021 [ TEAM_SC_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11022 [ TEAM_SC_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11023 [ TEAM_SC_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11024 [ TEAM_SC_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11025 [ TEAM_SC_OFFICERCADET ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11026 [ TEAM_SC_WO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11027 [ TEAM_SC_LT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11028 [ TEAM_SC_FLT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11029 [ TEAM_SC_CAPT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11030 [ TEAM_SC_MAJ ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11031 [ TEAM_SC_COLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11032 [ TEAM_SC_HCOLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11033 [ TEAM_SC_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11034 [ TEAM_SC_BRIG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11035 [ TEAM_SC_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11036 [ TEAM_SC_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11037 [ TEAM_SC_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11038 [ TEAM_HIGHGENERAL ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
11039 [ TEAM_MALKUTHAL ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
11040 [ TEAM_ARGALUS ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
11041 [ TEAM_31ST_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11042 [ TEAM_31ST_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11043 [ TEAM_31ST_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11044 [ TEAM_31ST_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11045 [ TEAM_31ST_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11046 [ TEAM_31ST_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11047 [ TEAM_31ST_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11048 [ TEAM_31ST_WO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11049 [ TEAM_31ST_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11050 [ TEAM_31ST_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11051 [ TEAM_31ST_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11052 [ TEAM_31ST_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11053 [ TEAM_31ST_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11054 [ TEAM_31ST_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11055 [ TEAM_31ST_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11056 [ TEAM_31ST_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11057 [ TEAM_31ST_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11058 [ TEAM_31ST_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11059 [ TEAM_31ST_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11060 [ TEAM_31ST_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11061 [ TEAM_IMPERIALCOMMANDO_ARCHANGEL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11062 [ TEAM_IMPERIALCOMMANDO_CONTORT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11063 [ TEAM_IMPERIALCOMMANDO_GRINDER ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11064 [ TEAM_IMPERIALCOMMANDO_GRIP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11065 [ TEAM_IMPERIALCOMMANDO_HEADSHOT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11066 [ TEAM_IMPERIALCOMMANDO_KURZ ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11067 [ TEAM_IMPERIALCOMMANDO_SCORPION ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11068 [ TEAM_IMPERIALCOMMANDO_STRIPE ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11069 [ TEAM_IMPERIALCOMMANDO_TRANKER ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11070 [ TEAM_STR_PVT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11071 [ TEAM_STR_PFC ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11072 [ TEAM_STR_LCPL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11073 [ TEAM_STR_CPL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11074 [ TEAM_STR_SGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11075 [ TEAM_STR_SSGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11076 [ TEAM_STR_MSGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11077 [ TEAM_STR_OFFICERCADET ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11078 [ TEAM_STR_WO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11079 [ TEAM_STR_LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11080 [ TEAM_STR_1LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11081 [ TEAM_STR_CPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11082 [ TEAM_STR_MAJOR ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11083 [ TEAM_STR_COLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11084 [ TEAM_STR_HCOLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11085 [ TEAM_STR_CMDR ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11086 [ TEAM_STR_BRIG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11087 [ TEAM_STR_MJRGEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11088 [ TEAM_STR_LTGEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11089 [ TEAM_STR_GEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11090 [ TEAM_ISB_SC ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11091 [ TEAM_ISB_CON ] = function( ply ) ply:SetHealth(125) ply:SetMaxHealth(125) end,
11092 [ TEAM_ISB_SNCON ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11093 [ TEAM_ISB_ACOP ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11094 [ TEAM_ISB_JNOP ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11095 [ TEAM_ISB_OP ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
11096 [ TEAM_ISB_SNOP ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11097 [ TEAM_ISB_MSOP ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11098 [ TEAM_ISB_ACAGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11099 [ TEAM_ISB_JNAGT ] = function( ply ) ply:SetHealth(325) ply:SetMaxHealth(325) end,
11100 [ TEAM_ISB_AGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11101 [ TEAM_ISB_SNAGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11102 [ TEAM_ISB_SPAGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11103 [ TEAM_ISB_HAGT ] = function( ply ) ply:SetHealth(375) ply:SetMaxHealth(375) end,
11104 [ TEAM_ISB_ACAGTK ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11105 [ TEAM_ISB_JNAGTK ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11106 [ TEAM_ISB_AGTK ] = function( ply ) ply:SetHealth(425) ply:SetMaxHealth(425) end,
11107 [ TEAM_ISB_SNAGTK ] = function( ply ) ply:SetHealth(425) ply:SetMaxHealth(425) end,
11108 [ TEAM_ISB_SPAGTK ] = function( ply ) ply:SetHealth(425) ply:SetMaxHealth(425) end,
11109 [ TEAM_ISB_HAGTK ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
11110 [ TEAM_ISB_COLO ] = function( ply ) ply:SetHealth(375) ply:SetMaxHealth(375) end,
11111 [ TEAM_ISB_SNCOLO ] = function( ply ) ply:SetHealth(375) ply:SetMaxHealth(375) end,
11112 [ TEAM_ISB_CHF ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11113 [ TEAM_ISB_SNCHF ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11114 [ TEAM_ISB_BCHF ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11115 [ TEAM_ISB_DDTR ] = function( ply ) ply:SetHealth(425) ply:SetMaxHealth(425) end,
11116 [ TEAM_ISB_DTR ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
11117 [ TEAM_ISB_DTRK ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11118 [ TEAM_ISB_AGV ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11119 [ TEAM_GALEN ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11120 [ TEAM_NAVAL_GUARD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11121 [ TEAM_SITH_KORNELIUS ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
11122 [ TEAM_RB_PRIVATE ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11123 [ TEAM_RB_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11124 [ TEAM_RB_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11125 [ TEAM_RB_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11126 [ TEAM_RB_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11127 [ TEAM_RB_COLT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11128 [ TEAM_RB_BLITZ ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11129 [ TEAM_RB_HAVOC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11130 [ TEAM_RB_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11131 [ TEAM_RB_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11132 [ TEAM_RB_OC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11133 [ TEAM_RB_WO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11134 [ TEAM_RB_LT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11135 [ TEAM_RB_FLT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11136 [ TEAM_RB_CPT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11137 [ TEAM_RB_MAJOR ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11138 [ TEAM_RB_Colonel ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11139 [ TEAM_RB_HIGH_COLONEL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11140 [ TEAM_RB_COMMANDER ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11141 [ TEAM_RB_BRIGIDIER ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11142 [ TEAM_RB_MAJOR_GENERAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11143 [ TEAM_RB_LIEUTENANT_GENERAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11144 [ TEAM_RB_GENERAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11145 [ TEAM_SCAR_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11146 [ TEAM_SCAR_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11147 [ TEAM_SCAR_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11148 [ TEAM_SCAR_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11149 [ TEAM_SCAR_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11150 [ TEAM_SCAR_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11151 [ TEAM_SCAR_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11152 [ TEAM_SCAR_OFFICERCADET ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11153 [ TEAM_SCAR_WO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11154 [ TEAM_SCAR_LT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11155 [ TEAM_SCAR_FLT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11156 [ TEAM_SCAR_CAPT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11157 [ TEAM_SCAR_MAJ ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11158 [ TEAM_SCAR_COLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11159 [ TEAM_SCAR_HCOLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11160 [ TEAM_SCAR_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11161 [ TEAM_SCAR_BRIG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11162 [ TEAM_SCAR_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11163 [ TEAM_SCAR_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11164 [ TEAM_SCAR_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11165 [ TEAM_MHC_MJGEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11166 [ TEAM_MHC_LTGEN ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11167 [ TEAM_MHC_GEN ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
11168 [ TEAM_MHC_HGEN ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11169[ TEAM_INFERNO_TRE ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
11170[ TEAM_INFERNO_STRE ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11171[ TEAM_INFERNO_ACOP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11172[ TEAM_INFERNO_JNOP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11173[ TEAM_INFERNO_OP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11174[ TEAM_INFERNO_SNOP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11175[ TEAM_INFERNO_MSOP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11176[ TEAM_INFERNO_ACAGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11177[ TEAM_INFERNO_JNAGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11178[ TEAM_INFERNO_AGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11179[ TEAM_INFERNO_SBLT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11180[ TEAM_INFERNO_LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11181[ TEAM_INFERNO_LCMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11182[ TEAM_INFERNO_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11183[ TEAM_INFERNO_CAPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11184[ TEAM_INFERNO_LCAPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11185[ TEAM_INFERNO_COMMO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11186[ TEAM_INFERNO_RADMIRAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11187[ TEAM_INFERNO_VADMIRAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11188[ TEAM_INFERNO_ADMIRAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11189[ TEAM_INFERNO_DR ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11190 [ TEAM_TSQ_PVT ] = function( ply ) ply:SetHealth(125) ply:SetMaxHealth(125) end,
11191 [ TEAM_TSQ_PFC ] = function( ply ) ply:SetHealth(125) ply:SetMaxHealth(125) end,
11192 [ TEAM_TSQ_LCPL ] = function( ply ) ply:SetHealth(125) ply:SetMaxHealth(125) end,
11193 [ TEAM_TSQ_CPL ] = function( ply ) ply:SetHealth(125) ply:SetMaxHealth(125) end,
11194 [ TEAM_TSQ_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11195 [ TEAM_TSQ_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11196 [ TEAM_TSQ_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11197 [ TEAM_TSQ_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11198 [ TEAM_TSQ_WO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11199 [ TEAM_TSQ_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11200 [ TEAM_TSQ_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11201 [ TEAM_TSQ_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11202 [ TEAM_TSQ_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11203 [ TEAM_TSQ_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11204 [ TEAM_TSQ_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11205 [ TEAM_TSQ_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11206 [ TEAM_TSQ_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11207 [ TEAM_TSQ_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11208 [ TEAM_TSQ_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11209 [ TEAM_TSQ_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11210 [ TEAM_SMR_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11211 [ TEAM_SMR_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11212 [ TEAM_SMR_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11213 [ TEAM_SMR_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11214 [ TEAM_SMR_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11215 [ TEAM_SMR_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11216 [ TEAM_SMR_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11217 [ TEAM_SMR_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
11218 [ TEAM_SMR_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
11219 [ TEAM_SMR_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
11220 [ TEAM_SMR_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
11221 [ TEAM_SMR_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
11222 [ TEAM_SMR_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
11223 [ TEAM_SMR_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
11224 [ TEAM_SMR_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
11225 [ TEAM_SMR_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11226 [ TEAM_SMR_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11227 [ TEAM_SMR_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11228 [ TEAM_SMR_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11229 [ TEAM_SMR_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11230 [ TEAM_ICCS_LD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11231[ TEAM_ICCS_TC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11232[ TEAM_ICCS_SN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11233[ TEAM_ICCS_DM ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11234[ TEAM_ICAS_LD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11235[ TEAM_ICAS_TC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11236[ TEAM_ICAS_SN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11237[ TEAM_ICAS_DM ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11238[ TEAM_ICDS_LD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11239[ TEAM_ICDS_TC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11240[ TEAM_ICDS_SN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11241[ TEAM_ICDS_DM ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11242[ TEAM_RESCUE_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11243[ TEAM_RESCUE_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11244[ TEAM_RESCUE_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11245[ TEAM_RESCUE_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11246[ TEAM_RESCUE_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11247[ TEAM_RESCUE_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11248[ TEAM_RESCUE_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11249[ TEAM_RESCUE_OFFICERCADET ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11250[ TEAM_RESCUE_WO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11251[ TEAM_RESCUE_LT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11252[ TEAM_RESCUE_FLT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11253[ TEAM_RESCUE_CAPT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11254[ TEAM_RESCUE_MAJ ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11255[ TEAM_RESCUE_COLO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11256[ TEAM_RESCUE_HCOLO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11257[ TEAM_RESCUE_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11258[ TEAM_RESCUE_BRIG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11259[ TEAM_RESCUE_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11260[ TEAM_RESCUE_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11261[ TEAM_RESCUE_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11262[ TEAM_SMAR_INT ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
11263[ TEAM_SMAR_APR ] = function( ply ) ply:SetHealth(900) ply:SetMaxHealth(900) end,
11264[ TEAM_SMAR_NOV ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
11265[ TEAM_SMAR_ACO ] = function( ply ) ply:SetHealth(1100) ply:SetMaxHealth(1100) end,
11266[ TEAM_SMAR_ADT ] = function( ply ) ply:SetHealth(1200) ply:SetMaxHealth(1200) end,
11267[ TEAM_SMAR_WAR ] = function( ply ) ply:SetHealth(1300) ply:SetMaxHealth(1300) end,
11268[ TEAM_SMAR_CRU ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
11269[ TEAM_SMAR_LEA ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
11270[ TEAM_JUG_PVT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11271[ TEAM_JUG_PFC ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11272[ TEAM_JUG_LCP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11273[ TEAM_JUG_CPL ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11274[ TEAM_JUG_SGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11275[ TEAM_JUG_SSG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11276[ TEAM_JUG_MSG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11277[ TEAM_JUG_OFC ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11278[ TEAM_JUG_WOF ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11279[ TEAM_JUG_LTT ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
11280[ TEAM_JUG_FLT ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
11281[ TEAM_JUG_CPT ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(550) end,
11282[ TEAM_JUG_MJR ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(550) end,
11283[ TEAM_JUG_COL ] = function( ply ) ply:SetHealth(550) ply:SetMaxHealth(550) end,
11284[ TEAM_JUG_HCO ] = function( ply ) ply:SetHealth(550) ply:SetMaxHealth(550) end,
11285[ TEAM_JUG_CMD ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
11286[ TEAM_JUG_BRG ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
11287[ TEAM_JUG_MGN ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
11288[ TEAM_JUG_LGN ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
11289[ TEAM_JUG_GEN ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
11290[ TEAM_TFO_PVT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11291[ TEAM_TFO_PFC ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11292[ TEAM_TFO_LCPL ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11293[ TEAM_TFO_CPL ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11294[ TEAM_TFO_SGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11295[ TEAM_TFO_SSGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11296[ TEAM_TFO_MSGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11297[ TEAM_TFO_OC ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11298[ TEAM_TFO_WO ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11299[ TEAM_TFO_LT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11300[ TEAM_TFO_1LT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11301[ TEAM_TFO_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
11302[ TEAM_TFO_MAJ ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11303[ TEAM_TFO_COLO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11304[ TEAM_TFO_HCOLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
11305[ TEAM_TFO_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11306[ TEAM_TFO_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11307[ TEAM_TFO_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11308[ TEAM_TFO_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11309[ TEAM_DROID_R4B ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11310[ TEAM_ADROID_R2 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11311[ TEAM_ADROID_R4 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11312[ TEAM_ADROID_R5 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11313[ TEAM_BANE ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
11314[ TEAM_EVENT_REBELT ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11315[ TEAM_EVENT_REBELC ] = function( ply ) ply:SetHealth(750) ply:SetMaxHealth(750) end,
11316[ TEAM_EVENT_REBELSNIP ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11317[ TEAM_EVENT_TACDROID ] = function( ply ) ply:SetHealth(750) ply:SetMaxHealth(750) end,
11318[ TEAM_EVENT_BATTLEDROID ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11319[ TEAM_EVENT_JEDIMAS ] = function( ply ) ply:SetHealth(2500) ply:SetMaxHealth(2500) end,
11320[ TEAM_EVENT_JEDIKNI ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
11321[ TEAM_EVENT_JEDIPAD ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
11322[ TEAM_EVENT_MANDO ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11323[ TEAM_EVENT_MANDOL ] = function( ply ) ply:SetHealth(750) ply:SetMaxHealth(750) end,
11324[ TEAM_EVENT_BH ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11325[ TEAM_EVENT_BHLEAD ] = function( ply ) ply:SetHealth(750) ply:SetMaxHealth(750) end,
11326[ TEAM_EVENT_ZOMBIE ] = function( ply ) ply:SetHealth(2500) ply:SetMaxHealth(2500) end,
11327[ TEAM_EVENT_SENATOR ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11328[ TEAM_EVENT_WOOKIEL ] = function( ply ) ply:SetHealth(750) ply:SetMaxHealth(750) end,
11329[ TEAM_EVENT_WOOKIE ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11330[ TEAM_EVENT_CIVILIAN ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11331[ TEAM_EVENT_TRADER ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11332[ TEAM_EVENT_JAWA ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11333[ TEAM_EVENT_TRAN ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
11334[ TEAM_NAVG_TRA ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11335[ TEAM_NAVG_JNR ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11336[ TEAM_NAVG_CRW ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11337[ TEAM_NAVG_ABC ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
11338[ TEAM_NAVG_SNC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11339[ TEAM_NAVG_LDC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11340[ TEAM_NAVG_CHF ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11341[ TEAM_NAVG_MCH ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11342[ TEAM_NAVG_POF ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11343[ TEAM_NAVG_OFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11344[ TEAM_NAVG_ENS ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11345[ TEAM_NAVG_SLT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11346[ TEAM_NAVG_LT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11347[ TEAM_NAVG_LTC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11348[ TEAM_NAVG_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11349[ TEAM_NAVG_CAP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11350[ TEAM_NAVG_LCPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11351[ TEAM_NAVG_COM ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11352[ TEAM_PROPHET_SP ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
11353[ TEAM_ST_HEAVY ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11354[ TEAM_SCOUT_HEAVY ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11355[ TEAM_212_HEAVY ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11356[ TEAM_SHADOW_HEAVY ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11357[ TEAM_JUMP_HEAVY ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11358[ TEAM_SHORE_HEAVY ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11359[ TEAM_NOVA_HEAVY ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11360[ TEAM_SHOCK_HEAVY ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11361[ TEAM_VF_HEAVY ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11362[ TEAM_TERROR_HEAVY ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11363[ TEAM_MAGMA_HEAVY ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11364[ TEAM_ROYAL_HEAVY ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(450) end,
11365[ TEAM_INCIN_HEAVY ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11366[ TEAM_SOR_HEAVY ] = function( ply ) ply:SetHealth(550) ply:SetMaxHealth(550) end,
11367[ TEAM_SC_HEAVY ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11368[ TEAM_31_HEAVY ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11369[ TEAM_SCAR_HEAVY ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11370[ TEAM_TALON_HEAVY ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11371[ TEAM_NG_HEAVY ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11372[ TEAM_RB_HEAVY ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
11373[ TEAM_442_HEAVY ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11374[ TEAM_ALD_JC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11375[ TEAM_ALD_AC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11376[ TEAM_ALD_UC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11377[ TEAM_ALD_JC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11378[ TEAM_ALD_DC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11379[ TEAM_ALD_C ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11380[ TEAM_ALD_PC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11381[ TEAM_ALD_US ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11382[ TEAM_ALD_DS ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11383[ TEAM_ALD_S ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11384[ TEAM_ALD_PS ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11385[ TEAM_ALD_ES ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11386[ TEAM_ALD_COS ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
11387[ TEAM_IHC_GENR ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11388[ TEAM_IHC_GADM ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11389[ TEAM_IHC_GMOFF ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11390[ TEAM_IHC_GGEN ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
11391[ TEAM_CS_P ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11392[ TEAM_CS_FC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11393[ TEAM_CS_LC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11394[ TEAM_CS_C ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
11395[ TEAM_CS_S ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11396[ TEAM_CS_SS ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11397[ TEAM_CS_MS ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
11398[ TEAM_CS_OC ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11399[ TEAM_CS_WOC ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11400[ TEAM_CS_LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11401[ TEAM_CS_1LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11402[ TEAM_CS_CPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11403[ TEAM_CS_M ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11404[ TEAM_CS_COL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11405[ TEAM_CS_HC ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
11406[ TEAM_CS_COM ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11407[ TEAM_CS_BRIG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
11408}
11409
11410hook.Add("PlayerSpawn", "SetJobHP", function(ply)
11411 if teamhp[ ply:Team() ] then
11412 teamhp[ ply:Team() ]( ply )
11413 end
11414end)