Begin script abstraction
This commit is contained in:
27
ReallifeGamemode.Server.Types/AdminLevel.cs
Normal file
27
ReallifeGamemode.Server.Types/AdminLevel.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Server.Types
|
||||
{
|
||||
public enum AdminLevel
|
||||
{
|
||||
[EnumMember(Value = "None")]
|
||||
None = 0,
|
||||
[EnumMember(Value = "Team")]
|
||||
Team = 1,
|
||||
[EnumMember(Value = "Supporter")]
|
||||
Support = 2,
|
||||
[EnumMember(Value = "Administrator (1)")]
|
||||
Admin_1 = 3,
|
||||
[EnumMember(Value = "Administrator (2)")]
|
||||
Admin_2 = 4,
|
||||
[EnumMember(Value = "Administrator (3)")]
|
||||
Admin_3 = 5,
|
||||
[EnumMember(Value = "Head-Administrator")]
|
||||
Headadmin = 6,
|
||||
[EnumMember(Value = "Projektleiter")]
|
||||
Project_Lead = 7,
|
||||
}
|
||||
}
|
||||
16
ReallifeGamemode.Server.Types/AnimationFlags.cs
Normal file
16
ReallifeGamemode.Server.Types/AnimationFlags.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Server.Types
|
||||
{
|
||||
[Flags]
|
||||
public enum AnimationFlags
|
||||
{
|
||||
Loop = 1 << 0,
|
||||
StopOnLastFrame = 1 << 1,
|
||||
OnlyAnimateUpperBody = 1 << 4,
|
||||
AllowPlayerControl = 1 << 5,
|
||||
Cancellable = 1 << 7
|
||||
}
|
||||
}
|
||||
22
ReallifeGamemode.Server.Types/ChatPrefix.cs
Normal file
22
ReallifeGamemode.Server.Types/ChatPrefix.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Server.Types
|
||||
{
|
||||
public enum ChatPrefix
|
||||
{
|
||||
None,
|
||||
[EnumMember(Value = "~m~Benutzung:~s~ ")]
|
||||
Usage,
|
||||
[EnumMember(Value = "~b~[ADMIN]~s~ ")]
|
||||
Admin,
|
||||
[EnumMember(Value = "~b~[INFO]~s~ ")]
|
||||
Info,
|
||||
[EnumMember(Value = "~y~[WARNUNG]~s~ ")]
|
||||
Warning,
|
||||
[EnumMember(Value = "~r~[FEHLER]~s~ ")]
|
||||
Error
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Server.Types
|
||||
{
|
||||
public class CommandArgumentCountMismatchException : Exception
|
||||
{
|
||||
}
|
||||
|
||||
public class SendHelpTextException : Exception
|
||||
{
|
||||
}
|
||||
}
|
||||
14
ReallifeGamemode.Server.Types/DisconnectReason.cs
Normal file
14
ReallifeGamemode.Server.Types/DisconnectReason.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Server.Types
|
||||
{
|
||||
public enum DisconnectReason
|
||||
{
|
||||
Unknown,
|
||||
Quit,
|
||||
Timeout,
|
||||
Kick
|
||||
}
|
||||
}
|
||||
18
ReallifeGamemode.Server.Types/GroupRank.cs
Normal file
18
ReallifeGamemode.Server.Types/GroupRank.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Server.Types
|
||||
{
|
||||
public enum GroupRank
|
||||
{
|
||||
None,
|
||||
[EnumMember(Value = "Mitglied")]
|
||||
Member,
|
||||
[EnumMember(Value = "Manager")]
|
||||
Manager,
|
||||
[EnumMember(Value = "Leiter")]
|
||||
Leader
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
13
ReallifeGamemode.Server.Types/VehicleData.cs
Normal file
13
ReallifeGamemode.Server.Types/VehicleData.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Server.Types
|
||||
{
|
||||
public class VehicleData
|
||||
{
|
||||
public bool EngineState { get; set; }
|
||||
|
||||
public bool Locked { get; set; }
|
||||
}
|
||||
}
|
||||
682
ReallifeGamemode.Server.Types/VehicleModel.cs
Normal file
682
ReallifeGamemode.Server.Types/VehicleModel.cs
Normal file
@@ -0,0 +1,682 @@
|
||||
namespace ReallifeGamemode.Server.Types
|
||||
{
|
||||
public enum VehicleModel : uint
|
||||
{
|
||||
Chimera = 6774487,
|
||||
Carbonrs = 11251904,
|
||||
Hermes = 15219735,
|
||||
Virgo3 = 16646064,
|
||||
Hotknife = 37348240,
|
||||
Tiptruck = 48339065,
|
||||
Faggio2 = 55628203,
|
||||
Youga = 65402552,
|
||||
Glendale = 75131841,
|
||||
Dominator = 80636076,
|
||||
Bf400 = 86520421,
|
||||
Kalahari = 92612664,
|
||||
Trophytruck = 101905590,
|
||||
Coquette = 108773431,
|
||||
Btype = 117401876,
|
||||
Boxville3 = 121658888,
|
||||
Baller2 = 142944341,
|
||||
Ardent = 159274291,
|
||||
Miljet = 165154707,
|
||||
Phantom3 = 177270108,
|
||||
Freightcar = 184361638,
|
||||
Elegy = 196747873,
|
||||
Speedo4 = 219613597,
|
||||
Cheetah2 = 223240013,
|
||||
Sabregt2 = 223258115,
|
||||
Speeder = 231083307,
|
||||
Reaper = 234062309,
|
||||
Buffalo3 = 237764926,
|
||||
Freightcont2 = 240201337,
|
||||
Tempesta = 272929391,
|
||||
Dinghy2 = 276773164,
|
||||
Tropic = 290013743,
|
||||
Gburrito2 = 296357396,
|
||||
Hexer = 301427732,
|
||||
Dynasty = 310284501,
|
||||
Stafford = 321186144,
|
||||
Crusader = 321739290,
|
||||
Cogcabrio = 330661258,
|
||||
Vacca = 338562499,
|
||||
Pbus2 = 345756458,
|
||||
Gauntlet2 = 349315417,
|
||||
Chino = 349605904,
|
||||
Polmav = 353883353,
|
||||
Proptrailer = 356391690,
|
||||
Cargoplane = 368211810,
|
||||
Slamvan5 = 373261600,
|
||||
Surano = 384071873,
|
||||
Hauler2 = 387748548,
|
||||
Cliffhanger = 390201602,
|
||||
Raketrailer = 390902130,
|
||||
Squalo = 400514754,
|
||||
Turismor = 408192225,
|
||||
Avenger2 = 408970549,
|
||||
Kuruma2 = 410882957,
|
||||
Infernus = 418536135,
|
||||
Nightshark = 433954513,
|
||||
Speeder2 = 437538602,
|
||||
Boxville4 = 444171386,
|
||||
Handler = 444583674,
|
||||
Imperator = 444994115,
|
||||
Volatol = 447548909,
|
||||
Cruiser = 448402357,
|
||||
Policet = 456714581,
|
||||
Tornado = 464687292,
|
||||
Lguard = 469291905,
|
||||
Baller5 = 470404958,
|
||||
Mixer2 = 475220373,
|
||||
Lynx = 482197771,
|
||||
Huntley = 486987393,
|
||||
Fusilade = 499169875,
|
||||
Swinger = 500482303,
|
||||
Dinghy3 = 509498602,
|
||||
Utillitruck = 516990260,
|
||||
Voodoo2 = 523724515,
|
||||
Boattrailer = 524108981,
|
||||
Moonbeam = 525509695,
|
||||
Dune2 = 534258863,
|
||||
Zr380 = 540101442,
|
||||
Khamelion = 544021352,
|
||||
Apc = 562680400,
|
||||
Packer = 569305213,
|
||||
Tankercar = 586013744,
|
||||
Hustler = 600450546,
|
||||
Luxor = 621481054,
|
||||
Romero = 627094268,
|
||||
Fcr = 627535535,
|
||||
Issi4 = 628003514,
|
||||
Barracks3 = 630371791,
|
||||
Banshee2 = 633712403,
|
||||
Baller4 = 634118882,
|
||||
Lectro = 640818791,
|
||||
Freightgrain = 642617954,
|
||||
Comet5 = 661493923,
|
||||
Baller6 = 666166960,
|
||||
Bruiser = 668439077,
|
||||
Cerberus2 = 679453769,
|
||||
Boxville5 = 682434785,
|
||||
Contender = 683047626,
|
||||
Drafter = 686471183,
|
||||
Surfer = 699456151,
|
||||
Cog552 = 704435172,
|
||||
Supervolito = 710198397,
|
||||
Trailersmall = 712162987,
|
||||
Ruston = 719660200,
|
||||
Gauntlet3 = 722226637,
|
||||
Dukes = 723973206,
|
||||
Speedo2 = 728614474,
|
||||
Slamvan = 729783779,
|
||||
Sadler2 = 734217681,
|
||||
Buffalo2 = 736902334,
|
||||
Gargoyle = 741090084,
|
||||
Pranger = 741586030,
|
||||
Sovereign = 743478836,
|
||||
Frogger = 744705981,
|
||||
Buzzard2 = 745926877,
|
||||
Ztype = 758895617,
|
||||
Alpha = 767087018,
|
||||
Submersible = 771711535,
|
||||
Ruiner3 = 777714999,
|
||||
Rhino = 782665360,
|
||||
Coquette3 = 784565758,
|
||||
Sanchez = 788045382,
|
||||
Buzzard = 788747387,
|
||||
Sheava = 819197656,
|
||||
Defiler = 822018448,
|
||||
Slamvan2 = 833469436,
|
||||
Annihilator = 837858166,
|
||||
Z190 = 838982985,
|
||||
Monster4 = 840387324,
|
||||
Rhapsody = 841808271,
|
||||
Bjxl = 850565707,
|
||||
Biff = 850991848,
|
||||
Jetmax = 861409633,
|
||||
Dinghy4 = 867467158,
|
||||
Pariah = 867799010,
|
||||
Metrotrain = 868868440,
|
||||
Sentinel2 = 873639469,
|
||||
Habanero = 884422927,
|
||||
Oppressor = 884483972,
|
||||
Stromberg = 886810209,
|
||||
Intruder = 886934177,
|
||||
Utillitruck2 = 887537515,
|
||||
Burrito4 = 893081117,
|
||||
Savestra = 903794909,
|
||||
Mule = 904750859,
|
||||
Cog55 = 906642318,
|
||||
Toro2 = 908897389,
|
||||
Mesa = 914654722,
|
||||
Rrocket = 916547552,
|
||||
Xa21 = 917809321,
|
||||
Freightcont1 = 920453016,
|
||||
Issi3 = 931280609,
|
||||
Ruiner2 = 941494461,
|
||||
Casco = 941800958,
|
||||
Pony2 = 943752001,
|
||||
Duster = 970356638,
|
||||
Hydra = 970385471,
|
||||
Sultan = 970598228,
|
||||
Tampa = 972671128,
|
||||
Voltic2 = 989294410,
|
||||
Sandking2 = 989381445,
|
||||
Impaler2 = 1009171724,
|
||||
Coquette2 = 1011753235,
|
||||
Graintrailer = 1019737494,
|
||||
Youga2 = 1026149675,
|
||||
Freight = 1030400667,
|
||||
Tezeract = 1031562256,
|
||||
Ninef = 1032823388,
|
||||
Dinghy = 1033245328,
|
||||
Nero = 1034187331,
|
||||
Nokota = 1036591958,
|
||||
Blista2 = 1039032026,
|
||||
Tula = 1043222410,
|
||||
Thrax = 1044193113,
|
||||
Skylift = 1044954915,
|
||||
Michelli = 1046206681,
|
||||
Jb700 = 1051415893,
|
||||
Jet = 1058115860,
|
||||
Bobcatxl = 1069929536,
|
||||
Toro = 1070967343,
|
||||
Barracks2 = 1074326203,
|
||||
Specter2 = 1074745671,
|
||||
Swift2 = 1075432268,
|
||||
Velum2 = 1077420264,
|
||||
Pigalle = 1078682497,
|
||||
Nero2 = 1093792632,
|
||||
Verlierer2 = 1102544804,
|
||||
Sentinel3 = 1104234922,
|
||||
Hotring = 1115909093,
|
||||
Slamvan3 = 1119641113,
|
||||
Superd = 1123216662,
|
||||
Bfinjection = 1126868326,
|
||||
Fbi = 1127131465,
|
||||
Tribike = 1127861609,
|
||||
BMX = 1131912276,
|
||||
Burrito5 = 1132262048,
|
||||
Caddy = 1147287684,
|
||||
Rumpo = 1162065741,
|
||||
Ambulance = 1171614426,
|
||||
Dubsta = 1177543287,
|
||||
Technical2 = 1180875963,
|
||||
Akula = 1181327175,
|
||||
Xls = 1203490606,
|
||||
Seminole = 1221512915,
|
||||
Marshall = 1233534620,
|
||||
Gp1 = 1234311532,
|
||||
Issi6 = 1239571361,
|
||||
Caracara = 1254014755,
|
||||
Hakuchou = 1265391242,
|
||||
Landstalker = 1269098716,
|
||||
Bestiagts = 1274868363,
|
||||
Deviant = 1279262537,
|
||||
Airbus = 1283517198,
|
||||
Emerus = 1323778901,
|
||||
Serrano = 1337041428,
|
||||
Vestra = 1341619767,
|
||||
Oracle = 1348744438,
|
||||
Sentinel = 1349725314,
|
||||
Sc1 = 1352136073,
|
||||
Flatbed = 1353720154,
|
||||
Technical3 = 1356124575,
|
||||
Warrener = 1373123368,
|
||||
Cyclone = 1392481335,
|
||||
Cargobob3 = 1394036463,
|
||||
Paragon2 = 1416466158,
|
||||
Fmj = 1426219628,
|
||||
Tractor3 = 1445631933,
|
||||
Tropic2 = 1448677353,
|
||||
Tulip = 1456744817,
|
||||
Rumpo3 = 1475773103,
|
||||
Deluxo = 1483171323,
|
||||
Paradise = 1488164764,
|
||||
Thruster = 1489874736,
|
||||
Schafter4 = 1489967196,
|
||||
Sanctus = 1491277511,
|
||||
Forklift = 1491375716,
|
||||
Trailerlarge = 1502869817,
|
||||
Torero = 1504306544,
|
||||
Picador = 1507916787,
|
||||
Hauler = 1518533038,
|
||||
Tornado2 = 1531094468,
|
||||
Issi5 = 1537277726,
|
||||
Scarab2 = 1542143200,
|
||||
Valkyrie2 = 1543134283,
|
||||
Stinger = 1545842587,
|
||||
Brioso = 1549126457,
|
||||
Airtug = 1560980623,
|
||||
Comet4 = 1561920505,
|
||||
Molotok = 1565978651,
|
||||
Windsor = 1581459400,
|
||||
Deveste = 1591739866,
|
||||
Fagaloa = 1617472902,
|
||||
Cargobob2 = 1621617168,
|
||||
Imperator2 = 1637620610,
|
||||
Tractor = 1641462412,
|
||||
Rancherxl = 1645267888,
|
||||
Pounder2 = 1653666139,
|
||||
T20 = 1663218586,
|
||||
Akuma = 1672195559,
|
||||
Dilettante2 = 1682114128,
|
||||
Strikeforce = 1692272545,
|
||||
Monster3 = 1721676810,
|
||||
Stratum = 1723137093,
|
||||
Rapidgt2 = 1737773231,
|
||||
Bison3 = 1739845664,
|
||||
Streiter = 1741861769,
|
||||
Slamvan6 = 1742022738,
|
||||
Stockade = 1747439474,
|
||||
Enduro = 1753414259,
|
||||
Tornado3 = 1762279763,
|
||||
Dloader = 1770332643,
|
||||
Washington = 1777363799,
|
||||
Mower = 1783355638,
|
||||
Tr3 = 1784254509,
|
||||
Diablous2 = 1790834270,
|
||||
Besra = 1824333165,
|
||||
Peyote = 1830407356,
|
||||
Thrust = 1836027715,
|
||||
Retinue = 1841130506,
|
||||
Issi7 = 1854776567,
|
||||
Zion3 = 1862507111,
|
||||
Yosemite = 1871995513,
|
||||
Ratbike = 1873600305,
|
||||
Camper = 1876516712,
|
||||
Baller3 = 1878062887,
|
||||
Specter = 1886268224,
|
||||
Bulldozer = 1886712733,
|
||||
Tropos = 1887331236,
|
||||
Moonbeam2 = 1896491931,
|
||||
Dune3 = 1897744184,
|
||||
Fugitive = 1909141499,
|
||||
Gb200 = 1909189272,
|
||||
Cerberus3 = 1909700336,
|
||||
Police3 = 1912215274,
|
||||
Trash = 1917016601,
|
||||
Schafter6 = 1922255844,
|
||||
Sheriff2 = 1922257928,
|
||||
Stalion = 1923400478,
|
||||
Rancherxl2 = 1933662059,
|
||||
Gauntlet4 = 1934384720,
|
||||
Firetruk = 1938952078,
|
||||
Vagner = 1939284556,
|
||||
Tourbus = 1941029835,
|
||||
Mule4 = 1945374990,
|
||||
Frogger2 = 1949211328,
|
||||
Taco = 1951180813,
|
||||
Tanker2 = 1956216962,
|
||||
Titan = 1981688531,
|
||||
Osiris = 1987142870,
|
||||
Daemon = 2006142190,
|
||||
Voodoo = 2006667053,
|
||||
Cavalcade = 2006918058,
|
||||
Trailerlogs = 2016027501,
|
||||
Futo = 2016857647,
|
||||
Cargobob4 = 2025593404,
|
||||
Esskey = 2035069708,
|
||||
Brutus3 = 2038858402,
|
||||
Menacer = 2044532910,
|
||||
Police = 2046537925,
|
||||
Rapidgt3 = 2049897956,
|
||||
Benson = 2053223216,
|
||||
Tyrus = 2067820283,
|
||||
Lurcher = 2068293287,
|
||||
Oppressor2 = 2069146067,
|
||||
Insurgent2 = 2071877360,
|
||||
Bison2 = 2072156101,
|
||||
Carbonizzare = 2072687711,
|
||||
Tr2 = 2078290630,
|
||||
Tr4 = 2091594960,
|
||||
Pounder = 2112052861,
|
||||
Prototipo = 2123327359,
|
||||
Utillitruck3 = 2132890591,
|
||||
Rocoto = 2136773105,
|
||||
Brutus = 2139203625,
|
||||
Bagger = 2154536131,
|
||||
Docktrailer = 2154757102,
|
||||
Phantom = 2157618379,
|
||||
Dump = 2164484578,
|
||||
Blazer = 2166734073,
|
||||
Manana = 2170765704,
|
||||
Stunt = 2172210288,
|
||||
Entity2 = 2174267100,
|
||||
Faction = 2175389151,
|
||||
Avenger = 2176659152,
|
||||
Avarus = 2179174271,
|
||||
Guardian = 2186977100,
|
||||
Rallytruck = 2191146052,
|
||||
Tug = 2194326579,
|
||||
Stingergt = 2196019706,
|
||||
Technical = 2198148358,
|
||||
Impaler = 2198276962,
|
||||
Phoenix = 2199527893,
|
||||
Gt500 = 2215179066,
|
||||
Tractor2 = 2218488798,
|
||||
Coach = 2222034228,
|
||||
Mesa3 = 2230595153,
|
||||
Slamvan4 = 2233918197,
|
||||
Trailers3 = 2236089197,
|
||||
Mule3 = 2242229361,
|
||||
Italigtb = 2246633323,
|
||||
Rebel2 = 2249373259,
|
||||
Bruiser3 = 2252616474,
|
||||
Primo2 = 2254540506,
|
||||
Faction3 = 2255212070,
|
||||
Tornado4 = 2261744861,
|
||||
Cognoscenti = 2264796000,
|
||||
Comet3 = 2272483501,
|
||||
Pbus = 2287941233,
|
||||
Feltzer2 = 2299640309,
|
||||
Terbyte = 2306538597,
|
||||
Boxville = 2307837162,
|
||||
Havok = 2310691317,
|
||||
Police4 = 2321795001,
|
||||
Stretch = 2333339779,
|
||||
Nightshade = 2351681756,
|
||||
Rapidgt = 2360515092,
|
||||
Windsor2 = 2364918497,
|
||||
Impaler3 = 2370166601,
|
||||
Insurgent3 = 2370534026,
|
||||
Wastelander = 2382949506,
|
||||
Asterope = 2391954683,
|
||||
Surge = 2400073108,
|
||||
Brutus2 = 2403970600,
|
||||
Premier = 2411098011,
|
||||
Emperor2 = 2411965148,
|
||||
Trailersmall2 = 2413121211,
|
||||
Insurgent = 2434067162,
|
||||
Neon = 2445973230,
|
||||
Volatus = 2449479409,
|
||||
Faggio = 2452219115,
|
||||
Pfister811 = 2465164804,
|
||||
Novak = 2465530446,
|
||||
Deathbike2 = 2482017624,
|
||||
Asea = 2485144969,
|
||||
Asea2 = 2487343317,
|
||||
Peyote2 = 2490551588,
|
||||
Gauntlet = 2494797253,
|
||||
Tornado5 = 2497353967,
|
||||
Faction2 = 2504420315,
|
||||
Policeold2 = 2515846680,
|
||||
Rumpo2 = 2518351607,
|
||||
Granger = 2519238556,
|
||||
Tvtrailer = 2524324030,
|
||||
Microlight = 2531412055,
|
||||
Penetrator = 2536829930,
|
||||
Seven70 = 2537130571,
|
||||
Mammatus = 2548391185,
|
||||
Gburrito = 2549763894,
|
||||
Impaler4 = 2550461639,
|
||||
Burrito3 = 2551651283,
|
||||
Rubble = 2589662668,
|
||||
Starling = 2594093022,
|
||||
Scrap = 2594165727,
|
||||
Bullet = 2598821281,
|
||||
Bruiser2 = 2600885406,
|
||||
Riot2 = 2601952180,
|
||||
Sabregt = 2609945748,
|
||||
Sheriff = 2611638396,
|
||||
Velum = 2621610858,
|
||||
Supervolito2 = 2623428164,
|
||||
Double = 2623969160,
|
||||
Dune = 2633113103,
|
||||
Mamba = 2634021974,
|
||||
Maverick = 2634305738,
|
||||
Radi = 2643899483,
|
||||
Phantom2 = 2645431192,
|
||||
Fbi2 = 2647026068,
|
||||
Armytrailer2 = 2657817814,
|
||||
Police2 = 2667966721,
|
||||
Voltic = 2672523198,
|
||||
Neo = 2674840994,
|
||||
Nightblade = 2688780135,
|
||||
Valkyrie = 2694714877,
|
||||
Blazer5 = 2704629607,
|
||||
Trailers2 = 2715434129,
|
||||
Feltzer3 = 2728226064,
|
||||
Clique = 2728360112,
|
||||
Tornado6 = 2736567667,
|
||||
Gresley = 2751205197,
|
||||
Policeold1 = 2758042359,
|
||||
Riata = 2762269779,
|
||||
Raiden = 2765724541,
|
||||
Alphaz1 = 2771347558,
|
||||
Manchez = 2771538552,
|
||||
Schafter3 = 2809443750,
|
||||
Brawler = 2815302597,
|
||||
Zr3803 = 2816263004,
|
||||
Stanier = 2817386317,
|
||||
Armytrailer = 2818520053,
|
||||
Ninef2 = 2833484545,
|
||||
Sanchez2 = 2841686334,
|
||||
Prairie = 2844316578,
|
||||
Bodhi2 = 2859047862,
|
||||
Khanjali = 2859440138,
|
||||
Infernus2 = 2889029532,
|
||||
Daemon2 = 2890830793,
|
||||
Zentorno = 2891838741,
|
||||
Pyro = 2908775872,
|
||||
Dominator5 = 2919906639,
|
||||
Deathbike3 = 2920466844,
|
||||
Kuruma = 2922118804,
|
||||
Chino2 = 2933279331,
|
||||
Vindicator = 2941886209,
|
||||
Trflat = 2942498482,
|
||||
Caracara2 = 2945871676,
|
||||
Burrito = 2948279460,
|
||||
Towtruck = 2971866336,
|
||||
Surfer2 = 2983726598,
|
||||
Cheetah = 2983812512,
|
||||
Jester = 2997294755,
|
||||
Nimbus = 2999939664,
|
||||
Dominator6 = 3001042683,
|
||||
Entityxf = 3003014393,
|
||||
Ingot = 3005245074,
|
||||
Faggio3 = 3005788552,
|
||||
Lazer = 3013282534,
|
||||
Blazer3 = 3025077634,
|
||||
Ellie = 3027423925,
|
||||
Flashgt = 3035832600,
|
||||
Trash2 = 3039269212,
|
||||
Schafter2 = 3039514899,
|
||||
Vigilante = 3052358707,
|
||||
Emperor3 = 3053254478,
|
||||
Dubsta3 = 3057713523,
|
||||
Tribike2 = 3061159916,
|
||||
Le7b = 3062131285,
|
||||
Adder = 3078201489,
|
||||
Shamal = 3080461301,
|
||||
Luxor2 = 3080673438,
|
||||
Tampa3 = 3084515313,
|
||||
Rebel = 3087195462,
|
||||
Armytanker = 3087536137,
|
||||
Blade = 3089165662,
|
||||
Riot = 3089277354,
|
||||
Zion2 = 3101863448,
|
||||
Sandking = 3105951696,
|
||||
Issi2 = 3117103977,
|
||||
Toros = 3126015148,
|
||||
Primo = 3144368207,
|
||||
Scarab = 3147997943,
|
||||
Fq2 = 3157435195,
|
||||
Taipan = 3160260734,
|
||||
Dilettante = 3164157193,
|
||||
Minivan2 = 3168702960,
|
||||
Zion = 3172678083,
|
||||
Jester2 = 3188613414,
|
||||
Zr3802 = 3188846534,
|
||||
Trailers4 = 3194418602,
|
||||
Rentalbus = 3196165219,
|
||||
Furoregt = 3205927392,
|
||||
Tampa2 = 3223586949,
|
||||
Submersible2 = 3228633070,
|
||||
Mule2 = 3244501995,
|
||||
Comet2 = 3249425686,
|
||||
Marquis = 3251507587,
|
||||
Banshee = 3253274834,
|
||||
Seashark = 3264692260,
|
||||
Buccaneer2 = 3281516360,
|
||||
Zombiea = 3285698347,
|
||||
Tailgater = 3286105550,
|
||||
Howard = 3287439187,
|
||||
Cutter = 3288047904,
|
||||
Visione = 3296789504,
|
||||
Cheburek = 3306466016,
|
||||
Dominator3 = 3308022675,
|
||||
Turismo2 = 3312836369,
|
||||
Rogue = 3319621991,
|
||||
Cablecar = 3334677549,
|
||||
Taxi = 3338918751,
|
||||
Tiptruck2 = 3347205726,
|
||||
Locust = 3353694737,
|
||||
Dominator2 = 3379262425,
|
||||
Pcj = 3385765638,
|
||||
Burrito2 = 3387490166,
|
||||
Dodo = 3393804037,
|
||||
Virgo2 = 3395457658,
|
||||
Ruffian = 3401388520,
|
||||
Bati2 = 3403504941,
|
||||
Schafter5 = 3406724313,
|
||||
Docktug = 3410276810,
|
||||
Nebula = 3412338231,
|
||||
Trailers = 3417488910,
|
||||
Ripley = 3448987385,
|
||||
Monster = 3449006043,
|
||||
Fixter = 3458454463,
|
||||
Btype2 = 3463132580,
|
||||
Dune4 = 3467805257,
|
||||
Vigero = 3469130167,
|
||||
Barracks = 3471458123,
|
||||
Speedo = 3484649228,
|
||||
Baller = 3486135912,
|
||||
Patriot = 3486509883,
|
||||
Cerberus = 3493417227,
|
||||
Cavalcade2 = 3505073125,
|
||||
Mixer = 3510150843,
|
||||
Freighttrailer = 3517691494,
|
||||
Omnis = 3517794615,
|
||||
Caddy3 = 3525819835,
|
||||
Fcr2 = 3537231886,
|
||||
Imperator3 = 3539435063,
|
||||
Mogul = 3545667823,
|
||||
Mesa2 = 3546958660,
|
||||
Schwarzer = 3548084598,
|
||||
Tanker = 3564062519,
|
||||
Seasparrow = 3568198617,
|
||||
Monster5 = 3579220348,
|
||||
Bus = 3581397346,
|
||||
Chernobog = 3602674979,
|
||||
Dominator4 = 3606777648,
|
||||
Emperor = 3609690755,
|
||||
Buccaneer = 3612755468,
|
||||
Zorrusso = 3612858749,
|
||||
Raptor = 3620039993,
|
||||
Ratloader = 3627815886,
|
||||
Krieger = 3630826055,
|
||||
Trophytruck2 = 3631668194,
|
||||
Cuban800 = 3650256867,
|
||||
Scramjet = 3656405053,
|
||||
Nemesis = 3660088182,
|
||||
Massacro2 = 3663206819,
|
||||
Jackal = 3670438162,
|
||||
Wolfsbane = 3676349299,
|
||||
Seashark2 = 3678636260,
|
||||
Blimp2 = 3681241380,
|
||||
Vortex = 3685342204,
|
||||
Cognoscenti2 = 3690124666,
|
||||
Btype3 = 3692679425,
|
||||
Sadler = 3695398481,
|
||||
Blista3 = 3703315515,
|
||||
F620 = 3703357000,
|
||||
Ratloader2 = 3705788919,
|
||||
Scarab3 = 3715219435,
|
||||
Zombieb = 3724934023,
|
||||
Elegy2 = 3728579874,
|
||||
Caddy2 = 3757070668,
|
||||
Oracle2 = 3783366066,
|
||||
Schlagen = 3787471536,
|
||||
Virgo = 3796912450,
|
||||
Predator = 3806844075,
|
||||
Italigtb2 = 3812247419,
|
||||
Paragon = 3847255899,
|
||||
Towtruck2 = 3852654278,
|
||||
Blazer4 = 3854198872,
|
||||
Monroe = 3861591579,
|
||||
Xls2 = 3862958888,
|
||||
Panto = 3863274624,
|
||||
Patriot2 = 3874056184,
|
||||
Revolter = 3884762073,
|
||||
Shotaro = 3889340782,
|
||||
Stalion2 = 3893323758,
|
||||
Tribike3 = 3894672200,
|
||||
Baletrailer = 3895125590,
|
||||
Dubsta2 = 3900892662,
|
||||
Seabreeze = 3902291871,
|
||||
Viseris = 3903371924,
|
||||
Felon = 3903372712,
|
||||
Penumbra = 3917501776,
|
||||
Tyrant = 3918533058,
|
||||
Hellion = 3932816511,
|
||||
Bifta = 3945366167,
|
||||
Blista = 3950024287,
|
||||
Swift = 3955379698,
|
||||
Italigto = 3963499524,
|
||||
Dukes2 = 3968823444,
|
||||
S80 = 3970348707,
|
||||
Autarch = 3981782132,
|
||||
Dune5 = 3982671785,
|
||||
Seashark3 = 3983945033,
|
||||
Minivan = 3984502180,
|
||||
Blimp3 = 3987008919,
|
||||
Brickade = 3989239879,
|
||||
Buffalo = 3990165190,
|
||||
Sultanrs = 3999278268,
|
||||
Rcbandito = 4008920556,
|
||||
Suntrap = 4012021193,
|
||||
Hakuchou2 = 4039289119,
|
||||
Diablous = 4055125828,
|
||||
Boxville2 = 4061868990,
|
||||
Ruiner = 4067225593,
|
||||
Jester3 = 4080061290,
|
||||
Stockade3 = 4080511798,
|
||||
Barrage = 4081974053,
|
||||
Jugular = 4086055493,
|
||||
Scorcher = 4108429845,
|
||||
Innovation = 4135840458,
|
||||
Blimp = 4143991942,
|
||||
Massacro = 4152024626,
|
||||
Vader = 4154065143,
|
||||
Kamacho = 4173521127,
|
||||
Journey = 4174679674,
|
||||
Pony = 4175309224,
|
||||
Limo2 = 4180339789,
|
||||
Bati = 4180675781,
|
||||
Felon2 = 4205676014,
|
||||
Savage = 4212341271,
|
||||
Freecrawler = 4240635011,
|
||||
Cargobob = 4244420235,
|
||||
Vamos = 4245851645,
|
||||
Blazer2 = 4246935337,
|
||||
Hunter = 4252008158,
|
||||
Policeb = 4260343491,
|
||||
Bombushka = 4262088844,
|
||||
Halftrack = 4262731174,
|
||||
Deathbike = 4267640610,
|
||||
Bison = 4278019151,
|
||||
Regina = 4280472072,
|
||||
Exemplar = 4289813342,
|
||||
Asbo = 0x42ACA95F,
|
||||
Kanjo = 0x18619B7E,
|
||||
Minitank = 0xB53C6C52,
|
||||
Yosemite2 = 0x64F49967,
|
||||
Rebla = 0x4F48FC4,
|
||||
Imorgon = 0xBC7C0A00,
|
||||
Vstr = 0x56CDEE7D,
|
||||
Formula = 0x1446590A,
|
||||
Forumla2 = 0x8B213907,
|
||||
}
|
||||
}
|
||||
18
ReallifeGamemode.Server.Types/VehicleSeat.cs
Normal file
18
ReallifeGamemode.Server.Types/VehicleSeat.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Server.Types
|
||||
{
|
||||
public enum VehicleSeat
|
||||
{
|
||||
Driver,
|
||||
CoDriver,
|
||||
LeftPassenger,
|
||||
RightPassenger,
|
||||
ExtraSeat1,
|
||||
ExtraSeat2,
|
||||
ExtraSeat3,
|
||||
ExtraSeat4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user