· 8 years ago · Jan 11, 2018, 09:26 AM
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
214 weps = ply:GetWeapons()
215
216 for i = 1, #weps do
217
218 ply:GiveAmmo( 256, weps[ i ]:GetPrimaryAmmoType(), true )
219
220 end
221
222 end
223
224 end
225
226end
227
228
229TEAM_ST_RECRUIT = CreateTeam( "ST Recruit", {
230 Description = "Recruit",
231 Weapons = {"tfa_swch_e11_nodmg"},
232 Colour = Color(96, 96, 96, 255 ),
233 Side = 1,
234 Rank = 0,
235 Model = "models/player/tiki/white.mdl",
236 Regiment = "Recruit",
237} )
238
239TEAM_ST_PVT = CreateTeam( "ST Private", {
240 Description = "Member of the Storm Trooper Core",
241 Weapons = {"tfa_swch_e11"},
242 Colour = Color(102, 0, 102, 255 ),
243 Side = 1,
244 Rank = 1,
245 Model = "models/player/fatal/troopers/trooper.mdl",
246 Regiment = "Storm Trooper",
247} )
248
249TEAM_ST_PFC = CreateTeam( "ST Private First Class", {
250 Description = "Member of the Storm Trooper Core",
251 Weapons = {"tfa_swch_e11"},
252 Colour = Color(102, 0, 102, 255 ),
253 Side = 1,
254 Rank = 2,
255 Model = "models/player/fatal/troopers/trooper.mdl",
256 Regiment = "Storm Trooper",
257} )
258
259TEAM_ST_LCPL = CreateTeam( "ST Lance Corporal", {
260 Description = "models/player/fatal/troopers/trooper.mdl",
261 Weapons = {"tfa_swch_e11"},
262 Colour = Color(102, 0, 102, 255 ),
263 Side = 1,
264 Rank = 3,
265 Model = "models/player/fatal/troopers/trooper.mdl",
266 Regiment = "Storm Trooper",
267} )
268
269TEAM_ST_CPL = CreateTeam( "ST Corporal", {
270 Description = "Member of the Storm Trooper Core",
271 Weapons = {"tfa_swch_e11"},
272 Colour = Color(102, 0, 102, 255 ),
273 Side = 1,
274 Rank = 4,
275 Model = "models/player/fatal/troopers/trooper.mdl",
276 Regiment = "Storm Trooper",
277} )
278
279TEAM_ST_SGT = CreateTeam( "ST Sergeant", {
280 Description = "Member of the Storm Trooper Core",
281 Weapons = {"tfa_swch_e11"},
282 Colour = Color(102, 0, 102, 255 ),
283 Side = 1,
284 Rank = 5,
285 Model = "models/player/fatal/troopers/sergeant.mdl",
286 Regiment = "Storm Trooper",
287} )
288
289TEAM_ST_SSGT = CreateTeam( "ST Staff Sergeant", {
290 Description = "Member of the Storm Trooper Core",
291 Weapons = {"tfa_swch_e11"},
292 Colour = Color(102, 0, 102, 255 ),
293 Side = 1,
294 Rank = 6,
295 Model = "models/player/fatal/troopers/sergeant.mdl",
296 Regiment = "Storm Trooper",
297} )
298
299TEAM_ST_MSGT = CreateTeam( "ST Master Sergeant", {
300 Description = "Member of the Storm Trooper Core",
301 Weapons = {"tfa_swch_e11"},
302 Colour = Color(102, 0, 102, 255 ),
303 Side = 1,
304 Rank = 7,
305 Model = "models/player/fatal/troopers/sergeant.mdl",
306 Regiment = "Storm Trooper",
307} )
308
309TEAM_ST_OFFICERCADET = CreateTeam( "ST Officer Cadet", {
310 Description = "Member of the Storm Trooper Core",
311 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
312 Colour = Color(102, 0, 102, 255 ),
313 Side = 1,
314 Rank = 8,
315 Model = "models/player/fatal/troopers/officer.mdl",
316 Regiment = "Storm Trooper",
317} )
318
319TEAM_ST_WO = CreateTeam( "ST Warrant Officer", {
320 Description = "Member of the Storm Trooper Core",
321 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
322 Colour = Color(102, 0, 102, 255 ),
323 Side = 1,
324 Rank = 9,
325 Model = "models/player/fatal/troopers/officer.mdl",
326 Regiment = "Storm Trooper",
327} )
328
329TEAM_ST_LT = CreateTeam( "ST Lieutenant", {
330 Description = "Member of the Storm Trooper Core",
331 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
332 Colour = Color(102, 0, 102, 255 ),
333 Side = 1,
334 Rank = 10,
335 Model = "models/player/fatal/troopers/officer.mdl",
336 Regiment = "Storm Trooper",
337} )
338
339TEAM_ST_FLT = CreateTeam( "ST First Lieutenant", {
340 Description = "Member of the Storm Trooper Core",
341 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
342 Colour = Color(102, 0, 102, 255 ),
343 Side = 1,
344 Rank = 11,
345 Model = "models/player/fatal/troopers/officer.mdl",
346 Regiment = "Storm Trooper",
347} )
348
349TEAM_ST_CAPT = CreateTeam( "ST Captain", {
350 Description = "Member of the Storm Trooper Core",
351 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
352 Colour = Color(102, 0, 102, 255 ),
353 Side = 1,
354 Rank = 12,
355 Model = "models/player/fatal/troopers/officer.mdl",
356 Regiment = "Storm Trooper",
357} )
358
359TEAM_ST_MAJ = CreateTeam( "ST Major", {
360 Description = "Member of the Storm Trooper Core",
361 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
362 Colour = Color(102, 0, 102, 255 ),
363 Side = 1,
364 Rank = 13,
365 Model = "models/player/fatal/troopers/officer.mdl",
366 Regiment = "Storm Trooper",
367} )
368
369TEAM_ST_COLO = CreateTeam( "ST Colonel", {
370 Description = "Member of the Storm Trooper Core",
371 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
372 Colour = Color(102, 0, 102, 255 ),
373 Side = 1,
374 Rank = 14,
375 Model = "models/player/fatal/troopers/officer.mdl",
376 Regiment = "Storm Trooper",
377} )
378
379TEAM_ST_HCOLO = CreateTeam( "ST High Colonel", {
380 Description = "Member of the Storm Trooper Core",
381 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
382 Colour = Color(102, 0, 102, 255 ),
383 Side = 1,
384 Rank = 15,
385 Model = "models/player/fatal/troopers/officer.mdl",
386 Regiment = "Storm Trooper",
387} )
388
389TEAM_ST_CMD = CreateTeam( "ST Commander", {
390 Description = "Commander of the Storm Trooper Core",
391 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
392 Colour = Color(102, 0, 102, 255 ),
393 Side = 1,
394 Rank = 16,
395 Model = "models/player/fatal/troopers/commander.mdl",
396 Regiment = "Storm Trooper",
397} )
398
399TEAM_ST_BRIG = CreateTeam( "ST Brigadier", {
400 Description = "Commander of the Storm Trooper Core",
401 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
402 Colour = Color(102, 0, 102, 255 ),
403 Side = 1,
404 Rank = 17,
405 Model = "models/player/fatal/troopers/commander.mdl",
406 Regiment = "Storm Trooper",
407} )
408
409TEAM_ST_MAJG = CreateTeam( "ST Major General", {
410 Description = "Commander of the Storm Trooper Core",
411 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
412 Colour = Color(102, 0, 102, 255 ),
413 Side = 1,
414 Rank = 18,
415 Model = "models/x1cw/x1cw_2.mdl",
416 Regiment = "Storm Trooper",
417} )
418
419TEAM_ST_LTG = CreateTeam( "ST Lieutenant General", {
420 Description = "Commander of the Storm Trooper Core",
421 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
422 Colour = Color(102, 0, 102, 255 ),
423 Side = 1,
424 Rank = 19,
425 Model = "models/x1cw/x1cw_2.mdl",
426 Regiment = "Storm Trooper",
427} )
428
429TEAM_ST_GEN = CreateTeam( "ST General", {
430 Description = "General of the Storm Trooper Core",
431 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
432 Colour = Color(102, 0, 102, 255 ),
433 Side = 1,
434 Rank = 20,
435 Model = "models/x1cw/x1cw_2.mdl",
436 Regiment = "Storm Trooper",
437} )
438
439TEAM_SNOW_PVT = CreateTeam( "SO Private", {
440 Description = "Member of the Snow Trooper Battalion",
441 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19"},
442 Colour = Color(102, 178, 255, 255),
443 Side = 1,
444 Rank = 1,
445 Model = "models/player/sono/starwars/snowtrooper.mdl",
446 Regiment = "Snow Trooper",
447} )
448
449TEAM_SNOW_PFC = CreateTeam( "SO Private First Class", {
450 Description = "Member of the Snow Trooper Battalion",
451 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19"},
452 Colour = Color(102, 178, 255, 255),
453 Side = 1,
454 Rank = 2,
455 Model = "models/player/sono/starwars/snowtrooper.mdl",
456 Regiment = "Snow Trooper",
457} )
458
459TEAM_SNOW_LCPL = CreateTeam( "SO Lance Corporal", {
460 Description = "Member of the Snow Trooper Battalion",
461 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19"},
462 Colour = Color(102, 178, 255, 255),
463 Side = 1,
464 Rank = 3,
465 Model = "models/player/sono/starwars/snowtrooper.mdl",
466 Regiment = "Snow Trooper",
467} )
468
469TEAM_SNOW_CPL = CreateTeam( "SO Corporal", {
470 Description = "Member of the Snow Trooper Battalion",
471 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
472 Colour = Color(102, 178, 255, 255),
473 Side = 1,
474 Rank = 4,
475 Model = "models/player/sono/starwars/snowtrooper.mdl",
476 Regiment = "Snow Trooper",
477} )
478
479TEAM_SNOW_SGT = CreateTeam( "SO Sergeant", {
480 Description = "Member of the Snow Trooper Battalion",
481 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
482 Colour = Color(102, 178, 255, 255),
483 Side = 1,
484 Rank = 5,
485 Model = "models/player/sono/starwars/snowflame.mdl",
486 Regiment = "Snow Trooper",
487} )
488
489TEAM_SNOW_SSGT = CreateTeam( "SO Staff Sergeant", {
490 Description = "Member of the Snow Trooper Battalion",
491 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
492 Colour = Color(102, 178, 255, 255),
493 Side = 1,
494 Rank = 6,
495 Model = "models/player/sono/starwars/snowflame.mdl",
496 Regiment = "Snow Trooper",
497} )
498
499TEAM_SNOW_MSGT = CreateTeam( "SO Master Sergeant", {
500 Description = "Member of the Snow Trooper Battalion",
501 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
502 Colour = Color(102, 178, 255, 255),
503 Side = 1,
504 Rank = 7,
505 Model = "models/player/sono/starwars/snowflame.mdl",
506 Regiment = "Snow Trooper",
507} )
508
509TEAM_SNOW_OFFICERCADET = CreateTeam( "SO Officer Cadet", {
510 Description = "Member of the Snow Trooper Battalion",
511 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
512 Colour = Color(102, 178, 255, 255),
513 Side = 1,
514 Rank = 8,
515 Model = "models/player/sono/starwars/snowflame.mdl",
516 Regiment = "Snow Trooper",
517} )
518
519TEAM_SNOW_WO = CreateTeam( "SO Warrant Officer", {
520 Description = "Member of the Snow Trooper Battalion",
521 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
522 Colour = Color(102, 178, 255, 255),
523 Side = 1,
524 Rank = 9,
525 Model = "models/player/sono/starwars/snowsniper.mdl",
526 Regiment = "Snow Trooper",
527} )
528
529TEAM_SNOW_LT = CreateTeam( "SO Lieutenant", {
530 Description = "Member of the Snow Trooper Battalion",
531 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
532 Colour = Color(102, 178, 255, 255),
533 Side = 1,
534 Rank = 10,
535 Model = "models/player/sono/starwars/snowsniper.mdl",
536 Regiment = "Snow Trooper",
537} )
538
539TEAM_SNOW_FLT = CreateTeam( "SO First Lieutenant", {
540 Description = "Member of the Snow Trooper Battalion",
541 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
542 Colour = Color(102, 178, 255, 255),
543 Side = 1,
544 Rank = 11,
545 Model = "models/player/sono/starwars/snowsniper.mdl",
546 Regiment = "Snow Trooper",
547} )
548
549TEAM_SNOW_CAPT = CreateTeam( "SO Captain", {
550 Description = "Member of the Snow Trooper Battalion",
551 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
552 Colour = Color(102, 178, 255, 255),
553 Side = 1,
554 Rank = 12,
555 Model = "models/player/sono/starwars/snowsniper.mdl",
556 Regiment = "Snow Trooper",
557} )
558
559TEAM_SNOW_MAJ = CreateTeam( "SO Major", {
560 Description = "Member of the Snow Trooper Battalion",
561 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
562 Colour = Color(102, 178, 255, 255),
563 Side = 1,
564 Rank = 13,
565 Model = "models/player/sono/starwars/snowsniper.mdl",
566 Regiment = "Snow Trooper",
567} )
568
569TEAM_SNOW_COLO = CreateTeam( "SO Colonel", {
570 Description = "Member of the Snow Trooper Battalion",
571 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
572 Colour = Color(102, 178, 255, 255),
573 Side = 1,
574 Rank = 14,
575 Model = "models/player/sono/starwars/snowsniper.mdl",
576 Regiment = "Snow Trooper",
577} )
578
579TEAM_SNOW_HCOLO = CreateTeam( "SO High Colonel", {
580 Description = "Member of the Snow Trooper Battalion",
581 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
582 Colour = Color(102, 178, 255, 255),
583 Side = 1,
584 Rank = 15,
585 Model = "models/player/sono/starwars/snowshadow.mdl",
586 Regiment = "Snow Trooper",
587} )
588
589TEAM_SNOW_CMD = CreateTeam( "SO Commander", {
590 Description = "Commander of the Snow Trooper Battalion",
591 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
592 Colour = Color(102, 178, 255, 255),
593 Side = 1,
594 Rank = 16,
595 Model = "models/player/sono/starwars/snowshadow.mdl",
596 Regiment = "Snow Trooper",
597} )
598
599TEAM_SNOW_BRIG = CreateTeam( "SO Brigadier", {
600 Description = "Commander of the Snow Trooper Battalion",
601 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
602 Colour = Color(102, 178, 255, 255),
603 Side = 1,
604 Rank = 17,
605 Model = "models/player/sono/starwars/snowshadow.mdl",
606 Regiment = "Snow Trooper",
607} )
608
609TEAM_SNOW_MAJG = CreateTeam( "SO Major General", {
610 Description = "Commander of the Snow Trooper Battalion",
611 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
612 Colour = Color(102, 178, 255, 255),
613 Side = 1,
614 Rank = 18,
615 Model = "models/player/sono/starwars/snowshadow.mdl",
616 Regiment = "Snow Trooper",
617} )
618
619TEAM_SNOW_LTG = CreateTeam( "SO Lieutenant General", {
620 Description = "Commander of the Snow Trooper Battalion",
621 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
622 Colour = Color(102, 178, 255, 255),
623 Side = 1,
624 Rank = 19,
625 Model = "models/player/sono/starwars/snowshadow.mdl",
626 Regiment = "Snow Trooper",
627} )
628
629TEAM_SNOW_GEN = CreateTeam( "SO General", {
630 Description = "Commander of the Snow Trooper Battalion",
631 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dlt19"},
632 Colour = Color(102, 178, 255, 255),
633 Side = 1,
634 Rank = 20,
635 Model = "models/player/sono/starwars/snowshadow.mdl",
636 Regiment = "Snow Trooper",
637} )
638
639TEAM_SCOUT_PVT = CreateTeam( "ST Private {W}", {
640 Description = "Member of the Scout Trooper Core",
641 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
642 Colour = Color(102, 0, 102, 255 ),
643 Side = 1,
644 Rank = 1,
645 Model = "models/sono/swbf3/scout.mdl",
646 Regiment = "Storm Trooper",
647} )
648
649TEAM_SCOUT_PFC = CreateTeam( "ST Private First Class {W}", {
650 Description = "Member of the Scout Trooper Core",
651 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
652 Colour = Color(102, 0, 102, 255 ),
653 Side = 1,
654 Rank = 2,
655 Model = "models/sono/swbf3/scout.mdl",
656 Regiment = "Storm Trooper",
657} )
658
659TEAM_SCOUT_LCPL = CreateTeam( "ST Lance Corporal {W}", {
660 Description = "Member of the Scout Trooper Core",
661 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
662 Colour = Color(102, 0, 102, 255 ),
663 Side = 1,
664 Rank = 3,
665 Model = "models/sono/swbf3/scout.mdl",
666 Regiment = "Storm Trooper",
667} )
668
669TEAM_SCOUT_CPL = CreateTeam( "ST Corporal {W}", {
670 Description = "Member of the Scout Trooper Core",
671 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
672 Colour = Color(102, 0, 102, 255 ),
673 Side = 1,
674 Rank = 4,
675 Model = "models/sono/swbf3/scout.mdl",
676 Regiment = "Storm Trooper",
677} )
678
679TEAM_SCOUT_SGT = CreateTeam( "ST SGT {W}", {
680 Description = "Member of the Scout Trooper Core",
681 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
682 Colour = Color(102, 0, 102, 255 ),
683 Side = 1,
684 Rank = 5,
685 Model = "models/sono/swbf3/sergeant.mdl",
686 Regiment = "Storm Trooper",
687} )
688
689TEAM_SCOUT_SSGT = CreateTeam( "ST Staff Sergeant {W}", {
690 Description = "Member of the Scout Trooper Core",
691 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
692 Colour = Color(102, 0, 102, 255 ),
693 Side = 1,
694 Rank = 6,
695 Model = "models/sono/swbf3/sergeant.mdl",
696 Regiment = "Storm Trooper",
697} )
698
699TEAM_SCOUT_MSGT = CreateTeam( "ST Master Sergeant {W}", {
700 Description = "Member of the Scout Trooper Core",
701 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
702 Colour = Color(102, 0, 102, 255 ),
703 Side = 1,
704 Rank = 7,
705 Model = "models/sono/swbf3/sergeant.mdl",
706 Regiment = "Storm Trooper",
707} )
708
709TEAM_SCOUT_OFFICERCADET = CreateTeam( "ST Officer Cadet {W}", {
710 Description = "Member of the Scout Trooper Core",
711 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
712 Colour = Color(102, 0, 102, 255 ),
713 Side = 1,
714 Rank = 8,
715 Model = "models/sono/swbf3/officer.mdl",
716 Regiment = "Storm Trooper",
717} )
718
719TEAM_SCOUT_WO = CreateTeam( "ST Warrant Officer {W}", {
720 Description = "Member of the Scout Trooper Core",
721 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
722 Colour = Color(102, 0, 102, 255 ),
723 Side = 1,
724 Rank = 9,
725 Model = "models/sono/swbf3/officer.mdl",
726 Regiment = "Storm Trooper",
727} )
728
729TEAM_SCOUT_LT = CreateTeam( "ST Lieutenant {W}", {
730 Description = "Member of the Scout Trooper Core",
731 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
732 Colour = Color(102, 0, 102, 255 ),
733 Side = 1,
734 Rank = 10,
735 Model = "models/sono/swbf3/officer.mdl",
736 Regiment = "Storm Trooper",
737} )
738
739TEAM_SCOUT_FLT = CreateTeam( "ST First Lieutenant {W}", {
740 Description = "Member of the Scout Trooper Core",
741 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
742 Colour = Color(102, 0, 102, 255 ),
743 Side = 1,
744 Rank = 11,
745 Model = "models/sono/swbf3/officer.mdl",
746 Regiment = "Storm Trooper",
747} )
748
749TEAM_SCOUT_CAPT = CreateTeam( "ST Captain {W}", {
750 Description = "Member of the Scout Trooper Core",
751 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
752 Colour = Color(102, 0, 102, 255 ),
753 Side = 1,
754 Rank = 12,
755 Model = "models/sono/swbf3/officer.mdl",
756 Regiment = "Storm Trooper",
757} )
758
759TEAM_SCOUT_MAJ = CreateTeam( "ST Major {W}", {
760 Description = "Member of the Scout Trooper Core",
761 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
762 Colour = Color(102, 0, 102, 255 ),
763 Side = 1,
764 Rank = 13,
765 Model = "models/sono/swbf3/officer.mdl",
766 Regiment = "Storm Trooper",
767} )
768
769TEAM_SCOUT_COLO = CreateTeam( "ST Colonel {W}", {
770 Description = "Member of the Scout Trooper Core",
771 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
772 Colour = Color(102, 0, 102, 255 ),
773 Side = 1,
774 Rank = 14,
775 Model = "models/sono/swbf3/officer.mdl",
776 Regiment = "Storm Trooper",
777} )
778
779TEAM_SCOUT_HCOLO = CreateTeam( "ST High Colonel {W}", {
780 Description = "Member of the Scout Trooper Core",
781 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
782 Colour = Color(102, 0, 102, 255 ),
783 Side = 1,
784 Rank = 15,
785 Model = "models/sono/swbf3/officer.mdl",
786 Regiment = "Storm Trooper",
787} )
788
789TEAM_SCOUT_CMD = CreateTeam( "ST Commander {W}", {
790 Description = "Commander of the Scout Trooper Core",
791 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
792 Colour = Color(102, 0, 102, 255 ),
793 Side = 1,
794 Rank = 16,
795 Model = "models/sono/swbf3/commander.mdl",
796 Regiment = "Storm Trooper",
797} )
798
799TEAM_SCOUT_BRIG = CreateTeam( "SC Brigadier", {
800 Description = "Commander of the Scout Trooper Core",
801 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
802 Colour = Color(218, 218, 218, 255),
803 Side = 1,
804 Rank = 17,
805 Model = "models/sono/swbf3/commander.mdl",
806 Regiment = "DO NOT USE",
807} )
808
809TEAM_SCOUT_MAJG = CreateTeam( "SC Major General", {
810 Description = "Commander of the Scout Trooper Core",
811 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
812 Colour = Color(218, 218, 218, 255),
813 Side = 1,
814 Rank = 18,
815 Model = "models/sono/swbf3/commander.mdl",
816 Regiment = "models/sono/swbf3/officer.mdl",
817} )
818
819TEAM_SCOUT_LTG = CreateTeam( "SC Lieutenant General", {
820 Description = "Commander of the Scout Trooper Core",
821 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
822 Colour = Color(218, 218, 218, 255),
823 Side = 1,
824 Rank = 19,
825 Model = "models/sono/swbf3/commander.mdl",
826 Regiment = "models/sono/swbf3/officer.mdl",
827} )
828
829TEAM_SCOUT_GEN = CreateTeam( "SC General", {
830 Description = "General of the Scout Trooper Core",
831 Weapons = {"tfa_swch_e11", "tfa_swch_scoutpistol", "tfa_swch_pulsecannon"},
832 Colour = Color(218, 218, 218, 255),
833 Side = 1,
834 Rank = 20,
835 Model = "models/sono/swbf3/shadow.mdl",
836 Regiment = "models/sono/swbf3/officer.mdl",
837} )
838
839TEAM_212TH_PVT = CreateTeam( "212th Private", {
840 Description = "Member of the 212th Trooper Core",
841 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
842 Colour = Color(255, 193, 0, 255),
843 Side = 1,
844 Rank = 1,
845 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
846 Regiment = "212th Trooper",
847} )
848
849TEAM_212TH_PFC = CreateTeam( "212th Private First Class", {
850 Description = "Member of the 212th Trooper Core",
851 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
852 Colour = Color(255, 193, 0, 255),
853 Side = 1,
854 Rank = 2,
855 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
856 Regiment = "212th Trooper",
857} )
858
859TEAM_212TH_LCPL = CreateTeam( "212th Lance Corporal", {
860 Description = "Member of the 212th Trooper Core",
861 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
862 Colour = Color(255, 193, 0, 255),
863 Side = 1,
864 Rank = 3,
865 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
866 Regiment = "212th Trooper",
867} )
868
869TEAM_212TH_CPL = CreateTeam( "212th Corporal", {
870 Description = "Member of the 212th Trooper Core",
871 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
872 Colour = Color(255, 193, 0, 255),
873 Side = 1,
874 Rank = 4,
875 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
876 Regiment = "212th Trooper",
877} )
878
879TEAM_212TH_SGT = CreateTeam( "212th Sergeant", {
880 Description = "Member of the 212th Trooper Core",
881 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
882 Colour = Color(255, 193, 0, 255),
883 Side = 1,
884 Rank = 5,
885 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
886 Regiment = "212th Trooper",
887} )
888
889TEAM_212TH_SSGT = CreateTeam( "212th Staff Sergeant", {
890 Description = "Member of the 212th Trooper Core",
891 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
892 Colour = Color(255, 193, 0, 255),
893 Side = 1,
894 Rank = 6,
895 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
896 Regiment = "212th Trooper",
897} )
898
899TEAM_212TH_MSGT = CreateTeam( "212th Master Sergeant", {
900 Description = "Member of the 212th Trooper Core",
901 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
902 Colour = Color(255, 193, 0, 255),
903 Side = 1,
904 Rank = 7,
905 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
906 Regiment = "212th Trooper",
907} )
908
909TEAM_212TH_OFFICERCADET = CreateTeam( "212th Officer Cadet", {
910 Description = "Member of the 212th Trooper Core",
911 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
912 Colour = Color(255, 193, 0, 255),
913 Side = 1,
914 Rank = 8,
915 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
916 Regiment = "212th Trooper",
917} )
918
919TEAM_212TH_WO = CreateTeam( "212th Warrant Officer", {
920 Description = "Member of the 212th Trooper Core",
921 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
922 Colour = Color(255, 193, 0, 255),
923 Side = 1,
924 Rank = 9,
925 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
926 Regiment = "212th Trooper",
927} )
928
929TEAM_212TH_LT = CreateTeam( "212th Lieutenant", {
930 Description = "Member of the 212th Trooper Core",
931 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
932 Colour = Color(255, 193, 0, 255),
933 Side = 1,
934 Rank = 10,
935 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
936 Regiment = "212th Trooper",
937} )
938
939TEAM_212TH_FLT = CreateTeam( "212th First Lieutenant", {
940 Description = "Member of the 212th Trooper Core",
941 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
942 Colour = Color(255, 193, 0, 255),
943 Side = 1,
944 Rank = 11,
945 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
946 Regiment = "212th Trooper",
947} )
948
949TEAM_212TH_CAPT = CreateTeam( "212th Captain", {
950 Description = "Member of the 212th Trooper Core",
951 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
952 Colour = Color(255, 193, 0, 255),
953 Side = 1,
954 Rank = 12,
955 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
956 Regiment = "212th Trooper",
957} )
958
959TEAM_212TH_MAJ = CreateTeam( "212th Major", {
960 Description = "Member of the 212th Trooper Core",
961 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
962 Colour = Color(255, 193, 0, 255),
963 Side = 1,
964 Rank = 13,
965 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
966 Regiment = "212th Trooper",
967} )
968
969TEAM_212TH_COLO = CreateTeam( "212th Colonel", {
970 Description = "Member of the 212th Trooper Core",
971 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
972 Colour = Color(255, 193, 0, 255),
973 Side = 1,
974 Rank = 14,
975 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
976 Regiment = "212th Trooper",
977} )
978
979TEAM_212TH_HCOLO = CreateTeam( "212th High Colonel", {
980 Description = "Member of the 212th Trooper Core",
981 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
982 Colour = Color(255, 193, 0, 255),
983 Side = 1,
984 Rank = 15,
985 Model = "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl",
986 Regiment = "212th Trooper",
987} )
988
989TEAM_212TH_CMD = CreateTeam( "212th Commander", {
990 Description = "Commander of the 212th Trooper Core",
991 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
992 Colour = Color(255, 193, 0, 255),
993 Side = 1,
994 Rank = 16,
995 Model = "models/player/commander_cody/commander_cody.mdl",
996 Regiment = "212th Trooper",
997} )
998
999TEAM_212TH_BRIG = CreateTeam( "212th Brigadier", {
1000 Description = "Commander of the 212th Trooper Core",
1001 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
1002 Colour = Color(255, 193, 0, 255),
1003 Side = 1,
1004 Rank = 17,
1005 Model = "models/player/commander_cody/commander_cody.mdl",
1006 Regiment = "212th Trooper",
1007} )
1008
1009TEAM_212TH_MAJG = CreateTeam( "212th Major General", {
1010 Description = "Commander of the 212th Trooper Core",
1011 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
1012 Colour = Color(255, 193, 0, 255),
1013 Side = 1,
1014 Rank = 18,
1015 Model = "models/player/commander_cody/commander_cody.mdl",
1016 Regiment = "212th Trooper",
1017} )
1018
1019TEAM_212TH_LTG = CreateTeam( "212th Lieutenant General", {
1020 Description = "Commander of the 212th Trooper Core",
1021 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
1022 Colour = Color(255, 193, 0, 255),
1023 Side = 1,
1024 Rank = 19,
1025 Model = "models/player/commander_cody/commander_cody.mdl",
1026 Regiment = "212th Trooper",
1027} )
1028
1029TEAM_212TH_GEN = CreateTeam( "212th General", {
1030 Description = "General of the 212th Trooper Core",
1031 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
1032 Colour = Color(255, 193, 0, 255),
1033 Side = 1,
1034 Rank = 20,
1035 Model = "models/sono/swbf3/shadow.mdl",
1036 Regiment = "212th Trooper",
1037} )
1038
1039TEAM_442ND_PVT = CreateTeam( "442nd Private", {
1040 Description = "Member of the 442nd Siege Battalion",
1041 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1042 Colour = Color(182, 255, 0, 255),
1043 Side = 1,
1044 Rank = 1,
1045 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1046 Regiment = "442nd Trooper",
1047} )
1048
1049TEAM_442ND_PFC = CreateTeam( "442nd Private First Class", {
1050 Description = "Member of the 442nd Siege Battalion",
1051 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1052 Colour = Color(182, 255, 0, 255),
1053 Side = 1,
1054 Rank = 2,
1055 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1056 Regiment = "442nd Trooper",
1057} )
1058
1059TEAM_442ND_LCPL = CreateTeam( "442nd Lance Corporal", {
1060 Description = "Member of the 442nd Siege Battalion",
1061 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1062 Colour = Color(182, 255, 0, 255),
1063 Side = 1,
1064 Rank = 3,
1065 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1066 Regiment = "442nd Trooper",
1067} )
1068
1069TEAM_442ND_CPL = CreateTeam( "442nd Corporal", {
1070 Description = "Member of the 442nd Siege Battalion",
1071 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1072 Colour = Color(182, 255, 0, 255),
1073 Side = 1,
1074 Rank = 4,
1075 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1076 Regiment = "442nd Trooper",
1077} )
1078
1079TEAM_442ND_SGT = CreateTeam( "442nd Sergeant", {
1080 Description = "Member of the 442nd Siege Battalion",
1081 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1082 Colour = Color(182, 255, 0, 255),
1083 Side = 1,
1084 Rank = 5,
1085 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1086 Regiment = "442nd Trooper",
1087} )
1088
1089TEAM_442ND_SSGT = CreateTeam( "442nd Staff Sergeant", {
1090 Description = "Member of the 442nd Siege Battalion",
1091 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1092 Colour = Color(182, 255, 0, 255),
1093 Side = 1,
1094 Rank = 6,
1095 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1096 Regiment = "442nd Trooper",
1097} )
1098
1099TEAM_442ND_MSGT = CreateTeam( "442nd Master Sergeant", {
1100 Description = "Member of the 442nd Siege Battalion",
1101 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1102 Colour = Color(182, 255, 0, 255),
1103 Side = 1,
1104 Rank = 7,
1105 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1106 Regiment = "442nd Trooper",
1107} )
1108
1109TEAM_442ND_OFFICERCADET = CreateTeam( "442nd Officer Cadet", {
1110 Description = "Member of the 442nd Siege Battalion",
1111 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1112 Colour = Color(182, 255, 0, 255),
1113 Side = 1,
1114 Rank = 8,
1115 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1116 Regiment = "442nd Trooper",
1117} )
1118
1119TEAM_442ND_WO = CreateTeam( "442nd Warrant Officer", {
1120 Description = "Member of the 442nd Siege Battalion",
1121 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1122 Colour = Color(182, 255, 0, 255),
1123 Side = 1,
1124 Rank = 9,
1125 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1126 Regiment = "442nd Trooper",
1127} )
1128
1129TEAM_442ND_LT = CreateTeam( "442nd Lieutenant", {
1130 Description = "Member of the 442nd Siege Battalion",
1131 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1132 Colour = Color(182, 255, 0, 255),
1133 Side = 1,
1134 Rank = 10,
1135 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1136 Regiment = "442nd Trooper",
1137} )
1138
1139TEAM_442ND_FLT = CreateTeam( "442nd First Lieutenant", {
1140 Description = "Member of the 442nd Siege Battalion",
1141 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1142 Colour = Color(182, 255, 0, 255),
1143 Side = 1,
1144 Rank = 11,
1145 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1146 Regiment = "442nd Trooper",
1147} )
1148
1149TEAM_442ND_CAPT = CreateTeam( "442nd Captain", {
1150 Description = "Member of the 442nd Siege Battalion",
1151 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1152 Colour = Color(182, 255, 0, 255),
1153 Side = 1,
1154 Rank = 12,
1155 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1156 Regiment = "442nd Trooper",
1157} )
1158
1159TEAM_442ND_MAJ = CreateTeam( "442nd Major", {
1160 Description = "Member of the 442nd Siege Battalion",
1161 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1162 Colour = Color(182, 255, 0, 255),
1163 Side = 1,
1164 Rank = 13,
1165 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1166 Regiment = "442nd Trooper",
1167} )
1168
1169TEAM_442ND_COLO = CreateTeam( "442nd Colonel", {
1170 Description = "Member of the 442nd Siege Battalion",
1171 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1172 Colour = Color(182, 255, 0, 255),
1173 Side = 1,
1174 Rank = 14,
1175 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1176 Regiment = "442nd Trooper",
1177} )
1178
1179TEAM_442ND_HCOLO = CreateTeam( "442nd High Colonel", {
1180 Description = "Member of the 442nd Siege Battalion",
1181 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1182 Colour = Color(182, 255, 0, 255),
1183 Side = 1,
1184 Rank = 15,
1185 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1186 Regiment = "442nd Trooper",
1187} )
1188
1189TEAM_442ND_CMD = CreateTeam( "442nd Commander", {
1190 Description = "Commander of the 442nd Siege Battalion",
1191 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1192 Colour = Color(182, 255, 0, 255),
1193 Side = 1,
1194 Rank = 16,
1195 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1196 Regiment = "442nd Trooper",
1197} )
1198
1199TEAM_442ND_BRIG = CreateTeam( "442nd Brigadier", {
1200 Description = "Commander of the 442nd Siege Battalion",
1201 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1202 Colour = Color(182, 255, 0, 255),
1203 Side = 1,
1204 Rank = 17,
1205 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1206 Regiment = "442nd Trooper",
1207} )
1208
1209TEAM_442ND_MAJG = CreateTeam( "442nd Major General", {
1210 Description = "Commander of the 442nd Siege Battalion",
1211 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1212 Colour = Color(182, 255, 0, 255),
1213 Side = 1,
1214 Rank = 18,
1215 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1216 Regiment = "442nd Trooper",
1217} )
1218
1219TEAM_442ND_LTG = CreateTeam( "442nd Lieutenant General", {
1220 Description = "Commander of the 442nd Siege Battalion",
1221 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1222 Colour = Color(182, 255, 0, 255),
1223 Side = 1,
1224 Rank = 19,
1225 Model = "models/player/hydro/442nd_stormtrooper/442nd_stormtrooper.mdl",
1226 Regiment = "442nd Trooper",
1227} )
1228
1229TEAM_442ND_GEN = CreateTeam( "442nd General", {
1230 Description = "General of the 442nd Siege Battalion",
1231 Weapons = {"weapon_policeshield", "tfa_swch_se14c", "zeus_thermaldet", "tfa_sw_cisshot", "tfa_swch_rt97c"},
1232 Colour = Color(182, 255, 0, 255),
1233 Side = 1,
1234 Rank = 20,
1235 Model = "models/sono/swbf3/shadow.mdl",
1236 Regiment = "442nd Trooper",
1237} )
1238
1239TEAM_SHADOW_PVT = CreateTeam( "SW Private", {
1240 Description = "Member of the Shadow Trooper Battalion",
1241 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1242 Colour = Color(32, 32, 32, 255),
1243 Side = 1,
1244 Rank = 1,
1245 Model = "models/player/banks/troopers1/trooper1.mdl",
1246 Regiment = "Shadow Trooper",
1247} )
1248
1249TEAM_SHADOW_PFC = CreateTeam( "SW Private First Class", {
1250 Description = "Member of the Shadow Trooper Battalion",
1251 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1252 Colour = Color(32, 32, 32, 255),
1253 Side = 1,
1254 Rank = 2,
1255 Model = "models/player/banks/troopers1/trooper1.mdl",
1256 Regiment = "Shadow Trooper",
1257} )
1258
1259TEAM_SHADOW_LCPL = CreateTeam( "SW Lance Corporal", {
1260 Description = "Member of the Shadow Trooper Battalion",
1261 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1262 Colour = Color(32, 32, 32, 255),
1263 Side = 1,
1264 Rank = 3,
1265 Model = "models/player/banks/troopers1/trooper1.mdl",
1266 Regiment = "Shadow Trooper",
1267} )
1268
1269TEAM_SHADOW_CPL = CreateTeam( "SW Corporal", {
1270 Description = "Member of the Shadow Trooper Battalion",
1271 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1272 Colour = Color(32, 32, 32, 255),
1273 Side = 1,
1274 Rank = 4,
1275 Model = "models/player/banks/troopers1/trooper1.mdl",
1276 Regiment = "Shadow Trooper",
1277} )
1278
1279TEAM_SHADOW_SGT = CreateTeam( "SW Sergeant", {
1280 Description = "Member of the Shadow Trooper Battalion",
1281 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1282 Colour = Color(32, 32, 32, 255),
1283 Side = 1,
1284 Rank = 5,
1285 Model = "models/player/banks/troopers1/sergeant1.mdl",
1286 Regiment = "Shadow Trooper",
1287} )
1288
1289TEAM_SHADOW_SSGT = CreateTeam( "SW Staff Sergeant", {
1290 Description = "Member of the Shadow Trooper Battalion",
1291 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1292 Colour = Color(32, 32, 32, 255),
1293 Side = 1,
1294 Rank = 6,
1295 Model = "models/player/banks/troopers1/sergeant1.mdl",
1296 Regiment = "Shadow Trooper",
1297} )
1298
1299TEAM_SHADOW_MSGT = CreateTeam( "SW Master Sergeant", {
1300 Description = "Member of the Shadow Trooper Battalion",
1301 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1302 Colour = Color(32, 32, 32, 255),
1303 Side = 1,
1304 Rank = 7,
1305 Model = "models/player/banks/troopers1/sergeant1.mdl",
1306 Regiment = "Shadow Trooper",
1307} )
1308
1309TEAM_SHADOW_OFFICERCADET = CreateTeam( "SW Officer Cadet", {
1310 Description = "Member of the Shadow Trooper Battalion",
1311 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1312 Colour = Color(32, 32, 32, 255),
1313 Side = 1,
1314 Rank = 8,
1315 Model = "models/player/banks/troopers1/officer1.mdl",
1316 Regiment = "Shadow Trooper",
1317} )
1318
1319TEAM_SHADOW_WO = CreateTeam( "SW Warrant Officer", {
1320 Description = "Member of the Shadow Trooper Battalion",
1321 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1322 Colour = Color(32, 32, 32, 255),
1323 Side = 1,
1324 Rank = 9,
1325 Model = "models/player/banks/troopers1/officer1.mdl",
1326 Regiment = "Shadow Trooper",
1327} )
1328
1329TEAM_SHADOW_LT = CreateTeam( "SW Lieutenant", {
1330 Description = "Member of the Shadow Trooper Battalion",
1331 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1332 Colour = Color(32, 32, 32, 255),
1333 Side = 1,
1334 Rank = 10,
1335 Model = "models/player/banks/troopers1/officer1.mdl",
1336 Regiment = "Shadow Trooper",
1337} )
1338
1339TEAM_SHADOW_FLT = CreateTeam( "SW First Lieutenant", {
1340 Description = "Member of the Shadow Trooper Battalion",
1341 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1342 Colour = Color(32, 32, 32, 255),
1343 Side = 1,
1344 Rank = 11,
1345 Model = "models/player/banks/troopers1/officer1.mdl",
1346 Regiment = "Shadow Trooper",
1347} )
1348
1349TEAM_SHADOW_CAPT = CreateTeam( "SW Captain", {
1350 Description = "Member of the Shadow Trooper Battalion",
1351 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1352 Colour = Color(32, 32, 32, 255),
1353 Side = 1,
1354 Rank = 12,
1355 Model = "models/player/banks/troopers1/officer1.mdl",
1356 Regiment = "Shadow Trooper",
1357} )
1358
1359TEAM_SHADOW_MAJ = CreateTeam( "SW Major", {
1360 Description = "Member of the Shadow Trooper Battalion",
1361 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1362 Colour = Color(32, 32, 32, 255),
1363 Side = 1,
1364 Rank = 13,
1365 Model = "models/player/banks/troopers1/officer1.mdl",
1366 Regiment = "Shadow Trooper",
1367} )
1368
1369TEAM_SHADOW_COLO = CreateTeam( "SW Colonel", {
1370 Description = "Member of the Shadow Trooper Battalion",
1371 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1372 Colour = Color(32, 32, 32, 255),
1373 Side = 1,
1374 Rank = 14,
1375 Model = "models/player/banks/troopers1/officer1.mdl",
1376 Regiment = "Shadow Trooper",
1377} )
1378
1379TEAM_SHADOW_HCOLO = CreateTeam( "SW High Colonel", {
1380 Description = "Member of the Shadow Trooper Battalion",
1381 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1382 Colour = Color(32, 32, 32, 255),
1383 Side = 1,
1384 Rank = 15,
1385 Model = "models/player/banks/troopers1/officer1.mdl",
1386 Regiment = "Shadow Trooper",
1387} )
1388
1389TEAM_SHADOW_CMD = CreateTeam( "SW Commander", {
1390 Description = "Commander of the Shadow Trooper Battalion",
1391 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1392 Colour = Color(32, 32, 32, 255),
1393 Side = 1,
1394 Rank = 16,
1395 Model = "models/player/banks/commander1/commander1.mdl",
1396 Regiment = "Shadow Trooper",
1397} )
1398
1399TEAM_SHADOW_BRIG = CreateTeam( "SW Brigadier", {
1400 Description = "Commander of the Shadow Trooper Battalion",
1401 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1402 Colour = Color(32, 32, 32, 255),
1403 Side = 1,
1404 Rank = 17,
1405 Model = "models/player/banks/commander1/commander1.mdl",
1406 Regiment = "Shadow Trooper",
1407} )
1408
1409TEAM_SHADOW_MAJG = CreateTeam( "SW Major General", {
1410 Description = "Commander of the Shadow Trooper Battalion",
1411 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1412 Colour = Color(32, 32, 32, 255),
1413 Side = 1,
1414 Rank = 18,
1415 Model = "models/player/banks/commander1/commander1.mdl",
1416 Regiment = "Shadow Trooper",
1417} )
1418
1419TEAM_SHADOW_LTG = CreateTeam( "SW Lieutenant General", {
1420 Description = "Commander of the Shadow Trooper Battalion",
1421 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1422 Colour = Color(32, 32, 32, 255),
1423 Side = 1,
1424 Rank = 19,
1425 Model = "models/player/banks/commander1/commander1.mdl",
1426 Regiment = "Shadow Trooper",
1427} )
1428
1429TEAM_SHADOW_GEN = CreateTeam( "SW General", {
1430 Description = "General of the Shadow Trooper Battalion",
1431 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_scoutpistol", "weapon_camo", "realistic_hook"},
1432 Colour = Color(32, 32, 32, 255),
1433 Side = 1,
1434 Rank = 20,
1435 Model = "models/sono/swbf3/shadow.mdl",
1436 Regiment = "Shadow Trooper",
1437} )
1438
1439
1440TEAM_JUMP_PVT = CreateTeam( "JT Private", {
1441 Description = "Member of the Jump Trooper Battalion",
1442 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1443 Colour = Color(0, 102, 102, 255),
1444 Side = 1,
1445 Rank = 1,
1446 Model = "models/banks/ig/jt2/jt2.mdl",
1447 Regiment = "Jump Trooper",
1448} )
1449
1450TEAM_JUMP_PFC = CreateTeam( "JT Private First Class", {
1451 Description = "Member of the Jump Trooper Battalion",
1452 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1453 Colour = Color(0, 102, 102, 255),
1454 Side = 1,
1455 Rank = 2,
1456 Model = "models/banks/ig/jt2/jt2.mdl",
1457 Regiment = "Jump Trooper",
1458} )
1459
1460TEAM_JUMP_LCPL = CreateTeam( "JT Lance Corporal", {
1461 Description = "Member of the Jump Trooper Battalion",
1462 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1463 Colour = Color(0, 102, 102, 255),
1464 Side = 1,
1465 Rank = 3,
1466 Model = "models/banks/ig/jt2/jt2.mdl",
1467 Regiment = "Jump Trooper",
1468} )
1469
1470TEAM_JUMP_CPL = CreateTeam( "JT Corporal", {
1471 Description = "Member of the Jump Trooper Battalion",
1472 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1473 Colour = Color(0, 102, 102, 255),
1474 Side = 1,
1475 Rank = 4,
1476 Model = "models/banks/ig/jt2/jt2.mdl",
1477 Regiment = "Jump Trooper",
1478} )
1479
1480TEAM_JUMP_SGT = CreateTeam( "JT Sergeant", {
1481 Description = "Member of the Jump Trooper Battalion",
1482 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1483 Colour = Color(0, 102, 102, 255),
1484 Side = 1,
1485 Rank = 5,
1486 Model = "models/banks/ig/jt4/jt4.mdl",
1487 Regiment = "Jump Trooper",
1488} )
1489
1490TEAM_JUMP_SSGT = CreateTeam( "JT Staff Sergeant", {
1491 Description = "Member of the Jump Trooper Battalion",
1492 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1493 Colour = Color(0, 102, 102, 255),
1494 Side = 1,
1495 Rank = 6,
1496 Model = "models/banks/ig/jt4/jt4.mdl",
1497 Regiment = "Jump Trooper",
1498} )
1499
1500TEAM_JUMP_MSGT = CreateTeam( "JT Master Sergeant", {
1501 Description = "Member of the Jump Trooper Battalion",
1502 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1503 Colour = Color(0, 102, 102, 255),
1504 Side = 1,
1505 Rank = 7,
1506 Model = "models/banks/ig/jt4/jt4.mdl",
1507 Regiment = "Jump Trooper",
1508} )
1509
1510TEAM_JUMP_OFFICERCADET = CreateTeam( "JT Officer Cadet", {
1511 Description = "Member of the Jump Trooper Battalion",
1512 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1513 Colour = Color(0, 102, 102, 255),
1514 Side = 1,
1515 Rank = 8,
1516 Model = "models/banks/ig/jt3/jt3.mdl",
1517 Regiment = "Jump Trooper",
1518} )
1519
1520TEAM_JUMP_WO = CreateTeam( "JT Warrant Officer", {
1521 Description = "Member of the Jump Trooper Battalion",
1522 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1523 Colour = Color(0, 102, 102, 255),
1524 Side = 1,
1525 Rank = 9,
1526 Model = "models/banks/ig/jt3/jt3.mdl",
1527 Regiment = "Jump Trooper",
1528} )
1529
1530TEAM_JUMP_LT = CreateTeam( "JT Lieutenant", {
1531 Description = "Member of the Jump Trooper Battalion",
1532 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1533 Colour = Color(0, 102, 102, 255),
1534 Side = 1,
1535 Rank = 10,
1536 Model = "models/banks/ig/jt3/jt3.mdl",
1537 Regiment = "Jump Trooper",
1538} )
1539
1540TEAM_JUMP_FLT = CreateTeam( "JT First Lieutenant", {
1541 Description = "Member of the Jump Trooper Battalion",
1542 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1543 Colour = Color(0, 102, 102, 255),
1544 Side = 1,
1545 Rank = 11,
1546 Model = "models/banks/ig/jt3/jt3.mdl",
1547 Regiment = "Jump Trooper",
1548} )
1549
1550TEAM_JUMP_CAPT = CreateTeam( "JT Captain", {
1551 Description = "Member of the Jump Trooper Battalion",
1552 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1553 Colour = Color(0, 102, 102, 255),
1554 Side = 1,
1555 Rank = 12,
1556 Model = "models/banks/ig/jt5/jt5.mdl",
1557 Regiment = "Jump Trooper",
1558} )
1559
1560TEAM_JUMP_MAJ = CreateTeam( "JT Major", {
1561 Description = "Member of the Jump Trooper Battalion",
1562 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1563 Colour = Color(0, 102, 102, 255),
1564 Side = 1,
1565 Rank = 13,
1566 Model = "models/banks/ig/jt5/jt5.mdl",
1567 Regiment = "Jump Trooper",
1568} )
1569
1570TEAM_JUMP_COLO = CreateTeam( "JT Colonel", {
1571 Description = "Member of the Jump Trooper Battalion",
1572 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1573 Colour = Color(0, 102, 102, 255),
1574 Side = 1,
1575 Rank = 14,
1576 Model = "models/banks/ig/jt5/jt5.mdl",
1577 Regiment = "Jump Trooper",
1578} )
1579
1580TEAM_JUMP_HCOLO = CreateTeam( "JT High Colonel", {
1581 Description = "Member of the Jump Trooper Battalion",
1582 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1583 Colour = Color(0, 102, 102, 255),
1584 Side = 1,
1585 Rank = 15,
1586 Model = "models/banks/ig/jt5/jt5.mdl",
1587 Regiment = "Jump Trooper",
1588} )
1589
1590TEAM_JUMP_CMD = CreateTeam( "JT Commander", {
1591 Description = "Commander of the Jump Trooper Battalion",
1592 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1593 Colour = Color(0, 102, 102, 255),
1594 Side = 1,
1595 Rank = 16,
1596 Model = "models/banks/ig/jt1/jt1.mdl",
1597 Regiment = "Jump Trooper",
1598} )
1599
1600TEAM_JUMP_BRIG = CreateTeam( "JT Brigadier", {
1601 Description = "Commander of the Jump Trooper Battalion",
1602 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1603 Colour = Color(0, 102, 102, 255),
1604 Side = 1,
1605 Rank = 17,
1606 Model = "models/banks/ig/jt1/jt1.mdl",
1607 Regiment = "Jump Trooper",
1608} )
1609
1610TEAM_JUMP_MAJG = CreateTeam( "JT Major General", {
1611 Description = "Commander of the Jump Trooper Battalion",
1612 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1613 Colour = Color(0, 102, 102, 255),
1614 Side = 1,
1615 Rank = 18,
1616 Model = "models/banks/ig/jt1/jt1.mdl",
1617 Regiment = "Jump Trooper",
1618} )
1619
1620TEAM_JUMP_LTG = CreateTeam( "JT Lieutenant General", {
1621 Description = "Commander of the Jump Trooper Battalion",
1622 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1623 Colour = Color(0, 102, 102, 255),
1624 Side = 1,
1625 Rank = 19,
1626 Model = "models/banks/ig/jt1/jt1.mdl",
1627 Regiment = "Jump Trooper",
1628} )
1629
1630TEAM_JUMP_GEN = CreateTeam( "JT General", {
1631 Description = "General of the Jump Trooper Battalion",
1632 Weapons = {"weapon_jetpack", "tfa_swch_rt97c"},
1633 Colour = Color(0, 102, 102, 255),
1634 Side = 1,
1635 Rank = 20,
1636 Model = "models/sono/swbf3/shadow.mdl",
1637 Regiment = "Jump Trooper",
1638} )
1639
1640TEAM_DEATH_PVT = CreateTeam( "DT Private", {
1641 Description = "Member of the Death Trooper Battalion",
1642 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1643 Colour = Color(32, 32, 32, 255),
1644 Side = 1,
1645 Rank = 1,
1646 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1647 Regiment = "Death Trooper",
1648} )
1649
1650TEAM_DEATH_PFC = CreateTeam( "DT Private First Class", {
1651 Description = "Member of the Death Trooper Battalion",
1652 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1653 Colour = Color(32, 32, 32, 255),
1654 Side = 1,
1655 Rank = 2,
1656 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1657 Regiment = "Death Trooper",
1658} )
1659
1660TEAM_DEATH_LCPL = CreateTeam( "DT Lance Corporal", {
1661 Description = "Member of the Death Trooper Battalion",
1662 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1663 Colour = Color(32, 32, 32, 255),
1664 Side = 1,
1665 Rank = 3,
1666 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1667 Regiment = "Death Trooper",
1668} )
1669
1670TEAM_DEATH_CPL = CreateTeam( "DT Corporal", {
1671 Description = "Member of the Death Trooper Battalion",
1672 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1673 Colour = Color(32, 32, 32, 255),
1674 Side = 1,
1675 Rank = 4,
1676 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1677 Regiment = "Death Trooper",
1678} )
1679
1680TEAM_DEATH_SGT = CreateTeam( "DT Sergeant", {
1681 Description = "Member of the Death Trooper Battalion",
1682 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1683 Colour = Color(32, 32, 32, 255),
1684 Side = 1,
1685 Rank = 5,
1686 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1687 Regiment = "Death Trooper",
1688} )
1689
1690TEAM_DEATH_SSGT = CreateTeam( "DT Staff Sergeant", {
1691 Description = "Member of the Death Trooper Battalion",
1692 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1693 Colour = Color(32, 32, 32, 255),
1694 Side = 1,
1695 Rank = 6,
1696 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1697 Regiment = "Death Trooper",
1698} )
1699
1700TEAM_DEATH_MSGT = CreateTeam( "DT Master Sergeant", {
1701 Description = "Member of the Death Trooper Battalion",
1702 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1703 Colour = Color(32, 32, 32, 255),
1704 Side = 1,
1705 Rank = 7,
1706 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1707 Regiment = "Death Trooper",
1708} )
1709
1710TEAM_DEATH_OFFICERCADET = CreateTeam( "DT Officer Cadet", {
1711 Description = "Member of the Death Trooper Battalion",
1712 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1713 Colour = Color(32, 32, 32, 255),
1714 Side = 1,
1715 Rank = 8,
1716 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1717 Regiment = "Death Trooper",
1718} )
1719
1720TEAM_DEATH_WO = CreateTeam( "DT Warrant Officer", {
1721 Description = "Member of the Death Trooper Battalion",
1722 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1723 Colour = Color(32, 32, 32, 255),
1724 Side = 1,
1725 Rank = 9,
1726 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1727 Regiment = "Death Trooper",
1728} )
1729
1730TEAM_DEATH_LT = CreateTeam( "DT Lieutenant", {
1731 Description = "Member of the Death Trooper Battalion",
1732 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1733 Colour = Color(32, 32, 32, 255),
1734 Side = 1,
1735 Rank = 10,
1736 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1737 Regiment = "Death Trooper",
1738} )
1739
1740TEAM_DEATH_FLT = CreateTeam( "DT First Lieutenant", {
1741 Description = "Member of the Death Trooper Battalion",
1742 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1743 Colour = Color(32, 32, 32, 255),
1744 Side = 1,
1745 Rank = 11,
1746 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1747 Regiment = "Death Trooper",
1748} )
1749
1750TEAM_DEATH_CAPT = CreateTeam( "DT Captain", {
1751 Description = "Member of the Death Trooper Battalion",
1752 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1753 Colour = Color(32, 32, 32, 255),
1754 Side = 1,
1755 Rank = 12,
1756 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1757 Regiment = "Death Trooper",
1758} )
1759
1760TEAM_DEATH_MAJ = CreateTeam( "DT Major", {
1761 Description = "Member of the Death Trooper Battalion",
1762 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1763 Colour = Color(32, 32, 32, 255),
1764 Side = 1,
1765 Rank = 13,
1766 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1767 Regiment = "Death Trooper",
1768} )
1769
1770TEAM_DEATH_COLO = CreateTeam( "DT Colonel", {
1771 Description = "Member of the Death Trooper Battalion",
1772 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1773 Colour = Color(32, 32, 32, 255),
1774 Side = 1,
1775 Rank = 14,
1776 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1777 Regiment = "Death Trooper",
1778} )
1779
1780TEAM_DEATH_HCOLO = CreateTeam( "DT High Colonel", {
1781 Description = "Member of the Death Trooper Battalion",
1782 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1783 Colour = Color(32, 32, 32, 255),
1784 Side = 1,
1785 Rank = 15,
1786 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1787 Regiment = "Death Trooper",
1788} )
1789
1790TEAM_DEATH_CMD = CreateTeam( "DT Commander", {
1791 Description = "Commander of the Death Trooper Battalion",
1792 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1793 Colour = Color(32, 32, 32, 255),
1794 Side = 1,
1795 Rank = 16,
1796 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1797 Regiment = "Death Trooper",
1798} )
1799
1800TEAM_DEATH_BRIG = CreateTeam( "DT Brigadier", {
1801 Description = "Commander of the Death Trooper Battalion",
1802 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1803 Colour = Color(32, 32, 32, 255),
1804 Side = 1,
1805 Rank = 17,
1806 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1807 Regiment = "Death Trooper",
1808} )
1809
1810TEAM_DEATH_MAJG = CreateTeam( "DT Major General", {
1811 Description = "Commander of the Death Trooper Battalion",
1812 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1813 Colour = Color(32, 32, 32, 255),
1814 Side = 1,
1815 Rank = 18,
1816 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1817 Regiment = "Death Trooper",
1818} )
1819
1820TEAM_DEATH_LTG = CreateTeam( "DT Lieutenant General", {
1821 Description = "Commander of the Death Trooper Battalion",
1822 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1823 Colour = Color(32, 32, 32, 255),
1824 Side = 1,
1825 Rank = 19,
1826 Model = "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl",
1827 Regiment = "Death Trooper",
1828} )
1829
1830TEAM_DEATH_GEN = CreateTeam( "DT General", {
1831 Description = "General of the Death Trooper Battalion",
1832 Weapons = {"tfa_dlt19d", "tfa_swch_se14c", "weapon_cuff_elastic", "tfa_e11d"},
1833 Colour = Color(32, 32, 32, 255),
1834 Side = 1,
1835 Rank = 20,
1836 Model = "models/sono/swbf3/shadow.mdl",
1837 Regiment = "Death Trooper",
1838} )
1839
1840TEAM_SHORE_PVT = CreateTeam( "SR Private", {
1841 Description = "Member of the Shore Trooper Battalion",
1842 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1843 Colour = Color(255, 153, 51, 255),
1844 Side = 1,
1845 Rank = 1,
1846 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1847 Regiment = "Shore Trooper",
1848} )
1849
1850TEAM_SHORE_PFC = CreateTeam( "SR Private First Class", {
1851 Description = "Member of the Shore Trooper Battalion",
1852 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1853 Colour = Color(255, 153, 51, 255),
1854 Side = 1,
1855 Rank = 2,
1856 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1857 Regiment = "Shore Trooper",
1858} )
1859
1860TEAM_SHORE_LCPL = CreateTeam( "SR Lance Corporal", {
1861 Description = "Member of the Shore Trooper Battalion",
1862 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1863 Colour = Color(255, 153, 51, 255),
1864 Side = 1,
1865 Rank = 3,
1866 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1867 Regiment = "Shore Trooper",
1868} )
1869
1870TEAM_SHORE_CPL = CreateTeam( "SR Corporal", {
1871 Description = "Member of the Shore Trooper Battalion",
1872 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1873 Colour = Color(255, 153, 51, 255),
1874 Side = 1,
1875 Rank = 4,
1876 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1877 Regiment = "Shore Trooper",
1878} )
1879
1880TEAM_SHORE_SGT = CreateTeam( "SR Sergeant", {
1881 Description = "Member of the Shore Trooper Battalion",
1882 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1883 Colour = Color(255, 153, 51, 255),
1884 Side = 1,
1885 Rank = 5,
1886 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1887 Regiment = "Shore Trooper",
1888} )
1889
1890TEAM_SHORE_SSGT = CreateTeam( "SR Staff Sergeant", {
1891 Description = "Member of the Shore Trooper Battalion",
1892 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1893 Colour = Color(255, 153, 51, 255),
1894 Side = 1,
1895 Rank = 6,
1896 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1897 Regiment = "Shore Trooper",
1898} )
1899
1900TEAM_SHORE_MSGT = CreateTeam( "SR Master Sergeant", {
1901 Description = "Member of the Shore Trooper Battalion",
1902 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1903 Colour = Color(255, 153, 51, 255),
1904 Side = 1,
1905 Rank = 7,
1906 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1907 Regiment = "Shore Trooper",
1908} )
1909
1910TEAM_SHORE_OFFICERCADET = CreateTeam( "SR Officer Cadet", {
1911 Description = "Member of the Shore Trooper Battalion",
1912 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1913 Colour = Color(255, 153, 51, 255),
1914 Side = 1,
1915 Rank = 8,
1916 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1917 Regiment = "Shore Trooper",
1918} )
1919
1920TEAM_SHORE_WO = CreateTeam( "SR Warrant Officer", {
1921 Description = "Member of the Shore Trooper Battalion",
1922 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1923 Colour = Color(255, 153, 51, 255),
1924 Side = 1,
1925 Rank = 9,
1926 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1927 Regiment = "Shore Trooper",
1928} )
1929
1930TEAM_SHORE_LT = CreateTeam( "SR Lieutenant", {
1931 Description = "Member of the Shore Trooper Battalion",
1932 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1933 Colour = Color(255, 153, 51, 255),
1934 Side = 1,
1935 Rank = 10,
1936 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1937 Regiment = "Shore Trooper",
1938} )
1939
1940TEAM_SHORE_FLT = CreateTeam( "SR First Lieutenant", {
1941 Description = "Member of the Shore Trooper Battalion",
1942 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1943 Colour = Color(255, 153, 51, 255),
1944 Side = 1,
1945 Rank = 11,
1946 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1947 Regiment = "Shore Trooper",
1948} )
1949
1950TEAM_SHORE_CAPT = CreateTeam( "SR Captain", {
1951 Description = "Member of the Shore Trooper Battalion",
1952 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1953 Colour = Color(255, 153, 51, 255),
1954 Side = 1,
1955 Rank = 12,
1956 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1957 Regiment = "Shore Trooper",
1958} )
1959
1960TEAM_SHORE_MAJ = CreateTeam( "SR Major", {
1961 Description = "Member of the Shore Trooper Battalion",
1962 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1963 Colour = Color(255, 153, 51, 255),
1964 Side = 1,
1965 Rank = 13,
1966 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1967 Regiment = "Shore Trooper",
1968} )
1969
1970TEAM_SHORE_COLO = CreateTeam( "SR Colonel", {
1971 Description = "Member of the Shore Trooper Battalion",
1972 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1973 Colour = Color(255, 153, 51, 255),
1974 Side = 1,
1975 Rank = 14,
1976 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1977 Regiment = "Shore Trooper",
1978} )
1979
1980TEAM_SHORE_HCOLO = CreateTeam( "SR High Colonel", {
1981 Description = "Member of the Shore Trooper Battalion",
1982 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1983 Colour = Color(255, 153, 51, 255),
1984 Side = 1,
1985 Rank = 15,
1986 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1987 Regiment = "Shore Trooper",
1988} )
1989
1990TEAM_SHORE_CMD = CreateTeam( "SR Commander", {
1991 Description = "Commander of the Shore Trooper Battalion",
1992 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
1993 Colour = Color(255, 153, 51, 255),
1994 Side = 1,
1995 Rank = 16,
1996 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
1997 Regiment = "Shore Trooper",
1998} )
1999
2000TEAM_SHORE_BRIG = CreateTeam( "SR Brigadier", {
2001 Description = "Commander of the Shore Trooper Battalion",
2002 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
2003 Colour = Color(255, 153, 51, 255),
2004 Side = 1,
2005 Rank = 17,
2006 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
2007 Regiment = "Shore Trooper",
2008} )
2009
2010TEAM_SHORE_MAJG = CreateTeam( "SR Major General", {
2011 Description = "Commander of the Shore Trooper Battalion",
2012 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
2013 Colour = Color(255, 153, 51, 255),
2014 Side = 1,
2015 Rank = 18,
2016 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
2017 Regiment = "Shore Trooper",
2018} )
2019
2020TEAM_SHORE_LTG = CreateTeam( "SR Lieutenant General", {
2021 Description = "Commander of the Shore Trooper Battalion",
2022 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
2023 Colour = Color(255, 153, 51, 255),
2024 Side = 1,
2025 Rank = 19,
2026 Model = "models/player/worthy/swbf_shoretrooper/swbf_shoretrooper_captain.mdl",
2027 Regiment = "Shore Trooper",
2028} )
2029
2030TEAM_SHORE_GEN = CreateTeam( "SR General", {
2031 Description = "General of the Shore Trooper Battalion",
2032 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
2033 Colour = Color(255, 153, 51, 255),
2034 Side = 1,
2035 Rank = 20,
2036 Model = "models/sono/swbf3/shadow.mdl",
2037 Regiment = "Shore Trooper",
2038} )
2039
2040TEAM_NOVA_PVT = CreateTeam( "NT Private", {
2041 Description = "Member of the Nova Trooper Battalion",
2042 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2043 Colour = Color(0, 204, 102, 255),
2044 Side = 1,
2045 Rank = 1,
2046 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2047 Regiment = "Nova Trooper",
2048} )
2049
2050TEAM_NOVA_PFC = CreateTeam( "NT Private First Class", {
2051 Description = "Member of the Nova Trooper Battalion",
2052 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2053 Colour = Color(0, 204, 102, 255),
2054 Side = 1,
2055 Rank = 2,
2056 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2057 Regiment = "Nova Trooper",
2058} )
2059
2060TEAM_NOVA_LCPL = CreateTeam( "NT Lance Corporal", {
2061 Description = "Member of the Nova Trooper Battalion",
2062 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2063 Colour = Color(0, 204, 102, 255),
2064 Side = 1,
2065 Rank = 3,
2066 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2067 Regiment = "Nova Trooper",
2068} )
2069
2070TEAM_NOVA_CPL = CreateTeam( "NT Corporal", {
2071 Description = "Member of the Nova Trooper Battalion",
2072 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2073 Colour = Color(0, 204, 102, 255),
2074 Side = 1,
2075 Rank = 4,
2076 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2077 Regiment = "Nova Trooper",
2078} )
2079
2080TEAM_NOVA_SGT = CreateTeam( "NT Sergeant", {
2081 Description = "Member of the Nova Trooper Battalion",
2082 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2083 Colour = Color(0, 204, 102, 255),
2084 Side = 1,
2085 Rank = 5,
2086 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2087 Regiment = "Nova Trooper",
2088} )
2089
2090TEAM_NOVA_SSGT = CreateTeam( "NT Staff Sergeant", {
2091 Description = "Member of the Nova Trooper Battalion",
2092 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2093 Colour = Color(0, 204, 102, 255),
2094 Side = 1,
2095 Rank = 6,
2096 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2097 Regiment = "Nova Trooper",
2098} )
2099
2100TEAM_NOVA_MSGT = CreateTeam( "NT Master Sergeant", {
2101 Description = "Member of the Nova Trooper Battalion",
2102 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2103 Colour = Color(0, 204, 102, 255),
2104 Side = 1,
2105 Rank = 7,
2106 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2107 Regiment = "Nova Trooper",
2108} )
2109
2110TEAM_NOVA_OFFICERCADET = CreateTeam( "NT Officer Cadet", {
2111 Description = "Member of the Nova Trooper Battalion",
2112 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2113 Colour = Color(0, 204, 102, 255),
2114 Side = 1,
2115 Rank = 8,
2116 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2117 Regiment = "Nova Trooper",
2118} )
2119
2120TEAM_NOVA_WO = CreateTeam( "NT Warrant Officer", {
2121 Description = "Member of the Nova Trooper Battalion",
2122 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2123 Colour = Color(0, 204, 102, 255),
2124 Side = 1,
2125 Rank = 9,
2126 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2127 Regiment = "Nova Trooper",
2128} )
2129
2130TEAM_NOVA_LT = CreateTeam( "NT Lieutenant", {
2131 Description = "Member of the Nova Trooper Battalion",
2132 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2133 Colour = Color(0, 204, 102, 255),
2134 Side = 1,
2135 Rank = 10,
2136 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2137 Regiment = "Nova Trooper",
2138} )
2139
2140TEAM_NOVA_FLT = CreateTeam( "NT First Lieutenant", {
2141 Description = "Member of the Nova Trooper Battalion",
2142 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2143 Colour = Color(0, 204, 102, 255),
2144 Side = 1,
2145 Rank = 11,
2146 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2147 Regiment = "Nova Trooper",
2148} )
2149
2150TEAM_NOVA_CAPT = CreateTeam( "NT Captain", {
2151 Description = "Member of the Nova Trooper Battalion",
2152 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2153 Colour = Color(0, 204, 102, 255),
2154 Side = 1,
2155 Rank = 12,
2156 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2157 Regiment = "Nova Trooper",
2158} )
2159
2160TEAM_NOVA_MAJ = CreateTeam( "NT Major", {
2161 Description = "Member of the Nova Trooper Battalion",
2162 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2163 Colour = Color(0, 204, 102, 255),
2164 Side = 1,
2165 Rank = 13,
2166 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2167 Regiment = "Nova Trooper",
2168} )
2169
2170TEAM_NOVA_COLO = CreateTeam( "NT Colonel", {
2171 Description = "Member of the Nova Trooper Battalion",
2172 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2173 Colour = Color(0, 204, 102, 255),
2174 Side = 1,
2175 Rank = 14,
2176 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2177 Regiment = "Nova Trooper",
2178} )
2179
2180TEAM_NOVA_HCOLO = CreateTeam( "NT High Colonel", {
2181 Description = "Member of the Nova Trooper Battalion",
2182 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2183 Colour = Color(0, 204, 102, 255),
2184 Side = 1,
2185 Rank = 15,
2186 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2187 Regiment = "Nova Trooper",
2188} )
2189
2190TEAM_NOVA_CMD = CreateTeam( "NT Commander", {
2191 Description = "Commander of the Nova Trooper Battalion",
2192 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2193 Colour = Color(0, 204, 102, 255),
2194 Side = 1,
2195 Rank = 16,
2196 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2197 Regiment = "Nova Trooper",
2198} )
2199
2200TEAM_NOVA_BRIG = CreateTeam( "NT Brigadier", {
2201 Description = "Commander of the Nova Trooper Battalion",
2202 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2203 Colour = Color(0, 204, 102, 255),
2204 Side = 1,
2205 Rank = 17,
2206 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2207 Regiment = "Nova Trooper",
2208} )
2209
2210TEAM_NOVA_MAJG = CreateTeam( "NT Major General", {
2211 Description = "Commander of the Nova Trooper Battalion",
2212 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2213 Colour = Color(0, 204, 102, 255),
2214 Side = 1,
2215 Rank = 18,
2216 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2217 Regiment = "Nova Trooper",
2218} )
2219
2220TEAM_NOVA_LTG = CreateTeam( "NT Lieutenant General", {
2221 Description = "Commander of the Nova Trooper Battalion",
2222 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2223 Colour = Color(0, 204, 102, 255),
2224 Side = 1,
2225 Rank = 19,
2226 Model = "models/player/banks/novatrooper/novatrooper.mdl",
2227 Regiment = "Nova Trooper",
2228} )
2229
2230TEAM_NOVA_GEN = CreateTeam( "NT General", {
2231 Description = "General of the Nova Trooper Battalion",
2232 Weapons = {"tfa_swch_dlt19", "tfa_swch_se14c", "tfa_swch_dc17m_br", "weapon_cuff_elastic"},
2233 Colour = Color(0, 204, 102, 255),
2234 Side = 1,
2235 Rank = 20,
2236 Model = "models/sono/swbf3/shadow.mdl",
2237 Regiment = "Nova Trooper",
2238} )
2239
2240TEAM_MEDICAL_PVT = CreateTeam( "MT Private", {
2241 Description = "Member of the Medical Trooper Core",
2242 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2243 Colour = Color(255, 51, 255, 255),
2244 Side = 1,
2245 Rank = 1,
2246 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2247 Regiment = "Medical Trooper",
2248} )
2249
2250TEAM_MEDICAL_PFC = CreateTeam( "MT Private First Class", {
2251 Description = "Member of the Medical Trooper Core",
2252 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2253 Colour = Color(255, 51, 255, 255),
2254 Side = 1,
2255 Rank = 2,
2256 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2257 Regiment = "Medical Trooper",
2258} )
2259
2260TEAM_MEDICAL_LCPL = CreateTeam( "MT Lance Corporal", {
2261 Description = "Member of the Medical Trooper Core",
2262 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2263 Colour = Color(255, 51, 255, 255),
2264 Side = 1,
2265 Rank = 3,
2266 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2267 Regiment = "Medical Trooper",
2268} )
2269
2270TEAM_MEDICAL_CPL = CreateTeam( "MT Corporal", {
2271 Description = "Member of the Medical Trooper Core",
2272 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2273 Colour = Color(255, 51, 255, 255),
2274 Side = 1,
2275 Rank = 4,
2276 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2277 Regiment = "Medical Trooper",
2278} )
2279
2280TEAM_MEDICAL_SGT = CreateTeam( "MT Sergeant", {
2281 Description = "Member of the Medical Trooper Core",
2282 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2283 Colour = Color(255, 51, 255, 255),
2284 Side = 1,
2285 Rank = 5,
2286 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2287 Regiment = "Medical Trooper",
2288} )
2289
2290TEAM_MEDICAL_SSGT = CreateTeam( "MT Staff Sergeant", {
2291 Description = "Member of the Medical Trooper Core",
2292 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2293 Colour = Color(255, 51, 255, 255),
2294 Side = 1,
2295 Rank = 6,
2296 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2297 Regiment = "Medical Trooper",
2298} )
2299
2300TEAM_MEDICAL_MSGT = CreateTeam( "MT Master Sergeant", {
2301 Description = "Member of the Medical Trooper Core",
2302 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2303 Colour = Color(255, 51, 255, 255),
2304 Side = 1,
2305 Rank = 7,
2306 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2307 Regiment = "Medical Trooper",
2308} )
2309
2310TEAM_MEDICAL_OFFICERCADET = CreateTeam( "MT Officer Cadet", {
2311 Description = "Member of the Medical Trooper Core",
2312 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2313 Colour = Color(255, 51, 255, 255),
2314 Side = 1,
2315 Rank = 8,
2316 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2317 Regiment = "Medical Trooper",
2318} )
2319
2320TEAM_MEDICAL_WO = CreateTeam( "MT Warrant Officer", {
2321 Description = "Member of the Medical Trooper Core",
2322 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2323 Colour = Color(255, 51, 255, 255),
2324 Side = 1,
2325 Rank = 9,
2326 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2327 Regiment = "Medical Trooper",
2328} )
2329
2330TEAM_MEDICAL_LT = CreateTeam( "MT Lieutenant", {
2331 Description = "Member of the Medical Trooper Core",
2332 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2333 Colour = Color(255, 51, 255, 255),
2334 Side = 1,
2335 Rank = 10,
2336 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2337 Regiment = "Medical Trooper",
2338} )
2339
2340TEAM_MEDICAL_FLT = CreateTeam( "MT First Lieutenant", {
2341 Description = "Member of the Medical Trooper Core",
2342 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2343 Colour = Color(255, 51, 255, 255),
2344 Side = 1,
2345 Rank = 11,
2346 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2347 Regiment = "Medical Trooper",
2348} )
2349
2350TEAM_MEDICAL_CAPT = CreateTeam( "MT Captain", {
2351 Description = "Member of the Medical Trooper Core",
2352 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2353 Colour = Color(255, 51, 255, 255),
2354 Side = 1,
2355 Rank = 12,
2356 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2357 Regiment = "Medical Trooper",
2358} )
2359
2360TEAM_MEDICAL_MAJ = CreateTeam( "MT Major", {
2361 Description = "Member of the Medical Trooper Core",
2362 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2363 Colour = Color(255, 51, 255, 255),
2364 Side = 1,
2365 Rank = 13,
2366 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2367 Regiment = "Medical Trooper",
2368} )
2369
2370TEAM_MEDICAL_COLO = CreateTeam( "MT Lieutenant Colonel", {
2371 Description = "Member of the Medical Trooper Core",
2372 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2373 Colour = Color(255, 51, 255, 255),
2374 Side = 1,
2375 Rank = 14,
2376 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2377 Regiment = "Medical Trooper",
2378} )
2379
2380TEAM_MEDICAL_COLO = CreateTeam( "MT Colonel", {
2381 Description = "Member of the Medical Trooper Core",
2382 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2383 Colour = Color(255, 51, 255, 255),
2384 Side = 1,
2385 Rank = 14,
2386 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2387 Regiment = "Medical Trooper",
2388} )
2389
2390TEAM_MEDICAL_HCOLO = CreateTeam( "MT High Colonel", {
2391 Description = "Member of the Medical Trooper Core",
2392 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2393 Colour = Color(255, 51, 255, 255),
2394 Side = 1,
2395 Rank = 15,
2396 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2397 Regiment = "Medical Trooper",
2398} )
2399
2400TEAM_MEDICAL_CMD = CreateTeam( "MT Commander", {
2401 Description = "Commander of the Medical Trooper Core",
2402 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2403 Colour = Color(255, 51, 255, 255),
2404 Side = 1,
2405 Rank = 16,
2406 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2407 Regiment = "Medical Trooper",
2408} )
2409
2410TEAM_MEDICAL_BRIG = CreateTeam( "MT Brigadier", {
2411 Description = "Commander of the Medical Trooper Core",
2412 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2413 Colour = Color(255, 51, 255, 255),
2414 Side = 1,
2415 Rank = 17,
2416 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2417 Regiment = "Medical Trooper",
2418} )
2419
2420TEAM_MEDICAL_MAJG = CreateTeam( "MT Major General", {
2421 Description = "Commander of the Medical Trooper Core",
2422 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2423 Colour = Color(255, 51, 255, 255),
2424 Side = 1,
2425 Rank = 18,
2426 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2427 Regiment = "Medical Trooper",
2428} )
2429
2430TEAM_MEDICAL_LTG = CreateTeam( "MT Lieutenant General", {
2431 Description = "Commander of the Medical Trooper Core",
2432 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2433 Colour = Color(255, 51, 255, 255),
2434 Side = 1,
2435 Rank = 19,
2436 Model = "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl",
2437 Regiment = "Medical Trooper",
2438} )
2439
2440TEAM_MEDICAL_GEN = CreateTeam( "MT General", {
2441 Description = "General of the Medical Trooper Core",
2442 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "tfa_swch_dlt19"},
2443 Colour = Color(255, 51, 255, 255),
2444 Side = 1,
2445 Rank = 20,
2446 Model = "models/sono/swbf3/shadow.mdl",
2447 Regiment = "Medical Trooper",
2448} )
2449
2450TEAM_SHOCK_PVT = CreateTeam( "SK Private", {
2451 Description = "Member of the Shock Trooper Battalion",
2452 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser", "tfa_swch_dlt19", "tfa_swch_se14c"},
2453 Colour = Color(255, 51, 51, 255),
2454 Side = 1,
2455 Rank = 1,
2456 Model = "models/sono/shocktrooper/trooper.mdl",
2457 Regiment = "Shock Trooper",
2458} )
2459
2460TEAM_SHOCK_PFC = CreateTeam( "SK Private First Class", {
2461 Description = "Member of the Shock Trooper Battalion",
2462 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser", "tfa_swch_dlt19", "tfa_swch_se14c"},
2463 Colour = Color(255, 51, 51, 255),
2464 Side = 1,
2465 Rank = 2,
2466 Model = "models/sono/shocktrooper/trooper.mdl",
2467 Regiment = "Shock Trooper",
2468} )
2469
2470TEAM_SHOCK_LCPL = CreateTeam( "SK Lance Corporal", {
2471 Description = "Member of the Shock Trooper Battalion",
2472 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser", "tfa_swch_dlt19", "tfa_swch_se14c"},
2473 Colour = Color(255, 51, 51, 255),
2474 Side = 1,
2475 Rank = 3,
2476 Model = "models/sono/shocktrooper/trooper.mdl",
2477 Regiment = "Shock Trooper",
2478} )
2479
2480TEAM_SHOCK_CPL = CreateTeam( "SK Corporal", {
2481 Description = "Member of the Shock Trooper Battalion",
2482 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser", "tfa_swch_dlt19", "tfa_swch_se14c"},
2483 Colour = Color(255, 51, 51, 255),
2484 Side = 1,
2485 Rank = 4,
2486 Model = "models/sono/shocktrooper/trooper.mdl",
2487 Regiment = "Shock Trooper",
2488} )
2489
2490TEAM_SHOCK_SGT = CreateTeam( "SK Sergeant", {
2491 Description = "Member of the Shock Trooper Battalion",
2492 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser", "tfa_swch_se14c"},
2493 Colour = Color(255, 51, 51, 255),
2494 Side = 1,
2495 Rank = 5,
2496 Model = "models/sono/shocktrooper/sergeant.mdl",
2497 Regiment = "Shock Trooper",
2498} )
2499
2500TEAM_SHOCK_SSGT = CreateTeam( "SK Staff Sergeant", {
2501 Description = "Member of the Shock Trooper Battalion",
2502 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser", "tfa_swch_se14c"},
2503 Colour = Color(255, 51, 51, 255),
2504 Side = 1,
2505 Rank = 6,
2506 Model = "models/sono/shocktrooper/sergeant.mdl",
2507 Regiment = "Shock Trooper",
2508} )
2509
2510TEAM_SHOCK_MSGT = CreateTeam( "SK Master Sergeant", {
2511 Description = "Member of the Shock Trooper Battalion",
2512 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser", "tfa_swch_se14c"},
2513 Colour = Color(255, 51, 51, 255),
2514 Side = 1,
2515 Rank = 7,
2516 Model = "models/sono/shocktrooper/sergeant.mdl",
2517 Regiment = "Shock Trooper",
2518} )
2519
2520TEAM_SHOCK_OFFICERCADET = CreateTeam( "SK Officer Cadet", {
2521 Description = "Member of the Shock Trooper Battalion",
2522 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2523 Colour = Color(255, 51, 51, 255),
2524 Side = 1,
2525 Rank = 8,
2526 Model = "models/sono/shocktrooper/officer.mdl",
2527 Regiment = "Shock Trooper",
2528} )
2529
2530TEAM_SHOCK_WO = CreateTeam( "SK Warrant Officer", {
2531 Description = "Member of the Shock Trooper Battalion",
2532 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2533 Colour = Color(255, 51, 51, 255),
2534 Side = 1,
2535 Rank = 9,
2536 Model = "models/sono/shocktrooper/officer.mdl",
2537 Regiment = "Shock Trooper",
2538} )
2539
2540TEAM_SHOCK_LT = CreateTeam( "SK Lieutenant", {
2541 Description = "Member of the Shock Trooper Battalion",
2542 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2543 Colour = Color(255, 51, 51, 255),
2544 Side = 1,
2545 Rank = 10,
2546 Model = "models/sono/shocktrooper/officer.mdl",
2547 Regiment = "Shock Trooper",
2548} )
2549
2550TEAM_SHOCK_FLT = CreateTeam( "SK First Lieutenant", {
2551 Description = "Member of the Shock Trooper Battalion",
2552 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2553 Colour = Color(255, 51, 51, 255),
2554 Side = 1,
2555 Rank = 11,
2556 Model = "models/sono/shocktrooper/officer.mdl",
2557 Regiment = "Shock Trooper",
2558} )
2559
2560TEAM_SHOCK_CAPT = CreateTeam( "SK Captain", {
2561 Description = "Member of the Shock Trooper Battalion",
2562 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2563 Colour = Color(255, 51, 51, 255),
2564 Side = 1,
2565 Rank = 12,
2566 Model = "models/sono/shocktrooper/officer.mdl",
2567 Regiment = "Shock Trooper",
2568} )
2569
2570TEAM_SHOCK_MAJ = CreateTeam( "SK Major", {
2571 Description = "Member of the Shock Trooper Battalion",
2572 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2573 Colour = Color(255, 51, 51, 255),
2574 Side = 1,
2575 Rank = 13,
2576 Model = "models/sono/shocktrooper/officer.mdl",
2577 Regiment = "Shock Trooper",
2578} )
2579
2580TEAM_SHOCK_COLO = CreateTeam( "SK Colonel", {
2581 Description = "Member of the Shock Trooper Battalion",
2582 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2583 Colour = Color(255, 51, 51, 255),
2584 Side = 1,
2585 Rank = 14,
2586 Model = "models/sono/shocktrooper/officer.mdl",
2587 Regiment = "Shock Trooper",
2588} )
2589
2590TEAM_SHOCK_HCOLO = CreateTeam( "SK High Colonel", {
2591 Description = "Member of the Shock Trooper Battalion",
2592 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2593 Colour = Color(255, 51, 51, 255),
2594 Side = 1,
2595 Rank = 15,
2596 Model = "models/sono/shocktrooper/officer.mdl",
2597 Regiment = "Shock Trooper",
2598} )
2599
2600TEAM_SHOCK_CMD = CreateTeam( "SK Commander", {
2601 Description = "Commander of the Shock Trooper Battalion",
2602 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2603 Colour = Color(255, 51, 51, 255),
2604 Side = 1,
2605 Rank = 16,
2606 Model = "models/sono/shocktrooper/commander.mdl",
2607 Regiment = "Shock Trooper",
2608} )
2609
2610TEAM_SHOCK_BRIG = CreateTeam( "SK Brigadier", {
2611 Description = "Commander of the Shock Trooper Battalion",
2612 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2613 Colour = Color(255, 51, 51, 255),
2614 Side = 1,
2615 Rank = 17,
2616 Model = "models/sono/shocktrooper/commander.mdl",
2617 Regiment = "Shock Trooper",
2618} )
2619
2620TEAM_SHOCK_MAJG = CreateTeam( "SK Major General", {
2621 Description = "Commander of the Shock Trooper Battalion",
2622 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2623 Colour = Color(255, 51, 51, 255),
2624 Side = 1,
2625 Rank = 18,
2626 Model = "models/sono/shocktrooper/commander.mdl",
2627 Regiment = "Shock Trooper",
2628} )
2629
2630TEAM_SHOCK_LTG = CreateTeam( "SK Lieutenant General", {
2631 Description = "Commander of the Shock Trooper Battalion",
2632 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2633 Colour = Color(255, 51, 51, 255),
2634 Side = 1,
2635 Rank = 19,
2636 Model = "models/sono/shocktrooper/commander.mdl",
2637 Regiment = "Shock Trooper",
2638} )
2639
2640TEAM_SHOCK_GEN = CreateTeam( "SK General", {
2641 Description = "General of the Shock Trooper Battalion",
2642 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser"},
2643 Colour = Color(255, 51, 51, 255),
2644 Side = 1,
2645 Rank = 20,
2646 Model = "models/sono/swbf3/shadow.mdl",
2647 Regiment = "Shock Trooper",
2648} )
2649
2650TEAM_RIOT_PVT = CreateTeam( "RT Private", {
2651 Description = "Member of the Riot Trooper Company",
2652 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2653 Colour = Color(255, 51, 51, 255),
2654 Side = 1,
2655 Rank = 1,
2656 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2657 Regiment = "Riot Trooper",
2658} )
2659
2660TEAM_RIOT_PFC = CreateTeam( "RT Private First Class", {
2661 Description = "Member of the Riot Trooper Company",
2662 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2663 Colour = Color(255, 51, 51, 255),
2664 Side = 1,
2665 Rank = 2,
2666 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2667 Regiment = "Riot Trooper",
2668} )
2669
2670TEAM_RIOT_LCPL = CreateTeam( "RT Lance Corporal", {
2671 Description = "Member of the Riot Trooper Company",
2672 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2673 Colour = Color(255, 51, 51, 255),
2674 Side = 1,
2675 Rank = 3,
2676 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2677 Regiment = "Riot Trooper",
2678} )
2679
2680TEAM_RIOT_CPL = CreateTeam( "RT Corporal", {
2681 Description = "Member of the Riot Trooper Company",
2682 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2683 Colour = Color(255, 51, 51, 255),
2684 Side = 1,
2685 Rank = 4,
2686 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2687 Regiment = "Riot Trooper",
2688} )
2689
2690TEAM_RIOT_SGT = CreateTeam( "RT Sergeant", {
2691 Description = "Member of the Riot Trooper Company",
2692 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2693 Colour = Color(255, 51, 51, 255),
2694 Side = 1,
2695 Rank = 5,
2696 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2697 Regiment = "Riot Trooper",
2698} )
2699
2700TEAM_RIOT_SSGT = CreateTeam( "RT Staff Sergeant", {
2701 Description = "Member of the Riot Trooper Company",
2702 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2703 Colour = Color(255, 51, 51, 255),
2704 Side = 1,
2705 Rank = 6,
2706 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2707 Regiment = "Riot Trooper",
2708} )
2709
2710TEAM_RIOT_MSGT = CreateTeam( "RT Master Sergeant", {
2711 Description = "Member of the Riot Trooper Company",
2712 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2713 Colour = Color(255, 51, 51, 255),
2714 Side = 1,
2715 Rank = 7,
2716 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2717 Regiment = "Riot Trooper",
2718} )
2719
2720TEAM_RIOT_OFFICERCADET = CreateTeam( "RT Officer Cadet", {
2721 Description = "Member of the Riot Trooper Company",
2722 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2723 Colour = Color(255, 51, 51, 255),
2724 Side = 1,
2725 Rank = 8,
2726 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2727 Regiment = "Riot Trooper",
2728} )
2729
2730TEAM_RIOT_WO = CreateTeam( "RT Warrant Officer", {
2731 Description = "Member of the Riot Trooper Company",
2732 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2733 Colour = Color(255, 51, 51, 255),
2734 Side = 1,
2735 Rank = 9,
2736 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2737 Regiment = "Riot Trooper",
2738} )
2739
2740TEAM_RIOT_LT = CreateTeam( "RT Lieutenant", {
2741 Description = "Member of the Riot Trooper Company",
2742 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2743 Colour = Color(255, 51, 51, 255),
2744 Side = 1,
2745 Rank = 10,
2746 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2747 Regiment = "Riot Trooper",
2748} )
2749
2750TEAM_RIOT_FLT = CreateTeam( "RT First Lieutenant", {
2751 Description = "Member of the Riot Trooper Company",
2752 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2753 Colour = Color(255, 51, 51, 255),
2754 Side = 1,
2755 Rank = 11,
2756 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2757 Regiment = "Riot Trooper",
2758} )
2759
2760TEAM_RIOT_CAPT = CreateTeam( "RT Captain", {
2761 Description = "Member of the Riot Trooper Company",
2762 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2763 Colour = Color(255, 51, 51, 255),
2764 Side = 1,
2765 Rank = 12,
2766 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2767 Regiment = "Riot Trooper",
2768} )
2769
2770TEAM_RIOT_MAJ = CreateTeam( "RT Major", {
2771 Description = "Member of the Riot Trooper Company",
2772 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2773 Colour = Color(255, 51, 51, 255),
2774 Side = 1,
2775 Rank = 13,
2776 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2777 Regiment = "Riot Trooper",
2778} )
2779
2780TEAM_RIOT_COLO = CreateTeam( "RT Colonel", {
2781 Description = "Member of the Riot Trooper Company",
2782 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2783 Colour = Color(255, 51, 51, 255),
2784 Side = 1,
2785 Rank = 14,
2786 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2787 Regiment = "Riot Trooper",
2788} )
2789
2790TEAM_RIOT_HCOLO = CreateTeam( "RT High Colonel", {
2791 Description = "Member of the Riot Trooper Company",
2792 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2793 Colour = Color(255, 51, 51, 255),
2794 Side = 1,
2795 Rank = 15,
2796 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2797 Regiment = "Riot Trooper",
2798} )
2799
2800TEAM_RIOT_CMD = CreateTeam( "RT Commander", {
2801 Description = "Commander of the Riot Trooper Company",
2802 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2803 Colour = Color(255, 51, 51, 255),
2804 Side = 1,
2805 Rank = 16,
2806 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2807 Regiment = "Riot Trooper",
2808} )
2809
2810TEAM_RIOT_BRIG = CreateTeam( "RT Brigadier", {
2811 Description = "Commander of the Riot Trooper Company",
2812 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2813 Colour = Color(255, 51, 51, 255),
2814 Side = 1,
2815 Rank = 17,
2816 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2817 Regiment = "Riot Trooper",
2818} )
2819
2820TEAM_RIOT_MAJG = CreateTeam( "RT Major General", {
2821 Description = "Commander of the Riot Trooper Company",
2822 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2823 Colour = Color(255, 51, 51, 255),
2824 Side = 1,
2825 Rank = 18,
2826 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2827 Regiment = "Riot Trooper",
2828} )
2829
2830TEAM_RIOT_LTG = CreateTeam( "RT Lieutenant General", {
2831 Description = "Commander of the Riot Trooper Company",
2832 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2833 Colour = Color(255, 51, 51, 255),
2834 Side = 1,
2835 Rank = 19,
2836 Model = "models/player/venator/tk_krieg/tk_krieg.mdl",
2837 Regiment = "Riot Trooper",
2838} )
2839
2840TEAM_RIOT_GEN = CreateTeam( "RT General", {
2841 Description = "General of the Riot Trooper Company",
2842 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_sw_cisshot", "weapon_taser", "weapon_policeshield"},
2843 Colour = Color(255, 51, 51, 255),
2844 Side = 1,
2845 Rank = 20,
2846 Model = "models/sono/swbf3/shadow.mdl",
2847 Regiment = "Riot Trooper",
2848} )
2849
2850TEAM_VF_PVT = CreateTeam( "VF Private", {
2851 Description = "Member of the Vader's Fist Trooper Battalion",
2852 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2853 Colour = Color(51, 51, 255, 255),
2854 Side = 1,
2855 Rank = 1,
2856 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2857 Regiment = "Vader's Fist Trooper",
2858} )
2859
2860TEAM_VF_PFC = CreateTeam( "VF Private First Class", {
2861 Description = "Member of the Vader's Fist Trooper Battalion",
2862 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2863 Colour = Color(51, 51, 255, 255),
2864 Side = 1,
2865 Rank = 2,
2866 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2867 Regiment = "Vader's Fist Trooper",
2868} )
2869
2870TEAM_VF_LCPL = CreateTeam( "VF Lance Corporal", {
2871 Description = "Member of the Vader's Fist Trooper Battalion",
2872 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2873 Colour = Color(51, 51, 255, 255),
2874 Side = 1,
2875 Rank = 3,
2876 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2877 Regiment = "Vader's Fist Trooper",
2878} )
2879
2880TEAM_VF_CPL = CreateTeam( "VF Corporal", {
2881 Description = "Member of the Vader's Fist Trooper Battalion",
2882 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2883 Colour = Color(51, 51, 255, 255),
2884 Side = 1,
2885 Rank = 4,
2886 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2887 Regiment = "Vader's Fist Trooper",
2888} )
2889
2890TEAM_VF_SGT = CreateTeam( "VF Sergeant", {
2891 Description = "Member of the Vader's Fist Trooper Battalion",
2892 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2893 Colour = Color(51, 51, 255, 255),
2894 Side = 1,
2895 Rank = 5,
2896 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2897 Regiment = "Vader's Fist Trooper",
2898} )
2899
2900TEAM_VF_SSGT = CreateTeam( "VF Staff Sergeant", {
2901 Description = "Member of the Vader's Fist Trooper Battalion",
2902 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2903 Colour = Color(51, 51, 255, 255),
2904 Side = 1,
2905 Rank = 6,
2906 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2907 Regiment = "Vader's Fist Trooper",
2908} )
2909
2910TEAM_VF_MSGT = CreateTeam( "VF Master Sergeant", {
2911 Description = "Member of the Vader's Fist Trooper Battalion",
2912 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2913 Colour = Color(51, 51, 255, 255),
2914 Side = 1,
2915 Rank = 7,
2916 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2917 Regiment = "Vader's Fist Trooper",
2918} )
2919
2920TEAM_VF_OFFICERCADET = CreateTeam( "VF Officer Cadet", {
2921 Description = "Member of the Vader's Fist Trooper Battalion",
2922 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2923 Colour = Color(51, 51, 255, 255),
2924 Side = 1,
2925 Rank = 8,
2926 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2927 Regiment = "Vader's Fist Trooper",
2928} )
2929
2930TEAM_VF_WO = CreateTeam( "VF Warrant Officer", {
2931 Description = "Member of the Vader's Fist Trooper Battalion",
2932 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2933 Colour = Color(51, 51, 255, 255),
2934 Side = 1,
2935 Rank = 9,
2936 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2937 Regiment = "Vader's Fist Trooper",
2938} )
2939
2940TEAM_VF_LT = CreateTeam( "VF Lieutenant", {
2941 Description = "Member of the Vader's Fist Trooper Battalion",
2942 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2943 Colour = Color(51, 51, 255, 255),
2944 Side = 1,
2945 Rank = 10,
2946 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2947 Regiment = "Vader's Fist Trooper",
2948} )
2949
2950TEAM_VF_FLT = CreateTeam( "VF First Lieutenant", {
2951 Description = "Member of the Vader's Fist Trooper Battalion",
2952 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2953 Colour = Color(51, 51, 255, 255),
2954 Side = 1,
2955 Rank = 11,
2956 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2957 Regiment = "Vader's Fist Trooper",
2958} )
2959
2960TEAM_VF_CAPT = CreateTeam( "VF Captain", {
2961 Description = "Member of the Vader's Fist Trooper Battalion",
2962 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2963 Colour = Color(51, 51, 255, 255),
2964 Side = 1,
2965 Rank = 12,
2966 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2967 Regiment = "Vader's Fist Trooper",
2968} )
2969
2970TEAM_VF_MAJ = CreateTeam( "VF Major", {
2971 Description = "Member of the Vader's Fist Trooper Battalion",
2972 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2973 Colour = Color(51, 51, 255, 255),
2974 Side = 1,
2975 Rank = 13,
2976 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2977 Regiment = "Vader's Fist Trooper",
2978} )
2979
2980TEAM_VF_COLO = CreateTeam( "VF Colonel", {
2981 Description = "Member of the Vader's Fist Trooper Battalion",
2982 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2983 Colour = Color(51, 51, 255, 255),
2984 Side = 1,
2985 Rank = 14,
2986 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2987 Regiment = "Vader's Fist Trooper",
2988} )
2989
2990TEAM_VF_HCOLO = CreateTeam( "VF High Colonel", {
2991 Description = "Member of the Vader's Fist Trooper Battalion",
2992 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c"},
2993 Colour = Color(51, 51, 255, 255),
2994 Side = 1,
2995 Rank = 15,
2996 Model = "models/player/hydro/tk_commander/tk_commander.mdl",
2997 Regiment = "Vader's Fist Trooper",
2998} )
2999
3000TEAM_VF_CMD = CreateTeam( "VF Commander", {
3001 Description = "Commander of the Vader's Fist Trooper Battalion",
3002 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c", "tfa_sw_dc17dual"},
3003 Colour = Color(51, 51, 255, 255),
3004 Side = 1,
3005 Rank = 16,
3006 Model = "models/player/venator/tk_arc/tk_vertigo.mdl",
3007 Regiment = "Vader's Fist Trooper",
3008} )
3009
3010TEAM_VF_BRIG = CreateTeam( "VF Brigadier", {
3011 Description = "Commander of the Vader's Fist Trooper Battalion",
3012 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c", "tfa_sw_dc17dual"},
3013 Colour = Color(51, 51, 255, 255),
3014 Side = 1,
3015 Rank = 17,
3016 Model = "models/player/venator/501st_stormtrooper/501st_stormtrooper.mdl",
3017 Regiment = "Vader's Fist Trooper",
3018} )
3019
3020TEAM_VF_MAJG = CreateTeam( "VF Major General", {
3021 Description = "Commander of the Vader's Fist Trooper Battalion",
3022 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c", "tfa_sw_dc17dual"},
3023 Colour = Color(51, 51, 255, 255),
3024 Side = 1,
3025 Rank = 18,
3026 Model = "models/player/venator/501st_stormtrooper/501st_stormtrooper.mdl",
3027 Regiment = "Vader's Fist Trooper",
3028} )
3029
3030TEAM_VF_LTG = CreateTeam( "VF Lieutenant General", {
3031 Description = "Commander of the Vader's Fist Trooper Battalion",
3032 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c", "tfa_sw_dc17dual"},
3033 Colour = Color(51, 51, 255, 255),
3034 Side = 1,
3035 Rank = 19,
3036 Model = "models/player/venator/501st_stormtrooper/501st_stormtrooper.mdl",
3037 Regiment = "Vader's Fist Trooper",
3038} )
3039
3040TEAM_VF_GEN = CreateTeam( "VF General", {
3041 Description = "General of the Vader's Fist Trooper Battalion",
3042 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dlt19", "tfa_swch_se14c", "tfa_sw_dc17dual"},
3043 Colour = Color(51, 51, 255, 255),
3044 Side = 1,
3045 Rank = 20,
3046 Model = "models/sono/swbf3/shadow.mdl",
3047 Regiment = "Vader's Fist Trooper",
3048} )
3049
3050TEAM_TERROR_PVT = CreateTeam( "TT Private", {
3051 Description = "Member of the Terror Trooper Squad",
3052 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3053 Colour = Color(157, 157, 157, 255),
3054 Side = 1,
3055 Rank = 1,
3056 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3057 Regiment = "Terror Trooper",
3058} )
3059
3060TEAM_TERROR_PFC = CreateTeam( "TT Private First Class", {
3061 Description = "Member of the Terror Trooper Squad",
3062 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3063 Colour = Color(157, 157, 157, 255),
3064 Side = 1,
3065 Rank = 2,
3066 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3067 Regiment = "Terror Trooper",
3068} )
3069
3070TEAM_TERROR_LCPL = CreateTeam( "TT Lance Corporal", {
3071 Description = "Member of the Terror Trooper Squad",
3072 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3073 Colour = Color(157, 157, 157, 255),
3074 Side = 1,
3075 Rank = 3,
3076 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3077 Regiment = "Terror Trooper",
3078} )
3079
3080TEAM_TERROR_CPL = CreateTeam( "TT Corporal", {
3081 Description = "Member of the Terror Trooper Squad",
3082 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3083 Colour = Color(157, 157, 157, 255),
3084 Side = 1,
3085 Rank = 4,
3086 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3087 Regiment = "Terror Trooper",
3088} )
3089
3090TEAM_TERROR_SGT = CreateTeam( "TT Sergeant", {
3091 Description = "Member of the Terror Trooper Squad",
3092 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3093 Colour = Color(157, 157, 157, 255),
3094 Side = 1,
3095 Rank = 5,
3096 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3097 Regiment = "Terror Trooper",
3098} )
3099
3100TEAM_TERROR_SSGT = CreateTeam( "TT Staff Sergeant", {
3101 Description = "Member of the Terror Trooper Squad",
3102 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3103 Colour = Color(157, 157, 157, 255),
3104 Side = 1,
3105 Rank = 6,
3106 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3107 Regiment = "Terror Trooper",
3108} )
3109
3110TEAM_TERROR_MSGT = CreateTeam( "TT Master Sergeant", {
3111 Description = "Member of the Terror Trooper Squad",
3112 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3113 Colour = Color(157, 157, 157, 255),
3114 Side = 1,
3115 Rank = 7,
3116 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3117 Regiment = "Terror Trooper",
3118} )
3119
3120TEAM_TERROR_OFFICERCADET = CreateTeam( "TT Officer Cadet", {
3121 Description = "Member of the Terror Trooper Squad",
3122 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3123 Colour = Color(157, 157, 157, 255),
3124 Side = 1,
3125 Rank = 8,
3126 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3127 Regiment = "Terror Trooper",
3128} )
3129
3130TEAM_TERROR_WO = CreateTeam( "TT Warrant Officer", {
3131 Description = "Member of the Terror Trooper Squad",
3132 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3133 Colour = Color(157, 157, 157, 255),
3134 Side = 1,
3135 Rank = 9,
3136 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3137 Regiment = "Terror Trooper",
3138} )
3139
3140TEAM_TERROR_LT = CreateTeam( "TT Lieutenant", {
3141 Description = "Member of the Terror Trooper Squad",
3142 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3143 Colour = Color(157, 157, 157, 255),
3144 Side = 1,
3145 Rank = 10,
3146 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3147 Regiment = "Terror Trooper",
3148} )
3149
3150TEAM_TERROR_FLT = CreateTeam( "TT First Lieutenant", {
3151 Description = "Member of the Terror Trooper Squad",
3152 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3153 Colour = Color(157, 157, 157, 255),
3154 Side = 1,
3155 Rank = 11,
3156 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3157 Regiment = "Terror Trooper",
3158} )
3159
3160TEAM_TERROR_CAPT = CreateTeam( "TT Captain", {
3161 Description = "Member of the Terror Trooper Squad",
3162 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3163 Colour = Color(157, 157, 157, 255),
3164 Side = 1,
3165 Rank = 12,
3166 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3167 Regiment = "Terror Trooper",
3168} )
3169
3170TEAM_TERROR_MAJ = CreateTeam( "TT Major", {
3171 Description = "Member of the Terror Trooper Squad",
3172 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3173 Colour = Color(157, 157, 157, 255),
3174 Side = 1,
3175 Rank = 13,
3176 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3177 Regiment = "Terror Trooper",
3178} )
3179
3180TEAM_TERROR_COLO = CreateTeam( "TT Colonel", {
3181 Description = "Member of the Terror Trooper Squad",
3182 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3183 Colour = Color(157, 157, 157, 255),
3184 Side = 1,
3185 Rank = 14,
3186 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3187 Regiment = "Terror Trooper",
3188} )
3189
3190TEAM_TERROR_HCOLO = CreateTeam( "TT High Colonel", {
3191 Description = "Member of the Terror Trooper Squad",
3192 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3193 Colour = Color(157, 157, 157, 255),
3194 Side = 1,
3195 Rank = 15,
3196 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3197 Regiment = "Terror Trooper",
3198} )
3199
3200TEAM_TERROR_CMD = CreateTeam( "TT Commander", {
3201 Description = "Commander of the Terror Trooper Squad",
3202 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3203 Colour = Color(157, 157, 157, 255),
3204 Side = 1,
3205 Rank = 16,
3206 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3207 Regiment = "Terror Trooper",
3208} )
3209
3210TEAM_TERROR_BRIG = CreateTeam( "TT Brigadier", {
3211 Description = "Commander of the Terror Trooper Squad",
3212 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3213 Colour = Color(157, 157, 157, 255),
3214 Side = 1,
3215 Rank = 17,
3216 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3217 Regiment = "Terror Trooper",
3218} )
3219
3220TEAM_TERROR_MAJG = CreateTeam( "TT Major General", {
3221 Description = "Commander of the Terror Trooper Squad",
3222 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3223 Colour = Color(157, 157, 157, 255),
3224 Side = 1,
3225 Rank = 18,
3226 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3227 Regiment = "Terror Trooper",
3228} )
3229
3230TEAM_TERROR_LTG = CreateTeam( "TT Lieutenant General", {
3231 Description = "Commander of the Terror Trooper Squad",
3232 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3233 Colour = Color(157, 157, 157, 255),
3234 Side = 1,
3235 Rank = 19,
3236 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
3237 Regiment = "Terror Trooper",
3238} )
3239
3240TEAM_TERROR_GEN = CreateTeam( "TT General", {
3241 Description = "General of the Terror Trooper Squad",
3242 Weapons = {"weapon_camo", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
3243 Colour = Color(157, 157, 157, 255),
3244 Side = 1,
3245 Rank = 20,
3246 Model = "models/sono/swbf3/shadow.mdl",
3247 Regiment = "Terror Trooper",
3248} )
3249
3250TEAM_MAGMA_PVT = CreateTeam( "MG Private", {
3251 Description = "Member of the Magma Trooper Battalion",
3252 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3253 Colour = Color(182, 255, 0, 255),
3254 Side = 1,
3255 Rank = 1,
3256 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3257 Regiment = "Magma Trooper",
3258} )
3259
3260TEAM_MAGMA_PFC = CreateTeam( "MG Private First Class", {
3261 Description = "Member of the Magma Trooper Battalion",
3262 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3263 Colour = Color(182, 255, 0, 255),
3264 Side = 1,
3265 Rank = 2,
3266 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3267 Regiment = "Magma Trooper",
3268} )
3269
3270TEAM_MAGMA_LCPL = CreateTeam( "MG Lance Corporal", {
3271 Description = "Member of the Magma Trooper Battalion",
3272 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3273 Colour = Color(182, 255, 0, 255),
3274 Side = 1,
3275 Rank = 3,
3276 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3277 Regiment = "Magma Trooper",
3278} )
3279
3280TEAM_MAGMA_CPL = CreateTeam( "MG Corporal", {
3281 Description = "Member of the Magma Trooper Battalion",
3282 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3283 Colour = Color(182, 255, 0, 255),
3284 Side = 1,
3285 Rank = 4,
3286 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3287 Regiment = "Magma Trooper",
3288} )
3289
3290TEAM_MAGMA_SGT = CreateTeam( "MG Sergeant", {
3291 Description = "Member of the Magma Trooper Battalion",
3292 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3293 Colour = Color(182, 255, 0, 255),
3294 Side = 1,
3295 Rank = 5,
3296 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3297 Regiment = "Magma Trooper",
3298} )
3299
3300TEAM_MAGMA_SSGT = CreateTeam( "MG Staff Sergeant", {
3301 Description = "Member of the Magma Trooper Battalion",
3302 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3303 Colour = Color(182, 255, 0, 255),
3304 Side = 1,
3305 Rank = 6,
3306 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3307 Regiment = "Magma Trooper",
3308} )
3309
3310TEAM_MAGMA_MSGT = CreateTeam( "MG Master Sergeant", {
3311 Description = "Member of the Magma Trooper Battalion",
3312 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3313 Colour = Color(182, 255, 0, 255),
3314 Side = 1,
3315 Rank = 7,
3316 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3317 Regiment = "Magma Trooper",
3318} )
3319
3320TEAM_MAGMA_OFFICERCADET = CreateTeam( "MG Officer Cadet", {
3321 Description = "Member of the Magma Trooper Battalion",
3322 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3323 Colour = Color(182, 255, 0, 255),
3324 Side = 1,
3325 Rank = 8,
3326 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3327 Regiment = "Magma Trooper",
3328} )
3329
3330TEAM_MAGMA_WO = CreateTeam( "MG Warrant Officer", {
3331 Description = "Member of the Magma Trooper Battalion",
3332 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3333 Colour = Color(182, 255, 0, 255),
3334 Side = 1,
3335 Rank = 9,
3336 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3337 Regiment = "Magma Trooper",
3338} )
3339
3340TEAM_MAGMA_LT = CreateTeam( "MG Lieutenant", {
3341 Description = "Member of the Magma Trooper Battalion",
3342 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3343 Colour = Color(182, 255, 0, 255),
3344 Side = 1,
3345 Rank = 10,
3346 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3347 Regiment = "Magma Trooper",
3348} )
3349
3350TEAM_MAGMA_FLT = CreateTeam( "MG First Lieutenant", {
3351 Description = "Member of the Magma Trooper Battalion",
3352 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3353 Colour = Color(182, 255, 0, 255),
3354 Side = 1,
3355 Rank = 11,
3356 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3357 Regiment = "Magma Trooper",
3358} )
3359
3360TEAM_MAGMA_CAPT = CreateTeam( "MG Captain", {
3361 Description = "Member of the Magma Trooper Battalion",
3362 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3363 Colour = Color(182, 255, 0, 255),
3364 Side = 1,
3365 Rank = 12,
3366 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3367 Regiment = "Magma Trooper",
3368} )
3369
3370TEAM_MAGMA_MAJ = CreateTeam( "MG Major", {
3371 Description = "Member of the Magma Trooper Battalion",
3372 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3373 Colour = Color(182, 255, 0, 255),
3374 Side = 1,
3375 Rank = 13,
3376 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3377 Regiment = "Magma Trooper",
3378} )
3379
3380TEAM_MAGMA_COLO = CreateTeam( "MG Colonel", {
3381 Description = "Member of the Magma Trooper Battalion",
3382 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3383 Colour = Color(182, 255, 0, 255),
3384 Side = 1,
3385 Rank = 14,
3386 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3387 Regiment = "Magma Trooper",
3388} )
3389
3390TEAM_MAGMA_HCOLO = CreateTeam( "MG High Colonel", {
3391 Description = "Member of the Magma Trooper Battalion",
3392 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3393 Colour = Color(182, 255, 0, 255),
3394 Side = 1,
3395 Rank = 15,
3396 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3397 Regiment = "Magma Trooper",
3398} )
3399
3400TEAM_MAGMA_CMD = CreateTeam( "MG Commander", {
3401 Description = "Commander of the Magma Trooper Battalion",
3402 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3403 Colour = Color(182, 255, 0, 255),
3404 Side = 1,
3405 Rank = 16,
3406 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3407 Regiment = "Magma Trooper",
3408} )
3409
3410TEAM_MAGMA_BRIG = CreateTeam( "MG Brigadier", {
3411 Description = "Commander of the Magma Trooper Battalion",
3412 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3413 Colour = Color(182, 255, 0, 255),
3414 Side = 1,
3415 Rank = 17,
3416 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3417 Regiment = "Magma Trooper",
3418} )
3419
3420TEAM_MAGMA_MAJG = CreateTeam( "MG Major General", {
3421 Description = "Commander of the Magma Trooper Battalion",
3422 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3423 Colour = Color(182, 255, 0, 255),
3424 Side = 1,
3425 Rank = 18,
3426 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3427 Regiment = "Magma Trooper",
3428} )
3429
3430TEAM_MAGMA_LTG = CreateTeam( "MG Lieutenant General", {
3431 Description = "Commander of the Magma Trooper Battalion",
3432 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3433 Colour = Color(182, 255, 0, 255),
3434 Side = 1,
3435 Rank = 19,
3436 Model = "models/player/hydro/magmatrooper/magmatrooper.mdl",
3437 Regiment = "Magma Trooper",
3438} )
3439
3440TEAM_MAGMA_GEN = CreateTeam( "MG General", {
3441 Description = "General of the Magma Trooper Battalion",
3442 Weapons = {"tfa_swch_dlt19", "tfa_swch_e11", "tfa_swch_se14c"},
3443 Colour = Color(182, 255, 0, 255),
3444 Side = 1,
3445 Rank = 20,
3446 Model = "models/sono/swbf3/shadow.mdl",
3447 Regiment = "Magma Trooper",
3448} )
3449
3450TEAM_IMPERIALCOMMANDO_PVT = CreateTeam( "IC Private", {
3451 Description = "Member of the Imperial Commando Unit",
3452 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3453 Colour = Color(82, 173, 239, 255),
3454 Side = 1,
3455 Rank = 1,
3456 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3457 Regiment = "Imperial Commando",
3458} )
3459
3460TEAM_IMPERIALCOMMANDO_PFC = CreateTeam( "IC Private First Class", {
3461 Description = "Member of the Imperial Commando Unit",
3462 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3463 Colour = Color(82, 173, 239, 255),
3464 Side = 1,
3465 Rank = 2,
3466 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3467 Regiment = "Imperial Commando",
3468} )
3469
3470TEAM_IMPERIALCOMMANDO_LCPL = CreateTeam( "IC Lance Corporal", {
3471 Description = "Member of the Imperial Commando Unit",
3472 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3473 Colour = Color(82, 173, 239, 255),
3474 Side = 1,
3475 Rank = 3,
3476 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3477 Regiment = "Imperial Commando",
3478} )
3479
3480TEAM_IMPERIALCOMMANDO_CPL = CreateTeam( "IC Corporal", {
3481 Description = "Member of the Imperial Commando Unit",
3482 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3483 Colour = Color(82, 173, 239, 255),
3484 Side = 1,
3485 Rank = 4,
3486 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3487 Regiment = "Imperial Commando",
3488} )
3489
3490TEAM_IMPERIALCOMMANDO_SGT = CreateTeam( "IC Sergeant", {
3491 Description = "Member of the Imperial Commando Unit",
3492 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3493 Colour = Color(82, 173, 239, 255),
3494 Side = 1,
3495 Rank = 5,
3496 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3497 Regiment = "Imperial Commando",
3498} )
3499
3500TEAM_IMPERIALCOMMANDO_SSGT = CreateTeam( "IC Staff Sergeant", {
3501 Description = "Member of the Imperial Commando Unit",
3502 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3503 Colour = Color(82, 173, 239, 255),
3504 Side = 1,
3505 Rank = 6,
3506 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3507 Regiment = "Imperial Commando",
3508} )
3509
3510TEAM_IMPERIALCOMMANDO_MSGT = CreateTeam( "IC Master Sergeant", {
3511 Description = "Member of the Imperial Commando Unit",
3512 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3513 Colour = Color(82, 173, 239, 255),
3514 Side = 1,
3515 Rank = 7,
3516 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3517 Regiment = "Imperial Commando",
3518} )
3519
3520TEAM_IMPERIALCOMMANDO_OFFICERCADET = CreateTeam( "IC Officer Cadet", {
3521 Description = "Member of the Imperial Commando Unit",
3522 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3523 Colour = Color(82, 173, 239, 255),
3524 Side = 1,
3525 Rank = 8,
3526 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3527 Regiment = "Imperial Commando",
3528} )
3529
3530TEAM_IMPERIALCOMMANDO_WO = CreateTeam( "IC Warrant Officer", {
3531 Description = "Member of the Imperial Commando Unit",
3532 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3533 Colour = Color(82, 173, 239, 255),
3534 Side = 1,
3535 Rank = 9,
3536 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3537 Regiment = "Imperial Commando",
3538} )
3539
3540TEAM_IMPERIALCOMMANDO_LT = CreateTeam( "IC Lieutenant", {
3541 Description = "Member of the Imperial Commando Unit",
3542 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3543 Colour = Color(82, 173, 239, 255),
3544 Side = 1,
3545 Rank = 10,
3546 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3547 Regiment = "Imperial Commando",
3548} )
3549
3550TEAM_IMPERIALCOMMANDO_FLT = CreateTeam( "IC First Lieutenant", {
3551 Description = "Member of the Imperial Commando Unit",
3552 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3553 Colour = Color(82, 173, 239, 255),
3554 Side = 1,
3555 Rank = 11,
3556 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3557 Regiment = "Imperial Commando",
3558} )
3559
3560TEAM_IMPERIALCOMMANDO_CAPT = CreateTeam( "IC Captain", {
3561 Description = "Member of the Imperial Commando Unit",
3562 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3563 Colour = Color(82, 173, 239, 255),
3564 Side = 1,
3565 Rank = 12,
3566 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3567 Regiment = "Imperial Commando",
3568} )
3569
3570TEAM_IMPERIALCOMMANDO_MAJ = CreateTeam( "IC Major", {
3571 Description = "Member of the Imperial Commando Unit",
3572 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3573 Colour = Color(82, 173, 239, 255),
3574 Side = 1,
3575 Rank = 13,
3576 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3577 Regiment = "Imperial Commando",
3578} )
3579
3580TEAM_IMPERIALCOMMANDO_LCOLO = CreateTeam( "IC Lieutenant Colonel", {
3581 Description = "Member of the Imperial Commando Unit",
3582 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3583 Colour = Color(82, 173, 239, 255),
3584 Side = 1,
3585 Rank = 15,
3586 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3587 Regiment = "Imperial Commando",
3588} )
3589
3590TEAM_IMPERIALCOMMANDO_COLO = CreateTeam( "IC Colonel", {
3591 Description = "Member of the Imperial Commando Unit",
3592 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3593 Colour = Color(82, 173, 239, 255),
3594 Side = 1,
3595 Rank = 14,
3596 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3597 Regiment = "Imperial Commando",
3598} )
3599
3600TEAM_IMPERIALCOMMANDO_CMD = CreateTeam( "IC Commander", {
3601 Description = "Commander of the Imperial Commando Unit",
3602 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3603 Colour = Color(82, 173, 239, 255),
3604 Side = 1,
3605 Rank = 16,
3606 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3607 Regiment = "Imperial Commando",
3608} )
3609
3610TEAM_IMPERIALCOMMANDO_BRIG = CreateTeam( "IC Brigadier", {
3611 Description = "Commander of the Imperial Commando Unit",
3612 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3613 Colour = Color(82, 173, 239, 255),
3614 Side = 1,
3615 Rank = 17,
3616 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3617 Regiment = "Imperial Commando",
3618} )
3619
3620TEAM_IMPERIALCOMMANDO_MAJG = CreateTeam( "IC Major General", {
3621 Description = "Commander of the Imperial Commando Unit",
3622 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3623 Colour = Color(82, 173, 239, 255),
3624 Side = 1,
3625 Rank = 18,
3626 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3627 Regiment = "Imperial Commando",
3628} )
3629
3630TEAM_IMPERIALCOMMANDO_LTG = CreateTeam( "IC Lieutenant General", {
3631 Description = "Commander of the Imperial Commando Unit",
3632 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3633 Colour = Color(82, 173, 239, 255),
3634 Side = 1,
3635 Rank = 19,
3636 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3637 Regiment = "Imperial Commando",
3638} )
3639
3640TEAM_IMPERIALCOMMANDO_GEN = CreateTeam( "IC General", {
3641 Description = "General of the Imperial Commando Unit",
3642 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3643 Colour = Color(82, 173, 239, 255),
3644 Side = 1,
3645 Rank = 20,
3646 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
3647 Regiment = "Imperial Commando",
3648} )
3649
3650TEAM_CIC_PVT = CreateTeam( "CIC Private", {
3651 Description = "General of the Imperial Commando Unit",
3652 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3653 Colour = Color(82, 173, 239, 255),
3654 Side = 1,
3655 Rank = 1,
3656 Model = "models/player/omega/starwars/2.mdl",
3657 Regiment = "Cinder Squad",
3658} )
3659
3660TEAM_CIC_PFC = CreateTeam( "CIC Private First Class", {
3661 Description = "General of the Imperial Commando Unit",
3662 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3663 Colour = Color(82, 173, 239, 255),
3664 Side = 1,
3665 Rank = 2,
3666 Model = "models/player/omega/starwars/2.mdl",
3667 Regiment = "Cinder Squad",
3668} )
3669
3670TEAM_CIC_LCPL = CreateTeam( "CIC Lance Corporal", {
3671 Description = "General of the Imperial Commando Unit",
3672 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3673 Colour = Color(82, 173, 239, 255),
3674 Side = 1,
3675 Rank = 3,
3676 Model = "models/player/omega/starwars/2.mdl",
3677 Regiment = "Cinder Squad",
3678} )
3679
3680TEAM_CIC_CPL = CreateTeam( "CIC Corporal", {
3681 Description = "General of the Imperial Commando Unit",
3682 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3683 Colour = Color(82, 173, 239, 255),
3684 Side = 1,
3685 Rank = 4,
3686 Model = "models/player/omega/starwars/2.mdl",
3687 Regiment = "Cinder Squad",
3688} )
3689
3690TEAM_CIC_SGT = CreateTeam( "CIC Sergeant", {
3691 Description = "General of the Imperial Commando Unit",
3692 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3693 Colour = Color(82, 173, 239, 255),
3694 Side = 1,
3695 Rank = 5,
3696 Model = "models/player/omega/starwars/2.mdl",
3697 Regiment = "Cinder Squad",
3698} )
3699
3700TEAM_CIC_SSGT = CreateTeam( "CIC Staff Sergeant", {
3701 Description = "General of the Imperial Commando Unit",
3702 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3703 Colour = Color(82, 173, 239, 255),
3704 Side = 1,
3705 Rank = 6,
3706 Model = "models/player/omega/starwars/2.mdl",
3707 Regiment = "Cinder Squad",
3708} )
3709
3710TEAM_CIC_MSGT = CreateTeam( "CIC Master Sergeant", {
3711 Description = "General of the Imperial Commando Unit",
3712 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3713 Colour = Color(82, 173, 239, 255),
3714 Side = 1,
3715 Rank = 7,
3716 Model = "models/player/omega/starwars/2.mdl",
3717 Regiment = "Cinder Squad",
3718} )
3719
3720TEAM_CIC_WO = CreateTeam( "CIC Warrant Officer", {
3721 Description = "General of the Imperial Commando Unit",
3722 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3723 Colour = Color(82, 173, 239, 255),
3724 Side = 1,
3725 Rank = 8,
3726 Model = "models/player/omega/starwars/2.mdl",
3727 Regiment = "Cinder Squad",
3728} )
3729
3730TEAM_CIC_OC = CreateTeam( "CIC Officer Cadet", {
3731 Description = "General of the Imperial Commando Unit",
3732 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3733 Colour = Color(82, 173, 239, 255),
3734 Side = 1,
3735 Rank = 9,
3736 Model = "models/player/omega/starwars/2.mdl",
3737 Regiment = "Cinder Squad",
3738} )
3739
3740TEAM_CIC_2LT = CreateTeam( "CIC Second Lieutenant", {
3741 Description = "General of the Imperial Commando Unit",
3742 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3743 Colour = Color(82, 173, 239, 255),
3744 Side = 1,
3745 Rank = 10,
3746 Model = "models/player/omega/starwars/2.mdl",
3747 Regiment = "Cinder Squad",
3748} )
3749
3750TEAM_CIC_1LT = CreateTeam( "CIC 1st Lieutenant", {
3751 Description = "General of the Imperial Commando Unit",
3752 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3753 Colour = Color(82, 173, 239, 255),
3754 Side = 1,
3755 Rank = 11,
3756 Model = "models/player/omega/starwars/2.mdl",
3757 Regiment = "Cinder Squad",
3758} )
3759
3760TEAM_CIC_CPT = CreateTeam( "CIC Captain", {
3761 Description = "General of the Imperial Commando Unit",
3762 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3763 Colour = Color(82, 173, 239, 255),
3764 Side = 1,
3765 Rank = 12,
3766 Model = "models/player/omega/starwars/2.mdl",
3767 Regiment = "Cinder Squad",
3768} )
3769
3770TEAM_CIC_MJR = CreateTeam( "CIC Major", {
3771 Description = "General of the Imperial Commando Unit",
3772 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3773 Colour = Color(82, 173, 239, 255),
3774 Side = 1,
3775 Rank = 13,
3776 Model = "models/player/omega/starwars/2.mdl",
3777 Regiment = "Cinder Squad",
3778} )
3779
3780TEAM_CIC_LCOLO = CreateTeam( "CIC Lieutenant Colonel", {
3781 Description = "General of the Imperial Commando Unit",
3782 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3783 Colour = Color(82, 173, 239, 255),
3784 Side = 1,
3785 Rank = 14,
3786 Model = "models/player/omega/starwars/2.mdl",
3787 Regiment = "Cinder Squad",
3788} )
3789
3790TEAM_CIC_COLO = CreateTeam( "CIC Colonel", {
3791 Description = "General of the Imperial Commando Unit",
3792 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3793 Colour = Color(82, 173, 239, 255),
3794 Side = 1,
3795 Rank = 15,
3796 Model = "models/player/omega/starwars/2.mdl",
3797 Regiment = "Cinder Squad",
3798} )
3799
3800TEAM_CIC_CMD = CreateTeam( "CIC Commander", {
3801 Description = "General of the Imperial Commando Unit",
3802 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3803 Colour = Color(82, 173, 239, 255),
3804 Side = 1,
3805 Rank = 16,
3806 Model = "models/player/omega/starwars/2.mdl",
3807 Regiment = "Cinder Squad",
3808} )
3809
3810TEAM_CIC_BRIG = CreateTeam( "CIC Brigadier", {
3811 Description = "General of the Imperial Commando Unit",
3812 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3813 Colour = Color(82, 173, 239, 255),
3814 Side = 1,
3815 Rank = 17,
3816 Model = "models/player/omega/starwars/2.mdl",
3817 Regiment = "Cinder Squad",
3818} )
3819
3820TEAM_CIC_MAJG = CreateTeam( "CIC Major General", {
3821 Description = "General of the Imperial Commando Unit",
3822 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3823 Colour = Color(82, 173, 239, 255),
3824 Side = 1,
3825 Rank = 18,
3826 Model = "models/player/omega/starwars/2.mdl",
3827 Regiment = "Cinder Squad",
3828} )
3829
3830TEAM_CIC_LTG = CreateTeam( "CIC Lieutenant General", {
3831 Description = "General of the Imperial Commando Unit",
3832 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3833 Colour = Color(82, 173, 239, 255),
3834 Side = 1,
3835 Rank = 19,
3836 Model = "models/player/omega/starwars/2.mdl",
3837 Regiment = "Cinder Squad",
3838} )
3839
3840TEAM_CIC_GEN = CreateTeam( "CIC General", {
3841 Description = "General of the Imperial Commando Unit",
3842 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
3843 Colour = Color(82, 173, 239, 255),
3844 Side = 1,
3845 Rank = 20,
3846 Model = "models/player/omega/starwars/2.mdl",
3847 Regiment = "Cinder Squad",
3848} )
3849
3850TEAM_NAVY_JCREW = CreateTeam( "Navy Junior Crewman", {
3851 Description = "Member of the Navy",
3852 Weapons = {"weapon_dt12", "tfa_swch_dh17", "tfa_swch_e11"},
3853 Colour = Color(102, 102, 0, 255),
3854 Side = 1,
3855 Rank = 1,
3856 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3857 Regiment = "Navy",
3858} )
3859
3860TEAM_NAVY_CREW = CreateTeam( "Navy Crewman", {
3861 Description = "Member of the Navy",
3862 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3863 Colour = Color(102, 102, 0, 255),
3864 Side = 1,
3865 Rank = 2,
3866 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3867 Regiment = "Navy",
3868} )
3869
3870TEAM_NAVY_ACREW = CreateTeam( "Navy Able Crewman", {
3871 Description = "Member of the Navy",
3872 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3873 Colour = Color(102, 102, 0, 255),
3874 Side = 1,
3875 Rank = 3,
3876 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3877 Regiment = "Navy",
3878} )
3879
3880TEAM_NAVY_SCREW = CreateTeam( "Navy Senior Crewman", {
3881 Description = "Member of the Navy",
3882 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3883 Colour = Color(102, 102, 0, 255),
3884 Side = 1,
3885 Rank = 4,
3886 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3887 Regiment = "Navy",
3888} )
3889
3890TEAM_NAVY_LCREW = CreateTeam( "Navy Leading Crewman", {
3891 Description = "Member of the Navy",
3892 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3893 Colour = Color(102, 102, 0, 255),
3894 Side = 1,
3895 Rank = 5,
3896 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3897 Regiment = "Navy",
3898} )
3899
3900TEAM_NAVY_CHIEF = CreateTeam( "Navy Chief", {
3901 Description = "Member of the Navy",
3902 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3903 Colour = Color(102, 102, 0, 255),
3904 Side = 1,
3905 Rank = 6,
3906 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3907 Regiment = "Navy",
3908} )
3909
3910TEAM_NAVY_MCHIEF = CreateTeam( "Navy Master Chief", {
3911 Description = "Member of the Navy",
3912 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3913 Colour = Color(102, 102, 0, 255),
3914 Side = 1,
3915 Rank = 7,
3916 Model = "models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl",
3917 Regiment = "Navy",
3918} )
3919
3920TEAM_NAVY_OFFICERCADET = CreateTeam( "Navy Officer Cadet", {
3921 Description = "Member of the Navy",
3922 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3923 Colour = Color(102, 102, 0, 255),
3924 Side = 1,
3925 Rank = 8,
3926 Model = "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl",
3927 Regiment = "Navy",
3928} )
3929
3930TEAM_NAVY_ENSIGN = CreateTeam( "Navy Ensign", {
3931 Description = "Member of the Navy",
3932 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3933 Colour = Color(102, 102, 0, 255),
3934 Side = 1,
3935 Rank = 9,
3936 Model = "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl",
3937 Regiment = "Navy",
3938} )
3939
3940TEAM_NAVY_POFFICER = CreateTeam( "Navy Petty Officer", {
3941 Description = "Member of the Navy",
3942 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3943 Colour = Color(102, 102, 0, 255),
3944 Side = 1,
3945 Rank = 10,
3946 Model = "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl",
3947 Regiment = "Navy",
3948} )
3949
3950TEAM_NAVY_SLT = CreateTeam( "Navy Sub Lieutenant", {
3951 Description = "Member of the Navy",
3952 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3953 Colour = Color(102, 102, 0, 255),
3954 Side = 1,
3955 Rank = 11,
3956 Model = "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl",
3957 Regiment = "Navy",
3958} )
3959
3960TEAM_NAVY_LT = CreateTeam( "Navy Lieutenant", {
3961 Description = "Member of the Navy",
3962 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3963 Colour = Color(102, 102, 0, 255),
3964 Side = 1,
3965 Rank = 12,
3966 Model = "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl",
3967 Regiment = "Navy",
3968} )
3969
3970TEAM_NAVY_LCMD = CreateTeam( "Navy Lieutenant Commander", {
3971 Description = "Member of the Navy",
3972 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3973 Colour = Color(102, 102, 0, 255),
3974 Side = 1,
3975 Rank = 13,
3976 Model = "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl",
3977 Regiment = "Navy",
3978} )
3979
3980TEAM_NAVY_CMD = CreateTeam( "Navy Commander", {
3981 Description = "Member of the Navy",
3982 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3983 Colour = Color(102, 102, 0, 255),
3984 Side = 1,
3985 Rank = 14,
3986 Model = "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl",
3987 Regiment = "Navy",
3988} )
3989
3990TEAM_NAVY_CAPT = CreateTeam( "Navy Captain", {
3991 Description = "Member of the Navy",
3992 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
3993 Colour = Color(102, 102, 0, 255),
3994 Side = 1,
3995 Rank = 15,
3996 Model = "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl",
3997 Regiment = "Navy",
3998} )
3999
4000TEAM_NAVY_LCAPT = CreateTeam( "Navy Line Captain", {
4001 Description = "Officer of the Navy",
4002 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4003 Colour = Color(102, 102, 0, 255),
4004 Side = 1,
4005 Rank = 16,
4006 Model = "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl",
4007 Regiment = "Navy",
4008} )
4009
4010TEAM_NAVY_COMMO = CreateTeam( "Navy Commodore", {
4011 Description = "Officer of the Navy",
4012 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4013 Colour = Color(102, 102, 0, 255),
4014 Side = 1,
4015 Rank = 17,
4016 Model = "models/player/swbf_imperial_officer_admiralv2/swbf_imperial_officer_admiralv2.mdl",
4017 Regiment = "Navy",
4018} )
4019
4020TEAM_NAVY_RADMIRAL = CreateTeam( "Navy Rear Admiral", {
4021 Description = "Admiral of the Navy",
4022 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4023 Colour = Color(102, 102, 0, 255),
4024 Side = 1,
4025 Rank = 18,
4026 Model = "models/player/swbf_imperial_officer_colonelv2/swbf_imperial_officer_colonelv2.mdl",
4027 Regiment = "Navy",
4028} )
4029
4030TEAM_NAVY_VADMIRAL = CreateTeam( "Navy Vice Admiral", {
4031 Description = "Admiral of the Navy",
4032 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4033 Colour = Color(102, 102, 0, 255),
4034 Side = 1,
4035 Rank = 19,
4036 Model = "models/player/swbf_imperial_officer_colonelv2/swbf_imperial_officer_colonelv2.mdl",
4037 Regiment = "Navy",
4038} )
4039
4040TEAM_NAVY_ADMIRAL = CreateTeam( "Navy Admiral", {
4041 Description = "Admiral of the Navy",
4042 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4043 Colour = Color(102, 102, 0, 255),
4044 Side = 1,
4045 Rank = 20,
4046 Model = "models/player/swbf_imperial_officer_grand_admiralv2/swbf_imperial_officer_grand_admiralv2.mdl",
4047 Regiment = "Navy",
4048} )
4049
4050TEAM_NAVY_GADMIRAL = CreateTeam( "Navy Grand Admiral", {
4051 Description = "Grand Admiral of the Navy",
4052 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4053 Colour = Color(102, 102, 0, 255),
4054 Side = 1,
4055 Rank = 21,
4056 Model = "models/player/swbf_imperial_officer_grand_admiralv2/swbf_imperial_officer_grand_admiralv2.mdl",
4057 Regiment = "Navy",
4058} )
4059
4060TEAM_NAVY_IEX = CreateTeam( "Imperial Executor", {
4061 Description = "Imperial Executor of the Navy",
4062 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
4063 Colour = Color(102, 102, 0, 255),
4064 Side = 1,
4065 Rank = 22,
4066 Model = "models/player/scifi_bill.mdl",
4067 Regiment = "Navy",
4068} )
4069
4070TEAM_NAVY_GADMIRALT = CreateTeam( "Navy Grand Admiral", {
4071 Description = "Grand Admiral of the Navy",
4072 Weapons = {"tfa_swch_dh17", "sswep_thrawn", "tfa_swch_e11"},
4073 Colour = Color(102, 102, 0, 255),
4074 Side = 1,
4075 Rank = 23,
4076 Model = "models/player/valley/thrawn.mdl",
4077 Regiment = "Navy",
4078} )
4079
4080TEAM_NAVY_GMOFFT = CreateTeam( "Navy Grand Moff", {
4081 Description = "Grand Admiral of the Navy",
4082 Weapons = {"tfa_swch_dlt19", "tfa_swch_dh17", "tfa_swch_ee3", "tfa_swch_e11"},
4083 Colour = Color(102, 102, 0, 255),
4084 Side = 1,
4085 Rank = 24,
4086 Model = "models/player/heracles421/tarkin/moff_tarkin.mdl",
4087 Regiment = "Navy",
4088} )
4089
4090TEAM_NAVY_JAN = CreateTeam( "Janitor", {
4091 Description = "Grand Admiral of the Navy",
4092 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4093 Colour = Color(102, 102, 0, 255),
4094 Side = 1,
4095 Rank = 1,
4096 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4097 Regiment = "Navy Engineer",
4098} )
4099
4100TEAM_NAVY_ENG1 = CreateTeam( "Navy Engineer Apprentice", {
4101 Description = "Grand Admiral of the Navy",
4102 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4103 Colour = Color(102, 102, 0, 255),
4104 Side = 1,
4105 Rank = 1,
4106 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4107 Regiment = "Navy Engineer",
4108} )
4109
4110TEAM_NAVY_ENG2 = CreateTeam( "Navy Junior Technican", {
4111 Description = "Grand Admiral of the Navy",
4112 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4113 Colour = Color(102, 102, 0, 255),
4114 Side = 1,
4115 Rank = 2,
4116 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4117 Regiment = "Navy Engineer",
4118} )
4119
4120TEAM_NAVY_ENG3 = CreateTeam( "Navy Technican", {
4121 Description = "Grand Admiral of the Navy",
4122 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4123 Colour = Color(102, 102, 0, 255),
4124 Side = 1,
4125 Rank = 3,
4126 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4127 Regiment = "Navy Engineer",
4128} )
4129
4130TEAM_NAVY_ENG4 = CreateTeam( "Navy Senior Technican", {
4131 Description = "Grand Admiral of the Navy",
4132 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4133 Colour = Color(102, 102, 0, 255),
4134 Side = 1,
4135 Rank = 4,
4136 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4137 Regiment = "Navy Engineer",
4138} )
4139
4140TEAM_NAVY_ENG5 = CreateTeam( "Master Technican", {
4141 Description = "Grand Admiral of the Navy",
4142 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4143 Colour = Color(102, 102, 0, 255),
4144 Side = 1,
4145 Rank = 5,
4146 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4147 Regiment = "Navy Engineer",
4148} )
4149
4150TEAM_NAVY_ENG6 = CreateTeam( "Junior Engineer", {
4151 Description = "Grand Admiral of the Navy",
4152 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4153 Colour = Color(102, 102, 0, 255),
4154 Side = 1,
4155 Rank = 6,
4156 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4157 Regiment = "Navy Engineer",
4158} )
4159
4160TEAM_NAVY_ENG7 = CreateTeam( "Engineer", {
4161 Description = "Grand Admiral of the Navy",
4162 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4163 Colour = Color(102, 102, 0, 255),
4164 Side = 1,
4165 Rank = 7,
4166 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4167 Regiment = "Navy Engineer",
4168} )
4169
4170TEAM_NAVY_ENG8 = CreateTeam( "Chief Engineer", {
4171 Description = "Grand Admiral of the Navy",
4172 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4173 Colour = Color(102, 102, 0, 255),
4174 Side = 1,
4175 Rank = 8,
4176 Model = "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl",
4177 Regiment = "Navy Engineer",
4178} )
4179
4180TEAM_NAVY_ENG9 = CreateTeam( "Junior Foreman", {
4181 Description = "Grand Admiral of the Navy",
4182 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4183 Colour = Color(102, 102, 0, 255),
4184 Side = 1,
4185 Rank = 9,
4186 Model = "models/gonzo/improvedengineer/improvedengineer.mdl",
4187 Regiment = "Navy Engineer",
4188} )
4189
4190TEAM_NAVY_ENG10 = CreateTeam( "Foreman", {
4191 Description = "Grand Admiral of the Navy",
4192 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4193 Colour = Color(102, 102, 0, 255),
4194 Side = 1,
4195 Rank = 10,
4196 Model = "models/gonzo/improvedengineer/improvedengineer.mdl",
4197 Regiment = "Navy Engineer",
4198} )
4199
4200TEAM_NAVY_ENG11 = CreateTeam( "Chief Foreman", {
4201 Description = "Grand Admiral of the Navy",
4202 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4203 Colour = Color(102, 102, 0, 255),
4204 Side = 1,
4205 Rank = 11,
4206 Model = "models/gonzo/improvedengineer/improvedengineer.mdl",
4207 Regiment = "Navy Engineer",
4208} )
4209
4210TEAM_NAVY_ENG12 = CreateTeam( "Executive Director", {
4211 Description = "Grand Admiral of the Navy",
4212 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4213 Colour = Color(102, 102, 0, 255),
4214 Side = 1,
4215 Rank = 12,
4216 Model = "models/gonzo/improvedengineer/improvedengineer.mdl",
4217 Regiment = "Navy Engineer",
4218} )
4219
4220TEAM_NAVY_ENG13 = CreateTeam( "Engineer Director", {
4221 Description = "Grand Admiral of the Navy",
4222 Weapons = {"weapon_physgun", "tfa_swch_dh17", "repair_tool", "gmod_tool", "tfa_swch_e11"},
4223 Colour = Color(102, 102, 0, 255),
4224 Side = 1,
4225 Rank = 13,
4226 Model = "models/gonzo/improvedengineer/improvedengineer.mdl",
4227 Regiment = "Navy Engineer",
4228} )
4229
4230TEAM_OLDISB_JRO = CreateTeam( "OLDISB Junior Operative", {
4231 Description = "Member of the OLDISB",
4232 Weapons = {},
4233 Colour = Color(255, 255, 255, 255),
4234 Side = 1,
4235 Rank = 1,
4236 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
4237 Regiment = "DO NOT USE",
4238} )
4239
4240TEAM_OLDISB_O = CreateTeam( "OLDISB Operative", {
4241 Description = "Member of the OLDISB",
4242 Weapons = {},
4243 Colour = Color(255, 255, 255, 255),
4244 Side = 1,
4245 Rank = 2,
4246 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
4247 Regiment = "DO NOT USE",
4248} )
4249
4250TEAM_OLDISB_SRO = CreateTeam( "OLDISB Senior Operative", {
4251 Description = "Member of the OLDISB",
4252 Weapons = {},
4253 Colour = Color(255, 255, 255, 255),
4254 Side = 1,
4255 Rank = 3,
4256 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
4257 Regiment = "DO NOT USE",
4258} )
4259
4260TEAM_OLDISB_JAG = CreateTeam( "OLDISB Junior Agent", {
4261 Description = "Agent of the OLDISB",
4262 Weapons = {},
4263 Colour = Color(255, 255, 255, 255),
4264 Side = 1,
4265 Rank = 4,
4266 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
4267 Regiment = "DO NOT USE",
4268} )
4269
4270TEAM_OLDISB_A = CreateTeam( "OLDISB Agent", {
4271 Description = "Agent of the OLDISB",
4272 Weapons = {},
4273 Colour = Color(255, 255, 255, 255),
4274 Side = 1,
4275 Rank = 5,
4276 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
4277 Regiment = "DO NOT USE",
4278} )
4279
4280TEAM_OLDISB_SRA = CreateTeam( "OLDISB Special Agent", {
4281 Description = "Agent of the OLDISB",
4282 Weapons = {},
4283 Colour = Color(255, 255, 255, 255),
4284 Side = 1,
4285 Rank = 6,
4286 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
4287 Regiment = "DO NOT USE",
4288} )
4289
4290TEAM_OLDISB_DR = CreateTeam( "OLDISB Director", {
4291 Description = "Director of the OLDISB",
4292 Weapons = {},
4293 Colour = Color(255, 255, 255, 255),
4294 Side = 1,
4295 Rank = 16,
4296 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
4297 Regiment = "DO NOT USE",
4298} )
4299
4300TEAM_OLDISB_DRK = CreateTeam( "OLDISB Director", {
4301 Description = "Director of the OLDISB",
4302 Weapons = {},
4303 Colour = Color(255, 255, 255, 255),
4304 Side = 1,
4305 Rank = 17,
4306 Model = "models/player/hydro/swbf_krennic/swbf_krennic.mdl",
4307 Regiment = "DO NOT USE",
4308} )
4309
4310TEAM_ROYALGUARDOLD_Trainee = CreateTeam( "DO NOT USE", {
4311 Description = "Member Royal Guard Regiment",
4312 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
4313 Colour = Color(255, 51, 51, 255),
4314 Side = 1,
4315 Rank = 1,
4316 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
4317 Regiment = "DO NOT USE",
4318} )
4319
4320TEAM_ROYALGUARDOLD_SGT = CreateTeam( "DO NOT USE", {
4321 Description = "Member Royal Guard Regiment",
4322 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
4323 Colour = Color(255, 51, 51, 255),
4324 Side = 1,
4325 Rank = 2,
4326 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
4327 Regiment = "DO NOT USE",
4328} )
4329
4330TEAM_ROYALGUARDOLD_LT = CreateTeam( "DO NOT USE", {
4331 Description = "Member Royal Guard Regiment",
4332 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
4333 Colour = Color(255, 51, 51, 255),
4334 Side = 1,
4335 Rank = 3,
4336 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
4337 Regiment = "DO NOT USE",
4338} )
4339
4340TEAM_ROYALGUARDOLD_CPT = CreateTeam( "DO NOT USE", {
4341 Description = "Captain of the Royal Guard Regiment",
4342 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
4343 Colour = Color(255, 51, 51, 255),
4344 Side = 1,
4345 Rank = 3,
4346 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
4347 Regiment = "DO NOT USE",
4348} )
4349
4350TEAM_ROYALGUARDOLD_CMD = CreateTeam( "DO NOT USE", {
4351 Description = "Commander of the Royal Guard Regiment",
4352 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
4353 Colour = Color(255, 51, 51, 255),
4354 Side = 1,
4355 Rank = 3,
4356 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
4357 Regiment = "DO NOT USE",
4358} )
4359
4360TEAM_SHADOWGUARDOLD_Trainee = CreateTeam( "DO NOT USE", {
4361 Description = "Member Shadow Guard Regiment",
4362 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
4363 Colour = Color(255, 51, 51, 255),
4364 Side = 1,
4365 Rank = 1,
4366 Model = "models/imperial/guard/blackguard.mdl",
4367 Regiment = "DO NOT USE",
4368} )
4369
4370TEAM_SHADOWGUARDOLD_SGT = CreateTeam( "DO NOT USE", {
4371 Description = "Member Shadow Guard Regiment",
4372 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
4373 Colour = Color(255, 51, 51, 255),
4374 Side = 1,
4375 Rank = 5,
4376 Model = "models/imperial/guard/blackguard.mdl",
4377 Regiment = "DO NOT USE",
4378} )
4379
4380TEAM_SHADOWGUARDOLD_LT = CreateTeam( "DO NOT USE", {
4381 Description = "Member Shadow Guard Regiment",
4382 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
4383 Colour = Color(255, 51, 51, 255),
4384 Side = 1,
4385 Rank = 10,
4386 Model = "models/imperial/guard/blackguard.mdl",
4387 Regiment = "DO NOT USE",
4388} )
4389
4390TEAM_SHADOWGUARDOLD_CPT = CreateTeam( "DO NOT USE", {
4391 Description = "Captain of the Shadow Guard Regiment",
4392 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
4393 Colour = Color(255, 51, 51, 255),
4394 Side = 1,
4395 Rank = 12,
4396 Model = "models/imperial/guard/blackguard.mdl",
4397 Regiment = "DO NOT USE",
4398} )
4399
4400TEAM_SHADOWGUARDOLD_CMD = CreateTeam( "DO NOT USE", {
4401 Description = "Commander of the Shadow Guard Regiment",
4402 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
4403 Colour = Color(255, 51, 51, 255),
4404 Side = 1,
4405 Rank = 16,
4406 Model = "models/imperial/guard/blackguard.mdl",
4407 Regiment = "DO NOT USE",
4408} )
4409
4410TEAM_PILOT_JCREW = CreateTeam( "Pilot Junior Crewman", {
4411 Description = "Member of the Pilot",
4412 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4413 Colour = Color(127, 0, 255, 255),
4414 Side = 1,
4415 Rank = 1,
4416 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4417 Regiment = "Pilot",
4418} )
4419
4420TEAM_PILOT_CREW = CreateTeam( "Pilot Crewman", {
4421 Description = "Member of the Pilot",
4422 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4423 Colour = Color(127, 0, 255, 255),
4424 Side = 1,
4425 Rank = 2,
4426 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4427 Regiment = "Pilot",
4428} )
4429
4430TEAM_PILOT_ACREW = CreateTeam( "Pilot Able Crewman", {
4431 Description = "Member of the Pilot",
4432 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4433 Colour = Color(127, 0, 255, 255),
4434 Side = 1,
4435 Rank = 3,
4436 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4437 Regiment = "Pilot",
4438} )
4439
4440TEAM_PILOT_SCREW = CreateTeam( "Pilot Senior Crewman", {
4441 Description = "Member of the Pilot",
4442 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4443 Colour = Color(127, 0, 255, 255),
4444 Side = 1,
4445 Rank = 4,
4446 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4447 Regiment = "Pilot",
4448} )
4449
4450TEAM_PILOT_LCREW = CreateTeam( "Pilot Leading Crewman", {
4451 Description = "Member of the Pilot",
4452 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4453 Colour = Color(127, 0, 255, 255),
4454 Side = 1,
4455 Rank = 5,
4456 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4457 Regiment = "Pilot",
4458} )
4459
4460TEAM_PILOT_CHIEF = CreateTeam( "Pilot Chief", {
4461 Description = "Member of the Pilot",
4462 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4463 Colour = Color(127, 0, 255, 255),
4464 Side = 1,
4465 Rank = 6,
4466 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4467 Regiment = "Pilot",
4468} )
4469
4470TEAM_PILOT_MCHIEF = CreateTeam( "Pilot Master Chief", {
4471 Description = "Member of the Pilot",
4472 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4473 Colour = Color(127, 0, 255, 255),
4474 Side = 1,
4475 Rank = 7,
4476 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4477 Regiment = "Pilot",
4478} )
4479
4480TEAM_PILOT_OFFICERCADET = CreateTeam( "Pilot Officer Cadet", {
4481 Description = "Member of the Pilot",
4482 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4483 Colour = Color(127, 0, 255, 255),
4484 Side = 1,
4485 Rank = 8,
4486 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4487 Regiment = "Pilot",
4488} )
4489
4490TEAM_PILOT_ENSIGN = CreateTeam( "Pilot Ensign", {
4491 Description = "Member of the Pilot",
4492 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4493 Colour = Color(127, 0, 255, 255),
4494 Side = 1,
4495 Rank = 9,
4496 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4497 Regiment = "Pilot",
4498} )
4499
4500TEAM_PILOT_POFFICER = CreateTeam( "Pilot Petty Officer", {
4501 Description = "Member of the Pilot",
4502 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4503 Colour = Color(127, 0, 255, 255),
4504 Side = 1,
4505 Rank = 10,
4506 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4507 Regiment = "Pilot",
4508} )
4509
4510TEAM_PILOT_SLT = CreateTeam( "Pilot Sub Lieutenant", {
4511 Description = "Member of the Pilot",
4512 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4513 Colour = Color(127, 0, 255, 255),
4514 Side = 1,
4515 Rank = 12,
4516 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4517 Regiment = "Pilot",
4518} )
4519
4520TEAM_PILOT_LT = CreateTeam( "Pilot Lieutenant", {
4521 Description = "Member of the Pilot",
4522 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4523 Colour = Color(127, 0, 255, 255),
4524 Side = 1,
4525 Rank = 14,
4526 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4527 Regiment = "Pilot",
4528} )
4529
4530TEAM_PILOT_LCMD = CreateTeam( "Pilot Lieutenant Commander", {
4531 Description = "Member of the Pilot",
4532 Weapons = {"tfa_swch_e11", "tfa_swch_se14c"},
4533 Colour = Color(127, 0, 255, 255),
4534 Side = 1,
4535 Rank = 15,
4536 Model = "models/player/sgg/starwars/tie_pilot.mdl",
4537 Regiment = "Pilot",
4538} )
4539
4540TEAM_PILOT_CMD = CreateTeam( "Pilot Commander", {
4541 Description = "Member of the Pilot",
4542 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "tfa_swch_dh17"},
4543 Colour = Color(127, 0, 255, 255),
4544 Side = 1,
4545 Rank = 16,
4546 Model = "models/player/sgg/starwars/tie_pilot_181st.mdl",
4547 Regiment = "Pilot",
4548 } )
4549
4550 TEAM_RSTORMT_TRAINEE = CreateTeam( "RST Trainee", {
4551 Description = "Member of the Royal Battalion",
4552 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4553 Colour = Color(230, 0, 90, 255),
4554 Side = 1,
4555 Rank = 1,
4556 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4557 Regiment = "Royal Storm Trooper",
4558 } )
4559
4560TEAM_RSTORMT_PVT = CreateTeam( "RST Private", {
4561 Description = "Member of the Royal Battalion",
4562 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4563 Colour = Color(230, 0, 90, 255),
4564 Side = 1,
4565 Rank = 2,
4566 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4567 Regiment = "Royal Storm Trooper",
4568 } )
4569
4570TEAM_RSTORMT_PFC = CreateTeam( "RST Private First Class", {
4571 Description = "Member of the Royal Battalion",
4572 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4573 Colour = Color(230, 0, 90, 255),
4574 Side = 1,
4575 Rank = 3,
4576 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4577 Regiment = "Royal Storm Trooper",
4578 } )
4579
4580TEAM_RSTORMT_LCPL = CreateTeam( "RST Lance Corporal", {
4581 Description = "Member of the Royal Battalion",
4582 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4583 Colour = Color(230, 0, 90, 255),
4584 Side = 1,
4585 Rank = 4,
4586 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4587 Regiment = "Royal Storm Trooper",
4588 } )
4589
4590TEAM_RSTORMT_CPL = CreateTeam( "RST Corporal", {
4591 Description = "Member of the Royal Battalion",
4592 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4593 Colour = Color(230, 0, 90, 255),
4594 Side = 1,
4595 Rank = 5,
4596 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4597 Regiment = "Royal Storm Trooper",
4598 } )
4599
4600TEAM_RSTORMT_SGT = CreateTeam( "RST Sergeant", {
4601 Description = "Member of the Royal Battalion",
4602 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4603 Colour = Color(230, 0, 90, 255),
4604 Side = 1,
4605 Rank = 6,
4606 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4607 Regiment = "Royal Storm Trooper",
4608 } )
4609
4610TEAM_RSTORMT_SSGT = CreateTeam( "RST Staff Sergeant", {
4611 Description = "Member of the Royal Battalion",
4612 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4613 Colour = Color(230, 0, 90, 255),
4614 Side = 1,
4615 Rank = 7,
4616 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4617 Regiment = "Royal Storm Trooper",
4618 } )
4619
4620TEAM_RSTORMT_MSGT = CreateTeam( "RST Master Sergeant", {
4621 Description = "Member of the Royal Battalion",
4622 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4623 Colour = Color(230, 0, 90, 255),
4624 Side = 1,
4625 Rank = 8,
4626 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4627 Regiment = "Royal Storm Trooper",
4628} )
4629
4630TEAM_RSTORMT_WO = CreateTeam( "RST Warrant Officer", {
4631 Description = "Member of the Royal Battalion",
4632 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4633 Colour = Color(230, 0, 90, 255),
4634 Side = 1,
4635 Rank = 9,
4636 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4637 Regiment = "Royal Storm Trooper",
4638} )
4639
4640TEAM_RSTORMT_OC = CreateTeam( "RST Officer Cadet", {
4641 Description = "Member of the Royal Battalion",
4642 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4643 Colour = Color(230, 0, 90, 255),
4644 Side = 1,
4645 Rank = 10,
4646 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4647 Regiment = "Royal Storm Trooper",
4648} )
4649
4650TEAM_RSTORMT_2LT = CreateTeam( "RST 2nd Lieutenant", {
4651 Description = "Member of the Royal Battalion",
4652 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4653 Colour = Color(230, 0, 90, 255),
4654 Side = 1,
4655 Rank = 11,
4656 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4657 Regiment = "Royal Storm Trooper",
4658} )
4659
4660TEAM_RSTORMT_1LT = CreateTeam( "RST 1st Lieutenant", {
4661 Description = "Member of the Royal Battalion",
4662 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4663 Colour = Color(230, 0, 90, 255),
4664 Side = 1,
4665 Rank = 12,
4666 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4667 Regiment = "Royal Storm Trooper",
4668} )
4669
4670TEAM_RSTORMT_CPT = CreateTeam( "RST Captain", {
4671 Description = "Member of the Royal Battalion",
4672 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4673 Colour = Color(230, 0, 90, 255),
4674 Side = 1,
4675 Rank = 13,
4676 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4677 Regiment = "Royal Storm Trooper",
4678 } )
4679
4680TEAM_RSTORMT_MAJ = CreateTeam( "RST Major", {
4681 Description = "Member of the Royal Battalion",
4682 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4683 Colour = Color(230, 0, 90, 255),
4684 Side = 1,
4685 Rank = 14,
4686 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4687 Regiment = "Royal Storm Trooper",
4688} )
4689
4690TEAM_RSTORMT_LCOL = CreateTeam( "RST Colonel", {
4691 Description = "Member of the Royal Battalion",
4692 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4693 Colour = Color(230, 0, 90, 255),
4694 Side = 1,
4695 Rank = 15,
4696 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4697 Regiment = "Royal Storm Trooper",
4698} )
4699
4700TEAM_RSTORMT_COL = CreateTeam( "RST High Colonel", {
4701 Description = "Member of the Royal Battalion",
4702 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4703 Colour = Color(230, 0, 90, 255),
4704 Side = 1,
4705 Rank = 16,
4706 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4707 Regiment = "Royal Storm Trooper",
4708} )
4709
4710TEAM_RSTORMT_COM = CreateTeam( "RST Commander", {
4711 Description = "Member of the Royal Battalion",
4712 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4713 Colour = Color(230, 0, 90, 255),
4714 Side = 1,
4715 Rank = 17,
4716 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4717 Regiment = "Royal Storm Trooper",
4718 } )
4719
4720TEAM_RSTORMT_Brigadier = CreateTeam( "RST Brigadier", {
4721 Description = "Member of the Royal Battalion",
4722 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4723 Colour = Color(230, 0, 90, 255),
4724 Side = 1,
4725 Rank = 18,
4726 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4727 Regiment = "Royal Storm Trooper",
4728 } )
4729
4730TEAM_RSTORMT_LTGEN = CreateTeam( "RST Lieutenant General", {
4731 Description = "Member of the Royal Battalion",
4732 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4733 Colour = Color(230, 0, 90, 255),
4734 Side = 1,
4735 Rank = 19,
4736 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4737 Regiment = "Royal Storm Trooper",
4738} )
4739
4740TEAM_RSTORMT_MAJGEN = CreateTeam( "RST Major General", {
4741 Description = "Member of the Royal Battalion",
4742 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4743 Colour = Color(230, 0, 90, 255),
4744 Side = 1,
4745 Rank = 20,
4746 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4747 Regiment = "Royal Storm Trooper",
4748} )
4749
4750TEAM_RSTORMT_GEN = CreateTeam( "RST General", {
4751 Description = "Member of the Royal Battalion",
4752 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_rt97c"},
4753 Colour = Color(230, 0, 90, 255),
4754 Side = 1,
4755 Rank = 21,
4756 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
4757 Regiment = "Royal Storm Trooper",
4758} )
4759
4760TEAM_RSTORMT_REP = CreateTeam( "Royal Representative", {
4761 Description = "Member of the Emperor's Representative",
4762 Weapons = {"tfa_swch_dh17","weapon_cuff_elastic", "tfa_swch_se14c"},
4763 Colour = Color(230, 0, 25, 255),
4764 Side = 1,
4765 Rank = 22,
4766 Model = "models/player/swbf_imperial_officer_colonelv2/swbf_imperial_officer_colonelv2.mdl",
4767 Regiment = "Royal Storm Trooper",
4768} )
4769
4770TEAM_INQUIS_TR = CreateTeam( "Inquisitor Trainee", {
4771 Description = "Trainee of the Inquisitors",
4772 Weapons = {"weapon_lightsaber", "forcechoke"},
4773 Colour = Color(161, 0, 63, 255),
4774 Side = 1,
4775 Rank = 1,
4776 Model = "models/player/valley/eighth_brother.mdl",
4777 Regiment = "Sith Inquisitor",
4778} )
4779
4780TEAM_INQUIS_APR = CreateTeam( "Inquisitor Apprentice", {
4781 Description = "Apprentice of the Inquisitors",
4782 Weapons = {"weapon_lightsaber", "forcechoke"},
4783 Colour = Color(161, 0, 63, 255),
4784 Side = 1,
4785 Rank = 2,
4786 Model = "models/player/valley/eighth_brother.mdl",
4787 Regiment = "Sith Inquisitor",
4788 } )
4789
4790TEAM_INQUIS = CreateTeam( "Inquisitor", {
4791 Description = "Member of the Inquisitors",
4792 Weapons = {"weapon_lightsaber", "forcechoke"},
4793 Colour = Color(161, 0, 63, 255),
4794 Side = 1,
4795 Rank = 3,
4796 Model = "models/player/valley/eighth_brother.mdl",
4797 Regiment = "Sith Inquisitor",
4798} )
4799
4800TEAM_INQUIS_GR = CreateTeam( "Grand Inquisitor", {
4801 Description = "Trainee of the Inquisitor",
4802 Weapons = {"weapon_lightsaber", "forcechoke"},
4803 Colour = Color(161, 0, 63, 255),
4804 Side = 1,
4805 Rank = 6,
4806 Model = "models/ethli/characters/inquisitorrebel/inquisitorrebel.mdl",
4807 Regiment = "Sith Inquisitor",
4808} )
4809
4810TEAM_STARKILLER = CreateTeam( "Lord", {
4811 Description = "Vaders Right Hand",
4812 Weapons = {"weapon_lightsaber", "forcechoke"},
4813 Colour = Color(161, 0, 63, 255),
4814 Side = 1,
4815 Rank = 5,
4816 Model = "models/nate159/req/swtfu/malecdeathstar.mdl",
4817 Regiment = "Sith",
4818} )
4819
4820TEAM_MALGUS = CreateTeam( "Lord", {
4821 Description = "2000 year old sith lord",
4822 Weapons = {"weapon_lightsaber", "forcechoke"},
4823 Colour = Color(161, 0, 63, 255),
4824 Side = 1,
4825 Rank = 5,
4826 Model = "models/grealms/characters/malgus/malgus.mdl",
4827 Regiment = "Sith",
4828} )
4829
4830TEAM_SUNA = CreateTeam( "Lord", {
4831 Description = "Sith Lord",
4832 Weapons = {"weapon_lightsaber", "forcechoke"},
4833 Colour = Color(161, 0, 63, 255),
4834 Side = 1,
4835 Rank = 5,
4836 Model = "models/player/sw/revan/revan.mdl",
4837 Regiment = "Sith",
4838} )
4839
4840TEAM_JADUS = CreateTeam( "Lord", {
4841 Description = "Sith Lord",
4842 Weapons = {"weapon_lightsaber", "forcechoke"},
4843 Colour = Color(161, 0, 63, 255),
4844 Side = 1,
4845 Rank = 5,
4846 Model = "models/grealms/characters/darthjadus/darthjadus.mdl",
4847 Regiment = "Sith",
4848} )
4849
4850TEAM_KORNELIUS = CreateTeam( "Sovereign Protector", {
4851 Description = "sith lord",
4852 Weapons = {"weapon_lightsaber", "forcechoke"},
4853 Colour = Color(161, 0, 63, 255),
4854 Side = 1,
4855 Rank = 5,
4856 Model = "models/player/ven/carnor.mdl",
4857 Regiment = "Sith",
4858} )
4859
4860TEAM_DENGAR = CreateTeam( "", {
4861 Description = "sith lord",
4862 Weapons = {"tfa_swch_rt97c","weapon_cuff_elastic", "zeus_thermaldet"},
4863 Colour = Color(161, 0, 63, 255),
4864 Side = 1,
4865 Rank = 5,
4866 Model = "models/player/hydro/swbf_dengar/swbf_dengar.mdl",
4867 Regiment = "Dengar",
4868} )
4869
4870TEAM_BOBA = CreateTeam( "", {
4871 Description = "sith lord",
4872 Weapons = {"weapon_cuff_elastic","tfa_swch_ll30","tfa_swch_ee3","tfa_sw_cissnip","weapon_jetpack"},
4873 Colour = Color(157, 157, 157, 255),
4874 Side = 1,
4875 Rank = 5,
4876 Model = "models/nate159/swbf/hero/hero_gunslinger_bobafett.mdl",
4877 Regiment = "Boba Fett",
4878} )
4879
4880TEAM_GREEDO = CreateTeam( "", {
4881 Description = "sith lord",
4882 Weapons = {"tfa_swch_ll30","weapon_cuff_elastic"},
4883 Colour = Color(161, 0, 63, 255),
4884 Side = 1,
4885 Rank = 5,
4886 Model = "models/nate159/swbf/hero/player/hero_gunslinger_greedo_player.mdl",
4887 Regiment = "Greedo",
4888} )
4889
4890TEAM_BOSSK = CreateTeam( "", {
4891 Description = "sith lord",
4892 Weapons = {"tfa_swch_dlt19","weapon_752bf3_dlt20a","weapon_cuff_elastic"},
4893 Colour = Color(161, 0, 63, 255),
4894 Side = 1,
4895 Rank = 5,
4896 Model = "models/player/hydro/swbf_bossk/swbf_bossk.mdl",
4897 Regiment = "Bossk",
4898} )
4899
4900TEAM_MOUSE = CreateTeam( "Mouse Droid", {
4901 Description = "Collects Information",
4902 Weapons = {"tfa_swch_dl44", "sswep_mouse"},
4903 Colour = Color(161, 0, 63, 255),
4904 Side = 1,
4905 Rank = 5,
4906 Model = "models/gagmouse/gagmousedroid.mdl",
4907 Regiment = "Mouse Droid",
4908} )
4909
4910TEAM_PROBE = CreateTeam( "Probe Droid", {
4911 Description = "Probes",
4912 Weapons = {"tfa_swch_dl44"},
4913 Colour = Color(161, 0, 63, 255),
4914 Side = 1,
4915 Rank = 5,
4916 Model = "models/starwars/syphadias/ships/probe_droid/probe_droid.mdl",
4917 Regiment = "Probe Droid",
4918} )
4919
4920TEAM_EVENT1 = CreateTeam( "", {
4921 Description = "Probes",
4922 Weapons = {""},
4923 Colour = Color(255, 255, 255, 255),
4924 Side = 1,
4925 Rank = 1,
4926 Model = "models/player/fatal/troopers/trooper.mdl",
4927 Regiment = "Event",
4928} )
4929
4930TEAM_EVENT2 = CreateTeam( "", {
4931 Description = "Probes",
4932 Weapons = {""},
4933 Colour = Color(255, 255, 255, 255),
4934 Side = 1,
4935 Rank = 1,
4936 Model = "models/player/fatal/troopers/trooper.mdl",
4937 Regiment = "Event",
4938} )
4939
4940TEAM_EVENT3 = CreateTeam( "", {
4941 Description = "Probes",
4942 Weapons = {""},
4943 Colour = Color(255, 255, 255, 255),
4944 Side = 1,
4945 Rank = 1,
4946 Model = "mmodels/player/fatal/troopers/trooper.mdl",
4947 Regiment = "Event",
4948} )
4949
4950TEAM_DARTHMAUL = CreateTeam( "Darth", {
4951 Description = "sith lord",
4952 Weapons = {"weapon_lightsaber", "forcechoke"},
4953 Colour = Color(161, 0, 63, 255),
4954 Side = 1,
4955 Rank = 5,
4956 Model = "models/player/darth/maul.mdl",
4957 Regiment = "Darth Maul",
4958} )
4959
4960TEAM_SCYTHE = CreateTeam( "Lord", {
4961 Description = "sith lord",
4962 Weapons = {"weapon_lightsaber", "forcechoke"},
4963 Colour = Color(161, 0, 63, 255),
4964 Side = 1,
4965 Rank = 5,
4966 Model = "models/vindican/vindican.mdl",
4967 Regiment = "Sith",
4968} )
4969
4970TEAM_INCINERATOR_PVT = CreateTeam( "Incinerator Private", {
4971 Description = "Member of the Incinerator Trooper Battalion",
4972 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
4973 Colour = Color(255, 157, 0, 255),
4974 Side = 1,
4975 Rank = 1,
4976 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
4977 Regiment = "Incinerator Trooper",
4978} )
4979
4980TEAM_INCINERATOR_PFC = CreateTeam( "Incinerator Private First Class", {
4981 Description = "Member of the Incinerator Trooper Battalion",
4982 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
4983 Colour = Color(255, 157, 0, 255),
4984 Side = 1,
4985 Rank = 2,
4986 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
4987 Regiment = "Incinerator Trooper",
4988} )
4989
4990TEAM_INCINERATOR_LCPL = CreateTeam( "Incinerator Lance Corporal", {
4991 Description = "Member of the Incinerator Trooper Battalion",
4992 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
4993 Colour = Color(255, 157, 0, 255),
4994 Side = 1,
4995 Rank = 3,
4996 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
4997 Regiment = "Incinerator Trooper",
4998} )
4999
5000TEAM_INCINERATOR_CPL = CreateTeam( "Incinerator Corporal", {
5001 Description = "Member of the Incinerator Trooper Battalion",
5002 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5003 Colour = Color(255, 157, 0, 255),
5004 Side = 1,
5005 Rank = 4,
5006 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5007 Regiment = "Incinerator Trooper",
5008} )
5009
5010TEAM_INCINERATOR_SGT = CreateTeam( "Incinerator Sergeant", {
5011 Description = "Member of the Incinerator Trooper Battalion",
5012 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5013 Colour = Color(255, 157, 0, 255),
5014 Side = 1,
5015 Rank = 5,
5016 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5017 Regiment = "Incinerator Trooper",
5018} )
5019
5020TEAM_INCINERATOR_SSGT = CreateTeam( "Incinerator Staff Sergeant", {
5021 Description = "Member of the Incinerator Trooper Battalion",
5022 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5023 Colour = Color(255, 157, 0, 255),
5024 Side = 1,
5025 Rank = 6,
5026 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5027 Regiment = "Incinerator Trooper",
5028} )
5029
5030 TEAM_INCINERATOR_MSGT = CreateTeam( "Incinerator Master Sergeant", {
5031 Description = "Member of the Incinerator Trooper Battalion",
5032 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5033 Colour = Color(255, 157, 0, 255),
5034 Side = 1,
5035 Rank = 7,
5036 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5037 Regiment = "Incinerator Trooper",
5038} )
5039
5040TEAM_INCINERATOR_OFFICERCADET = CreateTeam( "Incinerator Officer Cadet", {
5041 Description = "Member of the Incinerator Trooper Battalion",
5042 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5043 Colour = Color(255, 157, 0, 255),
5044 Side = 1,
5045 Rank = 8,
5046 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5047 Regiment = "Incinerator Trooper",
5048} )
5049
5050TEAM_INCINERATOR_WO = CreateTeam( "Incinerator Warrant Officer", {
5051 Description = "Member of the Incinerator Trooper Battalion",
5052 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5053 Colour = Color(255, 157, 0, 255),
5054 Side = 1,
5055 Rank = 9,
5056 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5057 Regiment = "Incinerator Trooper",
5058} )
5059
5060TEAM_INCINERATOR_LT = CreateTeam( "Incinerator Lieutenant", {
5061 Description = "Member of the Incinerator Trooper Battalion",
5062 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5063 Colour = Color(255, 157, 0, 255),
5064 Side = 1,
5065 Rank = 10,
5066 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5067 Regiment = "Incinerator Trooper",
5068} )
5069
5070TEAM_INCINERATOR_FLT = CreateTeam( "Incinerator First Lieutenant", {
5071 Description = "Member of the Incinerator Trooper Battalion",
5072 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5073 Colour = Color(255, 157, 0, 255),
5074 Side = 1,
5075 Rank = 11,
5076 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5077 Regiment = "Incinerator Trooper",
5078} )
5079
5080TEAM_INCINERATOR_CAPT = CreateTeam( "Incinerator Captain", {
5081 Description = "Member of the Incinerator Trooper Battalion",
5082 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5083 Colour = Color(255, 157, 0, 255),
5084 Side = 1,
5085 Rank = 12,
5086 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5087 Regiment = "Incinerator Trooper",
5088} )
5089
5090TEAM_INCINERATOR_MAJ = CreateTeam( "Incinerator Major", {
5091 Description = "Member of the Incinerator Trooper Battalion",
5092 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5093 Colour = Color(255, 157, 0, 255),
5094 Side = 1,
5095 Rank = 13,
5096 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5097 Regiment = "Incinerator Trooper",
5098} )
5099
5100TEAM_INCINERATOR_COLO = CreateTeam( "Incinerator Colonel", {
5101 Description = "Member of the Incinerator Trooper Battalion",
5102 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5103 Colour = Color(255, 157, 0, 255),
5104 Side = 1,
5105 Rank = 14,
5106 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5107 Regiment = "Incinerator Trooper",
5108} )
5109
5110TEAM_INCINERATOR_HCOLO = CreateTeam( "Incinerator High Colonel", {
5111 Description = "Member of the Incinerator Trooper Battalion",
5112 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5113 Colour = Color(255, 157, 0, 255),
5114 Side = 1,
5115 Rank = 15,
5116 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5117 Regiment = "Incinerator Trooper",
5118} )
5119
5120TEAM_INCINERATOR_CMD = CreateTeam( "Incinerator Commander", {
5121 Description = "Commander of the Incinerator Trooper Battalion",
5122 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5123 Colour = Color(255, 157, 0, 255),
5124 Side = 1,
5125 Rank = 16,
5126 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5127 Regiment = "Incinerator Trooper",
5128} )
5129
5130TEAM_INCINERATOR_BRIG = CreateTeam( "Incinerator Brigadier", {
5131 Description = "Commander of the Incinerator Trooper Battalion",
5132 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5133 Colour = Color(255, 157, 0, 255),
5134 Side = 1,
5135 Rank = 17,
5136 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5137 Regiment = "Incinerator Trooper",
5138} )
5139
5140TEAM_INCINERATOR_MAJG = CreateTeam( "Incinerator Major General", {
5141 Description = "Commander of the Incinerator Trooper Battalion",
5142 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5143 Colour = Color(255, 157, 0, 255),
5144 Side = 1,
5145 Rank = 18,
5146 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5147 Regiment = "Incinerator Trooper",
5148} )
5149
5150TEAM_INCINERATOR_LTG = CreateTeam( "Incinerator Lieutenant General", {
5151 Description = "Commander of the Incinerator Trooper Battalion",
5152 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5153 Colour = Color(255, 157, 0, 255),
5154 Side = 1,
5155 Rank = 19,
5156 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5157 Regiment = "Incinerator Trooper",
5158} )
5159
5160TEAM_INCINERATOR_GEN = CreateTeam( "Incinerator General", {
5161 Description = "Commander of the Incinerator Trooper Battalion",
5162 Weapons = {"tfa_swch_e11", "tfa_swch_dlt19", "weapon_avpflamer", "tfa_swch_se14c"},
5163 Colour = Color(255, 157, 0, 255),
5164 Side = 1,
5165 Rank = 20,
5166 Model = "models/player/mangle/flamestorm/flamestorm.mdl",
5167 Regiment = "Incinerator Trooper",
5168} )
5169
5170TEAM_Darman = CreateTeam( "ICS40", {
5171 Description = "Commander of the Incinerator Trooper Battalion",
5172 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "weapon_camo"},
5173 Colour = Color(82, 173, 239, 255),
5174 Side = 1,
5175 Rank = 1,
5176 Model = "models/player/omega/starwars/2.mdl",
5177 Regiment = "Imperial Commando Squad 40 Darman",
5178} )
5179
5180TEAM_Niner = CreateTeam( "ICS40", {
5181 Description = "Commander of the Incinerator Trooper Battalion",
5182 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "weapon_camo"},
5183 Colour = Color(82, 173, 239, 255),
5184 Side = 1,
5185 Rank = 2,
5186 Model = "models/player/omega/starwars/2.mdl",
5187 Regiment = "Imperial Commando Squad 40 Niner",
5188} )
5189
5190TEAM_Rede = CreateTeam( "ICS40", {
5191 Description = "Commander of the Incinerator Trooper Battalion",
5192 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "tfa_swch_dc15sa", "weapon_camo"},
5193 Colour = Color(82, 173, 239, 255),
5194 Side = 1,
5195 Rank = 3,
5196 Model = "models/player/omega/starwars/2.mdl",
5197 Regiment = "Imperial Commando Squad 40 Rede",
5198} )
5199
5200TEAM_SABG = CreateTeam( "Saber Guard", {
5201 Description = "Commander of the Incinerator Trooper Battalion",
5202 Weapons = {"weapon_lightsaber"},
5203 Colour = Color(232, 198, 125, 255),
5204 Side = 1,
5205 Rank = 1,
5206 Model = "models/player/starwars/mistersweetroll/saberguard.mdl",
5207 Regiment = "Saber Guard",
5208} )
5209
5210TEAM_SABGC = CreateTeam( "Saber Guard Commander", {
5211 Description = "Commander of the Incinerator Trooper Battalion",
5212 Weapons = {"weapon_lightsaber"},
5213 Colour = Color(232, 198, 125, 255),
5214 Side = 1,
5215 Rank = 2,
5216 Model = "models/player/starwars/mistersweetroll/saberguard.mdl",
5217 Regiment = "Saber Guard",
5218} )
5219
5220TEAM_VADER = CreateTeam( "", {
5221 Description = "pleb",
5222 Weapons = {"weapon_lightsaber", "forcechoke"},
5223 Colour = Color(161, 0, 63, 255),
5224 Side = 1,
5225 Rank = 5,
5226 Model = "models/nate159/swbf/hero/player/hero_sith_vader_player.mdl",
5227 Regiment = "Sith",
5228} )
5229
5230TEAM_PALPATINE = CreateTeam( "", {
5231 Description = "pleb",
5232 Weapons = {"weapon_lightsaber", "forcechoke"},
5233 Colour = Color(161, 0, 63, 255),
5234 Side = 1,
5235 Rank = 5,
5236 Model = "models/player/emperor_palpatine.mdl",
5237 Regiment = "Sith",
5238} )
5239
5240TEAM_MAULKILLER = CreateTeam( "", {
5241 Description = "pleb",
5242 Weapons = {"weapon_lightsaber", "forcechoke"},
5243 Colour = Color(161, 0, 63, 255),
5244 Side = 1,
5245 Rank = 5,
5246 Model = "models/player/starwars/maulkiller.mdl",
5247 Regiment = "Sith",
5248} )
5249
5250TEAM_ITC_DEMO = CreateTeam( "ITC Demolition", {
5251 Description = "Demolition member of the Imperial Thylacine Corps",
5252 Weapons = {"tfa_swch_rt97c", "zeus_thermaldet", "tfa_swch_dc15sa"},
5253 Colour = Color(0, 127, 31, 255),
5254 Side = 1,
5255 Rank = 13,
5256 Model = "models/player/sono/troopers/utapau.mdl",
5257 Regiment = "ITC",
5258} )
5259
5260TEAM_ITC_MRKS = CreateTeam( "ITC Marksman", {
5261 Description = "Marksman member of the Imperial Thylacine Corps",
5262 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_scoutpistol"},
5263 Colour = Color(0, 127, 31, 255),
5264 Side = 1,
5265 Rank = 13,
5266 Model = "models/player/sono/troopers/utapau.mdl",
5267 Regiment = "ITC",
5268} )
5269
5270TEAM_ITC_BERZERKER = CreateTeam( "ITC Interrogator ", {
5271 Description = "Berzerker member of the Imperial Thylacine Corps",
5272 Weapons = {"weapon_fists", "tfa_swch_alphablaster", "tfa_swch_se14c"},
5273 Colour = Color(0, 127, 31, 255),
5274 Side = 1,
5275 Rank = 13,
5276 Model = "models/player/sono/troopers/utapau.mdl",
5277 Regiment = "ITC",
5278} )
5279
5280TEAM_ITC_MEDIC = CreateTeam( "ITC Medic", {
5281 Description = "On feld medical responder for the Imperial Thylacine Corps",
5282 Weapons = {"weapon_bactainjector", "tfa_swch_e11", "tfa_swch_dc15sa"},
5283 Colour = Color(0, 127, 31, 255),
5284 Side = 1,
5285 Rank = 13,
5286 Model = "models/player/sono/troopers/utapau.mdl",
5287 Regiment = "ITC",
5288} )
5289
5290TEAM_ITC_CMDR = CreateTeam( "ITC Commander", {
5291 Description = "Commander of the Imperial Thylacine Corps",
5292 Weapons = {"tfa_swch_rt97c", "tfa_swch_dc15sa"},
5293 Colour = Color(0, 127, 31, 255),
5294 Side = 1,
5295 Rank = 16,
5296 Model = "models/player/sono/troopers/utapau.mdl",
5297 Regiment = "ITC",
5298} )
5299
5300TEAM_SC_PVT = CreateTeam( "SC Private", {
5301 Description = "plebbys",
5302 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5303 Colour = Color(50, 50, 50, 255 ),
5304 Side = 1,
5305 Rank = 1,
5306 Model = "models/sono/swbf3/shadow.mdl",
5307 Regiment = "Storm Commandos",
5308} )
5309
5310TEAM_SC_PFC = CreateTeam( "SC Private First Class", {
5311 Description = "plebbys",
5312 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5313 Colour = Color(50, 50, 50, 255 ),
5314 Side = 1,
5315 Rank = 2,
5316 Model = "models/sono/swbf3/shadow.mdl",
5317 Regiment = "Storm Commandos",
5318} )
5319
5320TEAM_SC_LCPL = CreateTeam( "SC Lance Corporal", {
5321 Description = "models/player/fatal/troopers/trooper.mdl",
5322 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5323 Colour = Color(50, 50, 50, 255 ),
5324 Side = 1,
5325 Rank = 3,
5326 Model = "models/sono/swbf3/shadow.mdl",
5327 Regiment = "Storm Commandos",
5328} )
5329
5330TEAM_SC_CPL = CreateTeam( "SC Corporal", {
5331 Description = "plebbys",
5332 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5333 Colour = Color(50, 50, 50, 255 ),
5334 Side = 1,
5335 Rank = 4,
5336 Model = "models/sono/swbf3/shadow.mdl",
5337 Regiment = "Storm Commandos",
5338} )
5339
5340TEAM_SC_SGT = CreateTeam( "SC Sergeant", {
5341 Description = "plebbys",
5342 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5343 Colour = Color(50, 50, 50, 255 ),
5344 Side = 1,
5345 Rank = 5,
5346 Model = "models/shepherdmod/storm/sarge/storm_sergeant.mdl",
5347 Regiment = "Storm Commandos",
5348} )
5349
5350TEAM_SC_SSGT = CreateTeam( "SC Staff Sergeant", {
5351 Description = "plebbys",
5352 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5353 Colour = Color(50, 50, 50, 255 ),
5354 Side = 1,
5355 Rank = 6,
5356 Model = "models/shepherdmod/storm/sarge/storm_sergeant.mdl",
5357 Regiment = "Storm Commandos",
5358} )
5359
5360TEAM_SC_MSGT = CreateTeam( "SC Master Sergeant", {
5361 Description = "plebbys",
5362 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
5363 Colour = Color(50, 50, 50, 255 ),
5364 Side = 1,
5365 Rank = 7,
5366 Model = "models/shepherdmod/storm/sarge/storm_sergeant.mdl",
5367 Regiment = "Storm Commandos",
5368} )
5369
5370TEAM_SC_OFFICERCADET = CreateTeam( "SC Officer Cadet", {
5371 Description = "plebbys",
5372 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5373 Colour = Color(50, 50, 50, 255 ),
5374 Side = 1,
5375 Rank = 8,
5376 Model = "models/shepherdmod/storm/officer/storm_officer.mdl",
5377 Regiment = "Storm Commandos",
5378} )
5379
5380TEAM_SC_WO = CreateTeam( "SC Warrant Officer", {
5381 Description = "plebbys",
5382 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5383 Colour = Color(50, 50, 50, 255 ),
5384 Side = 1,
5385 Rank = 9,
5386 Model = "models/shepherdmod/storm/officer/storm_officer.mdl",
5387 Regiment = "Storm Commandos",
5388} )
5389
5390TEAM_SC_LT = CreateTeam( "SC Lieutenant", {
5391 Description = "plebbys",
5392 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5393 Colour = Color(50, 50, 50, 255 ),
5394 Side = 1,
5395 Rank = 10,
5396 Model = "models/shepherdmod/storm/officer/storm_officer.mdl",
5397 Regiment = "Storm Commandos",
5398} )
5399
5400TEAM_SC_FLT = CreateTeam( "SC First Lieutenant", {
5401 Description = "plebbys",
5402 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5403 Colour = Color(50, 50, 50, 255 ),
5404 Side = 1,
5405 Rank = 11,
5406 Model = "models/shepherdmod/storm/officer/storm_officer.mdl",
5407 Regiment = "Storm Commandos",
5408} )
5409
5410TEAM_SC_CAPT = CreateTeam( "SC Captain", {
5411 Description = "plebbys",
5412 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5413 Colour = Color(50, 50, 50, 255 ),
5414 Side = 1,
5415 Rank = 12,
5416 Model = "models/shepherdmod/storm/captain/storm_captain.mdl",
5417 Regiment = "Storm Commandos",
5418} )
5419
5420TEAM_SC_MAJ = CreateTeam( "SC Major", {
5421 Description = "plebbys",
5422 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5423 Colour = Color(50, 50, 50, 255 ),
5424 Side = 1,
5425 Rank = 13,
5426 Model = "models/shepherdmod/storm/captain/storm_captain.mdl",
5427 Regiment = "Storm Commandos",
5428} )
5429
5430TEAM_SC_COLO = CreateTeam( "SC Colonel", {
5431 Description = "plebbys",
5432 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5433 Colour = Color(50, 50, 50, 255 ),
5434 Side = 1,
5435 Rank = 14,
5436 Model = "models/shepherdmod/storm/captain/storm_captain.mdl",
5437 Regiment = "Storm Commandos",
5438} )
5439
5440TEAM_SC_HCOLO = CreateTeam( "SC High Colonel", {
5441 Description = "plebbys",
5442 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5443 Colour = Color(50, 50, 50, 255 ),
5444 Side = 1,
5445 Rank = 15,
5446 Model = "models/shepherdmod/storm/captain/storm_captain.mdl",
5447 Regiment = "Storm Commandos",
5448} )
5449
5450TEAM_SC_CMD = CreateTeam( "SC Commander", {
5451 Description = "Commander of the Storm Trooper Core",
5452 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5453 Colour = Color(50, 50, 50, 255 ),
5454 Side = 1,
5455 Rank = 16,
5456 Model = "models/shepherdmod/storm/Commander/storm_Commander.mdl",
5457 Regiment = "Storm Commandos",
5458} )
5459
5460TEAM_SC_BRIG = CreateTeam( "SC Brigadier", {
5461 Description = "Commander of the Storm Trooper Core",
5462 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5463 Colour = Color(50, 50, 50, 255 ),
5464 Side = 1,
5465 Rank = 17,
5466 Model = "models/shepherdmod/storm/Commander/storm_Commander.mdl",
5467 Regiment = "Storm Commandos",
5468} )
5469
5470TEAM_SC_MAJG = CreateTeam( "SC Major General", {
5471 Description = "Commander of the Storm Trooper Core",
5472 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5473 Colour = Color(50, 50, 50, 255 ),
5474 Side = 1,
5475 Rank = 18,
5476 Model = "models/shepherdmod/storm/Commander/storm_Commander.mdl",
5477 Regiment = "Storm Commandos",
5478} )
5479
5480TEAM_SC_LTG = CreateTeam( "SC Lieutenant General", {
5481 Description = "Commander of the Storm Trooper Core",
5482 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5483 Colour = Color(50, 50, 50, 255 ),
5484 Side = 1,
5485 Rank = 19,
5486 Model = "models/shepherdmod/storm/Commander/storm_Commander.mdl",
5487 Regiment = "Storm Commandos",
5488} )
5489
5490TEAM_SC_GEN = CreateTeam( "SC General", {
5491 Description = "General of the Storm Trooper Core",
5492 Weapons = {"tfa_swch_alphablaster", "tfa_swch_pulsecannon", "tfa_sw_dc17dual"},
5493 Colour = Color(50, 50, 50, 255 ),
5494 Side = 1,
5495 Rank = 20,
5496 Model = "models/shepherdmod/storm/Commander/storm_Commander.mdl",
5497 Regiment = "Storm Commandos",
5498} )
5499
5500TEAM_SCB_PVT = CreateTeam( "SCB Private", {
5501 Description = "plebbys",
5502 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5503 Colour = Color(50, 50, 50, 255 ),
5504 Side = 1,
5505 Rank = 1,
5506 Model = "models/sono/swbf3/forest.mdl",
5507 Regiment = "DO NOT USE",
5508} )
5509
5510TEAM_SCB_PFC = CreateTeam( "SCB Private First Class", {
5511 Description = "plebbys",
5512 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5513 Colour = Color(50, 50, 50, 255 ),
5514 Side = 1,
5515 Rank = 2,
5516 Model = "models/sono/swbf3/forest.mdl",
5517 Regiment = "DO NOT USE",
5518} )
5519
5520TEAM_SCB_LCPL = CreateTeam( "SCB Lance Corporal", {
5521 Description = "models/player/fatal/troopers/trooper.mdl",
5522 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5523 Colour = Color(50, 50, 50, 255 ),
5524 Side = 1,
5525 Rank = 3,
5526 Model = "models/sono/swbf3/forest.mdl",
5527 Regiment = "DO NOT USE",
5528} )
5529
5530TEAM_SCB_CPL = CreateTeam( "SCB Corporal", {
5531 Description = "plebbys",
5532 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5533 Colour = Color(50, 50, 50, 255 ),
5534 Side = 1,
5535 Rank = 4,
5536 Model = "models/sono/swbf3/forest.mdl",
5537 Regiment = "DO NOT USE",
5538} )
5539
5540TEAM_SCB_SGT = CreateTeam( "SCB Sergeant", {
5541 Description = "plebbys",
5542 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5543 Colour = Color(50, 50, 50, 255 ),
5544 Side = 1,
5545 Rank = 5,
5546 Model = "models/sono/swbf3/forest.mdl",
5547 Regiment = "DO NOT USE",
5548} )
5549
5550TEAM_SCB_SSGT = CreateTeam( "SCB Staff Sergeant", {
5551 Description = "plebbys",
5552 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5553 Colour = Color(50, 50, 50, 255 ),
5554 Side = 1,
5555 Rank = 6,
5556 Model = "models/sono/swbf3/forest.mdl",
5557 Regiment = "DO NOT USE",
5558} )
5559
5560TEAM_SCB_MSGT = CreateTeam( "SCB Master Sergeant", {
5561 Description = "plebbys",
5562 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5563 Colour = Color(50, 50, 50, 255 ),
5564 Side = 1,
5565 Rank = 7,
5566 Model = "models/sono/swbf3/forest.mdl",
5567 Regiment = "DO NOT USE",
5568} )
5569
5570TEAM_SCB_OFFICERCADET = CreateTeam( "SCB Officer Cadet", {
5571 Description = "plebbys",
5572 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5573 Colour = Color(50, 50, 50, 255 ),
5574 Side = 1,
5575 Rank = 8,
5576 Model = "models/sono/swbf3/forest.mdl",
5577 Regiment = "DO NOT USE",
5578} )
5579
5580TEAM_SCB_WO = CreateTeam( "SCB Warrant Officer", {
5581 Description = "plebbys",
5582 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5583 Colour = Color(50, 50, 50, 255 ),
5584 Side = 1,
5585 Rank = 9,
5586 Model = "models/sono/swbf3/forest.mdl",
5587 Regiment = "DO NOT USE",
5588} )
5589
5590TEAM_SCB_LT = CreateTeam( "SCB Lieutenant", {
5591 Description = "plebbys",
5592 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5593 Colour = Color(50, 50, 50, 255 ),
5594 Side = 1,
5595 Rank = 10,
5596 Model = "models/sono/swbf3/forest.mdl",
5597 Regiment = "DO NOT USE",
5598} )
5599
5600TEAM_SCB_FLT = CreateTeam( "SCB First Lieutenant", {
5601 Description = "plebbys",
5602 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5603 Colour = Color(50, 50, 50, 255 ),
5604 Side = 1,
5605 Rank = 11,
5606 Model = "models/sono/swbf3/forest.mdl",
5607 Regiment = "DO NOT USE",
5608} )
5609
5610TEAM_SCB_CAPT = CreateTeam( "SCB Captain", {
5611 Description = "plebbys",
5612 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5613 Colour = Color(50, 50, 50, 255 ),
5614 Side = 1,
5615 Rank = 12,
5616 Model = "models/sono/swbf3/forest.mdl",
5617 Regiment = "DO NOT USE",
5618} )
5619
5620TEAM_SCB_MAJ = CreateTeam( "SCB Major", {
5621 Description = "plebbys",
5622 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5623 Colour = Color(50, 50, 50, 255 ),
5624 Side = 1,
5625 Rank = 13,
5626 Model = "models/sono/swbf3/forest.mdl",
5627 Regiment = "DO NOT USE",
5628} )
5629
5630TEAM_SCB_COLO = CreateTeam( "SCB Colonel", {
5631 Description = "plebbys",
5632 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5633 Colour = Color(50, 50, 50, 255 ),
5634 Side = 1,
5635 Rank = 14,
5636 Model = "models/sono/swbf3/forest.mdl",
5637 Regiment = "DO NOT USE",
5638} )
5639
5640TEAM_SCB_HCOLO = CreateTeam( "SCB High Colonel", {
5641 Description = "plebbys",
5642 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5643 Colour = Color(50, 50, 50, 255 ),
5644 Side = 1,
5645 Rank = 15,
5646 Model = "models/sono/swbf3/forest.mdl",
5647 Regiment = "DO NOT USE",
5648} )
5649
5650TEAM_SCB_CMD = CreateTeam( "SCB Commander", {
5651 Description = "Commander of the Storm Trooper Core",
5652 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5653 Colour = Color(50, 50, 50, 255 ),
5654 Side = 1,
5655 Rank = 16,
5656 Model = "models/sono/swbf3/forest.mdl",
5657 Regiment = "DO NOT USE",
5658} )
5659
5660TEAM_SCB_BRIG = CreateTeam( "SCB Brigadier", {
5661 Description = "Commander of the Storm Trooper Core",
5662 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5663 Colour = Color(50, 50, 50, 255 ),
5664 Side = 1,
5665 Rank = 17,
5666 Model = "models/sono/swbf3/forest.mdl",
5667 Regiment = "DO NOT USE",
5668} )
5669
5670TEAM_SCB_MAJG = CreateTeam( "SCB Major General", {
5671 Description = "Commander of the Storm Trooper Core",
5672 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5673 Colour = Color(50, 50, 50, 255 ),
5674 Side = 1,
5675 Rank = 18,
5676 Model = "models/sono/swbf3/forest.mdl",
5677 Regiment = "DO NOT USE",
5678} )
5679
5680TEAM_SCB_LTG = CreateTeam( "SCB Lieutenant General", {
5681 Description = "Commander of the Storm Trooper Core",
5682 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5683 Colour = Color(50, 50, 50, 255 ),
5684 Side = 1,
5685 Rank = 19,
5686 Model = "models/sono/swbf3/forest.mdl",
5687 Regiment = "DO NOT USE",
5688} )
5689
5690TEAM_SCB_GEN = CreateTeam( "SCB General", {
5691 Description = "General of the Storm Trooper Core",
5692 Weapons = {"tfa_swch_e11", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
5693 Colour = Color(50, 50, 50, 255 ),
5694 Side = 1,
5695 Rank = 20,
5696 Model = "models/sono/swbf3/forest.mdl",
5697 Regiment = "DO NOT USE",
5698} )
5699
5700TEAM_SENTINEL = CreateTeam( "Sentinel", {
5701 Description = "pleblord",
5702 Weapons = {"tfa_swch_dc15a_bluecamo_fray", "tfa_sw_pestardual"},
5703 Colour = Color(0, 19, 77, 255),
5704 Side = 1,
5705 Rank = 5,
5706 Model = "models/jazzmcfly/jka/eg5/jka_eg5.mdl",
5707 Regiment = "Sentinel",
5708} )
5709
5710TEAM_REVAN = CreateTeam( "Darth", {
5711 Description = "sith lord",
5712 Weapons = {"weapon_lightsaber", "forcechoke"},
5713 Colour = Color(161, 0, 63, 255),
5714 Side = 1,
5715 Rank = 5,
5716 Model = "models/grealms/characters/revan_real/revan.mdl",
5717 Regiment = "Sith",
5718} )
5719
5720TEAM_REMNENT_PVT = CreateTeam( "DO NOT USE", {
5721 Description = "plebbys",
5722 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
5723 Colour = Color(142, 36, 39, 255 ),
5724 Side = 1,
5725 Rank = 1,
5726 Model = "models/ven/tk/rem/tkrem.mdl",
5727 Regiment = "DO NOT USE",
5728} )
5729
5730TEAM_REMNENT_CPL = CreateTeam( "DO NOT USE", {
5731 Description = "plebbys",
5732 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
5733 Colour = Color(142, 36, 39, 255 ),
5734 Side = 1,
5735 Rank = 2,
5736 Model = "models/ven/tk/rem/tkrem.mdl",
5737 Regiment = "DO NOT USE",
5738} )
5739
5740TEAM_REMNENT_SGT = CreateTeam( "DO NOT USE", {
5741 Description = "plebbys",
5742 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
5743 Colour = Color(142, 36, 39, 255 ),
5744 Side = 1,
5745 Rank = 3,
5746 Model = "models/ven/tk/rem/tkrem.mdl",
5747 Regiment = "DO NOT USE",
5748} )
5749
5750TEAM_REMNENT_WO = CreateTeam( "DO NOT USE", {
5751 Description = "plebbys",
5752 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
5753 Colour = Color(142, 36, 39, 255 ),
5754 Side = 1,
5755 Rank = 4,
5756 Model = "models/ven/tk/rem/tkrem.mdl",
5757 Regiment = "DO NOT USE",
5758} )
5759
5760TEAM_REMNENT_LT = CreateTeam( "DO NOT USE", {
5761 Description = "plebbys",
5762 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5763 Colour = Color(142, 36, 39, 255 ),
5764 Side = 1,
5765 Rank = 5,
5766 Model = "models/ven/tk/rem/tkrem.mdl",
5767 Regiment = "DO NOT USE",
5768} )
5769
5770
5771TEAM_REMNENT_CAPT = 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 = 6,
5777 Model = "models/ven/tk/rem/tkrem.mdl",
5778 Regiment = "DO NOT USE",
5779} )
5780
5781TEAM_REMNENT_MAJ = CreateTeam( "DO NOT USE", {
5782 Description = "plebbys",
5783 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5784 Colour = Color(142, 36, 39, 255 ),
5785 Side = 1,
5786 Rank = 7,
5787 Model = "models/ven/tk/rem/tkrem.mdl",
5788 Regiment = "DO NOT USE",
5789} )
5790
5791TEAM_REMNENT_CMD = CreateTeam( "DO NOT USE", {
5792 Description = "Commander of the Storm Trooper Core",
5793 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5794 Colour = Color(142, 36, 39, 255 ),
5795 Side = 1,
5796 Rank = 8,
5797 Model = "models/ven/tk/rem/tkrem.mdl",
5798 Regiment = "DO NOT USE",
5799} )
5800
5801TEAM_REMNENT_BRIG = CreateTeam( "DO NOT USE", {
5802 Description = "Commander of the Storm Trooper Core",
5803 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5804 Colour = Color(142, 36, 39, 255 ),
5805 Side = 1,
5806 Rank = 9,
5807 Model = "models/ven/tk/rem/tkrem.mdl",
5808 Regiment = "DO NOT USE",
5809} )
5810
5811TEAM_REMNENT_MAJG = CreateTeam( "DO NOT USE", {
5812 Description = "Commander of the Storm Trooper Core",
5813 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5814 Colour = Color(142, 36, 39, 255 ),
5815 Side = 1,
5816 Rank = 10,
5817 Model = "models/ven/tk/rem/tkrem.mdl",
5818 Regiment = "DO NOT USE",
5819} )
5820
5821TEAM_REMNENT_LTG = CreateTeam( "DO NOT USE", {
5822 Description = "Commander of the Storm Trooper Core",
5823 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5824 Colour = Color(142, 36, 39, 255 ),
5825 Side = 1,
5826 Rank = 11,
5827 Model = "models/ven/tk/rem/tkrem.mdl",
5828 Regiment = "DO NOT USE",
5829} )
5830
5831TEAM_REMNENT_GEN = CreateTeam( "DO NOT USE", {
5832 Description = "General of the Storm Trooper Core",
5833 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
5834 Colour = Color(142, 36, 39, 255 ),
5835 Side = 1,
5836 Rank = 12,
5837 Model = "models/ven/tk/rem/tkrem.mdl",
5838 Regiment = "DO NOT USE",
5839} )
5840
5841TEAM_TULAKHORD = CreateTeam( "DO NOT USE", {
5842 Description = "sith lord",
5843 Weapons = {},
5844 Colour = Color(161, 0, 63, 255),
5845 Side = 1,
5846 Rank = 5,
5847 Model = "models/player/fatal/troopers/trooper.mdl",
5848 Regiment = "Do not use",
5849} )
5850
5851TEAM_KNIGHT_TRAINEE = CreateTeam( "Knight Trainee", {
5852 Description = "",
5853 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5854 Colour = Color(77, 255, 183, 255),
5855 Side = 1,
5856 Rank = 1,
5857 Model = "models/grealms/characters/zakuulknight/zakuulknight.mdl",
5858 Regiment = "Knights of Zakuul",
5859} )
5860
5861TEAM_KNIGHT_PRIVATE = CreateTeam( "Knight Private", {
5862 Description = "",
5863 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5864 Colour = Color(77, 255, 183, 255),
5865 Side = 1,
5866 Rank = 2,
5867 Model = "models/grealms/characters/zakuulknight/zakuulknight.mdl",
5868 Regiment = "Knights of Zakuul",
5869} )
5870
5871TEAM_KNIGHT_CORPORAL = CreateTeam( "Knight Corporal", {
5872 Description = "",
5873 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5874 Colour = Color(77, 255, 183, 255),
5875 Side = 1,
5876 Rank = 4,
5877 Model = "models/grealms/characters/seargeant/seargeant.mdl",
5878 Regiment = "Knights of Zakuul",
5879} )
5880TEAM_KNIGHT_SERGEANT = CreateTeam( "Knight Sergeant", {
5881 Description = "",
5882 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5883 Colour = Color(77, 255, 183, 255),
5884 Side = 1,
5885 Rank = 5,
5886 Model = "models/grealms/characters/seargeant/seargeant.mdl",
5887 Regiment = "Knights of Zakuul",
5888} )
5889TEAM_KNIGHT_LIEUTENANT = CreateTeam( "Knight Lieutenant", {
5890 Description = "",
5891 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5892 Colour = Color(77, 255, 183, 255),
5893 Side = 1,
5894 Rank = 10,
5895 Model = "models/grealms/characters/knighttroopergen/knighttroopergen.mdl",
5896 Regiment = "Knights of Zakuul",
5897} )
5898TEAM_KNIGHT_CAPTAIN = CreateTeam( "Knight Captain", {
5899 Description = "",
5900 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5901 Colour = Color(77, 255, 183, 255),
5902 Side = 1,
5903 Rank = 12,
5904 Model = "models/grealms/characters/knighttrooper/knighttrooper.mdl",
5905 Regiment = "Knights of Zakuul",
5906} )
5907
5908TEAM_KNIGHT_COMMANDER = CreateTeam( "Knight Commander", {
5909 Description = "",
5910 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
5911 Colour = Color(77, 255, 183, 255),
5912 Side = 1,
5913 Rank = 16,
5914 Model = "models/banks/zakuulpaladin/zakuulpaladin.mdl",
5915 Regiment = "Knights of Zakuul",
5916} )
5917
5918TEAM_OLDISB_CHF = CreateTeam( "OLDISB Chief", {
5919 Description = "Chief of the OLDISB",
5920 Weapons = {},
5921 Colour = Color(255, 255, 255, 255),
5922 Side = 1,
5923 Rank = 4,
5924 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
5925 Regiment = "DO NOT USE",
5926} )
5927
5928TEAM_OLDISB_CONS = CreateTeam( "OLDISB Constable", {
5929 Description = "Constable of the OLDISB",
5930 Weapons = {},
5931 Colour = Color(255, 255, 255, 255),
5932 Side = 1,
5933 Rank = 8,
5934 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
5935 Regiment = "DO NOT USE",
5936} )
5937
5938TEAM_OLDISB_SCONS = CreateTeam( "OLDISB Senior Constable", {
5939 Description = "Officer of the OLDISB",
5940 Weapons = {},
5941 Colour = Color(255, 255, 255, 255),
5942 Side = 1,
5943 Rank = 9,
5944 Model = "models/player/hydro/swbf_imperial_officer_nco/swbf_imperial_officer_nco.mdl",
5945 Regiment = "DO NOT USE",
5946} )
5947
5948TEAM_OLDISB_COLO = CreateTeam( "OLDISB Colonel", {
5949 Description = "Officer of the OLDISB",
5950 Weapons = {},
5951 Colour = Color(255, 255, 255, 255),
5952 Side = 1,
5953 Rank = 10,
5954 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
5955 Regiment = "DO NOT USE",
5956} )
5957
5958TEAM_OLDISB_SCOLO = CreateTeam( "OLDISB Senior Colonel", {
5959 Description = "Officer of the OLDISB",
5960 Weapons = {},
5961 Colour = Color(255, 255, 255, 255),
5962 Side = 1,
5963 Rank = 11,
5964 Model = "models/player/hydro/swbf_imperial_officer_OLDISBofficer/swbf_imperial_officer_OLDISBofficer.mdl",
5965 Regiment = "DO NOT USE",
5966} )
5967
5968TEAM_PROPHET = CreateTeam( "DO NOT USE", {
5969 Description = "",
5970 Weapons = {},
5971 Colour = Color(255, 51, 51, 255),
5972 Side = 1,
5973 Rank = 5,
5974 Model = "models/nate159/req/SWTFU/sith_acolyte.mdl",
5975 Regiment = "DO NOT USE",
5976} )
5977
5978TEAM_SOR_PVT = CreateTeam( "SOR Private", {
5979 Description = "Has to be done",
5980 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
5981 Colour = Color(142, 36, 39, 255 ),
5982 Side = 1,
5983 Rank = 1,
5984 Model = "models/player/venator/tk_arc/tk_arc.mdl",
5985 Regiment = "Special Operations Regiment",
5986} )
5987
5988TEAM_SOR_PFC = CreateTeam( "SOR Private First Class", {
5989 Description = "",
5990 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
5991 Colour = Color(142, 36, 39, 255 ),
5992 Side = 1,
5993 Rank = 2,
5994 Model = "models/player/venator/tk_arc/tk_arc.mdl",
5995 Regiment = "Special Operations Regiment",
5996} )
5997
5998TEAM_SOR_LCPL = CreateTeam( "SOR Lance Corporal", {
5999 Description = "models/player/venator/tk_arc/tk_arc.mdl",
6000 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6001 Colour = Color(142, 36, 39, 255 ),
6002 Side = 1,
6003 Rank = 3,
6004 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6005 Regiment = "Special Operations Regiment",
6006} )
6007
6008TEAM_SOR_CPL = CreateTeam( "SOR Corporal", {
6009 Description = "",
6010 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6011 Colour = Color(142, 36, 39, 255 ),
6012 Side = 1,
6013 Rank = 4,
6014 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6015 Regiment = "Special Operations Regiment",
6016} )
6017
6018TEAM_SOR_SGT = CreateTeam( "SOR Sergeant", {
6019 Description = "",
6020 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6021 Colour = Color(142, 36, 39, 255 ),
6022 Side = 1,
6023 Rank = 5,
6024 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6025 Regiment = "Special Operations Regiment",
6026 } )
6027
6028TEAM_SOR_SSGT = CreateTeam( "SOR Staff Sergeant", {
6029 Description = "",
6030 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6031 Colour = Color(142, 36, 39, 255 ),
6032 Side = 1,
6033 Rank = 6,
6034 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6035 Regiment = "Special Operations Regiment",
6036} )
6037
6038TEAM_SOR_MSGT = CreateTeam( "SOR Master Sergeant", {
6039 Description = "",
6040 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6041 Colour = Color(142, 36, 39, 255 ),
6042 Side = 1,
6043 Rank = 7,
6044 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6045 Regiment = "Special Operations Regiment",
6046} )
6047
6048TEAM_SOR_WO = CreateTeam( "SOR Warrant Officer", {
6049 Description = "",
6050 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6051 Colour = Color(142, 36, 39, 255 ),
6052 Side = 1,
6053 Rank = 8,
6054 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6055 Regiment = "Special Operations Regiment",
6056} )
6057
6058TEAM_SOR_OFFICERCADET = CreateTeam( "SOR Officer Cadet", {
6059 Description = "",
6060 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6061 Colour = Color(142, 36, 39, 255 ),
6062 Side = 1,
6063 Rank = 9,
6064 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6065 Regiment = "Special Operations Regiment",
6066} )
6067
6068TEAM_SOR_LT = CreateTeam( "SOR Lieutenant", {
6069 Description = "",
6070 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6071 Colour = Color(142, 36, 39, 255 ),
6072 Side = 1,
6073 Rank = 10,
6074 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6075 Regiment = "Special Operations Regiment",
6076} )
6077
6078TEAM_SOR_FLT = CreateTeam( "SOR First Lieutenant", {
6079 Description = "",
6080 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6081 Colour = Color(142, 36, 39, 255 ),
6082 Side = 1,
6083 Rank = 11,
6084 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6085 Regiment = "Special Operations Regiment",
6086} )
6087
6088TEAM_SOR_CPT = CreateTeam( "SOR Captain", {
6089 Description = "",
6090 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6091 Colour = Color(142, 36, 39, 255 ),
6092 Side = 1,
6093 Rank = 12,
6094 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6095 Regiment = "Special Operations Regiment",
6096} )
6097
6098TEAM_SOR_MARSH = CreateTeam( "SOR Marshal", {
6099 Description = "",
6100 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "zeus_thermaldet", "st_e11d"},
6101 Colour = Color(142, 36, 39, 255 ),
6102 Side = 1,
6103 Rank = 17,
6104 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6105 Regiment = "Special Operations Regiment",
6106} )
6107
6108TEAM_SOR_DEMO = CreateTeam( "SOR Demo", {
6109 Description = "",
6110 Weapons = {"tfa_swch_alphablaster", "zeus_thermaldet", "st_e11d"},
6111 Colour = Color(142, 36, 39, 255 ),
6112 Side = 1,
6113 Rank = 5,
6114 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6115 Regiment = "Special Operations Regiment",
6116} )
6117
6118TEAM_SOR_SNIPER = CreateTeam( "SOR Sniper", {
6119 Description = "",
6120 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_alphablaster", "tfa_swch_se14c", "st_e11d"},
6121 Colour = Color(142, 36, 39, 255 ),
6122 Side = 1,
6123 Rank = 5,
6124 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6125 Regiment = "Special Operations Regiment",
6126} )
6127
6128TEAM_SOR_MEDIC = CreateTeam( "SOR Medic", {
6129 Description = "",
6130 Weapons = {"tfa_swch_alphablaster", "weapon_bactainjector", "st_e11d"},
6131 Colour = Color(142, 36, 39, 255 ),
6132 Side = 1,
6133 Rank = 5,
6134 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6135 Regiment = "Special Operations Regiment",
6136} )
6137
6138TEAM_SOR_HEAVY= CreateTeam( "SOR Heavy", {
6139 Description = "",
6140 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "st_e11d"},
6141 Colour = Color(142, 36, 39, 255 ),
6142 Side = 1,
6143 Rank = 5,
6144 Model = "models/player/venator/tk_arc/tk_arc.mdl",
6145 Regiment = "Special Operations Regiment",
6146} )
6147
6148TEAM_MARAJADE = CreateTeam( "", {
6149 Description = "2000 year old sith lord",
6150 Weapons = {"weapon_lightsaber", "forcechoke"},
6151 Colour = Color(161, 0, 63, 255),
6152 Side = 1,
6153 Rank = 5,
6154 Model = "models/syntheticgaming/characters/marajade/marajade.mdl",
6155 Regiment = "Sith",
6156} )
6157
6158TEAM_LANDO = CreateTeam( "Lando", {
6159Description = "YTB",
6160Weapons = {"tfa_swch_dl44", "weapon_fists"},
6161Colour = Color(255, 255, 255, 255),
6162Side = 5,
6163Rank = 1,
6164Model = "=models/player/valley/lando.mdl",
6165Regiment = "Event",
6166} )
6167
6168TEAM_K2SO = CreateTeam( "KX Security Droid", {
6169Description = "topkek",
6170Weapons = {"tfa_swch_dl44", "weapon_fists", "weapon_cuff_elastic", "tfa_swch_se14c"},
6171Colour = Color(0, 255, 255, 255 ),
6172Side = 1,
6173Rank = 5,
6174Model = "models/player/valley/k2so.mdl",
6175Regiment = "KX-Series",
6176} )
6177
6178TEAM_HK51 = CreateTeam( "HK-51", {
6179 Description = "Assassin Droid",
6180 Weapons = {"tfa_swch_dc17m_br","weapon_cuff_elastic", "tfa_swch_pulsecannon"},
6181 Colour = Color(161, 0, 63, 255),
6182 Side = 1,
6183 Rank = 5,
6184 Model = "models/nikout/swtor/npc/hk51.mdl",
6185 Regiment = "HK-51",
6186} )
6187
6188TEAM_HK47 = CreateTeam( "HK-47", {
6189 Description = "Assassin Droid",
6190 Weapons = {"tfa_swch_dc17m_br","weapon_cuff_elastic", "tfa_swch_pulsecannon"},
6191 Colour = Color(161, 0, 63, 255),
6192 Side = 1,
6193 Rank = 5,
6194 Model = "models/nikout/swtor/npc/hk47.mdl",
6195 Regiment = "HK-47",
6196} )
6197
6198TEAM_31ST_PVT = CreateTeam( "31st Private", {
6199 Description = "plebbys",
6200 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6201 Colour = Color(0, 19, 77, 255),
6202 Side = 1,
6203 Rank = 1,
6204 Model = "models/player/banks/trooper/trooper.mdl",
6205 Regiment = "31st Demolitions Battalion",
6206} )
6207
6208TEAM_31ST_PFC = CreateTeam( "31st Private First Class", {
6209 Description = "plebbys",
6210 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6211 Colour = Color(0, 19, 77, 255),
6212 Side = 1,
6213 Rank = 2,
6214 Model = "models/player/banks/trooper/trooper.mdl",
6215 Regiment = "31st Demolitions Battalion",
6216} )
6217
6218TEAM_31ST_LCPL = CreateTeam( "31st Lance Corporal", {
6219 Description = "models/player/fatal/troopers/trooper.mdl",
6220 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6221 Colour = Color(0, 19, 77, 255),
6222 Side = 1,
6223 Rank = 3,
6224 Model = "models/player/banks/trooper/trooper.mdl",
6225 Regiment = "31st Demolitions Battalion",
6226} )
6227
6228TEAM_31ST_CPL = CreateTeam( "31st Corporal", {
6229 Description = "plebbys",
6230 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6231 Colour = Color(0, 19, 77, 255),
6232 Side = 1,
6233 Rank = 4,
6234 Model = "models/player/banks/trooper/trooper.mdl",
6235 Regiment = "31st Demolitions Battalion",
6236} )
6237
6238TEAM_31ST_SGT = CreateTeam( "31st Sergeant", {
6239 Description = "plebbys",
6240 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6241 Colour = Color(0, 19, 77, 255),
6242 Side = 1,
6243 Rank = 5,
6244 Model = "models/player/banks/trooper/trooper.mdl",
6245 Regiment = "31st Demolitions Battalion",
6246} )
6247
6248TEAM_31ST_SSGT = CreateTeam( "31st Staff Sergeant", {
6249 Description = "plebbys",
6250 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6251 Colour = Color(0, 19, 77, 255),
6252 Side = 1,
6253 Rank = 6,
6254 Model = "models/player/banks/trooper/trooper.mdl",
6255 Regiment = "31st Demolitions Battalion",
6256} )
6257
6258TEAM_31ST_MSGT = CreateTeam( "31st Master Sergeant", {
6259 Description = "plebbys",
6260 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6261 Colour = Color(0, 19, 77, 255),
6262 Side = 1,
6263 Rank = 7,
6264 Model = "models/player/banks/trooper/trooper.mdl",
6265 Regiment = "31st Demolitions Battalion",
6266} )
6267
6268TEAM_31ST_WO = CreateTeam( "31st Warrant Officer", {
6269 Description = "plebbys",
6270 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11"},
6271 Colour = Color(0, 19, 77, 255),
6272 Side = 1,
6273 Rank = 8,
6274 Model = "models/player/banks/officer/officer.mdl",
6275 Regiment = "31st Demolitions Battalion",
6276} )
6277
6278TEAM_31ST_OFFICERCADET = CreateTeam( "31st Officer Cadet", {
6279 Description = "plebbys",
6280 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6281 Colour = Color(0, 19, 77, 255),
6282 Side = 1,
6283 Rank = 9,
6284 Model = "models/player/banks/officer/officer.mdl",
6285 Regiment = "31st Demolitions Battalion",
6286} )
6287
6288TEAM_31ST_LT = CreateTeam( "31st Lieutenant", {
6289 Description = "plebbys",
6290 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6291 Colour = Color(0, 19, 77, 255),
6292 Side = 1,
6293 Rank = 10,
6294 Model = "models/player/banks/officer/officer.mdl",
6295 Regiment = "31st Demolitions Battalion",
6296} )
6297
6298TEAM_31ST_FLT = CreateTeam( "31st First Lieutenant", {
6299 Description = "plebbys",
6300 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6301 Colour = Color(0, 19, 77, 255),
6302 Side = 1,
6303 Rank = 11,
6304 Model = "models/player/banks/officer/officer.mdl",
6305 Regiment = "31st Demolitions Battalion",
6306} )
6307
6308TEAM_31ST_CAPT = CreateTeam( "31st Captain", {
6309 Description = "plebbys",
6310 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6311 Colour = Color(0, 19, 77, 255),
6312 Side = 1,
6313 Rank = 12,
6314 Model = "models/player/banks/officer/officer.mdl",
6315 Regiment = "31st Demolitions Battalion",
6316} )
6317
6318TEAM_31ST_MAJ = CreateTeam( "31st Major", {
6319 Description = "plebbys",
6320 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6321 Colour = Color(0, 19, 77, 255),
6322 Side = 1,
6323 Rank = 13,
6324 Model = "models/player/banks/officer/officer.mdl",
6325 Regiment = "31st Demolitions Battalion",
6326} )
6327
6328TEAM_31ST_COLO = CreateTeam( "31st Colonel", {
6329 Description = "plebbys",
6330 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6331 Colour = Color(0, 19, 77, 255),
6332 Side = 1,
6333 Rank = 14,
6334 Model = "models/player/banks/officer/officer.mdl",
6335 Regiment = "31st Demolitions Battalion",
6336} )
6337
6338TEAM_31ST_HCOLO = CreateTeam( "31st High Colonel", {
6339 Description = "plebbys",
6340 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6341 Colour = Color(0, 19, 77, 255),
6342 Side = 1,
6343 Rank = 15,
6344 Model = "models/player/banks/officer/officer.mdl",
6345 Regiment = "31st Demolitions Battalion",
6346} )
6347
6348TEAM_31ST_CMD = CreateTeam( "31st Commander", {
6349 Description = "Commander of the Storm Trooper Core",
6350 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6351 Colour = Color(0, 19, 77, 255),
6352 Side = 1,
6353 Rank = 16,
6354 Model = "models/player/banks/commander/commander.mdl",
6355 Regiment = "31st Demolitions Battalion",
6356} )
6357
6358TEAM_31ST_BRIG = CreateTeam( "31st Brigadier", {
6359 Description = "Commander of the Storm Trooper Core",
6360 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6361 Colour = Color(0, 19, 77, 255),
6362 Side = 1,
6363 Rank = 17,
6364 Model = "models/player/banks/commander/commander.mdl",
6365 Regiment = "31st Demolitions Battalion",
6366} )
6367
6368TEAM_31ST_MAJG = CreateTeam( "31st Major General", {
6369 Description = "Commander of the Storm Trooper Core",
6370 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6371 Colour = Color(0, 19, 77, 255),
6372 Side = 1,
6373 Rank = 18,
6374 Model = "models/player/banks/commander/commander.mdl",
6375 Regiment = "31st Demolitions Battalion",
6376} )
6377
6378TEAM_31ST_LTG = CreateTeam( "31st Lieutenant General", {
6379 Description = "Commander of the Storm Trooper Core",
6380 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6381 Colour = Color(0, 19, 77, 255),
6382 Side = 1,
6383 Rank = 19,
6384 Model = "models/player/banks/commander/commander.mdl",
6385 Regiment = "31st Demolitions Battalion",
6386} )
6387
6388TEAM_31ST_GEN = CreateTeam( "31st General", {
6389 Description = "General of the Storm Trooper Core",
6390 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_dlt19", "tfa_swch_e11", "weapon_slam"},
6391 Colour = Color(0, 19, 77, 255),
6392 Side = 1,
6393 Rank = 20,
6394 Model = "models/player/banks/commander/commander.mdl",
6395 Regiment = "31st Demolitions Battalion",
6396} )
6397
6398TEAM_KNIGHT_SQUIRE = CreateTeam( "Knight Squire", {
6399 Description = "",
6400 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
6401 Colour = Color(77, 255, 183, 255),
6402 Side = 1,
6403 Rank = 6,
6404 Model = "models/grealms/characters/knighttrooperhg/knighttrooperhg.mdl",
6405 Regiment = "Knights of Zakuul",
6406} )
6407
6408TEAM_KNIGHT_TEMPLAR = CreateTeam( "Knight Templar", {
6409 Description = "",
6410 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
6411 Colour = Color(77, 255, 183, 255),
6412 Side = 1,
6413 Rank = 7,
6414 Model = "models/gonzo/zakuulguardian/zakuulguardian.mdl",
6415 Regiment = "Knights of Zakuul",
6416} )
6417
6418TEAM_KNIGHT_PALADIN = CreateTeam( "Knight Paladin", {
6419 Description = "",
6420 Weapons = {"weapon_lightsaber", "forcechoke", "weapon_cuff_elastic"},
6421 Colour = Color(77, 255, 183, 255),
6422 Side = 1,
6423 Rank = 8,
6424 Model = "models/grealms/characters/darktrooper/darktrooper.mdl",
6425 Regiment = "Knights of Zakuul",
6426} )
6427
6428TEAM_HIGHGENERAL = CreateTeam( "High General", {
6429 Description = "",
6430 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6431 Colour = Color(161, 0, 63, 255),
6432 Side = 1,
6433 Rank = 5,
6434 Model = "models/player/venator/tk_arc/tk_havoc.mdl",
6435 Regiment = "Sith",
6436} )
6437
6438TEAM_ARGALUS = CreateTeam( "Lord", {
6439 Description = "Sith Lord",
6440 Weapons = {"weapon_lightsaber", "forcechoke"},
6441 Colour = Color(161, 0, 63, 255),
6442 Side = 1,
6443 Rank = 5,
6444 Model = "models/rebuilt/arcann_rebuilt.mdl",
6445 Regiment = "Sith",
6446} )
6447
6448TEAM_MALKUTHAL = CreateTeam( "Lord", {
6449 Description = "Sith Lord",
6450 Weapons = {"weapon_lightsaber", "forcechoke"},
6451 Colour = Color(161, 0, 63, 255),
6452 Side = 1,
6453 Rank = 5,
6454 Model = "models/revan/revan.mdl",
6455 Regiment = "Sith",
6456} )
6457
6458TEAM_IMPERIALCOMMANDO_ARCHANGEL = CreateTeam( "IC", {
6459 Description = "Member of the Imperial Commando Unit",
6460 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6461 Colour = Color(82, 173, 239, 255),
6462 Side = 1,
6463 Rank = 5,
6464 Model = "models/player/sono/starwars/archangel.mdl",
6465 Regiment = "Imperial Commando",
6466} )
6467
6468TEAM_IMPERIALCOMMANDO_CONTORT = CreateTeam( "IC", {
6469 Description = "Member of the Imperial Commando Unit",
6470 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6471 Colour = Color(82, 173, 239, 255),
6472 Side = 1,
6473 Rank = 5,
6474 Model = "models/player/sono/starwars/contort.mdl",
6475 Regiment = "Imperial Commando",
6476} )
6477
6478TEAM_IMPERIALCOMMANDO_GRINDER = CreateTeam( "IC", {
6479 Description = "Member of the Imperial Commando Unit",
6480 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6481 Colour = Color(82, 173, 239, 255),
6482 Side = 1,
6483 Rank = 5,
6484 Model = "models/player/sono/starwars/grinder.mdl",
6485 Regiment = "Imperial Commando",
6486} )
6487
6488TEAM_IMPERIALCOMMANDO_GRIP = CreateTeam( "IC", {
6489 Description = "Member of the Imperial Commando Unit",
6490 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6491 Colour = Color(82, 173, 239, 255),
6492 Side = 1,
6493 Rank = 5,
6494 Model = "models/player/sono/starwars/grip.mdl",
6495 Regiment = "Imperial Commando",
6496} )
6497
6498TEAM_IMPERIALCOMMANDO_HEADSHOT = CreateTeam( "IC", {
6499 Description = "Member of the Imperial Commando Unit",
6500 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6501 Colour = Color(82, 173, 239, 255),
6502 Side = 1,
6503 Rank = 5,
6504 Model = "models/player/sono/starwars/headshot.mdl",
6505 Regiment = "Imperial Commando",
6506} )
6507
6508TEAM_IMPERIALCOMMANDO_KURZ = CreateTeam( "IC", {
6509 Description = "Member of the Imperial Commando Unit",
6510 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6511 Colour = Color(82, 173, 239, 255),
6512 Side = 1,
6513 Rank = 5,
6514 Model = "models/player/sono/starwars/kurz.mdl",
6515 Regiment = "Imperial Commando",
6516} )
6517
6518TEAM_IMPERIALCOMMANDO_SCORPION = CreateTeam( "IC", {
6519 Description = "Member of the Imperial Commando Unit",
6520 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6521 Colour = Color(82, 173, 239, 255),
6522 Side = 1,
6523 Rank = 5,
6524 Model = "models/player/sono/starwars/scorpion.mdl",
6525 Regiment = "Imperial Commando",
6526} )
6527
6528TEAM_IMPERIALCOMMANDO_STRIPE = CreateTeam( "IC", {
6529 Description = "Member of the Imperial Commando Unit",
6530 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6531 Colour = Color(82, 173, 239, 255),
6532 Side = 1,
6533 Rank = 5,
6534 Model = "models/player/sono/starwars/stripe.mdl",
6535 Regiment = "Imperial Commando",
6536} )
6537
6538TEAM_IMPERIALCOMMANDO_TRANKER = CreateTeam( "IC", {
6539 Description = "Member of the Imperial Commando Unit",
6540 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c","weapon_camo"},
6541 Colour = Color(82, 173, 239, 255),
6542 Side = 1,
6543 Rank = 5,
6544 Model = "models/player/sono/starwars/tranker.mdl",
6545 Regiment = "Imperial Commando",
6546} )
6547
6548TEAM_PVP1 = CreateTeam( "PVP-1", {
6549 Description = "",
6550 Weapons = {"tfa_swch_e11"},
6551 Colour = Color(144, 144, 144, 255),
6552 Side = 1,
6553 Rank = 1,
6554 Model = "models/player/fatal/troopers/trooper.mdl",
6555 Regiment = "PVP-1",
6556} )
6557
6558TEAM_PVP2 = CreateTeam( "PVP-2", {
6559 Description = "",
6560 Weapons = {"tfa_swch_e11"},
6561 Colour = Color(144, 144, 144, 255),
6562 Side = 1,
6563 Rank = 1,
6564 Model = "models/player/fatal/troopers/trooper.mdl",
6565 Regiment = "PVP-2",
6566} )
6567
6568TEAM_REBEL = CreateTeam( "Rebel", {
6569 Description = "",
6570 Weapons = {"tfa_swch_a280c"},
6571 Colour = Color(104, 81, 17, 255),
6572 Side = 1,
6573 Rank = 1,
6574 Model = "models/player/sgg/starwars/rebels/r_trooper/male_04.mdl",
6575 Regiment = "Rebel",
6576} )
6577
6578TEAM_RSTORMT_HEAVY = CreateTeam( "RST Heavy", {
6579 Description = "Member of the Royal Battalion",
6580 Weapons = {"tfa_swch_e11","weapon_cuff_elastic", "tfa_sw_cisshot", "tfa_swch_pulsecannon", "tfa_swch_rt97c"},
6581 Colour = Color(230, 0, 90, 255),
6582 Side = 1,
6583 Rank = 5,
6584 Model = "models/player/hydro/imperial_royal_stormtrooper/royal_stormtrooper.mdl",
6585 Regiment = "Royal Storm Trooper",
6586} )
6587
6588TEAM_SHOCK_HEAVY = CreateTeam( "SK Heavy", {
6589 Description = "Member of the Shock Trooper Battalion",
6590 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_dlt19", "weapon_taser", "tfa_swch_rt97c"},
6591 Colour = Color(255, 51, 51, 255),
6592 Side = 1,
6593 Rank = 5,
6594 Model = "models/sono/shocktrooper/sergeant.mdl",
6595 Regiment = "Shock Trooper",
6596} )
6597
6598TEAM_STR_PVT = CreateTeam( "STR PVT", {
6599 Description = "",
6600 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6601 Colour = Color(255, 215, 0, 255),
6602 Side = 1,
6603 Rank = 1,
6604 Model = "models/player/arf_pack/arf_jet.mdl",
6605 Regiment = "Starcrash Brigade",
6606} )
6607
6608TEAM_STR_PFC = CreateTeam( "STR PFC", {
6609 Description = "",
6610 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6611 Colour = Color(255, 215, 0, 255),
6612 Side = 1,
6613 Rank = 2,
6614 Model = "models/player/arf_pack/arf_jet.mdl",
6615 Regiment = "Starcrash Brigade",
6616} )
6617
6618TEAM_STR_LCPL = CreateTeam( "STR LCPL", {
6619 Description = "",
6620 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6621 Colour = Color(255, 215, 0, 255),
6622 Side = 1,
6623 Rank = 3,
6624 Model = "models/player/arf_pack/arf_officer.mdl",
6625 Regiment = "Starcrash Brigade",
6626} )
6627
6628TEAM_STR_CPL = CreateTeam( "STR CPL", {
6629 Description = "",
6630 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6631 Colour = Color(255, 215, 0, 255),
6632 Side = 1,
6633 Rank = 4,
6634 Model = "models/player/arf_pack/arf_officer.mdl",
6635 Regiment = "Starcrash Brigade",
6636} )
6637
6638TEAM_STR_SGT = CreateTeam( "STR SGT", {
6639 Description = "",
6640 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6641 Colour = Color(255, 215, 0, 255),
6642 Side = 1,
6643 Rank = 5,
6644 Model = "models/player/arf_pack/arf_officer.mdl",
6645 Regiment = "Starcrash Brigade",
6646} )
6647
6648TEAM_STR_SSGT = CreateTeam( "STR SSGT", {
6649 Description = "",
6650 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6651 Colour = Color(255, 215, 0, 255),
6652 Side = 1,
6653 Rank = 6,
6654 Model = "models/player/arf_pack/arf_assassin.mdl",
6655 Regiment = "Starcrash Brigade",
6656} )
6657
6658TEAM_STR_MSGT = CreateTeam( "STR MSGT", {
6659 Description = "",
6660 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6661 Colour = Color(255, 215, 0, 255),
6662 Side = 1,
6663 Rank = 7,
6664 Model = "models/player/arf_pack/arf_assassin.mdl",
6665 Regiment = "Starcrash Brigade",
6666} )
6667
6668TEAM_STR_OFFICERCADET = CreateTeam( "STR Officer Cadet", {
6669 Description = "",
6670 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6671 Colour = Color(255, 215, 0, 255),
6672 Side = 1,
6673 Rank = 8,
6674 Model = "models/player/arf_pack/arf_assassin.mdl",
6675 Regiment = "Starcrash Brigade",
6676} )
6677
6678TEAM_STR_WO = CreateTeam( "STR Warrant Officer", {
6679 Description = "",
6680 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6681 Colour = Color(255, 215, 0, 255),
6682 Side = 1,
6683 Rank = 9,
6684 Model = "models/player/arf_pack/arf_marksman.mdl",
6685 Regiment = "Starcrash Brigade",
6686} )
6687
6688TEAM_STR_LT = CreateTeam( "STR Lieutenant", {
6689 Description = "",
6690 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6691 Colour = Color(255, 215, 0, 255),
6692 Side = 1,
6693 Rank = 10,
6694 Model = "models/player/arf_pack/arf_marksman.mdl",
6695 Regiment = "Starcrash Brigade",
6696} )
6697
6698TEAM_STR_1LT = CreateTeam( "STR 1st Lieutenant", {
6699 Description = "",
6700 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6701 Colour = Color(255, 215, 0, 255),
6702 Side = 1,
6703 Rank = 11,
6704 Model = "models/player/arf_pack/arf_marksman.mdl",
6705 Regiment = "Starcrash Brigade",
6706} )
6707
6708TEAM_STR_CPT = CreateTeam( "STR Captain", {
6709 Description = "",
6710 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6711 Colour = Color(255, 215, 0, 255),
6712 Side = 1,
6713 Rank = 12,
6714 Model = "models/player/arf_pack/arf_medic.mdl",
6715 Regiment = "Starcrash Brigade",
6716} )
6717
6718TEAM_STR_MAJOR = CreateTeam( "STR Major", {
6719 Description = "",
6720 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6721 Colour = Color(255, 215, 0, 255),
6722 Side = 1,
6723 Rank = 13,
6724 Model = "models/player/arf_pack/arf_shadow.mdl",
6725 Regiment = "Starcrash Brigade",
6726} )
6727
6728TEAM_STR_COLO = CreateTeam( "STR Colonel", {
6729 Description = "",
6730 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6731 Colour = Color(255, 215, 0, 255),
6732 Side = 1,
6733 Rank = 14,
6734 Model = "models/player/arf_pack/arf_flame.mdl",
6735 Regiment = "Starcrash Brigade",
6736} )
6737
6738TEAM_STR_HCOLO = CreateTeam( "STR High Colonel", {
6739 Description = "",
6740 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6741 Colour = Color(255, 215, 0, 255),
6742 Side = 1,
6743 Rank = 15,
6744 Model = "models/player/arf_pack/arf_flame.mdl",
6745 Regiment = "Starcrash Brigade",
6746} )
6747
6748TEAM_STR_CMDR = CreateTeam( "STR Commander", {
6749 Description = "",
6750 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6751 Colour = Color(255, 215, 0, 255),
6752 Side = 1,
6753 Rank = 16,
6754 Model = "models/player/arf_pack/arf_spec.mdl",
6755 Regiment = "Starcrash Brigade",
6756} )
6757
6758TEAM_STR_BRIG = CreateTeam( "STR Brigaider", {
6759 Description = "",
6760 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6761 Colour = Color(255, 215, 0, 255),
6762 Side = 1,
6763 Rank = 17,
6764 Model = "models/player/arf_pack/arf_heavy.mdl",
6765 Regiment = "Starcrash Brigade",
6766} )
6767
6768TEAM_STR_MJRGEN = CreateTeam( "STR Major General", {
6769 Description = "",
6770 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6771 Colour = Color(255, 215, 0, 255),
6772 Side = 1,
6773 Rank = 18,
6774 Model = "models/player/arf_pack/arf_heavy.mdl",
6775 Regiment = "Starcrash Brigade",
6776} )
6777
6778TEAM_STR_LTGEN = CreateTeam( "STR Lieutenant General", {
6779 Description = "",
6780 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6781 Colour = Color(255, 215, 0, 255),
6782 Side = 1,
6783 Rank = 19,
6784 Model = "models/player/arf_pack/arf_heavy.mdl",
6785 Regiment = "Starcrash Brigade",
6786} )
6787
6788TEAM_STR_GEN = CreateTeam( "STR General", {
6789 Description = "",
6790 Weapons = {"tfa_swch_pulsecannon", "tfa_swch_dc17m_br", "weapon_shadowvirus_grenade"},
6791 Colour = Color(255, 215, 0, 255),
6792 Side = 1,
6793 Rank = 20,
6794 Model = "models/player/arf_pack/arf_heavy.mdl",
6795 Regiment = "Starcrash Brigade",
6796} )
6797
6798TEAM_31ST_HEAVY = CreateTeam( "31st Heavy", {
6799 Description = "plebbys",
6800 Weapons = {"tfa_swch_se14c", "zeus_thermaldet", "tfa_swch_alphablaster", "tfa_swch_rt97c"},
6801 Colour = Color(0, 19, 77, 255),
6802 Side = 1,
6803 Rank = 5,
6804 Model = "models/player/banks/trooper/trooper.mdl",
6805 Regiment = "31st Demolitions Battalion",
6806} )
6807
6808TEAM_OLDISB_KALLUS = CreateTeam( "OLDISB", {
6809 Description = "Agent of the OLDISB",
6810 Weapons = {},
6811 Colour = Color(255, 255, 255, 255),
6812 Side = 1,
6813 Rank = 6,
6814 Model = "models/player/valley/kallus.mdl",
6815 Regiment = "DO NOT USE",
6816} )
6817
6818TEAM_RB_HEAVY = CreateTeam( "DO NOT USE", {
6819 Description = "Heavy of Rancor Battalion",
6820 Weapons = {"tfa_swch_se14c", "tfa_swch_rt97c"},
6821 Colour = Color(255, 69, 0, 255 ),
6822 Side = 1,
6823 Rank = 5,
6824 Model = "models/player/venator/tk_arc/tk_colt.mdl",
6825 Regiment = "DO NOT USE",
6826} )
6827
6828TEAM_RB_TECH = CreateTeam( "DO NOT USE", {
6829 Description = "The tech guy of Rancor Battalion",
6830 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c"},
6831 Colour = Color(255, 69, 0, 255 ),
6832 Side = 1,
6833 Rank = 5,
6834 Model = "models/player/venator/tk_arc/tk_blitz.mdl",
6835 Regiment = "DO NOT USE",
6836} )
6837
6838TEAM_RB_ENGINEER = CreateTeam( "DO NOT USE", {
6839 Description = "The Engineer of Rancor Battalion",
6840 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c"},
6841 Colour = Color(255, 69, 0, 255 ),
6842 Side = 1,
6843 Rank = 5,
6844 Model = "models/player/venator/kingsbury/tk_arc_shadow.mdl",
6845 Regiment = "DO NOT USE",
6846} )
6847
6848TEAM_RB_SNIPER = CreateTeam( "DO NOT USE", {
6849 Description = "The sniper of Rancor Battalion",
6850 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon"},
6851 Colour = Color(255, 69, 0, 255 ),
6852 Side = 1,
6853 Rank = 5,
6854 Model = "models/player/venator/tk_arc/tk_havoc.mdl",
6855 Regiment = "DO NOT USE",
6856} )
6857
6858TEAM_RB_DEMO = CreateTeam( "DO NOT USE", {
6859 Description = "Demo guy of Rancor Battalion",
6860 Weapons = {"tfa_swch_dc17m_br", "zeus_thermaldet", "tfa_swch_se14c"},
6861 Colour = Color(255, 69, 0, 255 ),
6862 Side = 1,
6863 Rank = 5,
6864 Model = "models/player/venator/kingsbury/tk_arc_hammer.mdl",
6865 Regiment = "DO NOT USE",
6866} )
6867
6868TEAM_TERROR_HEAVY = CreateTeam( "TT Heavy", {
6869 Description = "Member of the Terror Trooper Squad",
6870 Weapons = {"weapon_camo", "tfa_swch_a280c", "tfa_swch_pulsecannon", "tfa_swch_rt97c", "realistic_hook"},
6871 Colour = Color(157, 157, 157, 255),
6872 Side = 1,
6873 Rank = 5,
6874 Model = "models/player/starwars/mistersweetroll/terrortrooper.mdl",
6875 Regiment = "Terror Trooper",
6876} )
6877
6878TEAM_ISB_SC = CreateTeam( "ISB Secretary", {
6879 Description = "Member of the Imperial Security Bureau",
6880 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6881 Colour = Color(225, 225, 153, 255 ),
6882 Side = 1,
6883 Rank = 1,
6884 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6885 Regiment = "ISB",
6886} )
6887
6888TEAM_ISB_CON = CreateTeam( "ISB Constable", {
6889 Description = "Member of the Imperial Security Bureau",
6890 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6891 Colour = Color(225, 225, 153, 255 ),
6892 Side = 1,
6893 Rank = 2,
6894 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6895 Regiment = "ISB",
6896} )
6897
6898TEAM_ISB_SNCON = CreateTeam( "ISB Senior Constable", {
6899 Description = "Member of the Imperial Security Bureau",
6900 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6901 Colour = Color(225, 225, 153, 255 ),
6902 Side = 1,
6903 Rank = 3,
6904 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6905 Regiment = "ISB",
6906} )
6907
6908TEAM_ISB_ACOP = CreateTeam( "ISB Acting Operative", {
6909 Description = "Member of the Imperial Security Bureau",
6910 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6911 Colour = Color(225, 225, 153, 255 ),
6912 Side = 1,
6913 Rank = 4,
6914 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6915 Regiment = "ISB",
6916} )
6917
6918TEAM_ISB_JNOP = CreateTeam( "ISB Junior Operative", {
6919 Description = "Member of the Imperial Security Bureau",
6920 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6921 Colour = Color(225, 225, 153, 255 ),
6922 Side = 1,
6923 Rank = 5,
6924 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6925 Regiment = "ISB",
6926} )
6927
6928TEAM_ISB_OP = CreateTeam( "ISB Operative", {
6929 Description = "Member of the Imperial Security Bureau",
6930 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6931 Colour = Color(225, 225, 153, 255 ),
6932 Side = 1,
6933 Rank = 6,
6934 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6935 Regiment = "ISB",
6936} )
6937
6938TEAM_ISB_SNOP = CreateTeam( "ISB Senior Operative", {
6939 Description = "Member of the Imperial Security Bureau",
6940 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6941 Colour = Color(225, 225, 153, 255 ),
6942 Side = 1,
6943 Rank = 7,
6944 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6945 Regiment = "ISB",
6946} )
6947
6948TEAM_ISB_MSOP = CreateTeam( "ISB Master Operative", {
6949 Description = "Member of the Imperial Security Bureau",
6950 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6951 Colour = Color(225, 225, 153, 255 ),
6952 Side = 1,
6953 Rank = 8,
6954 Model = "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl",
6955 Regiment = "ISB",
6956} )
6957
6958TEAM_ISB_ACAGT = CreateTeam( "ISB Acting Agent", {
6959 Description = "Member of the Imperial Security Bureau",
6960 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6961 Colour = Color(225, 225, 153, 255 ),
6962 Side = 1,
6963 Rank = 9,
6964 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
6965 Regiment = "ISB",
6966} )
6967
6968TEAM_ISB_JNAGT = CreateTeam( "ISB Junior Agent", {
6969 Description = "Member of the Imperial Security Bureau",
6970 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6971 Colour = Color(225, 225, 153, 255 ),
6972 Side = 1,
6973 Rank = 10,
6974 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
6975 Regiment = "ISB",
6976} )
6977
6978TEAM_ISB_AGT = CreateTeam( "ISB Agent", {
6979 Description = "Member of the Imperial Security Bureau",
6980 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6981 Colour = Color(225, 225, 153, 255 ),
6982 Side = 1,
6983 Rank = 11,
6984 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
6985 Regiment = "ISB",
6986} )
6987
6988TEAM_ISB_SNAGT = CreateTeam( "ISB Senior Agent", {
6989 Description = "Member of the Imperial Security Bureau",
6990 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
6991 Colour = Color(225, 225, 153, 255 ),
6992 Side = 1,
6993 Rank = 12,
6994 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
6995 Regiment = "ISB",
6996} )
6997
6998TEAM_ISB_SPAGT = CreateTeam( "ISB Special Agent", {
6999 Description = "Member of the Imperial Security Bureau",
7000 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7001 Colour = Color(225, 225, 153, 255 ),
7002 Side = 1,
7003 Rank = 13,
7004 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
7005 Regiment = "ISB",
7006} )
7007
7008TEAM_ISB_HAGT = CreateTeam( "ISB Head Agent", {
7009 Description = "Member of the Imperial Security Bureau",
7010 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7011 Colour = Color(225, 225, 153, 255 ),
7012 Side = 1,
7013 Rank = 14,
7014 Model = "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl",
7015 Regiment = "ISB",
7016} )
7017
7018TEAM_ISB_COLO = CreateTeam( "ISB Colonel", {
7019 Description = "Member of the Imperial Security Bureau",
7020 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7021 Colour = Color(225, 225, 153, 255 ),
7022 Side = 1,
7023 Rank = 15,
7024 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7025 Regiment = "ISB",
7026} )
7027
7028TEAM_ISB_SNCOLO = CreateTeam( "ISB Senior Colonel", {
7029 Description = "Member of the Imperial Security Bureau",
7030 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7031 Colour = Color(225, 225, 153, 255 ),
7032 Side = 1,
7033 Rank = 16,
7034 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7035 Regiment = "ISB",
7036} )
7037
7038TEAM_ISB_CHF = CreateTeam( "ISB Chief", {
7039 Description = "Member of the Imperial Security Bureau",
7040 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7041 Colour = Color(225, 225, 153, 255 ),
7042 Side = 1,
7043 Rank = 17,
7044 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7045 Regiment = "ISB",
7046} )
7047
7048TEAM_ISB_SNCHF = CreateTeam( "ISB Senior Chief", {
7049 Description = "Member of the Imperial Security Bureau",
7050 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7051 Colour = Color(225, 225, 153, 255 ),
7052 Side = 1,
7053 Rank = 18,
7054 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7055 Regiment = "ISB",
7056} )
7057
7058TEAM_ISB_BCHF = CreateTeam( "ISB Bureau Chief", {
7059 Description = "Member of the Imperial Security Bureau",
7060 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7061 Colour = Color(225, 225, 153, 255 ),
7062 Side = 1,
7063 Rank = 19,
7064 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7065 Regiment = "ISB",
7066} )
7067
7068TEAM_ISB_DDTR = CreateTeam( "ISB Deputy Director", {
7069 Description = "Member of the Imperial Security Bureau",
7070 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7071 Colour = Color(225, 225, 153, 255 ),
7072 Side = 1,
7073 Rank = 20,
7074 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
7075 Regiment = "ISB",
7076} )
7077
7078TEAM_ISB_DTR = CreateTeam( "ISB Director", {
7079 Description = "Director of the Imperial Security Bureau",
7080 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7081 Colour = Color(225, 225, 153, 255 ),
7082 Side = 1,
7083 Rank = 21,
7084 Model = "models/player/hydro/swbf_imperial_officer_isbofficer/swbf_imperial_officer_isbofficer.mdl",
7085 Regiment = "ISB",
7086} )
7087
7088TEAM_ISB_ACAGTK = CreateTeam( "ISB Acting Agent", {
7089 Description = "Member of the Imperial Security Bureau",
7090 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7091 Colour = Color(225, 225, 153, 255 ),
7092 Side = 1,
7093 Rank = 9,
7094 Model = "models/player/valley/kallus.mdl",
7095 Regiment = "ISB",
7096} )
7097
7098TEAM_ISB_JNAGTK = CreateTeam( "ISB Junior Agent", {
7099 Description = "Member of the Imperial Security Bureau",
7100 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7101 Colour = Color(225, 225, 153, 255 ),
7102 Side = 1,
7103 Rank = 10,
7104 Model = "models/player/valley/kallus.mdl",
7105 Regiment = "ISB",
7106} )
7107
7108TEAM_ISB_AGTK = CreateTeam( "ISB Agent", {
7109 Description = "Member of the Imperial Security Bureau",
7110 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7111 Colour = Color(225, 225, 153, 255 ),
7112 Side = 1,
7113 Rank = 11,
7114 Model = "models/player/valley/kallus.mdl",
7115 Regiment = "ISB",
7116} )
7117
7118TEAM_ISB_SNAGTK = CreateTeam( "ISB Senior Agent", {
7119 Description = "Member of the Imperial Security Bureau",
7120 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7121 Colour = Color(225, 225, 153, 255 ),
7122 Side = 1,
7123 Rank = 12,
7124 Model = "models/player/valley/kallus.mdl",
7125 Regiment = "ISB",
7126} )
7127
7128TEAM_ISB_SPAGTK = CreateTeam( "ISB Special Agent", {
7129 Description = "Member of the Imperial Security Bureau",
7130 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7131 Colour = Color(225, 225, 153, 255 ),
7132 Side = 1,
7133 Rank = 13,
7134 Model = "models/player/valley/kallus.mdl",
7135 Regiment = "ISB",
7136} )
7137
7138TEAM_ISB_HAGTK = CreateTeam( "ISB Head Agent", {
7139 Description = "Member of the Imperial Security Bureau",
7140 Weapons = {"tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7141 Colour = Color(225, 225, 153, 255 ),
7142 Side = 1,
7143 Rank = 14,
7144 Model = "models/player/valley/kallus.mdl",
7145 Regiment = "ISB",
7146} )
7147
7148TEAM_ISB_DTRK = CreateTeam( "ISB Director", {
7149 Description = "Director of the Imperial Security Bureau",
7150 Weapons = {"tfa_dt29", "tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
7151 Colour = Color(225, 225, 153, 255 ),
7152 Side = 1,
7153 Rank = 22,
7154 Model = "models/player/hydro/swbf_krennic/swbf_krennic.mdl",
7155 Regiment = "ISB",
7156} )
7157
7158TEAM_NAVAL_GUARD = CreateTeam( "DO NOT USE", {
7159 Description = "Member of the Naval Guard",
7160 Weapons = {"tfa_swch_rt97c", "tfa_sw_cisshot", "weapon_cuff_elastic", "tfa_swch_scoutpistol"},
7161 Colour = Color(0, 161, 255),
7162 Side = 1,
7163 Rank = 5,
7164 Model = "models/player/sono/specopstorm/specopstorm.mdl",
7165 Regiment = "DO NOT USE",
7166} )
7167
7168TEAM_DRAGORIAN = CreateTeam( "DO NOT USE", {
7169 Description = "Member of the Naval Guard",
7170 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dl44", "tfa_swch_pulsecannon"},
7171 Colour = Color(127, 95, 0, 255 ),
7172 Side = 1,
7173 Rank = 1,
7174 Model = "models/player/starwars/nhg/senateguard.mdl",
7175 Regiment = "DO NOT USE",
7176} )
7177
7178TEAM_GALEN = CreateTeam( "", {
7179 Description = "Member of the Imperial Security Bureau",
7180 Weapons = {"tfa_swch_e11", "tfa_swch_dh17"},
7181 Colour = Color(225, 225, 153, 255 ),
7182 Side = 1,
7183 Rank = 1,
7184 Model = "models/player/hydro/swbf_imperial_officer_isbofficer/swbf_imperial_officer_isbofficer.mdl",
7185 Regiment = "Galen Urso",
7186} )
7187
7188TEAM_ST_HEAVY = CreateTeam( "ST Heavy", {
7189 Description = "Member of the Storm Trooper Core",
7190 Weapons = {"tfa_swch_e11", "tfa_swch_rt97c"},
7191 Colour = Color(102, 0, 102, 255 ),
7192 Side = 1,
7193 Rank = 5,
7194 Model = "models/player/fatal/troopers/sergeant.mdl",
7195 Regiment = "Storm Trooper",
7196} )
7197
7198
7199TEAM_CUSTOMSITH_CRISPIN = CreateTeam( "Lord", {
7200 Description = "Sith Lord",
7201 Weapons = {"weapon_lightsaber", "forcechoke"},
7202 Colour = Color(161, 0, 63, 255),
7203 Side = 1,
7204 Rank = 5,
7205 Model = "models/lord/lord.mdl",
7206 Regiment = "Sith",
7207} )
7208
7209TEAM_RB_PRIVATE = CreateTeam( "Rancor Private", {
7210 Description = "Private of Rancor Battalion",
7211 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7212 Colour = Color(255,69,0, 255 ),
7213 Side = 1,
7214 Rank = 1,
7215 Model = "models/player/venator/tk_arc/tk_arc.mdl",
7216 Regiment = "Rancor Battalion",
7217} )
7218
7219TEAM_RB_PFC = CreateTeam( "Rancor Private First Class", {
7220Description = "Private First Class of Rancor Battalion",
7221 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7222 Colour = Color(255,69,0, 255 ),
7223 Side = 1,
7224 Rank = 2,
7225 Model = "models/player/venator/tk_arc/tk_arc.mdl",
7226 Regiment = "Rancor Battalion"
7227} )
7228
7229TEAM_RB_LCPL = CreateTeam( "Rancor Lance Corporal", {
7230Description = "Lance Corporal of Rancor Battalion",
7231 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7232 Colour = Color(255,69,0, 255 ),
7233 Side = 1,
7234 Rank = 3,
7235 Model = "models/player/venator/tk_arc/tk_arc.mdl",
7236 Regiment = "Rancor Battalion",
7237} )
7238
7239TEAM_RB_CPL = CreateTeam( "Rancor Corporal", {
7240Description = "Corporal of Rancor Battalion",
7241 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7242 Colour = Color(255,69,0, 255 ),
7243 Side = 1,
7244 Rank = 4,
7245 Model = "models/player/venator/tk_arc/tk_arc.mdl",
7246 Regiment = "Rancor Battalion",
7247} )
7248
7249TEAM_RB_SGT = CreateTeam( "Rancor Sergeant", {
7250Description = "Sergeant of Rancor Battalion",
7251 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7252 Colour = Color(255,69,0, 255 ),
7253 Side = 1,
7254 Rank = 5,
7255 Model = "models/player/kingsbury/tk_arc/tk_green.mdl",
7256 Regiment = "Rancor Battalion",
7257} )
7258
7259TEAM_RB_SSGT = CreateTeam( "Rancor Staff Sergeant", {
7260Description = "Staff Sergeant of Rancor Battalion",
7261 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7262 Colour = Color(255,69,0, 255 ),
7263 Side = 1,
7264 Rank = 6,
7265 Model = "models/player/kingsbury/tk_arc/tk_green.mdl",
7266 Regiment = "Rancor Battalion"
7267} )
7268
7269TEAM_RB_MSGT = CreateTeam( "Rancor Master Sergeant", {
7270Description = "Master Sergeant of Rancor Battalion",
7271 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7272 Colour = Color(255,69,0, 255 ),
7273 Side = 1,
7274 Rank = 7,
7275 Model = "models/player/kingsbury/tk_arc/tk_green.mdl",
7276 Regiment = "Rancor Battalion"
7277} )
7278
7279TEAM_RB_OC = CreateTeam( "Rancor Officer Cadet", {
7280Description = "Officer Cadet of Rancor Battalion",
7281 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7282 Colour = Color(255,69,0, 255 ),
7283 Side = 1,
7284 Rank = 8,
7285 Model = "models/player/kingsbury/tk_arc/tk_green.mdl",
7286 Regiment = "Rancor Battalion"
7287} )
7288
7289TEAM_RB_WO = CreateTeam( "Rancor Warrant Officer", {
7290Description = "Warrant Officer of Rancor Battalion",
7291 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster"},
7292 Colour = Color(255,69,0, 255 ),
7293 Side = 1,
7294 Rank = 9,
7295 Model = "models/player/kingsbury/tk_arc/tk_blue.mdl",
7296 Regiment = "Rancor Battalion"
7297} )
7298
7299TEAM_RB_LT = CreateTeam( "Rancor Lieutenant", {
7300Description = "Lieutenant of Rancor Battalion",
7301 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_pulsecannon"},
7302 Colour = Color(255,69,0, 255 ),
7303 Side = 1,
7304 Rank = 10,
7305 Model = "models/player/kingsbury/tk_arc/tk_blue.mdl",
7306 Regiment = "Rancor Battalion"
7307} )
7308
7309TEAM_RB_FLT = CreateTeam( "Rancor First Lieutenant", {
7310Description = "First 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 = 11,
7315 Model = "models/player/kingsbury/tk_arc/tk_blue.mdl",
7316 Regiment = "Rancor Battalion"
7317} )
7318
7319TEAM_RB_CPT = CreateTeam( "Rancor Captain", {
7320Description = "Captain 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 = 12,
7325 Model = "models/player/kingsbury/tk_arc/tk_red.mdl",
7326 Regiment = "Rancor Battalion"
7327} )
7328
7329TEAM_RB_MAJOR = CreateTeam( "Rancor Major", {
7330Description = "Major 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 = 13,
7335 Model = "models/player/kingsbury/tk_arc/tk_red.mdl",
7336 Regiment = "Rancor Battalion"
7337} )
7338
7339TEAM_RB_Colonel = CreateTeam( "Rancor Colonel", {
7340Description = "Colonel 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 = 14,
7345 Model = "models/player/kingsbury/tk_arc/tk_red.mdl",
7346 Regiment = "Rancor Battalion"
7347} )
7348
7349TEAM_RB_HIGH_COLONEL = CreateTeam( "Rancor High Colonel", {
7350Description = "High 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 = 15,
7355 Model = "models/player/kingsbury/tk_arc/tk_red.mdl",
7356 Regiment = "Rancor Battalion"
7357} )
7358
7359TEAM_RB_COMMANDER = CreateTeam( "Rancor Commander", {
7360Description = "Commander 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 = 16,
7365 Model = "models/player/kingsbury/tk_arc/tk_yellow.mdl",
7366 Regiment = "Rancor Battalion"
7367} )
7368
7369TEAM_RB_BRIGIDIER = CreateTeam( "Rancor Brigadier", {
7370Description = "Brigidier 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 = 17,
7375 Model = "models/player/kingsbury/tk_arc/tk_yellow.mdl",
7376 Regiment = "Rancor Battalion"
7377} )
7378
7379TEAM_RB_MAJOR_GENERAL = CreateTeam( "Rancor Major General", {
7380Description = "Major General 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 = 18,
7385 Model = "models/player/kingsbury/tk_arc/tk_yellow.mdl",
7386 Regiment = "Rancor Battalion"
7387} )
7388
7389TEAM_RB_LIEUTENANT_GENERAL = CreateTeam( "Rancor Lieutenant General", {
7390Description = "Lieutenant 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 = 19,
7395 Model = "models/player/kingsbury/tk_arc/tk_yellow.mdl",
7396 Regiment = "Rancor Battalion"
7397} )
7398
7399TEAM_RB_GENERAL = CreateTeam( "Rancor General", {
7400Description = "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 = 20,
7405 Model = "models/player/kingsbury/tk_arc/tk_yellow.mdl",
7406 Regiment = "Rancor Battalion"
7407} )
7408
7409TEAM_RB_COLT = CreateTeam( "Rancor", {
7410Description = "Colt of Rancor Battalion",
7411 Weapons = {"tfa_swch_se14c", "tfa_swch_dc17m_br", "tfa_swch_pulsecannon"},
7412 Colour = Color(255,69,0, 255 ),
7413 Side = 1,
7414 Rank = 15,
7415 Model = "models/player/venator/tk_arc/tk_colt.mdl",
7416 Regiment = "Rancor Battalion"
7417} )
7418
7419TEAM_RB_BLITZ = CreateTeam( "Rancor", {
7420Description = "Blitz 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 = 12,
7425 Model = "models/player/venator/tk_arc/tk_blitz.mdl",
7426 Regiment = "Rancor Battalion"
7427} )
7428
7429TEAM_RB_HAVOC = CreateTeam( "Rancor", {
7430Description = "Lance Corporal 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_havoc.mdl",
7436 Regiment = "Rancor Battalion"
7437} )
7438
7439TEAM_SITH_KORNELIUS = CreateTeam( "Lord", {
7440 Description = "Sith Lord",
7441 Weapons = {"weapon_lightsaber", "forcechoke"},
7442 Colour = Color(161, 0, 63, 255),
7443 Side = 1,
7444 Rank = 5,
7445 Model = "models/grealms/characters/darthnihilus/darthnihilus.mdl",
7446 Regiment = "Sith",
7447} )
7448
7449---------------------------------------------------------------------------
7450
7451TEAM_REMNANT_PVT = CreateTeam( "Remnant Private", {
7452 Description = "plebbys",
7453 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster"},
7454 Colour = Color(142, 36, 39, 255 ),
7455 Side = 1,
7456 Rank = 1,
7457 Model = "models/ven/tk/rem/tkrem.mdl",
7458 Regiment = "Remnant Trooper",
7459} )
7460
7461TEAM_REMNANT_PFC = CreateTeam( "Remnant Private First Class", {
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 = 2,
7467 Model = "models/ven/tk/rem/tkrem.mdl",
7468 Regiment = "Remnant Trooper",
7469} )
7470
7471TEAM_REMNANT_LCPL = CreateTeam( "Remnant Lance Corporal", {
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 = 3,
7477 Model = "models/ven/tk/rem/tkrem.mdl",
7478 Regiment = "Remnant Trooper",
7479} )
7480
7481TEAM_REMNANT_CPL = CreateTeam( "Remnant 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 = 4,
7487 Model = "models/ven/tk/rem/tkrem.mdl",
7488 Regiment = "Remnant Trooper",
7489} )
7490
7491TEAM_REMNANT_SGT = CreateTeam( "Remnant Sergeant", {
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 = 5,
7497 Model = "models/ven/tk/rem/tkrem.mdl",
7498 Regiment = "Remnant Trooper",
7499} )
7500
7501TEAM_REMNANT_SSGT = CreateTeam( "Remnant Staff 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 = 6,
7507 Model = "models/ven/tk/rem/tkrem.mdl",
7508 Regiment = "Remnant Trooper",
7509} )
7510
7511TEAM_REMNANT_MSGT = CreateTeam( "Remnant Master 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 = 7,
7517 Model = "models/ven/tk/rem/tkrem.mdl",
7518 Regiment = "Remnant Trooper",
7519} )
7520
7521TEAM_REMNANT_OC = CreateTeam( "Remnant Officer Cadet", {
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 = 8,
7527 Model = "models/ven/tk/rem/tkrem.mdl",
7528 Regiment = "Remnant Trooper",
7529} )
7530
7531TEAM_REMNANT_WO = CreateTeam( "Remnant Warrant Officer", {
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 = 9,
7537 Model = "models/ven/tk/rem/tkrem.mdl",
7538 Regiment = "Remnant Trooper",
7539} )
7540
7541TEAM_REMNANT_LT = CreateTeam( "Remnant Lieutenant", {
7542 Description = "plebbys",
7543 Weapons = {"tfa_swch_dlt19", "tfa_swch_dl44", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
7544 Colour = Color(142, 36, 39, 255 ),
7545 Side = 1,
7546 Rank = 10,
7547 Model = "models/ven/tk/rem/tkrem.mdl",
7548 Regiment = "Remnant Trooper",
7549} )
7550
7551TEAM_REMNANT_1LT = CreateTeam( "Remnant First 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 = 11,
7557 Model = "models/ven/tk/rem/tkrem.mdl",
7558 Regiment = "Remnant Trooper",
7559} )
7560
7561TEAM_REMNANT_CAPT = CreateTeam( "Remnant Captain", {
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 = 12,
7567 Model = "models/ven/tk/rem/tkrem.mdl",
7568 Regiment = "Remnant Trooper",
7569} )
7570
7571TEAM_REMNANT_MAJ = CreateTeam( "Remnant Major", {
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 = 13,
7577 Model = "models/ven/tk/rem/tkrem.mdl",
7578 Regiment = "Remnant Trooper",
7579} )
7580
7581TEAM_REMNANT_COLO = CreateTeam( "Remnant Colonel", {
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 = 14,
7587 Model = "models/ven/tk/rem/tkrem.mdl",
7588 Regiment = "Remnant Trooper",
7589} )
7590
7591TEAM_REMNANT_HCOLO = CreateTeam( "Remnant High 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 = 15,
7597 Model = "models/ven/tk/rem/tkrem.mdl",
7598 Regiment = "Remnant Trooper",
7599} )
7600
7601TEAM_REMNANT_CMD = CreateTeam( "Remnant Commander", {
7602 Description = "Commander of the Storm Trooper Core",
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 = 16,
7607 Model = "models/ven/tk/rem/tkrem.mdl",
7608 Regiment = "Remnant Trooper",
7609} )
7610
7611TEAM_REMNANT_BRIG = CreateTeam( "Remnant Brigadier", {
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 = 17,
7617 Model = "models/ven/tk/rem/tkrem.mdl",
7618 Regiment = "Remnant Trooper",
7619} )
7620
7621TEAM_REMNANT_MAJG = CreateTeam( "Remnant Major General", {
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 = 18,
7627 Model = "models/ven/tk/rem/tkrem.mdl",
7628 Regiment = "Remnant Trooper",
7629} )
7630
7631TEAM_REMNANT_LTG = CreateTeam( "Remnant Lieutenant 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 = 19,
7637 Model = "models/ven/tk/rem/tkrem.mdl",
7638 Regiment = "Remnant Trooper",
7639} )
7640
7641TEAM_REMNANT_GEN = CreateTeam( "Remnant General", {
7642 Description = "General 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 = 20,
7647 Model = "models/ven/tk/rem/tkrem.mdl",
7648 Regiment = "Remnant Trooper",
7649} )
7650
7651TEAM_INFERNO_TRE = CreateTeam( "Inferno Squad Trainee", {
7652 Description = "plebbys",
7653 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "tfa_swch_pulsecannon"},
7654 Colour = Color(217, 20, 20, 255 ),
7655 Side = 1,
7656 Rank = 1,
7657 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7658 Regiment = "Inferno Squad",
7659} )
7660
7661TEAM_INFERNO_STRE = CreateTeam( "Inferno Squad Senior Trainee", {
7662 Description = "plebbys",
7663 Weapons = {"tfa_swch_e11", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic"},
7664 Colour = Color(217, 20, 20, 255 ),
7665 Side = 1,
7666 Rank = 2,
7667 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7668 Regiment = "Inferno Squad",
7669} )
7670
7671TEAM_INFERNO_ACOP = CreateTeam( "Inferno Squad Acting Operative", {
7672 Description = "plebbys",
7673 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_cuff_tactical", "tfa_swch_pulsecannon", "weapon_cuff_elastic", "weapon_taser"},
7674 Colour = Color(217, 20, 20, 255 ),
7675 Side = 1,
7676 Rank = 3,
7677 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7678 Regiment = "Inferno Squad",
7679} )
7680
7681TEAM_INFERNO_JNOP = CreateTeam( "Inferno Squad Junior 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 = 4,
7687 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7688 Regiment = "Inferno Squad",
7689} )
7690
7691TEAM_INFERNO_OP = CreateTeam( "Inferno Squad Operative", {
7692 Description = "General of the Storm Trooper Core",
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 = 5,
7697 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7698 Regiment = "Inferno Squad",
7699} )
7700
7701TEAM_INFERNO_SNOP = CreateTeam( "Inferno Squad Senior Operative", {
7702 Description = "plebbys",
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 = 6,
7707 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7708 Regiment = "Inferno Squad",
7709} )
7710
7711TEAM_INFERNO_MSOP = CreateTeam( "Inferno Squad Master 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 = 7,
7717 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7718 Regiment = "Inferno Squad",
7719} )
7720
7721TEAM_INFERNO_ACAGT = CreateTeam( "Inferno Squad Acting Agent", {
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 = 8,
7727 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7728 Regiment = "Inferno Squad",
7729} )
7730
7731TEAM_INFERNO_JNAGT = CreateTeam( "Inferno Squad Junior 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 = 9,
7737 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7738 Regiment = "Inferno Squad",
7739} )
7740
7741TEAM_INFERNO_AGT = CreateTeam( "Inferno Squad 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 = 10,
7747 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7748 Regiment = "Inferno Squad",
7749} )
7750
7751TEAM_INFERNO_SBLT = CreateTeam( "Inferno Squad Sub Lieutenant", {
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 = 11,
7757 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7758 Regiment = "Inferno Squad",
7759} )
7760
7761TEAM_INFERNO_LT = CreateTeam( "Inferno Squad 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 = 12,
7767 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7768 Regiment = "Inferno Squad",
7769} )
7770
7771TEAM_INFERNO_LCMD = CreateTeam( "Inferno Squad Lieutenant Commander", {
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 = 13,
7777 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7778 Regiment = "Inferno Squad",
7779} )
7780
7781TEAM_INFERNO_CMD = CreateTeam( "Inferno Squad 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 = 14,
7787 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7788 Regiment = "Inferno Squad",
7789} )
7790
7791TEAM_INFERNO_CAPT = CreateTeam( "Inferno Squad Captain", {
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 = 15,
7797 Model = "models/player/markus/ot_inferno_squad_hask/ot_inferno_squad_hask_playermodel.mdl",
7798 Regiment = "Inferno Squad",
7799} )
7800
7801TEAM_INFERNO_LCAPT = CreateTeam( "Inferno Squad Line 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 = 16,
7807 Model = "models/player/markus/ot_inferno_squad_iden_versio/ot_inferno_squad_iden_versio_playermodel.mdl",
7808 Regiment = "Inferno Squad",
7809} )
7810
7811TEAM_INFERNO_COMMO = CreateTeam( "Inferno Squad Commodore", {
7812 Description = "Commander of the Storm Trooper Core",
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 = 17,
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_RADMIRAL = CreateTeam( "Inferno Squad Rear Admiral", {
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 = 18,
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_VADMIRAL = CreateTeam( "Inferno Squad Vice 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 = 19,
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_ADMIRAL = CreateTeam( "Inferno Squad 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 = 20,
7847 Model = "models/player/markus/ot_inferno_squad_iden_versio/ot_inferno_squad_iden_versio_playermodel.mdl",
7848 Regiment = "Inferno Squad",
7849} )
7850
7851TEAM_SCAR_PVT = CreateTeam( "SCAR Private", {
7852 Description = "Member of the Storm Trooper Core",
7853 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7854 Colour = Color(0, 72, 6, 255 ),
7855 Side = 1,
7856 Rank = 1,
7857 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7858 Regiment = "SCAR Trooper",
7859} )
7860
7861TEAM_SCAR_PFC = CreateTeam( "SCAR Private First Class", {
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 = 2,
7867 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7868 Regiment = "SCAR Trooper",
7869} )
7870
7871TEAM_SCAR_LCPL = CreateTeam( "SCAR Lance Corporal", {
7872 Description = "models/player/fatal/troopers/trooper.mdl",
7873 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7874 Colour = Color(0, 72, 6, 255 ),
7875 Side = 1,
7876 Rank = 3,
7877 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7878 Regiment = "SCAR Trooper",
7879} )
7880
7881TEAM_SCAR_CPL = CreateTeam( "SCAR Corporal", {
7882 Description = "Member of the Storm Trooper Core",
7883 Weapons = {"tfa_swch_alphablaster", "tfa_swch_se14c", "weapon_camo"},
7884 Colour = Color(0, 72, 6, 255 ),
7885 Side = 1,
7886 Rank = 4,
7887 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7888 Regiment = "SCAR Trooper",
7889} )
7890
7891TEAM_SCAR_SGT = CreateTeam( "SCAR Sergeant", {
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 = 5,
7897 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7898 Regiment = "SCAR Trooper",
7899} )
7900
7901TEAM_SCAR_SSGT = CreateTeam( "SCAR Staff 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 = 6,
7907 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7908 Regiment = "SCAR Trooper",
7909} )
7910
7911TEAM_SCAR_MSGT = CreateTeam( "SCAR Master 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 = 7,
7917 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7918 Regiment = "SCAR Trooper",
7919} )
7920
7921TEAM_SCAR_OFFICERCADET = CreateTeam( "SCAR Officer Cadet", {
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 = 8,
7927 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7928 Regiment = "SCAR Trooper",
7929} )
7930
7931TEAM_SCAR_WO = CreateTeam( "SCAR Warrant Officer", {
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 = 9,
7937 Model = "models/player/banks/banks/tk_arc_hammer.mdl",
7938 Regiment = "SCAR Trooper",
7939} )
7940
7941TEAM_SCAR_LT = CreateTeam( "SCAR Lieutenant", {
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 = 10,
7947 Model = "models/player/banks/banks/tk_colt.mdl",
7948 Regiment = "SCAR Trooper",
7949} )
7950
7951TEAM_SCAR_FLT = CreateTeam( "SCAR First 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 = 11,
7957 Model = "models/player/banks/banks/tk_colt.mdl",
7958 Regiment = "SCAR Trooper",
7959} )
7960
7961TEAM_SCAR_CAPT = CreateTeam( "SCAR Captain", {
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 = 12,
7967 Model = "models/player/banks/banks/tk_colt.mdl",
7968 Regiment = "SCAR Trooper",
7969} )
7970
7971TEAM_SCAR_MAJ = CreateTeam( "SCAR Major", {
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 = 13,
7977 Model = "models/player/banks/banks/tk_colt.mdl",
7978 Regiment = "SCAR Trooper",
7979} )
7980
7981TEAM_SCAR_COLO = CreateTeam( "SCAR Colonel", {
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 = 14,
7987 Model = "models/player/banks/banks/tk_colt.mdl",
7988 Regiment = "SCAR Trooper",
7989} )
7990
7991TEAM_SCAR_HCOLO = CreateTeam( "SCAR High 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 = 15,
7997 Model = "models/player/banks/banks/tk_colt.mdl",
7998 Regiment = "SCAR Trooper",
7999} )
8000
8001TEAM_SCAR_CMD = CreateTeam( "SCAR Commander", {
8002 Description = "Commander 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 = 16,
8007 Model = "models/player/banks/banks/tk_blitz.mdl",
8008 Regiment = "SCAR Trooper",
8009} )
8010
8011TEAM_SCAR_BRIG = CreateTeam( "SCAR Brigadier", {
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 = 17,
8017 Model = "models/player/banks/banks/tk_blitz.mdl",
8018 Regiment = "SCAR Trooper",
8019} )
8020
8021TEAM_SCAR_MAJG = CreateTeam( "SCAR Major General", {
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 = 18,
8027 Model = "models/x1cw/x1cw_2.mdl",
8028 Regiment = "SCAR Trooper",
8029} )
8030
8031TEAM_SCAR_LTG = CreateTeam( "SCAR Lieutenant 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 = 19,
8037 Model = "models/x1cw/x1cw_2.mdl",
8038 Regiment = "SCAR Trooper",
8039} )
8040
8041TEAM_SCAR_GEN = CreateTeam( "SCAR General", {
8042 Description = "General 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 = 20,
8047 Model = "models/x1cw/x1cw_2.mdl",
8048 Regiment = "SCAR Trooper",
8049} )
8050
8051TEAM_MEDICAL_DROID = CreateTeam( "Medical Droid", {
8052 Description = "Member of the Medical Trooper Core",
8053 Weapons = {"tfa_swch_dl44", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
8054 Colour = Color(255, 51, 255, 255),
8055 Side = 1,
8056 Rank = 5,
8057 Model = "models/player/valley/medicaldroid.mdl",
8058 Regiment = "Medical Trooper",
8059} )
8060
8061TEAM_MHC_SC = CreateTeam( "MHC Secretary", {
8062 Description = "Member of the Military High Command",
8063 Weapons = {"tfa_swch_dh17", "tfa_swch_e11"},
8064 Colour = Color(145, 0, 0, 255 ),
8065 Side = 1,
8066 Rank = 1,
8067 Model = "models/player/scifi_female_02.mdl",
8068 Regiment = "Military High Command",
8069} )
8070
8071TEAM_MHC_MJGEN = CreateTeam( "MHC Major General", {
8072 Description = "Member of the Military High Command",
8073 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc17m_br", "tfa_swch_se14c", "weapon_cuff_elastic", "weapon_taser", "realistic_hook"},
8074 Colour = Color(145, 0, 0, 255 ),
8075 Side = 1,
8076 Rank = 5,
8077 Model = "models/player/banks/tk_arc/tk_blue.mdl",
8078 Regiment = "Military High Command",
8079} )
8080
8081TEAM_MHC_LTGEN = CreateTeam( "MHC Lieutenant General", {
8082 Description = "Member of the Military High Command",
8083 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_pulsecannon", "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_red.mdl",
8088 Regiment = "Military High Command",
8089} )
8090
8091TEAM_MHC_GEN = CreateTeam( "MHC 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_green.mdl",
8098 Regiment = "Military High Command",
8099} )
8100
8101TEAM_MHC_HGEN = CreateTeam( "MHC High 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_yellow.mdl",
8108 Regiment = "Military High Command",
8109} )
8110
8111TEAM_ROYALGUARD_PVT = CreateTeam( "Royal Guard Trainee", {
8112 Description = "Member Royal Guard Regiment",
8113 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c"},
8114 Colour = Color(255, 51, 51, 255),
8115 Side = 1,
8116 Rank = 1,
8117 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8118 Regiment = "Royal Guard",
8119} )
8120
8121TEAM_ROYALGUARD_SGT = CreateTeam( "Royal Guard Guardsman", {
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 = 5,
8127 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8128 Regiment = "Royal Guard",
8129} )
8130
8131TEAM_ROYALGUARD_MSGT = CreateTeam( "Royal Guard Instructor", {
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 = 7,
8137 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8138 Regiment = "Royal Guard",
8139} )
8140
8141TEAM_ROYALGUARD_OC = CreateTeam( "Royal Guard Leading Guardsman", {
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 = 8,
8147 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8148 Regiment = "Royal Guard",
8149} )
8150
8151TEAM_ROYALGUARD_WO = CreateTeam( "Royal Guard Leading Instructor", {
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 = 9,
8157 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8158 Regiment = "Royal Guard",
8159} )
8160
8161TEAM_ROYALGUARD_LT = CreateTeam( "Royal Guard Master 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 = 10,
8167 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8168 Regiment = "Royal Guard",
8169} )
8170
8171TEAM_ROYALGUARD_CPT = CreateTeam( "Royal Guard Master Guardsman", {
8172 Description = "Captain of the 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 = 12,
8177 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8178 Regiment = "Royal Guard",
8179} )
8180
8181TEAM_ROYALGUARD_CMD = CreateTeam( "Royal Guard Commander", {
8182 Description = "Commander 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 = 16,
8187 Model = "models/player/starwars/mistersweetroll/imperialguard.mdl",
8188 Regiment = "Royal Guard",
8189} )
8190
8191TEAM_SHADOWGUARD_PVT = CreateTeam( "Shadow Guard Trainee", {
8192 Description = "Member Shadow Guard Regiment",
8193 Weapons = {"weapon_lightsaber", "weapon_cuff_tactical", "weapon_cuff_elastic", "tfa_swch_se14c", "weapon_camo"},
8194 Colour = Color(255, 51, 51, 255),
8195 Side = 1,
8196 Rank = 1,
8197 Model = "models/imperial/guard/blackguard.mdl",
8198 Regiment = "Shadow Guard",
8199} )
8200
8201TEAM_SHADOWGUARD_SGT = CreateTeam( "Shadow Guard Guardsman", {
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 = 5,
8207 Model = "models/imperial/guard/blackguard.mdl",
8208 Regiment = "Shadow Guard",
8209} )
8210
8211TEAM_SHADOWGUARD_MSGT = CreateTeam( "Shadow Guard Instructor", {
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 = 7,
8217 Model = "models/imperial/guard/blackguard.mdl",
8218 Regiment = "Shadow Guard",
8219} )
8220
8221TEAM_SHADOWGUARD_OC = CreateTeam( "Shadow Guard Leading Guardsman", {
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 = 8,
8227 Model = "models/imperial/guard/blackguard.mdl",
8228 Regiment = "Shadow Guard",
8229} )
8230
8231TEAM_SHADOWGUARD_WO = CreateTeam( "Shadow Guard Leading Instuctor", {
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 = 9,
8237 Model = "models/imperial/guard/blackguard.mdl",
8238 Regiment = "Shadow Guard",
8239} )
8240
8241TEAM_SHADOWGUARD_LT = CreateTeam( "Shadow Guard Master Instructor", {
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 = 10,
8247 Model = "models/imperial/guard/blackguard.mdl",
8248 Regiment = "Shadow Guard",
8249} )
8250
8251TEAM_SHADOWGUARD_CPT = CreateTeam( "Shadow Guard Master Guardsman", {
8252 Description = "Captain of the 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 = 12,
8257 Model = "models/imperial/guard/blackguard.mdl",
8258 Regiment = "Shadow Guard",
8259} )
8260
8261TEAM_SHADOWGUARD_CMD = CreateTeam( "Shadow Guard Commander", {
8262 Description = "Commander 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 = 16,
8267 Model = "models/imperial/guard/blackguard.mdl",
8268 Regiment = "Shadow Guard",
8269} )
8270
8271TEAM_INFERNO_DR = CreateTeam( "Inferno Squad Droid", {
8272 Description = "Commander of the Storm Trooper Core",
8273 Weapons = {"tfa_swch_e11", "tfa_swch_se14c", "weapon_camo", "weapon_taser"},
8274 Colour = Color(217, 20, 20, 255 ),
8275 Side = 1,
8276 Rank = 5,
8277 Model = "models/player/banks/ig/droid/droid.mdl",
8278 Regiment = "Inferno Squad",
8279} )
8280
8281 TEAM_TSQ_PVT = CreateTeam( "Talon Private", {
8282 Description = "Member of Talon Squad",
8283 Weapons = {"tfa_swch_se14c", "tfa_swch_alphablaster", "tfa_swch_dlt19", "realistic_hook"},
8284 Colour = Color(123, 183, 137, 255 ),
8285 Side = 1,
8286 Rank = 1,
8287 Model = "models/player/sono/specopstorm/elite.mdl",
8288 Regiment = "Talon Squad",
8289 } )
8290
8291 TEAM_TSQ_PFC = CreateTeam( "Talon Private First Class", {
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 = 2,
8297 Model = "models/player/sono/specopstorm/elite.mdl",
8298 Regiment = "Talon Squad",
8299 } )
8300
8301 TEAM_TSQ_LCPL = CreateTeam( "Talon Lance Corporal", {
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 = 3,
8307 Model = "models/player/sono/specopstorm/elite.mdl",
8308 Regiment = "Talon Squad",
8309 } )
8310
8311 TEAM_TSQ_CPL = CreateTeam( "Talon 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 = 4,
8317 Model = "models/player/sono/specopstorm/elite.mdl",
8318 Regiment = "Talon Squad",
8319 } )
8320
8321 TEAM_TSQ_SGT = CreateTeam( "Talon Sergeant", {
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 = 5,
8327 Model = "models/player/sono/specopstorm/elite.mdl",
8328 Regiment = "Talon Squad",
8329 } )
8330
8331 TEAM_TSQ_SSGT = CreateTeam( "Talon Staff 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 = 6,
8337 Model = "models/player/sono/specopstorm/elite.mdl",
8338 Regiment = "Talon Squad",
8339 } )
8340
8341 TEAM_TSQ_MSGT = CreateTeam( "Talon Master 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 = 7,
8347 Model = "models/player/sono/specopstorm/elite.mdl",
8348 Regiment = "Talon Squad",
8349 } )
8350
8351 TEAM_TSQ_OFFICERCADET = CreateTeam( "Talon Officer Cadet", {
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 = 8,
8357 Model = "models/player/sono/specopstorm/elite.mdl",
8358 Regiment = "Talon Squad",
8359 } )
8360
8361 TEAM_TSQ_WO = CreateTeam( "Talon Warrant Officer", {
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 = 9,
8367 Model = "models/player/sono/specopstorm/elite.mdl",
8368 Regiment = "Talon Squad",
8369 } )
8370
8371 TEAM_TSQ_LT = CreateTeam( "Talon Lieutenant", {
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 = 10,
8377 Model = "models/player/sono/specopstorm/elite.mdl",
8378 Regiment = "Talon Squad",
8379 } )
8380
8381 TEAM_TSQ_FLT = CreateTeam( "Talon First 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 = 11,
8387 Model = "models/player/sono/specopstorm/elite.mdl",
8388 Regiment = "Talon Squad",
8389 } )
8390
8391 TEAM_TSQ_CAPT = CreateTeam( "Talon Captain", {
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 = 12,
8397 Model = "models/player/sono/specopstorm/elite.mdl",
8398 Regiment = "Talon Squad",
8399 } )
8400
8401 TEAM_TSQ_MAJ = CreateTeam( "Talon Major", {
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 = 13,
8407 Model = "models/player/sono/specopstorm/elite.mdl",
8408 Regiment = "Talon Squad",
8409 } )
8410
8411 TEAM_TSQ_COLO = CreateTeam( "Talon Colonel", {
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 = 14,
8417 Model = "models/player/sono/specopstorm/elite.mdl",
8418 Regiment = "Talon Squad",
8419 } )
8420
8421 TEAM_TSQ_HCOLO = CreateTeam( "Talon High 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 = 15,
8427 Model = "models/player/sono/specopstorm/elite.mdl",
8428 Regiment = "Talon Squad",
8429 } )
8430
8431 TEAM_TSQ_CMD = CreateTeam( "Talon Commander", {
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 = 16,
8437 Model = "models/player/sono/specopstorm/elite.mdl",
8438 Regiment = "Talon Squad",
8439 } )
8440
8441 TEAM_TSQ_BRIG = CreateTeam( "Talon Brigadier", {
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 = 17,
8447 Model = "models/player/sono/specopstorm/elite.mdl",
8448 Regiment = "Talon Squad",
8449 } )
8450
8451 TEAM_TSQ_MAJG = CreateTeam( "Talon Major General", {
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 = 18,
8457 Model = "models/player/sono/specopstorm/elite.mdl",
8458 Regiment = "Talon Squad",
8459 } )
8460
8461 TEAM_TSQ_LTG = CreateTeam( "Talon Lieutenant 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 = 19,
8467 Model = "models/player/sono/specopstorm/elite.mdl",
8468 Regiment = "Talon Squad",
8469 } )
8470
8471 TEAM_TSQ_GEN = CreateTeam( "Talon 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 = 20,
8477 Model = "models/player/sono/specopstorm/elite.mdl",
8478 Regiment = "Talon Squad",
8479 } )
8480
8481 TEAM_SMR_PVT = CreateTeam( "SM Private", {
8482 Description = "Member of the Storm Marines",
8483 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8484 Colour = Color(208, 121, 121, 255 ),
8485 Side = 1,
8486 Rank = 1,
8487 Model = "models/player/sono/specopstorm/bshadow.mdl",
8488 Regiment = "Storm Marines",
8489} )
8490
8491TEAM_SMR_PFC = CreateTeam( "SM Private First Class", {
8492 Description = "Member of the Storm Marines",
8493 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8494 Colour = Color(208, 121, 121, 255 ),
8495 Side = 1,
8496 Rank = 2,
8497 Model = "models/player/sono/specopstorm/bshadow.mdl",
8498 Regiment = "Storm Marines",
8499} )
8500
8501TEAM_SMR_LCPL = CreateTeam( "SM Lance Corporal", {
8502 Description = "Member of the Storm Marines",
8503 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8504 Colour = Color(208, 121, 121, 255 ),
8505 Side = 1,
8506 Rank = 3,
8507 Model = "models/player/sono/specopstorm/bshadow.mdl",
8508 Regiment = "Storm Marines",
8509} )
8510
8511TEAM_SMR_CPL = CreateTeam( "SM Corporal", {
8512 Description = "Member of the Storm Marines",
8513 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8514 Colour = Color(208, 121, 121, 255 ),
8515 Side = 1,
8516 Rank = 4,
8517 Model = "models/player/sono/specopstorm/bshadow.mdl",
8518 Regiment = "Storm Marines",
8519} )
8520
8521TEAM_SMR_SGT = CreateTeam( "SM Sergeant", {
8522 Description = "Member of the Storm Marines",
8523 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8524 Colour = Color(208, 121, 121, 255 ),
8525 Side = 1,
8526 Rank = 5,
8527 Model = "models/player/sono/specopstorm/bshadow.mdl",
8528 Regiment = "Storm Marines",
8529} )
8530
8531TEAM_SMR_SSGT = CreateTeam( "SM Staff Sergeant", {
8532 Description = "Member of the Storm Marines",
8533 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8534 Colour = Color(208, 121, 121, 255 ),
8535 Side = 1,
8536 Rank = 6,
8537 Model = "models/player/sono/specopstorm/bshadow.mdl",
8538 Regiment = "Storm Marines",
8539} )
8540
8541TEAM_SMR_MSGT = CreateTeam( "SM Master Sergeant", {
8542 Description = "Member of the Storm Marines",
8543 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8544 Colour = Color(208, 121, 121, 255 ),
8545 Side = 1,
8546 Rank = 7,
8547 Model = "models/player/sono/specopstorm/bshadow.mdl",
8548 Regiment = "Storm Marines",
8549} )
8550
8551TEAM_SMR_OFFICERCADET = CreateTeam( "SM Officer Cadet", {
8552 Description = "Member of the Storm Marines",
8553 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8554 Colour = Color(208, 121, 121, 255 ),
8555 Side = 1,
8556 Rank = 8,
8557 Model = "models/player/sono/specopstorm/bshadow.mdl",
8558 Regiment = "Storm Marines",
8559} )
8560
8561TEAM_SMR_WO = CreateTeam( "SM Warrant Officer", {
8562 Description = "Member of the Storm Marines",
8563 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8564 Colour = Color(208, 121, 121, 255 ),
8565 Side = 1,
8566 Rank = 9,
8567 Model = "models/player/sono/specopstorm/bshadow.mdl",
8568 Regiment = "Storm Marines",
8569} )
8570
8571TEAM_SMR_LT = CreateTeam( "SM Lieutenant", {
8572 Description = "Member of the Storm Marines",
8573 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8574 Colour = Color(208, 121, 121, 255 ),
8575 Side = 1,
8576 Rank = 10,
8577 Model = "models/player/sono/specopstorm/bshadow.mdl",
8578 Regiment = "Storm Marines",
8579} )
8580
8581TEAM_SMR_FLT = CreateTeam( "SM First Lieutenant", {
8582 Description = "Member of the Storm Marines",
8583 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8584 Colour = Color(208, 121, 121, 255 ),
8585 Side = 1,
8586 Rank = 11,
8587 Model = "models/player/sono/specopstorm/bshadow.mdl",
8588 Regiment = "Storm Marines",
8589} )
8590
8591TEAM_SMR_CAPT = CreateTeam( "SM Captain", {
8592 Description = "Member of the Storm Marines",
8593 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8594 Colour = Color(208, 121, 121, 255 ),
8595 Side = 1,
8596 Rank = 12,
8597 Model = "models/player/sono/specopstorm/bshadow.mdl",
8598 Regiment = "Storm Marines",
8599} )
8600
8601TEAM_SMR_MAJ = CreateTeam( "SM Major", {
8602 Description = "Member of the Storm Marines",
8603 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8604 Colour = Color(208, 121, 121, 255 ),
8605 Side = 1,
8606 Rank = 13,
8607 Model = "models/player/sono/specopstorm/bshadow.mdl",
8608 Regiment = "Storm Marines",
8609} )
8610
8611TEAM_SMR_COLO = CreateTeam( "SM Colonel", {
8612 Description = "Member of the Storm Marines",
8613 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8614 Colour = Color(208, 121, 121, 255 ),
8615 Side = 1,
8616 Rank = 14,
8617 Model = "models/player/sono/specopstorm/bshadow.mdl",
8618 Regiment = "Storm Marines",
8619} )
8620
8621TEAM_SMR_HCOLO = CreateTeam( "SM High Colonel", {
8622 Description = "Member of the Storm Marines",
8623 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8624 Colour = Color(208, 121, 121, 255 ),
8625 Side = 1,
8626 Rank = 15,
8627 Model = "models/player/sono/specopstorm/bshadow.mdl",
8628 Regiment = "Storm Marines",
8629} )
8630
8631TEAM_SMR_CMD = CreateTeam( "SM Commander", {
8632 Description = "Member of the Storm Marines",
8633 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8634 Colour = Color(208, 121, 121, 255 ),
8635 Side = 1,
8636 Rank = 16,
8637 Model = "models/player/sono/specopstorm/bshadow.mdl",
8638 Regiment = "Storm Marines",
8639} )
8640
8641TEAM_SMR_BRIG = CreateTeam( "SM Brigadier", {
8642 Description = "Member of the Storm Marines",
8643 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8644 Colour = Color(208, 121, 121, 255 ),
8645 Side = 1,
8646 Rank = 17,
8647 Model = "models/player/sono/specopstorm/bshadow.mdl",
8648 Regiment = "Storm Marines",
8649} )
8650
8651TEAM_SMR_MAJG = CreateTeam( "SM Major General", {
8652 Description = "Member of the Storm Marines",
8653 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8654 Colour = Color(208, 121, 121, 255 ),
8655 Side = 1,
8656 Rank = 18,
8657 Model = "models/player/sono/specopstorm/bshadow.mdl",
8658 Regiment = "Storm Marines",
8659} )
8660
8661TEAM_SMR_LTG = CreateTeam( "SM Lieutenant General", {
8662 Description = "Member of the Storm Marines",
8663 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8664 Colour = Color(208, 121, 121, 255 ),
8665 Side = 1,
8666 Rank = 19,
8667 Model = "models/player/sono/specopstorm/bshadow.mdl",
8668 Regiment = "Storm Marines",
8669} )
8670
8671TEAM_SMR_GEN = CreateTeam( "SM General", {
8672 Description = "Member of the Storm Marines",
8673 Weapons = {"tfa_swch_se14c", "tfa_sw_cisshot", "tfa_swch_dc17m_br"},
8674 Colour = Color(208, 121, 121, 255 ),
8675 Side = 1,
8676 Rank = 20,
8677 Model = "models/player/sono/specopstorm/bshadow.mdl",
8678 Regiment = "Storm Marines",
8679} )
8680
8681TEAM_PROPHET_PV = CreateTeam( "Prophet Visionary", {
8682 Description = "",
8683 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic"},
8684 Colour = Color(255, 51, 51, 255),
8685 Side = 1,
8686 Rank = 1,
8687 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
8688 Regiment = "Prophet",
8689} )
8690
8691TEAM_PROPHET_LP = CreateTeam( "Lesser Prophet", {
8692 Description = "",
8693 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic", "forcechoke"},
8694 Colour = Color(255, 51, 51, 255),
8695 Side = 1,
8696 Rank = 5,
8697 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
8698 Regiment = "Prophet",
8699} )
8700
8701TEAM_PROPHET_EP = CreateTeam( "Elder Prophet", {
8702 Description = "",
8703 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic", "forcechoke"},
8704 Colour = Color(255, 51, 51, 255),
8705 Side = 1,
8706 Rank = 7,
8707 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
8708 Regiment = "Prophet",
8709} )
8710
8711TEAM_PROPHET_PS = CreateTeam( "Prophet Sentinel", {
8712 Description = "",
8713 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic", "forcechoke"},
8714 Colour = Color(255, 51, 51, 255),
8715 Side = 1,
8716 Rank = 15,
8717 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
8718 Regiment = "Prophet",
8719} )
8720
8721TEAM_PROPHET_HP = CreateTeam( "High Prophet", {
8722 Description = "",
8723 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic", "forcechoke"},
8724 Colour = Color(255, 51, 51, 255),
8725 Side = 1,
8726 Rank = 16,
8727 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
8728 Regiment = "Prophet",
8729} )
8730
8731TEAM_ICCS_LD = CreateTeam( "Cinder Leader", {
8732 Description = "Member of the Cinder Squad",
8733 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
8734 Colour = Color(153, 51, 153, 255 ),
8735 Side = 1,
8736 Rank = 16,
8737 Model = "models/player/banks/omega/commander/omega.mdl",
8738 Regiment = "IC Cinder Squad",
8739} )
8740
8741TEAM_ICCS_TC = CreateTeam( "Cinder Tech", {
8742 Description = "Member of the Cinder Squad",
8743 Weapons = {"tfa_swch_dc17m_br", "keypad_cracker"},
8744 Colour = Color(153, 51, 153, 255 ),
8745 Side = 1,
8746 Rank = 8,
8747 Model = "models/player/banks/omega/member/omega.mdl",
8748 Regiment = "IC Cinder Squad",
8749} )
8750
8751TEAM_ICCS_SN = CreateTeam( "Cinder Sniper", {
8752 Description = "Member of the Cinder Squad",
8753 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "realistic_hook"},
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_DM = CreateTeam( "Cinder Demo", {
8762 Description = "Member of the Cinder Squad",
8763 Weapons = {"tfa_swch_dc17m_br", "zeus_thermaldet", "tfa_swch_se14c"},
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_ICAS_LD = CreateTeam( "Ahiwa Leader", {
8772 Description = "Member of the Ahiwa Squad",
8773 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
8774 Colour = Color(173, 35, 35, 255 ),
8775 Side = 1,
8776 Rank = 16,
8777 Model = "models/player/banks/ion/commander/icommander.mdl",
8778 Regiment = "IC Ahiwa Squad",
8779} )
8780
8781TEAM_ICAS_TC = CreateTeam( "Ahiwa Tech", {
8782 Description = "Member of the Ahiwa Squad",
8783 Weapons = {"tfa_swch_dc17m_br", "keypad_cracker"},
8784 Colour = Color(173, 35, 35, 255 ),
8785 Side = 1,
8786 Rank = 8,
8787 Model = "models/player/banks/ion/trooper/trooper.mdl",
8788 Regiment = "IC Ahiwa Squad",
8789} )
8790
8791TEAM_ICAS_SN = CreateTeam( "Ahiwa Sniper", {
8792 Description = "Member of the Ahiwa Squad",
8793 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "realistic_hook"},
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_DM = CreateTeam( "Ahiwa Demo", {
8802 Description = "Member of the Ahiwa Squad",
8803 Weapons = {"tfa_swch_dc17m_br", "zeus_thermaldet", "tfa_swch_se14c"},
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_ICDS_LD = CreateTeam( "Delta Leader", {
8812 Description = "Member of the Delta Squad",
8813 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "tfa_swch_se14c"},
8814 Colour = Color(255, 102, 0, 255 ),
8815 Side = 1,
8816 Rank = 16,
8817 Model = "models/player/banks/delta/boss/imperialcboss.mdl",
8818 Regiment = "IC Delta Squad",
8819} )
8820
8821TEAM_ICDS_TC = CreateTeam( "Delta Tech", {
8822 Description = "Member of the Delta Squad",
8823 Weapons = {"tfa_swch_dc17m_br", "keypad_cracker"},
8824 Colour = Color(255, 102, 0, 255 ),
8825 Side = 1,
8826 Rank = 8,
8827 Model = "models/player/banks/delta/fixer/imperialcfixer.mdl",
8828 Regiment = "IC Delta Squad",
8829} )
8830
8831TEAM_ICDS_SN = CreateTeam( "Delta Sniper", {
8832 Description = "Member of the Delta Squad",
8833 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_pulsecannon", "realistic_hook"},
8834 Colour = Color(255, 102, 0, 255 ),
8835 Side = 1,
8836 Rank = 8,
8837 Model = "models/grealms/characters/imperialcommando/imperialcommando.mdl",
8838 Regiment = "IC Delta Squad",
8839} )
8840
8841TEAM_ICDS_DM = CreateTeam( "Delta Demo", {
8842 Description = "Member of the Delta Squad",
8843 Weapons = {"tfa_swch_dc17m_br", "zeus_thermaldet", "tfa_swch_se14c"},
8844 Colour = Color(255, 102, 0, 255 ),
8845 Side = 1,
8846 Rank = 8,
8847 Model = "models/player/banks/delta/scorch/imperialcscorch.mdl",
8848 Regiment = "IC Delta Squad",
8849} )
8850
8851TEAM_CUSTOMBOUNTYHUNTER1 = CreateTeam( "", {
8852 Description = "el custimo bounty hunterino",
8853 Weapons = {"tfa_swch_pulsecannon", "weapon_cuff_elastic", "tfa_swch_ee3", "tfa_swch_dlt19"},
8854 Colour = Color(161, 0, 63, 255),
8855 Side = 1,
8856 Rank = 5,
8857 Model = "models/ninja/beffect/titanfall_dm_quarian_f.mdl",
8858 Regiment = "Bounty Hunter",
8859} )
8860
8861 TEAM_RESCUE_PVT = CreateTeam( "RS Private", {
8862 Description = "Member of the Rescue Trooper Core",
8863 Weapons = {"tfa_swch_e11", "weapon_jew_stimkit", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "weapon_policeshield", "tfa_swch_rt97c"},
8864 Colour = Color(12, 128, 74, 255),
8865 Side = 1,
8866 Rank = 1,
8867 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8868 Regiment = "Rescue Trooper",
8869} )
8870
8871TEAM_RESCUE_PFC = CreateTeam( "RS Private First Class", {
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 = 2,
8877 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8878 Regiment = "Rescue Trooper",
8879} )
8880
8881TEAM_RESCUE_LCPL = CreateTeam( "RS Lance Corporal", {
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 = 3,
8887 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8888 Regiment = "Rescue Trooper",
8889} )
8890
8891TEAM_RESCUE_CPL = CreateTeam( "RS 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 = 4,
8897 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8898 Regiment = "Rescue Trooper",
8899} )
8900
8901TEAM_RESCUE_SGT = CreateTeam( "RS Sergeant", {
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 = 5,
8907 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8908 Regiment = "Rescue Trooper",
8909} )
8910
8911TEAM_RESCUE_SSGT = CreateTeam( "RS Staff 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 = 6,
8917 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8918 Regiment = "Rescue Trooper",
8919} )
8920
8921TEAM_RESCUE_MSGT = CreateTeam( "RS Master 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 = 7,
8927 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8928 Regiment = "Rescue Trooper",
8929} )
8930
8931TEAM_RESCUE_OFFICERCADET = CreateTeam( "RS Officer Cadet", {
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 = 8,
8937 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8938 Regiment = "Rescue Trooper",
8939} )
8940
8941TEAM_RESCUE_WO = CreateTeam( "RS Warrant Officer", {
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 = 9,
8947 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8948 Regiment = "Rescue Trooper",
8949} )
8950
8951TEAM_RESCUE_LT = CreateTeam( "RS Lieutenant", {
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 = 10,
8957 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8958 Regiment = "Rescue Trooper",
8959} )
8960
8961TEAM_RESCUE_FLT = CreateTeam( "RS First 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 = 11,
8967 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8968 Regiment = "Rescue Trooper",
8969} )
8970
8971TEAM_RESCUE_CAPT = CreateTeam( "RS Captain", {
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 = 12,
8977 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8978 Regiment = "Rescue Trooper",
8979} )
8980
8981TEAM_RESCUE_MAJ = CreateTeam( "RS Major", {
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 = 13,
8987 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8988 Regiment = "Rescue Trooper",
8989} )
8990
8991TEAM_RESCUE_COLO = CreateTeam( "RS Colonel", {
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 = 14,
8997 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
8998 Regiment = "Rescue Trooper",
8999} )
9000
9001TEAM_RESCUE_HCOLO = CreateTeam( "RS High 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 = 15,
9007 Model = "models/player/rescue_troopers/rescue_trooper.mdl",
9008 Regiment = "Rescue Trooper",
9009} )
9010
9011TEAM_RESCUE_CMD = CreateTeam( "RS Commander", {
9012 Description = "Commander 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 = 16,
9017 Model = "models/player/rescue_troopers/rescue_commander.mdl",
9018 Regiment = "Rescue Trooper",
9019} )
9020
9021TEAM_RESCUE_BRIG = CreateTeam( "RS Brigadier", {
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 = 17,
9027 Model = "models/player/rescue_troopers/rescue_commander.mdl",
9028 Regiment = "Rescue Trooper",
9029} )
9030
9031TEAM_RESCUE_MAJG = CreateTeam( "RS Major General", {
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 = 18,
9037 Model = "models/player/rescue_troopers/rescue_commander.mdl",
9038 Regiment = "Rescue Trooper",
9039} )
9040
9041TEAM_RESCUE_LTG = CreateTeam( "RS Lieutenant 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 = 19,
9047 Model = "models/player/rescue_troopers/rescue_commander.mdl",
9048 Regiment = "Rescue Trooper",
9049} )
9050
9051TEAM_RESCUE_GEN = CreateTeam( "RS General", {
9052 Description = "General 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 = 20,
9057 Model = "models/sono/swbf3/shadow.mdl",
9058 Regiment = "Rescue Trooper",
9059} )
9060
9061TEAM_SMAR_INT = CreateTeam( "Marauder Initiate", {
9062 Description = "Sith Marauder",
9063 Weapons = {"weapon_lightsaber"},
9064 Colour = Color(161, 0, 63, 255),
9065 Side = 1,
9066 Rank = 1,
9067 Model = "models/player/vaspyr/experimentalsith/experimentalsith_pm.mdl",
9068 Regiment = "Sith Marauder",
9069} )
9070
9071TEAM_SMAR_APR = CreateTeam( "Marauder Apprentice", {
9072 Description = "Sith Marauder",
9073 Weapons = {"weapon_lightsaber"},
9074 Colour = Color(161, 0, 63, 255),
9075 Side = 1,
9076 Rank = 2,
9077 Model = "models/player/vaspyr/experimentalsith/experimentalsith_pm.mdl",
9078 Regiment = "Sith Marauder",
9079} )
9080
9081TEAM_SMAR_NOV = CreateTeam( "Marauder Novice", {
9082 Description = "Sith Marauder",
9083 Weapons = {"weapon_lightsaber"},
9084 Colour = Color(161, 0, 63, 255),
9085 Side = 1,
9086 Rank = 3,
9087 Model = "models/player/vaspyr/experimentalsith/experimentalsith_pm.mdl",
9088 Regiment = "Sith Marauder",
9089} )
9090
9091TEAM_SMAR_ACO = CreateTeam( "Marauder Acolyte", {
9092 Description = "Sith Marauder",
9093 Weapons = {"weapon_lightsaber"},
9094 Colour = Color(161, 0, 63, 255),
9095 Side = 1,
9096 Rank = 4,
9097 Model = "models/player/vaspyr/experimentalsith/experimentalsith_pm.mdl",
9098 Regiment = "Sith Marauder",
9099} )
9100
9101TEAM_SMAR_ADT = CreateTeam( "Marauder Adept", {
9102 Description = "Sith Marauder",
9103 Weapons = {"weapon_lightsaber"},
9104 Colour = Color(161, 0, 63, 255),
9105 Side = 1,
9106 Rank = 5,
9107 Model = "models/player/vaspyr/experimentalsith/experimentalsith_pm.mdl",
9108 Regiment = "Sith Marauder",
9109} )
9110
9111TEAM_SMAR_WAR = CreateTeam( "Marauder Warrior", {
9112 Description = "Sith Marauder",
9113 Weapons = {"weapon_lightsaber"},
9114 Colour = Color(161, 0, 63, 255),
9115 Side = 1,
9116 Rank = 6,
9117 Model = "models/player/vaspyr/experimentalsith/experimentalsith_pm.mdl",
9118 Regiment = "Sith Marauder",
9119} )
9120
9121TEAM_SMAR_CRU = CreateTeam( "Marauder Crusader", {
9122 Description = "Sith Marauder",
9123 Weapons = {"weapon_lightsaber"},
9124 Colour = Color(161, 0, 63, 255),
9125 Side = 1,
9126 Rank = 7,
9127 Model = "models/player/vaspyr/experimentalsith/experimentalsith_pm.mdl",
9128 Regiment = "Sith Marauder",
9129} )
9130
9131TEAM_SMAR_LEA = CreateTeam( "Marauder Leader", {
9132 Description = "Sith Marauder",
9133 Weapons = {"weapon_lightsaber"},
9134 Colour = Color(161, 0, 63, 255),
9135 Side = 1,
9136 Rank = 16,
9137 Model = "models/player/vaspyr/experimentalsith/experimentalsith_pm.mdl",
9138 Regiment = "Sith Marauder",
9139} )
9140
9141TEAM_JUG_PVT = CreateTeam( "Juggernaut Private", {
9142 Description = "Imperial Juggernaut",
9143 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9144 Colour = Color(119, 244, 66, 255),
9145 Side = 1,
9146 Rank = 1,
9147 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9148 Regiment = "Juggernaut",
9149} )
9150
9151TEAM_JUG_PFC = CreateTeam( "Juggernaut Private First Class", {
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 = 2,
9157 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9158 Regiment = "Juggernaut",
9159} )
9160
9161TEAM_JUG_LCP = CreateTeam( "Juggernaut Lance Corporal", {
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 = 3,
9167 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9168 Regiment = "Juggernaut",
9169} )
9170
9171TEAM_JUG_CPL = CreateTeam( "Juggernaut 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 = 4,
9177 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9178 Regiment = "Juggernaut",
9179} )
9180
9181TEAM_JUG_SGT = CreateTeam( "Juggernaut Sergeant", {
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 = 5,
9187 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9188 Regiment = "Juggernaut",
9189} )
9190
9191TEAM_JUG_SSG = CreateTeam( "Juggernaut Staff 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 = 6,
9197 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9198 Regiment = "Juggernaut",
9199} )
9200
9201TEAM_JUG_MSG = CreateTeam( "Juggernaut Master 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 = 7,
9207 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9208 Regiment = "Juggernaut",
9209} )
9210
9211TEAM_JUG_OFC = CreateTeam( "Juggernaut Officer Cadet", {
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 = 8,
9217 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9218 Regiment = "Juggernaut",
9219} )
9220
9221TEAM_JUG_WOF = CreateTeam( "Juggernaut Warrant Officer", {
9222 Description = "Imperial Juggernaut",
9223 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9224 Colour = Color(119, 244, 66, 255),
9225 Side = 1,
9226 Rank = 9,
9227 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9228 Regiment = "Juggernaut",
9229} )
9230
9231TEAM_JUG_LTT = CreateTeam( "Juggernaut Lieutenant", {
9232 Description = "Imperial Juggernaut",
9233 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9234 Colour = Color(119, 244, 66, 255),
9235 Side = 1,
9236 Rank = 10,
9237 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9238 Regiment = "Juggernaut",
9239} )
9240
9241TEAM_JUG_FLT = CreateTeam( "Juggernaut First Lieutenant", {
9242 Description = "Imperial Juggernaut",
9243 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9244 Colour = Color(119, 244, 66, 255),
9245 Side = 1,
9246 Rank = 11,
9247 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9248 Regiment = "Juggernaut",
9249} )
9250
9251TEAM_JUG_CPT = CreateTeam( "Juggernaut Captain", {
9252 Description = "Imperial Juggernaut",
9253 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9254 Colour = Color(119, 244, 66, 255),
9255 Side = 1,
9256 Rank = 12,
9257 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9258 Regiment = "Juggernaut",
9259} )
9260
9261TEAM_JUG_MJR = CreateTeam( "Juggernaut Major", {
9262 Description = "Imperial Juggernaut",
9263 Weapons = {"tfa_swch_rt97c", "tfa_swch_se14c", "tfa_sw_cisshot"},
9264 Colour = Color(119, 244, 66, 255),
9265 Side = 1,
9266 Rank = 13,
9267 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9268 Regiment = "Juggernaut",
9269} )
9270
9271TEAM_JUG_COL = CreateTeam( "Juggernaut Colonel", {
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 = 14,
9277 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9278 Regiment = "Juggernaut",
9279} )
9280
9281TEAM_JUG_HCO = CreateTeam( "Juggernaut High 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 = 15,
9287 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9288 Regiment = "Juggernaut",
9289} )
9290
9291TEAM_JUG_CMD = CreateTeam( "Juggernaut Commander", {
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 = 16,
9297 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9298 Regiment = "Juggernaut",
9299} )
9300
9301TEAM_JUG_BRG = CreateTeam( "Juggernaut Brigadier", {
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 = 17,
9307 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9308 Regiment = "Juggernaut",
9309} )
9310
9311TEAM_JUG_MGN = CreateTeam( "Juggernaut Major General", {
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 = 18,
9317 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9318 Regiment = "Juggernaut",
9319} )
9320
9321TEAM_JUG_LGN = CreateTeam( "Juggernaut Lieutenant 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 = 19,
9327 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9328 Regiment = "Juggernaut",
9329} )
9330
9331TEAM_JUG_GEN = CreateTeam( "Juggernaut 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 = 20,
9337 Model = "models/kryptonite/tfu_jumptrooper/tfu_jumptrooper.mdl",
9338 Regiment = "Juggernaut",
9339} )
9340
9341TEAM_TFO_PVT = CreateTeam( "TFO Private", {
9342 Description = "TFO Trooper",
9343 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_se14c", "tfa_swch_dlt19"},
9344 Colour = Color(0, 204, 255, 255),
9345 Side = 1,
9346 Rank = 1,
9347 Model = "models/player/banks/troopers/ftrooper.mdl",
9348 Regiment = "The Fallen Order",
9349} )
9350
9351TEAM_TFO_PFC = CreateTeam( "TFO Private First Class", {
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 = 2,
9357 Model = "models/player/banks/troopers/ftrooper.mdl",
9358 Regiment = "The Fallen Order",
9359} )
9360
9361TEAM_TFO_LCPL = CreateTeam( "TFO Lance Corporal", {
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 = 3,
9367 Model = "models/player/banks/troopers/ftrooper.mdl",
9368 Regiment = "The Fallen Order",
9369} )
9370
9371TEAM_TFO_CPL = CreateTeam( "TFO 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 = 4,
9377 Model = "models/player/banks/troopers/ftrooper.mdl",
9378 Regiment = "The Fallen Order",
9379} )
9380
9381TEAM_TFO_SGT = CreateTeam( "TFO Sergeant", {
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 = 5,
9387 Model = "models/player/banks/troopers/fsergeant.mdl",
9388 Regiment = "The Fallen Order",
9389} )
9390
9391TEAM_TFO_SSGT = CreateTeam( "TFO Staff 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 = 6,
9397 Model = "models/player/banks/troopers/fsergeant.mdl",
9398 Regiment = "The Fallen Order",
9399} )
9400
9401TEAM_TFO_MSGT = CreateTeam( "TFO Master 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 = 7,
9407 Model = "models/player/banks/troopers/fsergeant.mdl",
9408 Regiment = "The Fallen Order",
9409} )
9410
9411TEAM_TFO_OC = CreateTeam( "TFO Officer Cadet", {
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 = 8,
9417 Model = "models/player/banks/troopers/fsergeant.mdl",
9418 Regiment = "The Fallen Order",
9419} )
9420
9421TEAM_TFO_WO = CreateTeam( "TFO Warrant Officer", {
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 = 9,
9427 Model = "models/player/banks/troopers/fsergeant.mdl",
9428 Regiment = "The Fallen Order",
9429} )
9430
9431TEAM_TFO_LT = CreateTeam( "TFO Lieutenant", {
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 = 10,
9437 Model = "models/player/banks/fallen/tk_arc.mdl",
9438 Regiment = "The Fallen Order",
9439} )
9440
9441TEAM_TFO_1LT = CreateTeam( "TFO First 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 = 11,
9447 Model = "models/player/banks/fallen/tk_arc.mdl",
9448 Regiment = "The Fallen Order",
9449} )
9450
9451TEAM_TFO_CAPT = CreateTeam( "TFO Captain", {
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 = 12,
9457 Model = "models/player/banks/fallen/tk_arc.mdl",
9458 Regiment = "The Fallen Order",
9459} )
9460
9461TEAM_TFO_MAJ = CreateTeam( "TFO Major", {
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 = 13,
9467 Model = "models/player/banks/fallen/tk_arc.mdl",
9468 Regiment = "The Fallen Order",
9469} )
9470
9471TEAM_TFO_COLO = CreateTeam( "TFO Colonel", {
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 = 14,
9477 Model = "models/player/banks/fallen/tk_havoc.mdl",
9478 Regiment = "The Fallen Order",
9479} )
9480
9481TEAM_TFO_HCOLO = CreateTeam( "TFO High 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 = 15,
9487 Model = "models/player/banks/fallen/tk_havoc.mdl",
9488 Regiment = "The Fallen Order",
9489} )
9490
9491TEAM_TFO_CMD = CreateTeam( "TFO Commander", {
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 = 16,
9497 Model = "models/player/banks/fallen/tk_havoc.mdl",
9498 Regiment = "The Fallen Order",
9499} )
9500
9501TEAM_TFO_BRIG = CreateTeam( "TFO Brigadier", {
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 = 17,
9507 Model = "models/player/banks/fallen/tk_havoc.mdl",
9508 Regiment = "The Fallen Order",
9509} )
9510
9511TEAM_TFO_MAJG = CreateTeam( "TFO Major General", {
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 = 18,
9517 Model = "models/player/banks/fallen/tk_havoc.mdl",
9518 Regiment = "The Fallen Order",
9519} )
9520
9521TEAM_TFO_LTG = CreateTeam( "TFO Lieutenant 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 = 19,
9527 Model = "models/player/banks/fallen/tk_havoc.mdl",
9528 Regiment = "The Fallen Order",
9529} )
9530
9531TEAM_TFO_GEN = CreateTeam( "TFO 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 = 20,
9537 Model = "models/player/banks/fallen/tk_havoc.mdl",
9538 Regiment = "The Fallen Order",
9539} )
9540
9541TEAM_DROID_R4B = CreateTeam( "R4-B", {
9542 Description = "Astromech R4-B series Droid",
9543 Weapons = {"tfa_swch_se14c", "weapon_jetpack", "weapon_avpflamer", "weapon_stunstick"},
9544 Colour = Color(161, 0, 63, 255),
9545 Side = 1,
9546 Rank = 5,
9547 Model = "models/player/valley/astromechv2red.mdl",
9548 Regiment = "R4-B",
9549} )
9550
9551TEAM_BANE = CreateTeam( "", {
9552 Description = "Bounty Hunter Cad Bane.",
9553 Weapons = {"weapon_752_ll30dual", "tfa_sw_cissnip", "tfa_swch_ee3", "weapon_cuff_elastic"},
9554 Colour = Color(161, 0, 63, 255),
9555 Side = 1,
9556 Rank = 5,
9557 Model = "models/grealms/characters/cadbane/cadbane.mdl",
9558 Regiment = "Cad Bane",
9559} )
9560
9561TEAM_ISB_AGV = CreateTeam( "ISB Admiral", {
9562 Description = "Director of the Imperial Security Bureau",
9563 Weapons = {"tfa_dt29", "tfa_swch_e11", "tfa_swch_dh17", "weapon_cuff_tactical", "weapon_cuff_elastic", "weapon_taser"},
9564 Colour = Color(225, 225, 153, 255 ),
9565 Side = 1,
9566 Rank = 23,
9567 Model = "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl",
9568 Regiment = "ISB",
9569} )
9570
9571TEAM_EVENT_REBELT = CreateTeam( "", {
9572 Description = "Event Job",
9573 Weapons = {"tfa_swch_a280c", "gmod_tool"},
9574 Colour = Color(255, 255, 255, 255),
9575 Side = 1,
9576 Rank = 1,
9577 Model = "models/player/sgg/starwars/rebels/r_trooper/male_02.mdl",
9578 Regiment = "Event",
9579} )
9580
9581TEAM_EVENT_REBELC = CreateTeam( "", {
9582 Description = "Event Job",
9583 Weapons = {"tfa_swch_a280c", "zeus_thermaldet", "gmod_tool"},
9584 Colour = Color(255, 255, 255, 255),
9585 Side = 1,
9586 Rank = 1,
9587 Model = "models/player/sgg/starwars/rebels/r_trooper_captain/male_02.mdl",
9588 Regiment = "Event",
9589} )
9590
9591TEAM_EVENT_TACDROID = CreateTeam( "Tactical Droid", {
9592 Description = "Event Job",
9593 Weapons = {"tfa_swch_e5", "gmod_tool"},
9594 Colour = Color(255, 255, 255, 255),
9595 Side = 1,
9596 Rank = 1,
9597 Model = "models/church/swtor/republicdroid/cpt_republicdroid.mdl",
9598 Regiment = "Event",
9599} )
9600
9601TEAM_EVENT_BATTLEDROID = CreateTeam( "Battledroid", {
9602 Description = "Event Job",
9603 Weapons = {"tfa_swch_e5", "gmod_tool"},
9604 Colour = Color(255, 255, 255, 255),
9605 Side = 1,
9606 Rank = 1,
9607 Model = "models/npc/hgn/swrp/swrp/droid_b1_battle.mdl",
9608 Regiment = "Event",
9609} )
9610
9611TEAM_EVENT_1 = CreateTeam( "Event 1", {
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/fatal/troopers/trooper.mdl",
9618 Regiment = "Event",
9619} )
9620
9621TEAM_EVENT_2 = CreateTeam( "Event 2", {
9622 Description = "Event Job",
9623 Weapons = {"tfa_swch_a280c", "zeus_thermaldet", "gmod_tool"},
9624 Colour = Color(255, 255, 255, 255),
9625 Side = 1,
9626 Rank = 1,
9627 Model = "models/player/fatal/troopers/trooper.mdl",
9628 Regiment = "Event",
9629} )
9630
9631TEAM_EVENT_3 = CreateTeam( "Event 3", {
9632 Description = "Event Job",
9633 Weapons = {"tfa_swch_e5", "gmod_tool"},
9634 Colour = Color(255, 255, 255, 255),
9635 Side = 1,
9636 Rank = 1,
9637 Model = "models/player/fatal/troopers/trooper.mdl",
9638 Regiment = "Event",
9639} )
9640
9641TEAM_EVENT_4 = CreateTeam( "Event 4", {
9642 Description = "Event Job",
9643 Weapons = {"tfa_swch_e5", "gmod_tool"},
9644 Colour = Color(255, 255, 255, 255),
9645 Side = 1,
9646 Rank = 1,
9647 Model = "models/player/fatal/troopers/trooper.mdl",
9648 Regiment = "Event",
9649} )
9650
9651TEAM_EVENT_5 = CreateTeam( "Event 5", {
9652 Description = "Event Job",
9653 Weapons = {"tfa_swch_a280c", "gmod_tool"},
9654 Colour = Color(255, 255, 255, 255),
9655 Side = 1,
9656 Rank = 1,
9657 Model = "models/player/fatal/troopers/trooper.mdl",
9658 Regiment = "Event",
9659} )
9660
9661TEAM_EVENT_6 = CreateTeam( "Event 6", {
9662 Description = "Event Job",
9663 Weapons = {"tfa_swch_a280c", "zeus_thermaldet", "gmod_tool"},
9664 Colour = Color(255, 255, 255, 255),
9665 Side = 1,
9666 Rank = 1,
9667 Model = "models/player/fatal/troopers/trooper.mdl",
9668 Regiment = "Event",
9669} )
9670
9671TEAM_EVENT_7 = CreateTeam( "Event 7", {
9672 Description = "Event Job",
9673 Weapons = {"tfa_swch_e5", "gmod_tool"},
9674 Colour = Color(255, 255, 255, 255),
9675 Side = 1,
9676 Rank = 1,
9677 Model = "models/player/fatal/troopers/trooper.mdl",
9678 Regiment = "Event",
9679} )
9680
9681TEAM_EVENT_8 = CreateTeam( "Event 8", {
9682 Description = "Event Job",
9683 Weapons = {"tfa_swch_e5", "gmod_tool"},
9684 Colour = Color(255, 255, 255, 255),
9685 Side = 1,
9686 Rank = 1,
9687 Model = "models/player/fatal/troopers/trooper.mdl",
9688 Regiment = "Event",
9689} )
9690
9691TEAM_EVENT_9 = CreateTeam( "Event 9", {
9692 Description = "Event Job",
9693 Weapons = {"tfa_swch_a280c", "gmod_tool"},
9694 Colour = Color(255, 255, 255, 255),
9695 Side = 1,
9696 Rank = 1,
9697 Model = "models/player/fatal/troopers/trooper.mdl",
9698 Regiment = "Event",
9699} )
9700
9701TEAM_EVENT_10 = CreateTeam( "Event 10", {
9702 Description = "Event Job",
9703 Weapons = {"tfa_swch_a280c", "zeus_thermaldet", "gmod_tool"},
9704 Colour = Color(255, 255, 255, 255),
9705 Side = 1,
9706 Rank = 1,
9707 Model = "models/player/fatal/troopers/trooper.mdl",
9708 Regiment = "Event",
9709} )
9710
9711TEAM_EVENT_11 = CreateTeam( "Event 11", {
9712 Description = "Event Job",
9713 Weapons = {"tfa_swch_e5", "gmod_tool"},
9714 Colour = Color(255, 255, 255, 255),
9715 Side = 1,
9716 Rank = 1,
9717 Model = "models/player/fatal/troopers/trooper.mdl",
9718 Regiment = "Event",
9719} )
9720
9721TEAM_EVENT_12 = CreateTeam( "Event 12", {
9722 Description = "Event Job",
9723 Weapons = {"tfa_swch_e5", "gmod_tool"},
9724 Colour = Color(255, 255, 255, 255),
9725 Side = 1,
9726 Rank = 1,
9727 Model = "models/player/fatal/troopers/trooper.mdl",
9728 Regiment = "Event",
9729} )
9730
9731TEAM_EVENT_13 = CreateTeam( "Event 13", {
9732 Description = "Event Job",
9733 Weapons = {"tfa_swch_a280c", "gmod_tool"},
9734 Colour = Color(255, 255, 255, 255),
9735 Side = 1,
9736 Rank = 1,
9737 Model = "models/player/fatal/troopers/trooper.mdl",
9738 Regiment = "Event",
9739} )
9740
9741TEAM_EVENT_14 = CreateTeam( "Event 14", {
9742 Description = "Event Job",
9743 Weapons = {"tfa_swch_a280c", "zeus_thermaldet", "gmod_tool"},
9744 Colour = Color(255, 255, 255, 255),
9745 Side = 1,
9746 Rank = 1,
9747 Model = "models/player/fatal/troopers/trooper.mdl",
9748 Regiment = "Event",
9749} )
9750
9751TEAM_EVENT_15 = CreateTeam( "Event 15", {
9752 Description = "Event Job",
9753 Weapons = {"tfa_swch_e5", "gmod_tool"},
9754 Colour = Color(255, 255, 255, 255),
9755 Side = 1,
9756 Rank = 1,
9757 Model = "models/player/fatal/troopers/trooper.mdl",
9758 Regiment = "Event",
9759} )
9760
9761TEAM_EVENT_16 = CreateTeam( "Event 16", {
9762 Description = "Event Job",
9763 Weapons = {"tfa_swch_e5", "gmod_tool"},
9764 Colour = Color(255, 255, 255, 255),
9765 Side = 1,
9766 Rank = 1,
9767 Model = "models/player/fatal/troopers/trooper.mdl",
9768 Regiment = "Event",
9769} )
9770
9771TEAM_NAVG_TRA = CreateTeam( "NG Trainee", {
9772 Description = "Naval Guard.",
9773 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9774 Colour = Color(45, 197, 232, 255),
9775 Side = 1,
9776 Rank = 1,
9777 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9778 Regiment = "Naval Guard",
9779} )
9780
9781TEAM_NAVG_JNR = CreateTeam( "NG Junior Crewman", {
9782 Description = "Naval Guard.",
9783 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9784 Colour = Color(45, 197, 232, 255),
9785 Side = 1,
9786 Rank = 2,
9787 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9788 Regiment = "Naval Guard",
9789} )
9790
9791TEAM_NAVG_CRW = CreateTeam( "NG Crewman", {
9792 Description = "Naval Guard.",
9793 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9794 Colour = Color(45, 197, 232, 255),
9795 Side = 1,
9796 Rank = 3,
9797 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9798 Regiment = "Naval Guard",
9799} )
9800
9801TEAM_NAVG_ABC = CreateTeam( "NG Able Crewman", {
9802 Description = "Naval Guard.",
9803 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9804 Colour = Color(45, 197, 232, 255),
9805 Side = 1,
9806 Rank = 4,
9807 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9808 Regiment = "Naval Guard",
9809} )
9810
9811TEAM_NAVG_SNC = CreateTeam( "NG Senior Crewman", {
9812 Description = "Naval Guard.",
9813 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9814 Colour = Color(45, 197, 232, 255),
9815 Side = 1,
9816 Rank = 5,
9817 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9818 Regiment = "Naval Guard",
9819} )
9820
9821TEAM_NAVG_LDC = CreateTeam( "NG Leading Crewman", {
9822 Description = "Naval Guard.",
9823 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9824 Colour = Color(45, 197, 232, 255),
9825 Side = 1,
9826 Rank = 6,
9827 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9828 Regiment = "Naval Guard",
9829} )
9830
9831TEAM_NAVG_CHF = CreateTeam( "NG Chief", {
9832 Description = "Naval Guard.",
9833 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9834 Colour = Color(45, 197, 232, 255),
9835 Side = 1,
9836 Rank = 7,
9837 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9838 Regiment = "Naval Guard",
9839} )
9840
9841TEAM_NAVG_MCH = CreateTeam( "NG Master Chief", {
9842 Description = "Naval Guard.",
9843 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9844 Colour = Color(45, 197, 232, 255),
9845 Side = 1,
9846 Rank = 8,
9847 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9848 Regiment = "Naval Guard",
9849} )
9850
9851TEAM_NAVG_POF = CreateTeam( "NG Petty Officer", {
9852 Description = "Naval Guard.",
9853 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9854 Colour = Color(45, 197, 232, 255),
9855 Side = 1,
9856 Rank = 9,
9857 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9858 Regiment = "Naval Guard",
9859} )
9860
9861TEAM_NAVG_OFC = CreateTeam( "NG Officer Cadet", {
9862 Description = "Naval Guard.",
9863 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9864 Colour = Color(45, 197, 232, 255),
9865 Side = 1,
9866 Rank = 10,
9867 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9868 Regiment = "Naval Guard",
9869} )
9870
9871TEAM_NAVG_ENS = CreateTeam( "NG Ensign", {
9872 Description = "Naval Guard.",
9873 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9874 Colour = Color(45, 197, 232, 255),
9875 Side = 1,
9876 Rank = 11,
9877 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9878 Regiment = "Naval Guard",
9879} )
9880
9881TEAM_NAVG_SLT = CreateTeam( "NG Sub-Lieutenant", {
9882 Description = "Naval Guard.",
9883 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9884 Colour = Color(45, 197, 232, 255),
9885 Side = 1,
9886 Rank = 12,
9887 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9888 Regiment = "Naval Guard",
9889} )
9890
9891TEAM_NAVG_LT = CreateTeam( "NG Lieutenant", {
9892 Description = "Naval Guard.",
9893 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9894 Colour = Color(45, 197, 232, 255),
9895 Side = 1,
9896 Rank = 13,
9897 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9898 Regiment = "Naval Guard",
9899} )
9900
9901TEAM_NAVG_LTC = CreateTeam( "NG Lieutenant Commander", {
9902 Description = "Naval Guard.",
9903 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9904 Colour = Color(45, 197, 232, 255),
9905 Side = 1,
9906 Rank = 14,
9907 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9908 Regiment = "Naval Guard",
9909} )
9910
9911TEAM_NAVG_CMD = CreateTeam( "NG Commander", {
9912 Description = "Naval Guard.",
9913 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9914 Colour = Color(45, 197, 232, 255),
9915 Side = 1,
9916 Rank = 15,
9917 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9918 Regiment = "Naval Guard",
9919} )
9920
9921TEAM_NAVG_CAP = CreateTeam( "NG Captain", {
9922 Description = "Naval Guard.",
9923 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9924 Colour = Color(45, 197, 232, 255),
9925 Side = 1,
9926 Rank = 16,
9927 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9928 Regiment = "Naval Guard",
9929} )
9930
9931TEAM_NAVG_LCPT = CreateTeam( "NG Line Captain", {
9932 Description = "Naval Guard.",
9933 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9934 Colour = Color(45, 197, 232, 255),
9935 Side = 1,
9936 Rank = 17,
9937 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9938 Regiment = "Naval Guard",
9939} )
9940
9941TEAM_NAVG_COM = CreateTeam( "NG Commodore", {
9942 Description = "Naval Guard.",
9943 Weapons = {"tfa_swch_e11", "tfa_swch_dc17m_br", "weapon_cuff_elastic", "tfa_swch_se14c"},
9944 Colour = Color(45, 197, 232, 255),
9945 Side = 1,
9946 Rank = 18,
9947 Model = "models/player/ven/remasteredshadowtrooper.mdl",
9948 Regiment = "Naval Guard",
9949} )
9950
9951TEAM_PROPHET_SP = CreateTeam( "Supreme Prophet", {
9952 Description = "",
9953 Weapons = {"weapon_lightsaber", "weapon_cuff_elastic", "forcechoke"},
9954 Colour = Color(255, 51, 51, 255),
9955 Side = 1,
9956 Rank = 16,
9957 Model = "models/staticiser/req/prophet_4/prophet_4.mdl",
9958 Regiment = "Prophet",
9959} )
9960
9961
9962local teamhp = {
9963 [ TEAM_ST_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
9964 [ TEAM_ST_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
9965 [ TEAM_ST_COLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9966 [ TEAM_ST_HCOLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9967 [ TEAM_ST_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9968 [ TEAM_ST_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9969 [ TEAM_ST_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
9970 [ TEAM_ST_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
9971 [ TEAM_ST_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
9972 [ TEAM_ST_HEAVY ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
9973 [ TEAM_SNOW_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
9974 [ TEAM_SNOW_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
9975 [ TEAM_SNOW_COLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9976 [ TEAM_SNOW_HCOLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9977 [ TEAM_SNOW_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9978 [ TEAM_SNOW_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9979 [ TEAM_SNOW_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
9980 [ TEAM_SNOW_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
9981 [ TEAM_SNOW_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
9982 [ TEAM_SCOUT_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
9983 [ TEAM_SCOUT_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
9984 [ TEAM_SCOUT_COLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
9985 [ TEAM_SCOUT_HCOLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
9986 [ TEAM_SCOUT_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9987 [ TEAM_SCOUT_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9988 [ TEAM_SCOUT_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9989 [ TEAM_SCOUT_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9990 [ TEAM_SCOUT_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9991 [ TEAM_212TH_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9992 [ TEAM_212TH_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9993 [ TEAM_212TH_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9994 [ TEAM_212TH_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9995 [ TEAM_212TH_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9996 [ TEAM_212TH_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9997 [ TEAM_212TH_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
9998 [ TEAM_212TH_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
9999 [ TEAM_212TH_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10000 [ TEAM_212TH_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10001 [ TEAM_212TH_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10002 [ TEAM_212TH_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10003 [ TEAM_212TH_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10004 [ TEAM_212TH_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10005 [ TEAM_212TH_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10006 [ TEAM_212TH_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10007 [ TEAM_212TH_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10008 [ TEAM_212TH_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10009 [ TEAM_212TH_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10010 [ TEAM_212TH_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10011 [ TEAM_442ND_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10012 [ TEAM_442ND_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10013 [ TEAM_442ND_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10014 [ TEAM_442ND_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10015 [ TEAM_442ND_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10016 [ TEAM_442ND_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10017 [ TEAM_442ND_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10018 [ TEAM_442ND_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10019 [ TEAM_442ND_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10020 [ TEAM_442ND_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10021 [ TEAM_442ND_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10022 [ TEAM_442ND_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10023 [ TEAM_442ND_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10024 [ TEAM_442ND_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10025 [ TEAM_442ND_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10026 [ TEAM_442ND_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10027 [ TEAM_442ND_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10028 [ TEAM_442ND_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10029 [ TEAM_442ND_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10030 [ TEAM_442ND_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10031 [ TEAM_SHADOW_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10032 [ TEAM_SHADOW_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10033 [ TEAM_SHADOW_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10034 [ TEAM_SHADOW_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10035 [ TEAM_SHADOW_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10036 [ TEAM_SHADOW_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10037 [ TEAM_SHADOW_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10038 [ TEAM_SHADOW_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10039 [ TEAM_SHADOW_WO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10040 [ TEAM_SHADOW_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10041 [ TEAM_SHADOW_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10042 [ TEAM_SHADOW_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10043 [ TEAM_SHADOW_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10044 [ TEAM_SHADOW_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10045 [ TEAM_SHADOW_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10046 [ TEAM_SHADOW_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10047 [ TEAM_SHADOW_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10048 [ TEAM_SHADOW_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10049 [ TEAM_SHADOW_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10050 [ TEAM_SHADOW_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10051 [ TEAM_JUMP_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10052 [ TEAM_JUMP_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10053 [ TEAM_JUMP_COLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10054 [ TEAM_JUMP_HCOLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10055 [ TEAM_JUMP_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10056 [ TEAM_JUMP_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10057 [ TEAM_JUMP_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10058 [ TEAM_JUMP_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10059 [ TEAM_JUMP_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10060 [ TEAM_DEATH_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10061 [ TEAM_DEATH_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10062 [ TEAM_DEATH_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10063 [ TEAM_DEATH_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10064 [ TEAM_DEATH_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10065 [ TEAM_DEATH_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10066 [ TEAM_DEATH_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10067 [ TEAM_DEATH_OFFICERCADET ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10068 [ TEAM_DEATH_WO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10069 [ TEAM_DEATH_LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10070 [ TEAM_DEATH_FLT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10071 [ TEAM_DEATH_CAPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10072 [ TEAM_DEATH_MAJ ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10073 [ TEAM_DEATH_COLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10074 [ TEAM_DEATH_HCOLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10075 [ TEAM_DEATH_CMD ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10076 [ TEAM_DEATH_BRIG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10077 [ TEAM_DEATH_MAJG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10078 [ TEAM_DEATH_LTG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10079 [ TEAM_DEATH_GEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10080 [ TEAM_SHORE_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10081 [ TEAM_SHORE_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10082 [ TEAM_SHORE_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10083 [ TEAM_SHORE_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10084 [ TEAM_SHORE_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10085 [ TEAM_SHORE_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10086 [ TEAM_SHORE_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10087 [ TEAM_SHORE_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10088 [ TEAM_SHORE_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10089 [ TEAM_SHORE_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10090 [ TEAM_SHORE_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10091 [ TEAM_SHORE_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10092 [ TEAM_SHORE_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10093 [ TEAM_SHORE_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10094 [ TEAM_SHORE_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10095 [ TEAM_SHORE_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10096 [ TEAM_SHORE_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10097 [ TEAM_SHORE_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10098 [ TEAM_SHORE_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10099 [ TEAM_SHORE_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10100 [ TEAM_NOVA_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10101 [ TEAM_NOVA_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10102 [ TEAM_NOVA_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10103 [ TEAM_NOVA_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10104 [ TEAM_NOVA_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10105 [ TEAM_NOVA_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10106 [ TEAM_NOVA_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10107 [ TEAM_NOVA_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10108 [ TEAM_NOVA_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10109 [ TEAM_NOVA_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10110 [ TEAM_NOVA_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10111 [ TEAM_NOVA_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10112 [ TEAM_NOVA_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10113 [ TEAM_NOVA_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10114 [ TEAM_NOVA_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10115 [ TEAM_NOVA_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10116 [ TEAM_NOVA_BRIG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10117 [ TEAM_NOVA_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10118 [ TEAM_NOVA_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10119 [ TEAM_NOVA_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10120 [ TEAM_MEDICAL_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10121 [ TEAM_MEDICAL_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10122 [ TEAM_MEDICAL_COLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10123 [ TEAM_MEDICAL_HCOLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10124 [ TEAM_MEDICAL_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10125 [ TEAM_MEDICAL_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10126 [ TEAM_MEDICAL_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10127 [ TEAM_MEDICAL_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10128 [ TEAM_MEDICAL_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10129 [ TEAM_SHOCK_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10130 [ TEAM_SHOCK_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10131 [ TEAM_SHOCK_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10132 [ TEAM_SHOCK_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10133 [ TEAM_SHOCK_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10134 [ TEAM_SHOCK_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10135 [ TEAM_SHOCK_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10136 [ TEAM_SHOCK_OFFICERCADET ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10137 [ TEAM_SHOCK_WO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10138 [ TEAM_SHOCK_LT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10139 [ TEAM_SHOCK_FLT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10140 [ TEAM_SHOCK_CAPT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10141 [ TEAM_SHOCK_MAJ ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10142 [ TEAM_SHOCK_COLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10143 [ TEAM_SHOCK_HCOLO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10144 [ TEAM_SHOCK_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10145 [ TEAM_SHOCK_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10146 [ TEAM_SHOCK_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10147 [ TEAM_SHOCK_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10148 [ TEAM_SHOCK_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10149 [ TEAM_SHOCK_HEAVY ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10150 [ TEAM_RIOT_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10151 [ TEAM_RIOT_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10152 [ TEAM_RIOT_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10153 [ TEAM_RIOT_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10154 [ TEAM_RIOT_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10155 [ TEAM_RIOT_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10156 [ TEAM_RIOT_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10157 [ TEAM_RIOT_OFFICERCADET ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10158 [ TEAM_RIOT_WO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10159 [ TEAM_RIOT_LT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10160 [ TEAM_RIOT_FLT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10161 [ TEAM_RIOT_CAPT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10162 [ TEAM_RIOT_MAJ ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10163 [ TEAM_RIOT_COLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10164 [ TEAM_RIOT_HCOLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10165 [ TEAM_RIOT_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10166 [ TEAM_RIOT_BRIG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10167 [ TEAM_RIOT_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10168 [ TEAM_RIOT_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10169 [ TEAM_RIOT_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10170 [ TEAM_VF_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10171 [ TEAM_VF_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10172 [ TEAM_VF_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10173 [ TEAM_VF_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10174 [ TEAM_VF_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10175 [ TEAM_VF_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10176 [ TEAM_VF_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10177 [ TEAM_VF_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10178 [ TEAM_VF_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10179 [ TEAM_VF_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10180 [ TEAM_VF_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10181 [ TEAM_VF_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10182 [ TEAM_VF_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10183 [ TEAM_VF_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10184 [ TEAM_VF_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10185 [ TEAM_VF_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10186 [ TEAM_VF_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10187 [ TEAM_VF_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10188 [ TEAM_VF_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10189 [ TEAM_VF_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10190 [ TEAM_TERROR_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10191 [ TEAM_TERROR_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10192 [ TEAM_TERROR_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10193 [ TEAM_TERROR_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10194 [ TEAM_TERROR_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10195 [ TEAM_TERROR_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10196 [ TEAM_TERROR_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10197 [ TEAM_TERROR_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10198 [ TEAM_TERROR_WO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10199 [ TEAM_TERROR_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10200 [ TEAM_TERROR_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10201 [ TEAM_TERROR_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10202 [ TEAM_TERROR_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10203 [ TEAM_TERROR_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10204 [ TEAM_TERROR_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10205 [ TEAM_TERROR_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10206 [ TEAM_TERROR_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10207 [ TEAM_TERROR_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10208 [ TEAM_TERROR_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10209 [ TEAM_TERROR_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10210 [ TEAM_TERROR_HEAVY ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10211 [ TEAM_MAGMA_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10212 [ TEAM_MAGMA_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10213 [ TEAM_MAGMA_COLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10214 [ TEAM_MAGMA_HCOLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10215 [ TEAM_MAGMA_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10216 [ TEAM_MAGMA_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10217 [ TEAM_MAGMA_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10218 [ TEAM_MAGMA_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10219 [ TEAM_MAGMA_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10220 [ TEAM_IMPERIALCOMMANDO_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10221 [ TEAM_IMPERIALCOMMANDO_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10222 [ TEAM_IMPERIALCOMMANDO_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10223 [ TEAM_IMPERIALCOMMANDO_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10224 [ TEAM_IMPERIALCOMMANDO_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10225 [ TEAM_IMPERIALCOMMANDO_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10226 [ TEAM_IMPERIALCOMMANDO_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10227 [ TEAM_IMPERIALCOMMANDO_OFFICERCADET ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10228 [ TEAM_IMPERIALCOMMANDO_WO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10229 [ TEAM_IMPERIALCOMMANDO_LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10230 [ TEAM_IMPERIALCOMMANDO_FLT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10231 [ TEAM_IMPERIALCOMMANDO_CAPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10232 [ TEAM_IMPERIALCOMMANDO_MAJ ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10233 [ TEAM_IMPERIALCOMMANDO_LCOLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10234 [ TEAM_IMPERIALCOMMANDO_COLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10235 [ TEAM_IMPERIALCOMMANDO_CMD ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10236 [ TEAM_IMPERIALCOMMANDO_BRIG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10237 [ TEAM_IMPERIALCOMMANDO_MAJG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10238 [ TEAM_IMPERIALCOMMANDO_LTG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10239 [ TEAM_IMPERIALCOMMANDO_GEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10240 [ TEAM_CIC_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10241 [ TEAM_CIC_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10242 [ TEAM_CIC_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10243 [ TEAM_CIC_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10244 [ TEAM_CIC_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10245 [ TEAM_CIC_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10246 [ TEAM_CIC_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10247 [ TEAM_CIC_OC ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10248 [ TEAM_CIC_WO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10249 [ TEAM_CIC_2LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10250 [ TEAM_CIC_1LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10251 [ TEAM_CIC_CPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10252 [ TEAM_CIC_MJR ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10253 [ TEAM_CIC_LCOLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10254 [ TEAM_CIC_COLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10255 [ TEAM_CIC_CMD ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10256 [ TEAM_CIC_BRIG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10257 [ TEAM_CIC_MAJG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10258 [ TEAM_CIC_LTG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10259 [ TEAM_CIC_GEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10260 [ TEAM_NAVY_ENSIGN ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10261 [ TEAM_NAVY_POFFICER ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10262 [ TEAM_NAVY_SLT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10263 [ TEAM_NAVY_LT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10264 [ TEAM_NAVY_LCMD ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10265 [ TEAM_NAVY_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10266 [ TEAM_NAVY_CAPT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10267 [ TEAM_NAVY_LCAPT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10268 [ TEAM_NAVY_COMMO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10269 [ TEAM_NAVY_RADMIRAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10270 [ TEAM_NAVY_VADMIRAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10271 [ TEAM_NAVY_ADMIRAL ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10272 [ TEAM_NAVY_GADMIRAL ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10273 [ TEAM_NAVY_IEX ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10274 [ TEAM_NAVY_GADMIRALT ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10275 [ TEAM_NAVY_GMOFFT ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10276 [ TEAM_NAVY_ENG3 ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10277 [ TEAM_NAVY_ENG4 ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10278 [ TEAM_NAVY_ENG5 ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10279 [ TEAM_NAVY_ENG6 ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10280 [ TEAM_NAVY_ENG7 ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10281 [ TEAM_NAVY_ENG8 ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10282 [ TEAM_NAVY_ENG9 ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10283 [ TEAM_NAVY_ENG10 ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10284 [ TEAM_NAVY_ENG11 ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10285 [ TEAM_NAVY_ENG12 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10286 [ TEAM_NAVY_ENG13 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10287 [ TEAM_ROYALGUARD_PVT ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10288 [ TEAM_ROYALGUARD_SGT ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10289 [ TEAM_ROYALGUARD_MSGT ] = function( ply ) ply:SetHealth(1100) ply:SetMaxHealth(1100) end,
10290 [ TEAM_ROYALGUARD_OC ] = function( ply ) ply:SetHealth(1200) ply:SetMaxHealth(1200) end,
10291 [ TEAM_ROYALGUARD_WO ] = function( ply ) ply:SetHealth(1250) ply:SetMaxHealth(1250) end,
10292 [ TEAM_ROYALGUARD_LT ] = function( ply ) ply:SetHealth(1300) ply:SetMaxHealth(1300) end,
10293 [ TEAM_ROYALGUARD_CPT ] = function( ply ) ply:SetHealth(1400) ply:SetMaxHealth(1400) end,
10294 [ TEAM_ROYALGUARD_CMD ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10295 [ TEAM_SHADOWGUARD_PVT ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10296 [ TEAM_SHADOWGUARD_SGT ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10297 [ TEAM_SHADOWGUARD_MSGT ] = function( ply ) ply:SetHealth(1100) ply:SetMaxHealth(1100) end,
10298 [ TEAM_SHADOWGUARD_OC ] = function( ply ) ply:SetHealth(1200) ply:SetMaxHealth(1200) end,
10299 [ TEAM_SHADOWGUARD_WO ] = function( ply ) ply:SetHealth(1250) ply:SetMaxHealth(1250) end,
10300 [ TEAM_SHADOWGUARD_LT ] = function( ply ) ply:SetHealth(1300) ply:SetMaxHealth(1300) end,
10301 [ TEAM_SHADOWGUARD_CPT ] = function( ply ) ply:SetHealth(1400) ply:SetMaxHealth(1400) end,
10302 [ TEAM_SHADOWGUARD_CMD ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10303 [ TEAM_RSTORMT_TRAINEE ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10304 [ TEAM_RSTORMT_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10305 [ TEAM_RSTORMT_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10306 [ TEAM_RSTORMT_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10307 [ TEAM_RSTORMT_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10308 [ TEAM_RSTORMT_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10309 [ TEAM_RSTORMT_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10310 [ TEAM_RSTORMT_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10311 [ TEAM_RSTORMT_WO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10312 [ TEAM_RSTORMT_OC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10313 [ TEAM_RSTORMT_2LT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10314 [ TEAM_RSTORMT_1LT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10315 [ TEAM_RSTORMT_CPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10316 [ TEAM_RSTORMT_MAJ ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10317 [ TEAM_RSTORMT_LCOL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10318 [ TEAM_RSTORMT_COL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10319 [ TEAM_RSTORMT_COM ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10320 [ TEAM_RSTORMT_Brigadier ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10321 [ TEAM_RSTORMT_LTGEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10322 [ TEAM_RSTORMT_MAJGEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10323 [ TEAM_RSTORMT_GEN ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10324 [ TEAM_RSTORMT_HEAVY ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10325 [ TEAM_INQUIS_TR ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10326 [ TEAM_INQUIS_APR ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10327 [ TEAM_INQUIS ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10328 [ TEAM_INQUIS_GR ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10329 [ TEAM_STARKILLER ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10330 [ TEAM_MALGUS ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10331 [ TEAM_SUNA ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10332 [ TEAM_CUSTOMSITH_CRISPIN ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10333 [ TEAM_JADUS ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10334 [ TEAM_KORNELIUS ] = function( ply ) ply:SetHealth(5000) ply:SetMaxHealth(5000) end,
10335 [ TEAM_DENGAR ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10336 [ TEAM_BOBA ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10337 [ TEAM_GREEDO ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10338 [ TEAM_BOSSK ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10339 [ TEAM_CUSTOMBOUNTYHUNTER1 ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10340 [ TEAM_DARTHMAUL ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10341 [ TEAM_SCYTHE ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10342 [ TEAM_INCINERATOR_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10343 [ TEAM_INCINERATOR_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10344 [ TEAM_INCINERATOR_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10345 [ TEAM_INCINERATOR_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10346 [ TEAM_INCINERATOR_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10347 [ TEAM_INCINERATOR_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10348 [ TEAM_INCINERATOR_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10349 [ TEAM_INCINERATOR_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10350 [ TEAM_INCINERATOR_WO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10351 [ TEAM_INCINERATOR_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10352 [ TEAM_INCINERATOR_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10353 [ TEAM_INCINERATOR_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10354 [ TEAM_INCINERATOR_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10355 [ TEAM_INCINERATOR_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10356 [ TEAM_INCINERATOR_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10357 [ TEAM_INCINERATOR_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10358 [ TEAM_INCINERATOR_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10359 [ TEAM_INCINERATOR_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10360 [ TEAM_INCINERATOR_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10361 [ TEAM_INCINERATOR_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10362 [ TEAM_Darman ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10363 [ TEAM_Niner ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10364 [ TEAM_Rede ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10365 [ TEAM_SABG ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10366 [ TEAM_SABGC ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10367 [ TEAM_VADER ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) ply:SetModelScale(1.06) end,
10368 [ TEAM_PALPATINE ] = function( ply ) ply:SetHealth(15000) ply:SetMaxHealth(15000) end,
10369 [ TEAM_MAULKILLER ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10370 [ TEAM_ITC_DEMO ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10371 [ TEAM_ITC_MRKS ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10372 [ TEAM_ITC_BERZERKER ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10373 [ TEAM_ITC_MEDIC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10374 [ TEAM_ITC_CMDR ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10375 [ TEAM_EVENT3 ] = function( ply ) ply:SetHealth(50000) ply:SetMaxHealth(50000) end,
10376 [ TEAM_RSTORMT_REP ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10377 [ TEAM_SENTINEL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) ply:SetModelScale(1.06) end,
10378 [ TEAM_REVAN ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10379 [ TEAM_REMNANT_PVT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10380 [ TEAM_REMNANT_PFC ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10381 [ TEAM_REMNANT_LCPL ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10382 [ TEAM_REMNANT_CPL ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10383 [ TEAM_REMNANT_SGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10384 [ TEAM_REMNANT_SSGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10385 [ TEAM_REMNANT_MSGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10386 [ TEAM_REMNANT_OC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10387 [ TEAM_REMNANT_WO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10388 [ TEAM_REMNANT_LT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10389 [ TEAM_REMNANT_1LT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10390 [ TEAM_REMNANT_CAPT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10391 [ TEAM_REMNANT_MAJ ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10392 [ TEAM_REMNANT_COLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10393 [ TEAM_REMNANT_HCOLO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10394 [ TEAM_REMNANT_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10395 [ TEAM_REMNANT_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10396 [ TEAM_REMNANT_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10397 [ TEAM_REMNANT_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10398 [ TEAM_REMNANT_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10399 [ TEAM_KNIGHT_TRAINEE ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10400 [ TEAM_KNIGHT_CORPORAL ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10401 [ TEAM_KNIGHT_SERGEANT ] = function( ply ) ply:SetHealth(1100) ply:SetMaxHealth(1100) end,
10402 [ TEAM_KNIGHT_LIEUTENANT ] = function( ply ) ply:SetHealth(1200) ply:SetMaxHealth(1200) end,
10403 [ TEAM_KNIGHT_CAPTAIN ] = function( ply ) ply:SetHealth(1300) ply:SetMaxHealth(1300) end,
10404 [ TEAM_KNIGHT_COMMANDER ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10405 [ TEAM_KNIGHT_SQUIRE ] = function( ply ) ply:SetHealth(950) ply:SetMaxHealth(950) end,
10406 [ TEAM_KNIGHT_TEMPLAR ] = function( ply ) ply:SetHealth(1400) ply:SetMaxHealth(1400) end,
10407 [ TEAM_KNIGHT_PALADIN ] = function( ply ) ply:SetHealth(1300) ply:SetMaxHealth(1300) end,
10408 [ TEAM_MOUSE ] = function( ply ) ply:SetModelScale(0.5) end,
10409 [ TEAM_KNIGHT_PRIVATE ] = function( ply ) ply:SetHealth(900) ply:SetMaxHealth(900) end,
10410 [ TEAM_PROPHET_PV ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10411 [ TEAM_PROPHET_LP ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10412 [ TEAM_PROPHET_EP ] = function( ply ) ply:SetHealth(1200) ply:SetMaxHealth(1200) end,
10413 [ TEAM_PROPHET_PS ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10414 [ TEAM_PROPHET_HP ] = function( ply ) ply:SetHealth(1400) ply:SetMaxHealth(1400) end,
10415 [ TEAM_SOR_PVT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10416 [ TEAM_SOR_PFC ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10417 [ TEAM_SOR_LCPL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10418 [ TEAM_SOR_CPL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10419 [ TEAM_SOR_SGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10420 [ TEAM_SOR_SSGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10421 [ TEAM_SOR_MSGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10422 [ TEAM_SOR_WO ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10423 [ TEAM_SOR_OFFICERCADET ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10424 [ TEAM_SOR_LT ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10425 [ TEAM_SOR_FLT ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10426 [ TEAM_SOR_CPT ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10427 [ TEAM_SOR_MARSH ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10428 [ TEAM_SOR_DEMO ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10429 [ TEAM_SOR_SNIPER ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10430 [ TEAM_SOR_MEDIC ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10431 [ TEAM_SOR_HEAVY ] = function( ply ) ply:SetHealth(550) ply:SetMaxHealth(550) end,
10432 [ TEAM_MARAJADE ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10433 [ TEAM_K2SO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) ply:SetModelScale(1.3) end,
10434 [ TEAM_HK51 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10435 [ TEAM_HK47 ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10436 [ TEAM_SC_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10437 [ TEAM_SC_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10438 [ TEAM_SC_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10439 [ TEAM_SC_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10440 [ TEAM_SC_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10441 [ TEAM_SC_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10442 [ TEAM_SC_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10443 [ TEAM_SC_OFFICERCADET ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10444 [ TEAM_SC_WO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10445 [ TEAM_SC_LT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10446 [ TEAM_SC_FLT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10447 [ TEAM_SC_CAPT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10448 [ TEAM_SC_MAJ ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10449 [ TEAM_SC_COLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10450 [ TEAM_SC_HCOLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10451 [ TEAM_SC_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10452 [ TEAM_SC_BRIG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10453 [ TEAM_SC_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10454 [ TEAM_SC_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10455 [ TEAM_SC_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10456 [ TEAM_HIGHGENERAL ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10457 [ TEAM_MALKUTHAL ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10458 [ TEAM_ARGALUS ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10459 [ TEAM_31ST_PVT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10460 [ TEAM_31ST_PFC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10461 [ TEAM_31ST_LCPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10462 [ TEAM_31ST_CPL ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10463 [ TEAM_31ST_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10464 [ TEAM_31ST_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10465 [ TEAM_31ST_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10466 [ TEAM_31ST_WO ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10467 [ TEAM_31ST_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10468 [ TEAM_31ST_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10469 [ TEAM_31ST_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10470 [ TEAM_31ST_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10471 [ TEAM_31ST_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10472 [ TEAM_31ST_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10473 [ TEAM_31ST_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10474 [ TEAM_31ST_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10475 [ TEAM_31ST_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10476 [ TEAM_31ST_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10477 [ TEAM_31ST_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10478 [ TEAM_31ST_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10479 [ TEAM_IMPERIALCOMMANDO_ARCHANGEL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10480 [ TEAM_IMPERIALCOMMANDO_CONTORT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10481 [ TEAM_IMPERIALCOMMANDO_GRINDER ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10482 [ TEAM_IMPERIALCOMMANDO_GRIP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10483 [ TEAM_IMPERIALCOMMANDO_HEADSHOT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10484 [ TEAM_IMPERIALCOMMANDO_KURZ ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10485 [ TEAM_IMPERIALCOMMANDO_SCORPION ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10486 [ TEAM_IMPERIALCOMMANDO_STRIPE ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10487 [ TEAM_IMPERIALCOMMANDO_TRANKER ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10488 [ TEAM_STR_PVT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10489 [ TEAM_STR_PFC ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10490 [ TEAM_STR_LCPL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10491 [ TEAM_STR_CPL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10492 [ TEAM_STR_SGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10493 [ TEAM_STR_SSGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10494 [ TEAM_STR_MSGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10495 [ TEAM_STR_OFFICERCADET ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10496 [ TEAM_STR_WO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10497 [ TEAM_STR_LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10498 [ TEAM_STR_1LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10499 [ TEAM_STR_CPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10500 [ TEAM_STR_MAJOR ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10501 [ TEAM_STR_COLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10502 [ TEAM_STR_HCOLO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10503 [ TEAM_STR_CMDR ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10504 [ TEAM_STR_BRIG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10505 [ TEAM_STR_MJRGEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10506 [ TEAM_STR_LTGEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10507 [ TEAM_STR_GEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10508 [ TEAM_ISB_SC ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10509 [ TEAM_ISB_CON ] = function( ply ) ply:SetHealth(125) ply:SetMaxHealth(125) end,
10510 [ TEAM_ISB_SNCON ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10511 [ TEAM_ISB_ACOP ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10512 [ TEAM_ISB_JNOP ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10513 [ TEAM_ISB_OP ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10514 [ TEAM_ISB_SNOP ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10515 [ TEAM_ISB_MSOP ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10516 [ TEAM_ISB_ACAGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10517 [ TEAM_ISB_JNAGT ] = function( ply ) ply:SetHealth(325) ply:SetMaxHealth(325) end,
10518 [ TEAM_ISB_AGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10519 [ TEAM_ISB_SNAGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10520 [ TEAM_ISB_SPAGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10521 [ TEAM_ISB_HAGT ] = function( ply ) ply:SetHealth(375) ply:SetMaxHealth(375) end,
10522 [ TEAM_ISB_ACAGTK ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10523 [ TEAM_ISB_JNAGTK ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10524 [ TEAM_ISB_AGTK ] = function( ply ) ply:SetHealth(425) ply:SetMaxHealth(425) end,
10525 [ TEAM_ISB_SNAGTK ] = function( ply ) ply:SetHealth(425) ply:SetMaxHealth(425) end,
10526 [ TEAM_ISB_SPAGTK ] = function( ply ) ply:SetHealth(425) ply:SetMaxHealth(425) end,
10527 [ TEAM_ISB_HAGTK ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10528 [ TEAM_ISB_COLO ] = function( ply ) ply:SetHealth(375) ply:SetMaxHealth(375) end,
10529 [ TEAM_ISB_SNCOLO ] = function( ply ) ply:SetHealth(375) ply:SetMaxHealth(375) end,
10530 [ TEAM_ISB_CHF ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10531 [ TEAM_ISB_SNCHF ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10532 [ TEAM_ISB_BCHF ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10533 [ TEAM_ISB_DDTR ] = function( ply ) ply:SetHealth(425) ply:SetMaxHealth(425) end,
10534 [ TEAM_ISB_DTR ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10535 [ TEAM_ISB_DTRK ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10536 [ TEAM_ISB_AGV ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10537 [ TEAM_GALEN ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10538 [ TEAM_NAVAL_GUARD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10539 [ TEAM_SITH_KORNELIUS ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10540 [ TEAM_RB_PRIVATE ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10541 [ TEAM_RB_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10542 [ TEAM_RB_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10543 [ TEAM_RB_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10544 [ TEAM_RB_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10545 [ TEAM_RB_COLT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10546 [ TEAM_RB_BLITZ ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10547 [ TEAM_RB_HAVOC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10548 [ TEAM_RB_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10549 [ TEAM_RB_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10550 [ TEAM_RB_OC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10551 [ TEAM_RB_WO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10552 [ TEAM_RB_LT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10553 [ TEAM_RB_FLT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10554 [ TEAM_RB_CPT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10555 [ TEAM_RB_MAJOR ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10556 [ TEAM_RB_Colonel ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10557 [ TEAM_RB_HIGH_COLONEL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10558 [ TEAM_RB_COMMANDER ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10559 [ TEAM_RB_BRIGIDIER ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10560 [ TEAM_RB_MAJOR_GENERAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10561 [ TEAM_RB_LIEUTENANT_GENERAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10562 [ TEAM_RB_GENERAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10563 [ TEAM_SCAR_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10564 [ TEAM_SCAR_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10565 [ TEAM_SCAR_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10566 [ TEAM_SCAR_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10567 [ TEAM_SCAR_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10568 [ TEAM_SCAR_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10569 [ TEAM_SCAR_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10570 [ TEAM_SCAR_OFFICERCADET ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10571 [ TEAM_SCAR_WO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10572 [ TEAM_SCAR_LT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10573 [ TEAM_SCAR_FLT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10574 [ TEAM_SCAR_CAPT ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10575 [ TEAM_SCAR_MAJ ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10576 [ TEAM_SCAR_COLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10577 [ TEAM_SCAR_HCOLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10578 [ TEAM_SCAR_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10579 [ TEAM_SCAR_BRIG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10580 [ TEAM_SCAR_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10581 [ TEAM_SCAR_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10582 [ TEAM_SCAR_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10583 [ TEAM_MHC_MJGEN ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10584 [ TEAM_MHC_LTGEN ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10585 [ TEAM_MHC_GEN ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10586 [ TEAM_MHC_HGEN ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10587[ TEAM_INFERNO_TRE ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10588[ TEAM_INFERNO_STRE ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10589[ TEAM_INFERNO_ACOP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10590[ TEAM_INFERNO_JNOP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10591[ TEAM_INFERNO_OP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10592[ TEAM_INFERNO_SNOP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10593[ TEAM_INFERNO_MSOP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10594[ TEAM_INFERNO_ACAGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10595[ TEAM_INFERNO_JNAGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10596[ TEAM_INFERNO_AGT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10597[ TEAM_INFERNO_SBLT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10598[ TEAM_INFERNO_LT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10599[ TEAM_INFERNO_LCMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10600[ TEAM_INFERNO_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10601[ TEAM_INFERNO_CAPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10602[ TEAM_INFERNO_LCAPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10603[ TEAM_INFERNO_COMMO ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10604[ TEAM_INFERNO_RADMIRAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10605[ TEAM_INFERNO_VADMIRAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10606[ TEAM_INFERNO_ADMIRAL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10607[ TEAM_INFERNO_DR ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10608 [ TEAM_TSQ_PVT ] = function( ply ) ply:SetHealth(125) ply:SetMaxHealth(125) end,
10609 [ TEAM_TSQ_PFC ] = function( ply ) ply:SetHealth(125) ply:SetMaxHealth(125) end,
10610 [ TEAM_TSQ_LCPL ] = function( ply ) ply:SetHealth(125) ply:SetMaxHealth(125) end,
10611 [ TEAM_TSQ_CPL ] = function( ply ) ply:SetHealth(125) ply:SetMaxHealth(125) end,
10612 [ TEAM_TSQ_SGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10613 [ TEAM_TSQ_SSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10614 [ TEAM_TSQ_MSGT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10615 [ TEAM_TSQ_OFFICERCADET ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10616 [ TEAM_TSQ_WO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10617 [ TEAM_TSQ_LT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10618 [ TEAM_TSQ_FLT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10619 [ TEAM_TSQ_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10620 [ TEAM_TSQ_MAJ ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10621 [ TEAM_TSQ_COLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10622 [ TEAM_TSQ_HCOLO ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10623 [ TEAM_TSQ_CMD ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10624 [ TEAM_TSQ_BRIG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10625 [ TEAM_TSQ_MAJG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10626 [ TEAM_TSQ_LTG ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10627 [ TEAM_TSQ_GEN ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10628 [ TEAM_SMR_PVT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10629 [ TEAM_SMR_PFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10630 [ TEAM_SMR_LCPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10631 [ TEAM_SMR_CPL ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10632 [ TEAM_SMR_SGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10633 [ TEAM_SMR_SSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10634 [ TEAM_SMR_MSGT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10635 [ TEAM_SMR_OFFICERCADET ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10636 [ TEAM_SMR_WO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10637 [ TEAM_SMR_LT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10638 [ TEAM_SMR_FLT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10639 [ TEAM_SMR_CAPT ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10640 [ TEAM_SMR_MAJ ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10641 [ TEAM_SMR_COLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10642 [ TEAM_SMR_HCOLO ] = function( ply ) ply:SetHealth(225) ply:SetMaxHealth(225) end,
10643 [ TEAM_SMR_CMD ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10644 [ TEAM_SMR_BRIG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10645 [ TEAM_SMR_MAJG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10646 [ TEAM_SMR_LTG ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10647 [ TEAM_SMR_GEN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10648 [ TEAM_ICCS_LD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10649[ TEAM_ICCS_TC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10650[ TEAM_ICCS_SN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10651[ TEAM_ICCS_DM ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10652[ TEAM_ICAS_LD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10653[ TEAM_ICAS_TC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10654[ TEAM_ICAS_SN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10655[ TEAM_ICAS_DM ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10656[ TEAM_ICDS_LD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10657[ TEAM_ICDS_TC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10658[ TEAM_ICDS_SN ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10659[ TEAM_ICDS_DM ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10660[ TEAM_RESCUE_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10661[ TEAM_RESCUE_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10662[ TEAM_RESCUE_LCPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10663[ TEAM_RESCUE_CPL ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10664[ TEAM_RESCUE_SGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10665[ TEAM_RESCUE_SSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10666[ TEAM_RESCUE_MSGT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10667[ TEAM_RESCUE_OFFICERCADET ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10668[ TEAM_RESCUE_WO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10669[ TEAM_RESCUE_LT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10670[ TEAM_RESCUE_FLT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10671[ TEAM_RESCUE_CAPT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10672[ TEAM_RESCUE_MAJ ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10673[ TEAM_RESCUE_COLO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10674[ TEAM_RESCUE_HCOLO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10675[ TEAM_RESCUE_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10676[ TEAM_RESCUE_BRIG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10677[ TEAM_RESCUE_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10678[ TEAM_RESCUE_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10679[ TEAM_RESCUE_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10680[ TEAM_SMAR_INT ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10681[ TEAM_SMAR_APR ] = function( ply ) ply:SetHealth(900) ply:SetMaxHealth(900) end,
10682[ TEAM_SMAR_NOV ] = function( ply ) ply:SetHealth(1000) ply:SetMaxHealth(1000) end,
10683[ TEAM_SMAR_ACO ] = function( ply ) ply:SetHealth(1100) ply:SetMaxHealth(1100) end,
10684[ TEAM_SMAR_ADT ] = function( ply ) ply:SetHealth(1200) ply:SetMaxHealth(1200) end,
10685[ TEAM_SMAR_WAR ] = function( ply ) ply:SetHealth(1300) ply:SetMaxHealth(1300) end,
10686[ TEAM_SMAR_CRU ] = function( ply ) ply:SetHealth(1500) ply:SetMaxHealth(1500) end,
10687[ TEAM_SMAR_LEA ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10688[ TEAM_JUG_PVT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10689[ TEAM_JUG_PFC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10690[ TEAM_JUG_LCP ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10691[ TEAM_JUG_CPL ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10692[ TEAM_JUG_SGT ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10693[ TEAM_JUG_SSG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10694[ TEAM_JUG_MSG ] = function( ply ) ply:SetHealth(350) ply:SetMaxHealth(350) end,
10695[ TEAM_JUG_OFC ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10696[ TEAM_JUG_WOF ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10697[ TEAM_JUG_LTT ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10698[ TEAM_JUG_FLT ] = function( ply ) ply:SetHealth(400) ply:SetMaxHealth(400) end,
10699[ TEAM_JUG_CPT ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10700[ TEAM_JUG_MJR ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10701[ TEAM_JUG_COL ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10702[ TEAM_JUG_HCO ] = function( ply ) ply:SetHealth(450) ply:SetMaxHealth(450) end,
10703[ TEAM_JUG_CMD ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10704[ TEAM_JUG_BRG ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10705[ TEAM_JUG_MGN ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10706[ TEAM_JUG_LGN ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10707[ TEAM_JUG_GEN ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10708[ TEAM_TFO_PVT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10709[ TEAM_TFO_PFC ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10710[ TEAM_TFO_LCPL ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10711[ TEAM_TFO_CPL ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10712[ TEAM_TFO_SGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10713[ TEAM_TFO_SSGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10714[ TEAM_TFO_MSGT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10715[ TEAM_TFO_OC ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10716[ TEAM_TFO_WO ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10717[ TEAM_TFO_LT ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10718[ TEAM_TFO_1LT ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10719[ TEAM_TFO_CAPT ] = function( ply ) ply:SetHealth(175) ply:SetMaxHealth(175) end,
10720[ TEAM_TFO_MAJ ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10721[ TEAM_TFO_COLO ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10722[ TEAM_TFO_HCOLO ] = function( ply ) ply:SetHealth(275) ply:SetMaxHealth(275) end,
10723[ TEAM_TFO_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10724[ TEAM_TFO_MAJG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10725[ TEAM_TFO_LTG ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10726[ TEAM_TFO_GEN ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10727[ TEAM_DROID_R4B ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10728[ TEAM_BANE ] = function( ply ) ply:SetHealth(600) ply:SetMaxHealth(600) end,
10729[ TEAM_EVENT_REBELT ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10730[ TEAM_EVENT_REBELC ] = function( ply ) ply:SetHealth(750) ply:SetMaxHealth(750) end,
10731[ TEAM_EVENT_BATTLEDROID ] = function( ply ) ply:SetHealth(500) ply:SetMaxHealth(500) end,
10732[ TEAM_EVENT_TACDROID ] = function( ply ) ply:SetHealth(800) ply:SetMaxHealth(800) end,
10733[ TEAM_NAVG_TRA ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10734[ TEAM_NAVG_JNR ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10735[ TEAM_NAVG_CRW ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10736[ TEAM_NAVG_ABC ] = function( ply ) ply:SetHealth(100) ply:SetMaxHealth(100) end,
10737[ TEAM_NAVG_SNC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10738[ TEAM_NAVG_LDC ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10739[ TEAM_NAVG_CHF ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10740[ TEAM_NAVG_MCH ] = function( ply ) ply:SetHealth(150) ply:SetMaxHealth(150) end,
10741[ TEAM_NAVG_POF ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10742[ TEAM_NAVG_OFC ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10743[ TEAM_NAVG_ENS ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10744[ TEAM_NAVG_SLT ] = function( ply ) ply:SetHealth(200) ply:SetMaxHealth(200) end,
10745[ TEAM_NAVG_LT ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10746[ TEAM_NAVG_LTC ] = function( ply ) ply:SetHealth(250) ply:SetMaxHealth(250) end,
10747[ TEAM_NAVG_CMD ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10748[ TEAM_NAVG_CAP ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10749[ TEAM_NAVG_LCPT ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10750[ TEAM_NAVG_COM ] = function( ply ) ply:SetHealth(300) ply:SetMaxHealth(300) end,
10751[ TEAM_PROPHET_SP ] = function( ply ) ply:SetHealth(2000) ply:SetMaxHealth(2000) end,
10752}
10753
10754hook.Add("PlayerSpawn", "SetJobHP", function(ply)
10755 if teamhp[ ply:Team() ] then
10756 teamhp[ ply:Team() ]( ply )
10757 end
10758end)