6614 lines
236 KiB
JavaScript
6614 lines
236 KiB
JavaScript
// ===========================================================================
|
|
// Vortrex's Roleplay Resource
|
|
// https://github.com/VortrexFTW/gtac_roleplay
|
|
// ===========================================================================
|
|
// FILE: gamedata.js
|
|
// DESC: Provides arrays of game data
|
|
// TYPE: Shared (JavaScript)
|
|
// ===========================================================================
|
|
|
|
class AnimationData {
|
|
constructor(name, data) {
|
|
this.name = name;
|
|
this.groupId = (typeof data.groupId != "undefined") ? data.groupId : 0;
|
|
this.animId = (typeof data.animId != "undefined") ? data.animId : 0;
|
|
this.animType = (typeof data.animType != "undefined") ? data.animType : VRR_ANIMTYPE_NORMAL;
|
|
this.animSpeed = (typeof data.animSpeed != "undefined") ? data.animSpeed : 0.0;
|
|
this.moveType = (typeof data.moveType != "undefined") ? data.moveType : VRR_ANIMMOVE_NONE;
|
|
|
|
// GTA IV
|
|
this.infiniteLoop = (typeof data.infiniteLoop != "undefined") ? data.infiniteLoop : false;
|
|
this.infiniteLoopNoMovement = (typeof data.infiniteLoopNoMovement != "undefined") ? data.infiniteLoopNoMovement : false;
|
|
this.dontReturnToStartCoords = (typeof data.dontReturnToStartCoords != "undefined") ? data.dontReturnToStartCoords : false;
|
|
this.freezeLastFrame = (typeof data.freezeLastFrame != "undefined") ? data.freezeLastFrame : false;
|
|
}
|
|
};
|
|
|
|
// ===========================================================================
|
|
|
|
let supportedFeatures = {
|
|
// Invalid, GTAIII, GTAVC, GTASA, Invalid, GTAIV, Invalid, Invalid, Invalid, M1, M2, M3, M1DE
|
|
time: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: true,
|
|
[VRR_GAME_GTA_IV_EFLC]: true,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
weather: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: true,
|
|
[VRR_GAME_GTA_IV_EFLC]: true,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
serverElements: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: false,
|
|
[VRR_GAME_GTA_IV_EFLC]: false,
|
|
[VRR_GAME_MAFIA_ONE]: true,
|
|
[VRR_GAME_MAFIA_TWO]: true,
|
|
[VRR_GAME_MAFIA_THREE]: true
|
|
},
|
|
snow: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: false,
|
|
[VRR_GAME_GTA_IV_EFLC]: false,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
customCamera: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: true,
|
|
[VRR_GAME_GTA_IV_EFLC]: true,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
fadeCamera: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: true,
|
|
[VRR_GAME_GTA_IV_EFLC]: true,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
pickups: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: false,
|
|
[VRR_GAME_GTA_IV_EFLC]: false,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
worldLabels: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: false,
|
|
[VRR_GAME_GTA_IV_EFLC]: false,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
blips: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: false,
|
|
[VRR_GAME_GTA_IV_EFLC]: false,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
fightStyles: {
|
|
[VRR_GAME_GTA_III]: false,
|
|
[VRR_GAME_GTA_VC]: false,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: false,
|
|
[VRR_GAME_GTA_IV_EFLC]: false,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
markers: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: false,
|
|
[VRR_GAME_GTA_IV_EFLC]: false,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
vehicleColours: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: false,
|
|
[VRR_GAME_GTA_IV]: false,
|
|
[VRR_GAME_GTA_IV_EFLC]: false,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
},
|
|
objects: {
|
|
[VRR_GAME_GTA_III]: true,
|
|
[VRR_GAME_GTA_VC]: true,
|
|
[VRR_GAME_GTA_SA]: true,
|
|
[VRR_GAME_GTA_IV]: false,
|
|
[VRR_GAME_GTA_IV_EFLC]: false,
|
|
[VRR_GAME_MAFIA_ONE]: false,
|
|
[VRR_GAME_MAFIA_TWO]: false,
|
|
[VRR_GAME_MAFIA_THREE]: false
|
|
}
|
|
};
|
|
|
|
// ===========================================================================
|
|
|
|
// Connected MP mods only
|
|
let extraContentResource = {
|
|
[VRR_GAME_GTA_III]: "agrp-gta3",
|
|
[VRR_GAME_GTA_VC]: "agrp-gtavc",
|
|
[VRR_GAME_GTA_SA]: "agrp-gtasa",
|
|
[VRR_GAME_GTA_IV]: "agrp-gtaiv",
|
|
[VRR_GAME_GTA_IV_EFLC]: "agrp-gtaiv",
|
|
[VRR_GAME_MAFIA_ONE]: "agrp-mafia1",
|
|
[VRR_GAME_MAFIA_TWO]: "agrp-mafia2",
|
|
[VRR_GAME_MAFIA_TWO]: "agrp-mafia3",
|
|
[VRR_GAME_MAFIA_ONE_DE]: "agrp-mafia1de",
|
|
[VRR_GAME_GTA_V]: "agrp-gtav",
|
|
};
|
|
|
|
// ===========================================================================
|
|
|
|
let gameData = {
|
|
weaponNames: {
|
|
[VRR_GAME_GTA_III]: [ // GTA III
|
|
"Fist",
|
|
"Bat",
|
|
"Pistol",
|
|
"Uzi",
|
|
"Shotgun",
|
|
"AK47",
|
|
"M16",
|
|
"Sniper Rifle",
|
|
"Rocket Launcher",
|
|
"Flamethrower",
|
|
"Molotov",
|
|
"Grenade"
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA VC
|
|
"Fist",
|
|
"Brass Knuckles",
|
|
"Screwdriver",
|
|
"Golf Club",
|
|
"Nitestick",
|
|
"Knife",
|
|
"Baseball Bat",
|
|
"Hammer",
|
|
"Meat Cleaver",
|
|
"Machete",
|
|
"Katana",
|
|
"Chainsaw",
|
|
"Grenade",
|
|
"Remote Grenade",
|
|
"Teargas",
|
|
"Molotov Cocktail",
|
|
"Missile",
|
|
"Colt .45",
|
|
"Python",
|
|
"Shotgun",
|
|
"Spaz Shotgun",
|
|
"Stubby Shotgun",
|
|
"Tec-9",
|
|
"Uzi",
|
|
"Ingram",
|
|
"MP5",
|
|
"M4",
|
|
"Ruger",
|
|
"Sniper Rifle",
|
|
"Laser Sniper",
|
|
"RPG",
|
|
"Flame Thrower",
|
|
"M60",
|
|
"Minigun"
|
|
],
|
|
[VRR_GAME_GTA_SA]: [ // GTA San Andreas
|
|
"Fist",
|
|
"Brass Knuckles",
|
|
"Golf Club",
|
|
"Nightstick",
|
|
"Knife",
|
|
"Baseball Bat",
|
|
"Shovel",
|
|
"Pool Cue",
|
|
"Katana",
|
|
"Chainsaw",
|
|
"Purple Dildo",
|
|
"Dildo",
|
|
"Vibrator",
|
|
"Silver Vibrator",
|
|
"Flowers",
|
|
"Cane",
|
|
"Grenade",
|
|
"Teargas",
|
|
"Molotov Cocktail",
|
|
"Unknown",
|
|
"Unknown",
|
|
"Unknown",
|
|
"9mm",
|
|
"Silenced 9mm",
|
|
"Desert Eagle",
|
|
"Shotgun",
|
|
"Sawnoff Shotgun",
|
|
"Combat Shotgun",
|
|
"Uzi",
|
|
"MP5",
|
|
"AK-47",
|
|
"M4",
|
|
"Tec-9",
|
|
"Country Rifle",
|
|
"Sniper Rifle",
|
|
"RPG",
|
|
"HS Rocket",
|
|
"Flamethrower",
|
|
"Minigun",
|
|
"Satchel Charge",
|
|
"Detonator",
|
|
"Spraycan",
|
|
"Fire Extinguisher",
|
|
"Camera",
|
|
"Night Vision Goggles",
|
|
"Thermal Goggles",
|
|
"Parachute",
|
|
"Cellphone",
|
|
"Jetpack",
|
|
"Skateboard"
|
|
],
|
|
[VRR_GAME_GTA_IV]: [ // GTA IV
|
|
"Fist",
|
|
"Bat",
|
|
"Pool Cue",
|
|
"Knife",
|
|
"Grenade",
|
|
"Molotov",
|
|
"Rocket",
|
|
"Pistol",
|
|
"UNUSED",
|
|
"Desert Eagle",
|
|
"Stubby Shotgun",
|
|
"Baretta Shotgun",
|
|
"Micro Uzi",
|
|
"MP5",
|
|
"AK-47",
|
|
"M4",
|
|
"Combat Sniper",
|
|
"M40A1",
|
|
"RPG",
|
|
"Flamethrower",
|
|
"Minigun",
|
|
"EFLC Weapon 1",
|
|
"EFLC Weapon 2",
|
|
"EFLC Weapon 3",
|
|
"EFLC Weapon 4",
|
|
"EFLC Weapon 5",
|
|
"EFLC Weapon 6",
|
|
"EFLC Weapon 7",
|
|
"EFLC Weapon 8",
|
|
"EFLC Weapon 9",
|
|
"EFLC Weapon 10",
|
|
"EFLC Weapon 11",
|
|
"EFLC Weapon 12",
|
|
"EFLC Weapon 13",
|
|
"EFLC Weapon 14",
|
|
"EFLC Weapon 15",
|
|
"EFLC Weapon 16",
|
|
"EFLC Weapon 17",
|
|
"EFLC Weapon 18",
|
|
"EFLC Weapon 19",
|
|
"EFLC Weapon 20",
|
|
"EFLC Weapon 21",
|
|
"EFLC Weapon 22",
|
|
"EFLC Weapon 23",
|
|
"EFLC Weapon 24",
|
|
"Camera",
|
|
],
|
|
[VRR_GAME_GTA_IV_EFLC]: [ // GTA IV (EFLC)
|
|
"Fist",
|
|
"Bat",
|
|
"Pool Cue",
|
|
"Knife",
|
|
"Grenade",
|
|
"Molotov",
|
|
"UNUSED",
|
|
"Pistol",
|
|
"Desert Eagle",
|
|
"Stubby Shotgun",
|
|
"Baretta Shotgun",
|
|
"Shotgun",
|
|
"Micro Uzi",
|
|
"MP5",
|
|
"AK-47",
|
|
"M4",
|
|
"Combat Sniper",
|
|
"M40A1",
|
|
"RPG",
|
|
"Flamethrower",
|
|
"Minigun",
|
|
"EFLC Weapon 1",
|
|
"EFLC Weapon 2",
|
|
"EFLC Weapon 3",
|
|
"EFLC Weapon 4",
|
|
"EFLC Weapon 5",
|
|
"EFLC Weapon 6",
|
|
"EFLC Weapon 7",
|
|
"EFLC Weapon 8",
|
|
"EFLC Weapon 9",
|
|
"EFLC Weapon 10",
|
|
"EFLC Weapon 11",
|
|
"EFLC Weapon 12",
|
|
"EFLC Weapon 13",
|
|
"EFLC Weapon 14",
|
|
"EFLC Weapon 15",
|
|
"EFLC Weapon 16",
|
|
"EFLC Weapon 17",
|
|
"EFLC Weapon 18",
|
|
"EFLC Weapon 19",
|
|
"EFLC Weapon 20",
|
|
"EFLC Weapon 21",
|
|
"EFLC Weapon 22",
|
|
"EFLC Weapon 23",
|
|
"EFLC Weapon 24",
|
|
"Camera",
|
|
],
|
|
[VRR_GAME_MAFIA_ONE]: { // Mafia 1
|
|
2: "Knuckle Duster",
|
|
3: "Knife",
|
|
4: "Baseball Bat",
|
|
5: "Molotov Cocktail",
|
|
6: "Colt Detective Special",
|
|
7: "S&W Model 27 Magnum",
|
|
8: "S&W Model 10 M&P",
|
|
9: "Colt 1911",
|
|
10: "Thompson 1928",
|
|
11: "Pump-action Shotgun",
|
|
12: "Sawed-off Shotgun",
|
|
13: "US Rifle, M1903 Springfield",
|
|
14: "Mosin-Nagant 1891/30",
|
|
15: "Grenade",
|
|
17: "Bucket",
|
|
20: "Steel Bar",
|
|
25: "Crowbar",
|
|
28: "Wooden Plank",
|
|
29: "Bottle",
|
|
31: "Sword",
|
|
32: "Dogs Head",
|
|
},
|
|
[VRR_GAME_GTA_V]: { // GTA V
|
|
|
|
}
|
|
},
|
|
weatherNames: {
|
|
[VRR_GAME_GTA_III]: [ // GTA III
|
|
"Clear",
|
|
"Overcast",
|
|
"Thunderstorm",
|
|
"Fog",
|
|
"Clear",
|
|
"Rainy",
|
|
"Dark/Cloudy",
|
|
"Light/Cloudy",
|
|
"Overcast/Cloudy",
|
|
"Grey/Cloudy"
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA Vice City
|
|
"Partly Cloudy",
|
|
"Overcast",
|
|
"Thunderstorm",
|
|
"Fog",
|
|
"Sunny",
|
|
"Hurricane",
|
|
"Dark/Cloudy",
|
|
"Light/Cloudy",
|
|
"Overcast/Cloudy",
|
|
"Grey/Cloudy"
|
|
],
|
|
[VRR_GAME_GTA_SA]: [ // GTA San Andreas
|
|
"Blue Skies",
|
|
"Blue Skies",
|
|
"Blue Skies",
|
|
"Blue Skies",
|
|
"Blue Skies",
|
|
"Blue Skies",
|
|
"Blue Skies",
|
|
"Blue Skies",
|
|
"Thunderstorm",
|
|
"Cloudy/Foggy",
|
|
"Clear Blue Skies",
|
|
"Heatwave",
|
|
"Dull/Colorless",
|
|
"Dull/Colorless",
|
|
"Dull/Colorless",
|
|
"Dull/Colorless",
|
|
"Dull/Rainy",
|
|
"Heatwave",
|
|
"Heatwave",
|
|
"Sandstorm",
|
|
"Greenish/Foggy"
|
|
],
|
|
[VRR_GAME_GTA_IV]: [ // GTA IV
|
|
"Extra Sunny",
|
|
"Sunny",
|
|
"Sunny/Windy",
|
|
"Cloudy",
|
|
"Rain",
|
|
"Light Rain",
|
|
"Foggy",
|
|
"Thunderstorm",
|
|
"Extra Sunny",
|
|
"Sunny/Windy",
|
|
],
|
|
[VRR_GAME_GTA_IV_EFLC]: [ // GTA IV EFLC
|
|
"Extra Sunny",
|
|
"Sunny",
|
|
"Sunny/Windy",
|
|
"Cloudy",
|
|
"Rain",
|
|
"Light Rain",
|
|
"Foggy",
|
|
"Thunderstorm",
|
|
"Extra Sunny",
|
|
"Sunny/Windy",
|
|
],
|
|
[VRR_GAME_GTA_V]: [
|
|
|
|
],
|
|
},
|
|
gameNames: {
|
|
[VRR_GAME_GTA_III]: "GTA III",
|
|
[VRR_GAME_GTA_VC]: "GTA Vice City",
|
|
[VRR_GAME_GTA_SA]: "GTA San Andreas",
|
|
[VRR_GAME_GTA_IV]: "GTA IV",
|
|
[VRR_GAME_GTA_IV_EFLC]: "GTA IV: Episodes from Liberty City",
|
|
[VRR_GAME_MAFIA_ONE]: "Mafia: The City of Lost Heaven",
|
|
[VRR_GAME_MAFIA_TWO]: "Mafia II",
|
|
[VRR_GAME_MAFIA_THREE]: "Mafia III",
|
|
[VRR_GAME_MAFIA_ONE_DE]: "Mafia Definitive Edition",
|
|
[VRR_GAME_GTA_V]: "GTA V",
|
|
},
|
|
vehicleWheelStateNames: [
|
|
"normal",
|
|
"flat",
|
|
"gone"
|
|
],
|
|
vehicleDoorStateNames: [
|
|
"closed",
|
|
"closed",
|
|
"swinging",
|
|
"open"
|
|
],
|
|
vehicleWheelNames: [
|
|
"front left",
|
|
"rear left",
|
|
"front right",
|
|
"rear right"
|
|
],
|
|
vehicleLightNames: [
|
|
"front left",
|
|
"rear left",
|
|
"front right",
|
|
"rear right"
|
|
],
|
|
vehicleRadioStationNames: {
|
|
[VRR_GAME_GTA_III]: [ // GTA III
|
|
"Head Radio",
|
|
"Double Cleff FM",
|
|
"Jah Radio",
|
|
"Rise FM",
|
|
"Lips 106",
|
|
"Flashback FM",
|
|
"Chatterbox 109",
|
|
"MP3 Player"
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA Vice City
|
|
"Wildstyle",
|
|
"Flash FM",
|
|
"K CHAT",
|
|
"Fever 105",
|
|
"VROCK",
|
|
"VCPR",
|
|
"Espantoso",
|
|
"Emotion 98.3",
|
|
"Wave 103",
|
|
"MP3 Player"
|
|
],
|
|
[VRR_GAME_GTA_SA]: [ // GTA San Andreas
|
|
"K-ROSE",
|
|
"K-DST",
|
|
"Bounce FM",
|
|
"SF-UR",
|
|
"Radio Los Santos",
|
|
"Radio X",
|
|
"CSR Radio",
|
|
"KJAH West",
|
|
"Master Sounds",
|
|
"WCTR",
|
|
"User Track Player"
|
|
],
|
|
[VRR_GAME_GTA_V]: [ // GTA San Andreas
|
|
"K-ROSE",
|
|
"K-DST",
|
|
"Bounce FM",
|
|
"SF-UR",
|
|
"Radio Los Santos",
|
|
"Radio X",
|
|
"CSR Radio",
|
|
"KJAH West",
|
|
"Master Sounds",
|
|
"WCTR",
|
|
"User Track Player"
|
|
],
|
|
},
|
|
skins: {
|
|
[VRR_GAME_GTA_III]: [
|
|
[0 , "Claude" , false],
|
|
[1 , "Police Officer" , false],
|
|
[2 , "SWAT Officer" , false],
|
|
[3 , "FBI Agent" , false],
|
|
[4 , "Army Soldier" , false],
|
|
[5 , "Paramedic" , false],
|
|
[6 , "Firefighter" , false],
|
|
[7 , "Wise Guy" , true ],
|
|
[8 , "Taxi Driver" , false],
|
|
[9 , "Pimp" , true ],
|
|
[10 , "Mafia Member" , true ],
|
|
[11 , "Mafia Member" , true ],
|
|
[12 , "Triad Member" , true ],
|
|
[13 , "Triad Member" , true ],
|
|
[14 , "Diablo Member" , true ],
|
|
[15 , "Diablo Member" , true ],
|
|
[16 , "Yakuza Member" , true ],
|
|
[17 , "Yakuza Member" , true ],
|
|
[18 , "Yardie Member" , true ],
|
|
[19 , "Yardie Member" , true ],
|
|
[20 , "Cartel Soldier" , true ],
|
|
[21 , "Cartel Soldier" , true ],
|
|
[22 , "Red Jacks Thug" , true ],
|
|
[23 , "Purple Nines Thug" , true ],
|
|
[24 , "Street Criminal" , true ],
|
|
[25 , "Street Criminal" , true ],
|
|
[30 , "Male Client" , true ],
|
|
[31 , "Random Guy" , true ],
|
|
[32 , "Vacationist" , true ],
|
|
[33 , "DJ" , true ],
|
|
[34 , "Young Woman" , true ],
|
|
[35 , "Young Woman" , true ],
|
|
[36 , "Business Woman" , true ],
|
|
[37 , "Elder Woman" , true ],
|
|
[38 , "Elder Woman" , true ],
|
|
[39 , "Prostitute" , true ],
|
|
[40 , "Prostitute" , true ],
|
|
[41 , "Random Guy" , true ],
|
|
[42 , "Diseased Man" , true ],
|
|
[43 , "Deseased Woman" , true ],
|
|
[44 , "Young Woman" , true ],
|
|
[45 , "Old Man" , true ],
|
|
[46 , "Random Guy" , true ],
|
|
[47 , "Old Woman" , true ],
|
|
[48 , "Old Woman" , true ],
|
|
[49 , "Old Man" , true ],
|
|
[50 , "Random Guy" , true ],
|
|
[51 , "Old Woman" , true ],
|
|
[52 , "Young Woman" , true ],
|
|
[53 , "Docks Worker" , true ],
|
|
[54 , "Docks Worker" , true ],
|
|
[55 , "Male Street Bum" , true ],
|
|
[56 , "Female Street Bum" , true ],
|
|
[57 , "Delivery Guy" , true ],
|
|
[58 , "Delivery Guy" , true ],
|
|
[59 , "Business Man" , true ],
|
|
[60 , "Marty Chonks" , true ],
|
|
[61 , "CIA Agent" , true ],
|
|
[62 , "Female Client" , true ],
|
|
[63 , "Young Woman" , true ],
|
|
[64 , "Business Woman" , true ],
|
|
[65 , "Business Man" , true ],
|
|
[66 , "Female Client" , true ],
|
|
[67 , "Male Steward" , true ],
|
|
[68 , "Female Steward" , true ],
|
|
[69 , "Male Cocks Fan" , true ],
|
|
[70 , "Male Cocks Fan" , true ],
|
|
[71 , "Female Cocks Fan" , true ],
|
|
[72 , "Male Paramedics Assistant" , true ],
|
|
[73 , "Female Paramedics Assistant", true ],
|
|
[74 , "Construction Worker" , true ],
|
|
[75 , "Construction Worker" , true ],
|
|
[76 , "Zip Customer" , true ],
|
|
[77 , "Party Woman" , true ],
|
|
[78 , "Party Woman" , true ],
|
|
[80 , "Female College Student" , true ],
|
|
[81 , "Old Man" , true ],
|
|
[82 , "Female Jogger" , true ],
|
|
[83 , "Asuka Kasen" , true ],
|
|
[84 , "Spank Suicide Bomber" , true ],
|
|
[85 , "Salvatore's Butler" , true ],
|
|
[86 , "Catalina" , true ],
|
|
[87 , "Lee Chong" , true ],
|
|
[88 , "Colombian Cartel Member" , true ],
|
|
[89 , "Colombian Cartel Member" , true ],
|
|
[90 , "Colombian Cartel Member" , true ],
|
|
[91 , "Colombian Cartel Member" , true ],
|
|
[92 , "Police Officer" , false],
|
|
[93 , "Curly Bob" , true ],
|
|
[94 , "Phil Cassidy" , true ],
|
|
[95 , "Detective" , true ],
|
|
[96 , "8-Ball" , true ],
|
|
[97 , "8-Ball" , true ],
|
|
[98 , "Salvatore Leone" , true ],
|
|
[99 , "Mafia Member" , true ],
|
|
[100, "Joey Leone" , true ],
|
|
[101, "Joey Leone" , true ],
|
|
[102, "Bar Owner" , true ],
|
|
[103, "Kenji Kasen" , true ],
|
|
[104, "Mike Forelli" , true ],
|
|
[105, "Donald Love" , true ],
|
|
[106, "Donald Love" , true ],
|
|
[107, "Luigi Goterelli" , true ],
|
|
[108, "Maria Latore" , true ],
|
|
[109, "Mickey Hamfists" , true ],
|
|
[110, "Miguel" , true ],
|
|
[111, "Misty" , true ],
|
|
[112, "Old Oriental Gentleman" , true ],
|
|
[113, "Old Oriental Gentleman" , true ],
|
|
[114, "Old Oriental Gentleman" , true ],
|
|
[115, "Ray Machowski" , true ],
|
|
[116, "Mafia Member" , true ],
|
|
[118, "Tanner" , true ],
|
|
[119, "Toni Cipriani" , true ],
|
|
[120, "Darkel" , true ],
|
|
[121, "Chuff Security Officer" , false],
|
|
],
|
|
[VRR_GAME_GTA_VC]: [
|
|
[0 , "Tommy Vercetti" , false],
|
|
[1 , "Police Officer" , false],
|
|
[2 , "SWAT Officer" , false],
|
|
[3 , "FBI Agent" , false],
|
|
[4 , "Army Soldier" , false],
|
|
[5 , "Paramedic" , false],
|
|
[6 , "Fireman" , false],
|
|
[7 , "Golfer" , true ],
|
|
[9 , "Random Lady" , true],
|
|
[10 , "Bum" , true],
|
|
[11 , "Greaser" , true],
|
|
[12 , "Random Guy" , true],
|
|
[13 , "Random Guy" , true],
|
|
[14 , "Random Lady" , true],
|
|
[15 , "Random Guy" , true],
|
|
[16 , "Random Guy" , true],
|
|
[17 , "Beach Girl" , true],
|
|
[18 , "Fat Beach Lady" , true ],
|
|
[19 , "Beach Guy" , true ],
|
|
[20 , "Fat Beach Guy" , true ],
|
|
[21 , "Random Lady" , true ],
|
|
[22 , "Random Lady" , true ],
|
|
[23 , "Random Lady" , true ],
|
|
[24 , "Prostitute" , true ],
|
|
[25 , "Bum" , true ],
|
|
[26 , "Bum" , true ],
|
|
[27 , "Random Guy" , true ],
|
|
[28 , "Taxi Driver" , true ],
|
|
[29 , "Haitian" , true ],
|
|
[30 , "Criminal" , true ],
|
|
[31 , "Random Lady" , true ],
|
|
[32 , "Random Lady" , true ],
|
|
[33 , "Random Guy" , true ],
|
|
[34 , "Random Guy" , true ],
|
|
[35 , "Random Lady" , true ],
|
|
[36 , "Random Lady" , true ],
|
|
[37 , "Random Guy" , true ],
|
|
[38 , "Beach Lady" , true ],
|
|
[39 , "Beach Guy" , true ],
|
|
[40 , "Beach Lady" , true ],
|
|
[41 , "Beach Guy" , true ],
|
|
[42 , "Random Guy" , true ],
|
|
[43 , "Prostitute" , true ],
|
|
[44 , "Bum" , true ],
|
|
[45 , "Bum" , true ],
|
|
[46 , "Random Guy" , true ],
|
|
[47 , "Random Guy" , true ],
|
|
[48 , "Punk" , true ],
|
|
[49 , "Prostitute" , true ],
|
|
[50 , "Random Old Lady" , true ],
|
|
[51 , "Punk" , true ],
|
|
[52 , "Random Guy" , true ],
|
|
[53 , "Random Lady" , true ],
|
|
[54 , "Random Lady" , true ],
|
|
[55 , "Random Guy" , true ],
|
|
[56 , "Random Guy" , true ],
|
|
[57 , "Beach Lady" , true ],
|
|
[58 , "Beach Guy" , true ],
|
|
[59 , "Beach Lady" , true ],
|
|
[60 , "Beach Guy" , true ],
|
|
[61 , "Construction Worker" , true ],
|
|
[62 , "Golfer" , true ],
|
|
[63 , "Golfer" , true ],
|
|
[64 , "Golfer" , true ],
|
|
[65 , "Beach Lady" , true ],
|
|
[66 , "Beach Guy" , true ],
|
|
[67 , "Random Lady" , true ],
|
|
[68 , "Random Guy" , true ],
|
|
[69 , "Random Guy" , true ],
|
|
[70 , "Prostitute" , true ],
|
|
[71 , "Bum Lady" , true ],
|
|
[72 , "Random Guy" , true ],
|
|
[73 , "Random Guy" , true ],
|
|
[74 , "Taxi Driver" , true ],
|
|
[75 , "Random Woman" , true ],
|
|
[76 , "Skater Guy" , true ],
|
|
[77 , "Beach Lady" , true ],
|
|
[78 , "Skater Guy" , true ],
|
|
[79 , "Young Woman Shopper" , true ],
|
|
[80 , "Old Women Shopper" , true ],
|
|
[81 , "Tourist" , true ],
|
|
[82 , "Tourist" , true ],
|
|
[83 , "Cuban" , true ],
|
|
[84 , "Cuban" , true ],
|
|
[85 , "Haitian" , true ],
|
|
[86 , "Haitian" , true ],
|
|
[87 , "Shark" , true ],
|
|
[88 , "Shark" , true ],
|
|
[89 , "Diaz Guy" , true ],
|
|
[90 , "Diaz Guy" , true ],
|
|
[91 , "Security Guard" , false],
|
|
[92 , "Security Guard" , false],
|
|
[93 , "Biker" , true ],
|
|
[94 , "Biker" , true ],
|
|
[95 , "Vercetti Guy" , true ],
|
|
[96 , "Vercetti Guy" , true ],
|
|
[97 , "Undercover Cop" , false],
|
|
[98 , "Undercover Cop" , false],
|
|
[99 , "Undercover Cop" , false],
|
|
[100, "Undercover Cop " , false],
|
|
[101, "Undercover Cop" , false],
|
|
[102, "Undercover Cop" , false],
|
|
[103, "Random Guy" , true ],
|
|
[104, "Bodyguard" , true ],
|
|
[105, "Prostitute" , true ],
|
|
[106, "Prostitute" , false],
|
|
[107, "Ricardo Diaz" , true ],
|
|
[108, "Love Fist Guy" , true ],
|
|
[109, "Ken Rosenburg" , true ],
|
|
[110, "Candy Suxx" , true ],
|
|
[111, "Hilary" , true ],
|
|
[112, "Love Fist" , true ],
|
|
[113, "Phil" , true ],
|
|
[114, "Rockstar Guy" , true ],
|
|
[115, "Sonny" , true ],
|
|
[116, "Lance" , true ],
|
|
[117, "Mercedes" , true ],
|
|
[118, "Love Fist" , true ],
|
|
[119, "Alex Scrub" , true ],
|
|
[120, "Officer Lance Vance" , false],
|
|
[121, "Lance Vance" , true ],
|
|
[122, "Cortez" , true ],
|
|
[123, "SWAT 2" , false],
|
|
[124, "Columbian" , true ],
|
|
[125, "Hilary" , true ],
|
|
[126, "Mercedes" , true ],
|
|
[127, "Cam" , true ],
|
|
[128, "Cam" , true ],
|
|
[129, "Phil" , true ],
|
|
[130, "Phil" , true ],
|
|
[131, "Bodyguard" , true ],
|
|
[132, "Pizza Worker" , true ],
|
|
[133, "Taxi Driver" , true ],
|
|
[134, "Taxi Driver" , true ],
|
|
[135, "Sailor" , true ],
|
|
[136, "Sailor" , true ],
|
|
[137, "Sailor" , true ],
|
|
[138, "Chef" , true ],
|
|
[139, "Criminal" , true ],
|
|
//[140, "French Guy" , true ],
|
|
//[141, "Worker" , true ],
|
|
[142, "Haitian" , true ],
|
|
[143, "Waitress" , true ],
|
|
[144, "Forelli Member" , true ],
|
|
[145, "Forelli Member" , true ],
|
|
[146, "Forelli Member" , true ],
|
|
[147, "Columbian" , true ],
|
|
[148, "Random Guy" , true ],
|
|
[149, "Beach Guy" , true ],
|
|
[150, "Random Guy" , true ],
|
|
[151, "Random Guy" , true ],
|
|
[152, "Random Guy" , true ],
|
|
[153, "Drag Queen" , true ],
|
|
[154, "Diaz Traitor" , true ],
|
|
[155, "Random Guy" , true ],
|
|
[156, "Random Guy" , true ],
|
|
[157, "Stripper" , true ],
|
|
[158, "Stripper" , true ],
|
|
[159, "Stripper" , true ],
|
|
[160, "Store Clerk" , true ],
|
|
[161, "Tommy Vercetti" , true ],
|
|
[162, "Tommy Vercetti (Business Suit)" , true ],
|
|
[163, "Tommy Vercetti (SpandEx Overalls)" , true ],
|
|
[164, "Tommy Vercetti (Golfer)" , true ],
|
|
[165, "Tommy Vercetti (Cuban)" , true ],
|
|
[166, "Tommy Vercetti (Cop)" , false],
|
|
[167, "Tommy Vercetti (Robbery Suit)" , true ],
|
|
[168, "Tommy Vercetti (T-Shirt and Jeans)", true ],
|
|
[169, "Tommy Vercetti (Striped Suit)" , true ],
|
|
[170, "Tommy Vercetti (Black Tracksuit)" , true ],
|
|
[171, "Tommy Vercetti (Red Tracksuit)" , true ],
|
|
[172, "Club Bouncer" , true ],
|
|
[173, "Club Bouncer" , true ],
|
|
[174, "Stripclub Dancer" , true ],
|
|
[175, "Random Guy" , true ],
|
|
[176, "Stripclub Dancer" , true ],
|
|
[177, "Stripclub Dancer" , true ],
|
|
[178, "Stripclub Dancer" , true ],
|
|
[179, "Gang Member" , true ],
|
|
[180, "Tommy Vercetti (Endgame T-Shirt)" , true ],
|
|
[181, "Forelli Thug" , true ],
|
|
[182, "Forelli Thug" , true ],
|
|
[183, "Random Lady" , true ],
|
|
[184, "Gang Member" , true ],
|
|
[185, "Party Waitress" , true ],
|
|
[186, "Kent Paul" , true ],
|
|
[187, "Big Head Taxi Driver" , true ],
|
|
],
|
|
[VRR_GAME_GTA_SA]: [
|
|
[0 , "Carl 'CJ' Johnson" , false],
|
|
[1 , "The Truth" , true],
|
|
[2 , "Maccer" , true],
|
|
[6 , "Taxi Driver/Train Driver" , true],
|
|
[9 , "Normal Ped" , true],
|
|
[10 , "Old Woman" , true],
|
|
[11 , "Casino Croupier" , false],
|
|
[12 , "Rich Woman" , true],
|
|
[13 , "Street Girl" , true],
|
|
[14 , "Normal Ped" , true],
|
|
[15 , "Mr.Whittaker (RS Haul Owner)" , true],
|
|
[16 , "Airport Ground Worker" , true],
|
|
[17 , "Businessman" , true],
|
|
[18 , "Beach Visitor" , true],
|
|
[19 , "DJ" , true],
|
|
[20 , "Rich Guy (Madd Doggs Manager)" , true],
|
|
[21 , "Normal Ped" , true],
|
|
[22 , "Normal Ped" , true],
|
|
[23 , "Bmxer" , true],
|
|
[24 , "Madd Dogg Bodyguard" , true],
|
|
[25 , "Madd Dogg Bodyguard" , true],
|
|
[26 , "Backpacker" , true],
|
|
[27 , "Construction Worker" , true],
|
|
[28 , "Drug Dealer" , true],
|
|
[29 , "Drug Dealer" , true],
|
|
[30 , "Drug Dealer" , true],
|
|
[31 , "Farm-Town Inhabitant" , true],
|
|
[32 , "Farm-Town Inhabitant" , true],
|
|
[33 , "Farm-Town Inhabitant" , true],
|
|
[34 , "Farm-Town Inhabitant" , true],
|
|
[35 , "Gardener" , true],
|
|
[36 , "Golfer" , true],
|
|
[37 , "Golfer" , true],
|
|
[38 , "Normal Ped" , true],
|
|
[39 , "Normal Ped" , true],
|
|
[40 , "Normal Ped" , true],
|
|
[41 , "Normal Ped" , true],
|
|
[43 , "Normal Ped" , true],
|
|
[44 , "Normal Ped" , true],
|
|
[45 , "Beach Visitor" , true],
|
|
[46 , "Normal Ped" , true],
|
|
[47 , "Normal Ped" , true],
|
|
[48 , "Normal Ped" , true],
|
|
[49 , "Snakehead (Da Nang)" , true],
|
|
[50 , "Mechanic" , true],
|
|
[51 , "Mountain Biker" , true],
|
|
[52 , "Mountain Biker" , true],
|
|
[53 , "Unknown" , true],
|
|
[54 , "Normal Ped" , true],
|
|
[55 , "Normal Ped" , true],
|
|
[56 , "Normal Ped" , true],
|
|
[57 , "Oriental Ped" , true],
|
|
[58 , "Oriental Ped" , true],
|
|
[59 , "Normal Ped" , true],
|
|
[60 , "Normal Ped" , true],
|
|
[61 , "Pilot" , false],
|
|
[62 , "Colonel Fuhrberger" , true],
|
|
[63 , "Prostitute" , true],
|
|
[64 , "Prostitute" , true],
|
|
[66 , "Pool Player" , true],
|
|
[67 , "Pool Player" , true],
|
|
[68 , "Priest/Preacher" , true],
|
|
[69 , "Normal Ped" , true],
|
|
[70 , "Scientist" , true],
|
|
[71 , "Security Guard" , false],
|
|
[72 , "Hippy" , true],
|
|
[73 , "Hippy" , true],
|
|
[75 , "Prostitute" , true],
|
|
[76 , "Stewardess" , true],
|
|
[77 , "Homeless" , true],
|
|
[78 , "Homeless" , true],
|
|
[79 , "Homeless" , true],
|
|
[80 , "Boxer" , true],
|
|
[81 , "Boxer" , true],
|
|
[82 , "Black Elvis" , true],
|
|
[83 , "White Elvis" , true],
|
|
[84 , "Blue Elvis" , true],
|
|
[85 , "Prostitute" , true],
|
|
[87 , "Stripper" , true],
|
|
[88 , "Normal Ped" , true],
|
|
[89 , "Normal Ped" , true],
|
|
[90 , "Jogger" , true],
|
|
[91 , "Rich Woman" , true],
|
|
[92 , "Rollerskater" , true],
|
|
[93 , "Normal Ped" , true],
|
|
[94 , "Normal Ped" , true],
|
|
[95 , "Normal Ped" , true],
|
|
[96 , "Jogger" , true],
|
|
[97 , "Lifeguard" , true],
|
|
[98 , "Normal Ped" , true],
|
|
[99 , "Rollerskater" , true],
|
|
[100, "Biker" , true],
|
|
[101, "Normal Ped" , true],
|
|
[102, "Ballas Gang Member" , true],
|
|
[103, "Ballas Gang Member" , true],
|
|
[104, "Ballas Gang Member" , true],
|
|
[105, "Grove Street Families Gang Member" , true],
|
|
[106, "Grove Street Families Gang Member" , true],
|
|
[107, "Grove Street Families Gang Member" , true],
|
|
[108, "Los Santos Vagos Gang Member" , true],
|
|
[109, "Los Santos Vagos Gang Member" , true],
|
|
[110, "Los Santos Vagos Gang Member" , true],
|
|
[111, "Russian Mafioso" , true],
|
|
[112, "Russian Mafioso" , true],
|
|
[113, "Russian Mafioso" , true],
|
|
[114, "Varios Los Aztecas Gang Member" , true],
|
|
[115, "Varios Los Aztecas Gang Member" , true],
|
|
[116, "Varios Los Aztecas Gang Member" , true],
|
|
[117, "Triad" , true],
|
|
[118, "Triad" , true],
|
|
[120, "Triad Boss" , true],
|
|
[121, "Da Nang Boy" , true],
|
|
[122, "Da Nang Boy" , true],
|
|
[123, "Da Nang Boy" , true],
|
|
[124, "Italian Mafioso" , true],
|
|
[125, "Italian Mafioso" , true],
|
|
[126, "Italian Mafioso" , true],
|
|
[127, "Italian Mafioso" , true],
|
|
[128, "Farm Inhabitant" , true],
|
|
[129, "Farm Inhabitant" , true],
|
|
[130, "Farm Inhabitant" , true],
|
|
[131, "Farm Inhabitant" , true],
|
|
[132, "Farm Inhabitant" , true],
|
|
[133, "Farm Inhabitant" , true],
|
|
[134, "Homeless" , true],
|
|
[135, "Homeless" , true],
|
|
[136, "Normal Ped" , true],
|
|
[137, "Homeless" , true],
|
|
[138, "Beach Visitor" , true],
|
|
[139, "Beach Visitor" , true],
|
|
[140, "Beach Visitor" , true],
|
|
[141, "Businesswoman" , true],
|
|
[142, "Taxi Driver" , true],
|
|
[143, "Crack Maker" , true],
|
|
[144, "Crack Maker" , true],
|
|
[145, "Crack Maker" , true],
|
|
[146, "Crack Maker" , true],
|
|
[147, "Businessman" , true],
|
|
[148, "Businesswoman" , true],
|
|
[150, "Businesswoman" , true],
|
|
[151, "Normal Ped" , true],
|
|
[152, "Prostitute" , true],
|
|
[153, "Construction Worker" , true],
|
|
[154, "Beach Visitor" , true],
|
|
[155, "Well Stacked Pizza Worker" , true],
|
|
[156, "Barber" , true],
|
|
[157, "Hillbilly" , true],
|
|
[158, "Farmer" , true],
|
|
[159, "Hillbilly" , true],
|
|
[160, "Hillbilly" , true],
|
|
[161, "Farmer" , true],
|
|
[162, "Hillbilly" , true],
|
|
[163, "Black Bouncer" , true],
|
|
[164, "White Bouncer" , true],
|
|
[165, "White MIB Agent" , false],
|
|
[166, "Black MIB Agent" , false],
|
|
[167, "Cluckin Bell Worker" , true],
|
|
[168, "Hotdog/Chilli Dog Vendor" , true],
|
|
[169, "Normal Ped" , true],
|
|
[170, "Normal Ped" , true],
|
|
[171, "Blackjack Dealer" , true],
|
|
[172, "Casino Croupier" , true],
|
|
[173, "San Fierro Rifa" , true],
|
|
[174, "San Fierro Rifa" , true],
|
|
[175, "San Fierro Rifa" , true],
|
|
[176, "Barber" , true],
|
|
[177, "Barber" , true],
|
|
[178, "Whore" , true],
|
|
[179, "Ammunation Salesman" , true],
|
|
[180, "Tattoo Artist" , true],
|
|
[181, "Punk" , true],
|
|
[182, "Cab Driver" , true],
|
|
[183, "Normal Ped" , true],
|
|
[184, "Normal Ped" , true],
|
|
[185, "Normal Ped" , true],
|
|
[186, "Normal Ped" , true],
|
|
[187, "Businessman" , true],
|
|
[188, "Normal Ped" , true],
|
|
[189, "Valet" , true],
|
|
[190, "Barbara Schternvart" , true],
|
|
[191, "Helena Wankstein" , true],
|
|
[192, "Michelle Cannes" , true],
|
|
[193, "Katie Zhan" , true],
|
|
[194, "Millie Perkins" , true],
|
|
[195, "Denise Robinson" , true],
|
|
[196, "Farm-Town Inhabitant" , true],
|
|
[197, "Hillbilly" , true],
|
|
[198, "Farm-Town Inhabitant" , true],
|
|
[199, "Farm-Town Inhabitant" , true],
|
|
[200, "Hillbilly" , true],
|
|
[201, "Farmer" , true],
|
|
[202, "Farmer" , true],
|
|
[203, "Karate Teacher" , true],
|
|
[204, "Karate Teacher" , true],
|
|
[205, "Burger Shot Cashier" , true],
|
|
[206, "Cab Driver" , true],
|
|
[207, "Prostitute" , true],
|
|
[209, "Oriental Noodle Stand Vendor" , true],
|
|
[210, "Oriental Boating School Instructor", true],
|
|
[211, "Clothes Shop Staff" , true],
|
|
[212, "Homeless" , true],
|
|
[213, "Weird Old Man" , true],
|
|
[214, "Waitress (Maria Latore)" , true],
|
|
[215, "Normal Ped" , true],
|
|
[216, "Normal Ped" , true],
|
|
[217, "Clothes Shop Staff" , true],
|
|
[218, "Normal Ped" , true],
|
|
[219, "Rich Woman" , true],
|
|
[220, "Cab Driver" , true],
|
|
[221, "Normal Ped" , true],
|
|
[222, "Normal Ped" , true],
|
|
[223, "Normal Ped" , true],
|
|
[224, "Normal Ped" , true],
|
|
[225, "Normal Ped" , true],
|
|
[226, "Normal Ped" , true],
|
|
[227, "Oriental Businessman" , true],
|
|
[228, "Oriental Ped" , true],
|
|
[229, "Oriental Ped" , true],
|
|
[230, "Homeless" , true],
|
|
[231, "Normal Ped" , true],
|
|
[232, "Normal Ped" , true],
|
|
[233, "Normal Ped" , true],
|
|
[234, "Cab Driver" , true],
|
|
[235, "Normal Ped" , true],
|
|
[236, "Normal Ped" , true],
|
|
[237, "Prostitute" , true],
|
|
[238, "Prostitute" , true],
|
|
[239, "Homeless" , true],
|
|
[240, "The D.A" , true],
|
|
[241, "Afro-American" , true],
|
|
[242, "Mexican" , true],
|
|
[243, "Prostitute" , true],
|
|
[244, "Stripper" , true],
|
|
[245, "Prostitute" , true],
|
|
[246, "Stripper" , true],
|
|
[247, "Biker" , true],
|
|
[248, "Biker" , true],
|
|
[249, "Pimp" , true],
|
|
[250, "Normal Ped" , true],
|
|
[251, "Lifeguard" , true],
|
|
[252, "Naked Valet" , true],
|
|
[253, "Bus Driver" , false],
|
|
[254, "Biker Drug Dealer" , true],
|
|
[255, "Chauffeur (Limo Driver)" , true],
|
|
[256, "Stripper" , true],
|
|
[257, "Stripper" , true],
|
|
[258, "Heckler" , true],
|
|
[259, "Heckler" , true],
|
|
[260, "Construction Worker" , true],
|
|
[261, "Cab Driver" , true],
|
|
[262, "Cab Driver" , true],
|
|
[263, "Normal Ped" , true],
|
|
[264, "Clown (Ice-Cream Van Driver)" , true],
|
|
[265, "Officer Frank Tenpenny" , false],
|
|
[266, "Officer Eddie Pulaski" , false],
|
|
[267, "Officer Jimmy Hernandez" , false],
|
|
[268, "Dwaine/Dwayne" , true],
|
|
[269, "Melvin Big Smoke Harris (Mission)" , true],
|
|
[270, "Sean Sweet Johnson" , true],
|
|
[271, "Lance Ryder Wilson" , true],
|
|
[272, "Mafia Boss" , true],
|
|
[274, "Paramedic" , false],
|
|
[275, "Paramedic" , false],
|
|
[276, "Paramedic" , false],
|
|
[277, "Firefighter" , false],
|
|
[278, "Firefighter" , false],
|
|
[279, "Firefighter" , false],
|
|
[280, "Los Santos Police Officer" , false],
|
|
[281, "San Fierro Police Officer" , false],
|
|
[282, "Las Venturas Police Officer" , false],
|
|
[283, "County Sheriff" , false],
|
|
[284, "Motorbike Cop" , false],
|
|
[285, "S.W.A.T." , false],
|
|
[286, "Federal Agent" , false],
|
|
[287, "Army Soldier" , false],
|
|
[288, "Desert Sheriff" , false],
|
|
[290, "Ken Rosenberg" , true],
|
|
[291, "Kent Paul" , true],
|
|
[292, "Cesar Vialpando" , true],
|
|
[293, "Jeffery Og Loc Martin/Cross" , true],
|
|
[294, "Wu Zi Mu (Woozie)" , true],
|
|
[295, "Michael Toreno" , true],
|
|
[296, "Jizzy B." , true],
|
|
[297, "Madd Dogg" , true],
|
|
[298, "Catalina" , true],
|
|
[299, "Claude Speed" , true],
|
|
[300, "Lance Ryder Wilson" , true],
|
|
[301, "Lance Ryder Wilson (robbery mask)" , true],
|
|
[302, "Emmet" , true],
|
|
[303, "Unknown" , false],
|
|
[304, "Denise" , true],
|
|
[305, "Jethro" , true],
|
|
[306, "Zero" , true],
|
|
[307, "T-Bone Mendez" , true],
|
|
[308, "Forelli" , true],
|
|
[309, "Mechanic" , true],
|
|
[310, "Barry Big Bear Thorne (Skinny)" , true],
|
|
[311, "Melvin Big Smoke Harris (Vest)" , true],
|
|
[312, "Army Guy" , true],
|
|
[313, "Barry Big Bear Thorne (Fat)" , true],
|
|
],
|
|
[VRR_GAME_GTA_IV]: [
|
|
[-2020305438,"Male Multiplayer" , false],
|
|
[-641875910 ,"Female Multiplayer" , false],
|
|
[-1370810922,"MODEL_SUPERLOD" , false],
|
|
[ 1853617247,"Anna" , true],
|
|
[-1646893330,"Anthony" , true],
|
|
[ 1495769888,"Badman" , true],
|
|
[ 1500493064,"Bernie Crane" , true],
|
|
[ 1731510984,"Bledar" , true],
|
|
[ 422305098 ,"Brian" , true],
|
|
[-1729980128,"Brucie" , true],
|
|
[ 237511807 ,"Bulgarin" , true],
|
|
[ 88667657 ,"Charise" , true],
|
|
[-1328445565,"Charlie Undercover" , false],
|
|
[ 1343144208,"Clarence" , true],
|
|
[ 1468450703,"Dardan" , true],
|
|
[ 386513184 ,"Darko" , true],
|
|
[ 1169442297,"Derric" , true],
|
|
[ 237497537 ,"Dmitri" , true],
|
|
[-617264103 ,"Dwayne" , true],
|
|
[-1600585231,"Eddie" , true],
|
|
[ 57218969 ,"Faustin" , true],
|
|
[ 1710545037,"Francis" , true],
|
|
[ 1424670436,"French Tom" , true],
|
|
[ 2129490787,"Gordon" , true],
|
|
[-357652594 ,"Gracie" , true],
|
|
[ 980768434 ,"Hossan" , true],
|
|
[-835225126 ,"Ilyena" , true],
|
|
[-479595866 ,"Issac" , true],
|
|
[ 1166762483,"Ivan" , true],
|
|
[ 364686627 ,"Jay" , true],
|
|
[ 170756246 ,"Jason" , true],
|
|
[ 390357829 ,"Jeff" , true],
|
|
[-366421228 ,"Jimmy" , true],
|
|
[-911507684 ,"Johnny Klebitz" , true],
|
|
[-773750838 ,"Kate" , true],
|
|
[ 995576506 ,"Kenny" , true],
|
|
[ 1487004273,"Lil Jacob" , true],
|
|
[-1275031987,"Lil Jacob 2," , true],
|
|
[-681942840 ,"Luca" , true],
|
|
[-492470690 ,"Luis" , true],
|
|
[-1040287406,"Mallorie" , true],
|
|
[-322700377 ,"Mam" , true],
|
|
[ 1445589009,"Manny" , true],
|
|
[ 411185872 ,"Marnie" , true],
|
|
[-807339118 ,"Mel" , true],
|
|
[ 735211577 ,"Michael" , true],
|
|
[-1080659212,"Michelle" , true],
|
|
[-636669566 ,"Mickey" , true],
|
|
[ 1690783035,"Packie" , true],
|
|
[-165448092 ,"Pathos" , true],
|
|
[-1947682830,"Petrovic" , true],
|
|
[-1826458934,"Phil Bell" , true],
|
|
[ 1794146792,"Playboy X" , true],
|
|
[ 954215094 ,"Ray Boccino" , true],
|
|
[-587324132 ,"Ricky" , true],
|
|
[-1992728631,"Roman" , true],
|
|
[ 558221221 ,"Roman 2," , true],
|
|
[-17823883 ,"Sarah" , true],
|
|
[ 1384833284,"Tuna" , true],
|
|
[-1014976873,"Vinny Spaz" , true],
|
|
[ 896408642 ,"Vlad" , true],
|
|
[-301223260 ,"Black Street Thug 1," , true],
|
|
[-1143910864,"Black Street Thug 2," , true],
|
|
[ 869501081 ,"Black Street OG 1," , true],
|
|
[ 632613980 ,"Black Street OG 1," , true],
|
|
[-503930010 ,"Albanian Thug 1," , true],
|
|
[-235584669 ,"Albanian Thug 2," , true],
|
|
[ 207714363 ,"Albanian Thug 3," , true],
|
|
[ 514268366 ,"Albanian Thug 4," , true],
|
|
[ 43005364 ,"Biker 1," , true],
|
|
[ 1346668127,"Biker 2," , true],
|
|
[-1677255197,"Biker 3," , true],
|
|
[-1461281345,"Biker 4," , true],
|
|
[ 1574850459,"Biker 5," , true],
|
|
[-1953289472,"Biker 6," , true],
|
|
[ 280474699 ,"Irish Man 1," , true],
|
|
[-19263344 ,"Irish Man 2," , true],
|
|
[ 1844702918,"Irish Man 3," , true],
|
|
[ 1609755055,"Jamaican OG 1," , true],
|
|
[-330497431 ,"Jamaican OG 2," , true],
|
|
[ 1117105909,"Jamaican OG 3," , true],
|
|
[-1500397869,"Jamaican Thug 1," , true],
|
|
[-881358690 ,"Jamaican Thug 2," , true],
|
|
[ 1540383669,"Asian Man 1," , true],
|
|
[ 764249904 ,"Asian Man 2," , true],
|
|
[ 492147228 ,"Hispanic Man 1," , true],
|
|
[-1926041127,"Hispanic Man 2," , true],
|
|
[ 1168388225,"Hispanic Man 3," , true],
|
|
[-1746774780,"Hispanic Man 4," , true],
|
|
[-302362397 ,"Fat Italian Mafia Boss" , true],
|
|
[-1616890832,"Italian Mafia Boss" , true],
|
|
[ 64730935 ,"Italian Mafia Associate" , true],
|
|
[ 510389335 ,"Fat Italian Mafia Associate" , true],
|
|
[-1836006237,"Russian Thug 1," , true],
|
|
[-2088164056,"Russian Thug 2," , true],
|
|
[ 1976502708,"Russian Thug 3," , true],
|
|
[ 1543404628,"Russian Thug 4," , true],
|
|
[ 1865532596,"Russian Thug 5," , true],
|
|
[ 431692232 ,"Russian Thug 6," , true],
|
|
[ 1724587620,"Russian Thug 7," , true],
|
|
[-1180674815,"Russian Thug 8," , true],
|
|
[ 871281791 ,"Triad Boss 1," , true],
|
|
[ 683712035 ,"Triad Boss 2," , true],
|
|
[-1084007777,"Triad Member 3," , true],
|
|
[-164935626 ,"Triad Member 4," , true],
|
|
[-751071255 ,"Female Maid" , true],
|
|
[-109247258 ,"Female Binco Worker" , false],
|
|
[ 1366257926,"Female Bank Teller" , true],
|
|
[ 346338575 ,"Female Doctor" , true],
|
|
[ 1350216795,"Female Gym Worker" , true],
|
|
[ 924926104 ,"Female Burger Shot Worker" , false],
|
|
[-346378101 ,"Female Cluckin Bell Worker" , false],
|
|
[-2104311883,"Female Rockstar Cafe Worker" , false],
|
|
[ 212900845 ,"Female TW@ Cafe Worker" , false],
|
|
[-290070895 ,"Female Well Stacked Pizza Worker", false],
|
|
[ 552542187 ,"Hooker" , true],
|
|
[ 996267216 ,"Hooker 2," , true],
|
|
[-1193778389,"Nurse" , true],
|
|
[ 1113677074,"Stripper 1," , true],
|
|
[ 1353709999,"Stripper 2," , true],
|
|
[ 24233425 ,"Waitress" , true],
|
|
[-1761003415,"Alcoholic Man" , true],
|
|
[ 1075583233,"Armoured Truck Driver" , false],
|
|
[ 134077503 ,"Bus Driver" , false],
|
|
[ 757349871 ,"Generic Asian Man" , true],
|
|
[-1827421800,"Black Crackhead" , true],
|
|
[ 219393781 ,"Doctor (Scrubs)" , true],
|
|
[-1186940778,"Doctor" , true],
|
|
[ 375732086 ,"Doctor (Blood Covered Coat)" , true],
|
|
[ 2105015949,"Cook" , true],
|
|
[-200234085 ,"Italian Mob Enforcer" , true],
|
|
[ 800131009 ,"Factory Worker" , true],
|
|
[-999506922 ,"FIB Agent" , false],
|
|
[-1993909080,"Fat Delivery Driver" , true],
|
|
[ 610888851 ,"Fire Chief" , false],
|
|
[ 486302863 ,"Mercenary Soldier" , false],
|
|
[-778316080 ,"Helicopter Pilot" , false],
|
|
[ 624314380 ,"Hotel Doorman" , true],
|
|
[-1784833142,"Korean Cook" , true],
|
|
[-1852976689,"Lawyer 1," , true],
|
|
[-1134712978,"Lawyer 2," , true],
|
|
[ 379171768 ,"Loony Black Man" , true],
|
|
[-1945168882,"Pilot" , false],
|
|
[ 807236245 ,"Generic Man" , true],
|
|
[-284362863 ,"Postal Worker" , true],
|
|
[-1188246269,"Saxophone Player" , true],
|
|
[-1870989171,"Security Guard" , false],
|
|
[ 420915580 ,"Stadium Food Vendor" , true],
|
|
[ 1878085135,"Stadium Food Cook" , true],
|
|
[ 142730876 ,"Street Food Vendor" , true],
|
|
[-690681764 ,"Street Sweeper Driver" , true],
|
|
[ 8772846 ,"Taxi Driver" , true],
|
|
[ 1186270890,"Telephone Company Worker" , true],
|
|
[-379234846 ,"Tennis Player" , true],
|
|
[ 1159759556,"Train Conductor" , false],
|
|
[-142386662 ,"Homeless Black Man" , true],
|
|
[-46564867 ,"Trucker" , true],
|
|
[-1284047560,"Janitor" , true],
|
|
[ 22944263 ,"Hotel Doorman 2," , true],
|
|
[ 1178487645,"Mob Boss" , true],
|
|
[-1464712858,"Airport Worker" , false],
|
|
[-2139064254,"Bartender" , true],
|
|
[-1780698891,"Biker Bouncer" , true],
|
|
[-409283472 ,"High End Club Bouncer" , true],
|
|
[-799229885 ,"Bowling Alley Worker" , true],
|
|
[-434183225 ,"Bowling Alley Worker 2," , true],
|
|
[ 768442188 ,"Chinese Food Vendor" , true],
|
|
[ 676448572 ,"Club Security" , true],
|
|
[-722019798 ,"Construction Worker" , true],
|
|
[-1015957728,"Construction Worker 2," , true],
|
|
[-714220780 ,"Construction Worker 3," , true],
|
|
[-183203150 ,"Police Officer" , false],
|
|
[-1518937979,"Traffic Officer" , false],
|
|
[-370395528 ,"Fat Police Officer" , false],
|
|
[-1371133859,"Courier" , true],
|
|
[-573788283 ,"Cowboy 1," , true],
|
|
[-1283406538,"Drug Dealer 1," , true],
|
|
[ 1448755353,"Drug Dealer 2," , true],
|
|
[ 989485 ,"Male Burger Shot Worker" , true],
|
|
[-1011530423,"Male Cluckin Bell Worker" , true],
|
|
[ 1979561477,"Male Rockstar Cafe Worker" , true],
|
|
[-786449781 ,"Male TW@ Cafe Worker" , true],
|
|
[ 206941425 ,"Male Well Stacked Pizza Worker" , true],
|
|
[-610224615 ,"Firefighter" , false],
|
|
[ 1136499716,"Garbage Collector" , false],
|
|
[ 897868981 ,"Goon" , true],
|
|
[-1902758612,"Male Gym Worker" , true],
|
|
[-356904519 ,"Mechanic 2," , true],
|
|
[-1056268969,"Male Modo Worker" , true],
|
|
[ 1201610759,"Helicopter Pilot" , false],
|
|
[-151000142 ,"Perseus" , true],
|
|
[ 501136335 ,"Generic Male 1," , true],
|
|
[ 186619473 ,"Generic Male 2," , true],
|
|
[-111611196 ,"Generic Male 3," , true],
|
|
[-1175077216,"Paramedic" , false],
|
|
[-1676937780,"Prisoner" , false],
|
|
[ 215190023 ,"Prisoner 2," , false],
|
|
[ 1552970117,"Roman's Taxi Service Driver" , true],
|
|
[-1481923910,"Male Runner" , true],
|
|
[ 357919731 ,"Male Shop Assistant 1," , true],
|
|
[-89302119 ,"State Trooper" , false],
|
|
[-1004762946,"SWAT" , false],
|
|
[-64233032 ,"Sword Swallower" , true],
|
|
[-1292254815,"Thief" , true],
|
|
[ 271284208 ,"Valet" , true],
|
|
[-186113957 ,"Vendor" , true],
|
|
[-2015686009,"French Tom" , true],
|
|
[ 1977784957,"Jim Fitz" , true],
|
|
[-203833294 ,"East European Woman" , true],
|
|
[ 189853472 ,"East European Woman 2," , true],
|
|
[-349043578 ,"Woman" , true],
|
|
[-114937692 ,"Jersey Woman" , true],
|
|
[-1697333660,"Oriental Woman" , true],
|
|
[ 100706569 ,"Rich Woman" , true],
|
|
[ 155063868 ,"Business Woman 1," , true],
|
|
[ 394310337 ,"Business Woman 2," , true],
|
|
[ 1375728805,"Chinatown Woman" , true],
|
|
[-284229525 ,"Business Woman 3," , true],
|
|
[ 677687516 ,"East European Woman 3," , true],
|
|
[-1188238883,"Fat Black Woman" , true],
|
|
[-2075220936,"Jersey Woman 1," , true],
|
|
[-1356924456,"Jersey Woman 2," , true],
|
|
[ 812112483 ,"Fat Hispanic Woman 1," , true],
|
|
[-129242580 ,"Fat Hispanic Woman 2," , true],
|
|
[ 852423121 ,"White Manhattan Woman" , true],
|
|
[ 76551508 ,"Black Manhattan Woman" , true],
|
|
[-2118501976,"Old Asian Woman" , true],
|
|
[ 1616769823,"Old Rich Woman" , true],
|
|
[ 453889158 ,"Business Woman 4," , true],
|
|
[ 824245375 ,"Asian Woman in Dress" , true],
|
|
[-1362442041,"Fat Black Bronx Woman" , true],
|
|
[-1788328884,"Random White Woman" , true],
|
|
[-1523915823,"Random Hispanic Woman" , true],
|
|
[-949987237 ,"Random Eastern European Woman" , true],
|
|
[-1926577323,"Random Black Woman" , true],
|
|
[ 168065679 ,"Black Harlem Woman 1," , true],
|
|
[ 441464 ,"Fat Jersey Woman 1," , true],
|
|
[ 54114008 ,"Fat Hispanic Woman 3," , true],
|
|
[-292713088 ,"Hispanic Woman 1," , true],
|
|
[ 1743814728,"Hispanic Woman 2," , true],
|
|
[ 1670568326,"Manhattan Woman 1," , true],
|
|
[ 1354281938,"Manhattan Woman 2," , true],
|
|
[ 1056837725,"Manhattan Woman 1," , true],
|
|
[-1193633577,"Asian Woman 1," , true],
|
|
[ 713691120 ,"Black Woman 2," , true],
|
|
[-1780385799,"Rich White Woman 1," , true],
|
|
[-952185135 ,"Asian Woman" , true],
|
|
[ 1586287288,"Female Shopper 1," , true],
|
|
[ 1848013291,"Female Shopper 2," , true],
|
|
[-1702036227,"Female Shopper 3," , true],
|
|
[ 1182843182,"Female Socialite 1," , true],
|
|
[-900623157 ,"Street Woman 1," , true],
|
|
[ 286007875 ,"Street Woman 2," , true],
|
|
[ 1473654742,"Street Woman 3," , true],
|
|
[-1850743775,"Street Woman 4," , true],
|
|
[ 1290755317,"Street Woman 5," , true],
|
|
[ 1872110126,"Street Woman 6," , true],
|
|
[ 1754440500,"Tourist Woman 1," , true],
|
|
[ 761763258 ,"MODEL_F_Y_VILLBO_01," , true],
|
|
[-636579119 ,"Business Man 1," , true],
|
|
[-1754526315,"Business Man 2," , true],
|
|
[-1516474414,"Street Criminal 1," , true],
|
|
[-1821258883,"Street Criminal 2," , true],
|
|
[ 1952671026,"Obese Mafia Thug" , true],
|
|
[-1991603022,"Gay Man 1," , true],
|
|
[-1080673049,"Homeless Bum 1," , true],
|
|
[ 495499562 ,"Loony White Man 1," , true],
|
|
[-1984134881,"MODEL_M_M_MIDTOWN_01," , true],
|
|
[ 1063816580,"Business Man 2," , true],
|
|
[ 208763854 ,"Eastern European Man 1," , true],
|
|
[-1020237172,"Fat Black Man 2," , true],
|
|
[ 1782277836,"MODEL_M_M_PINDUS_02," , true],
|
|
[-1402442039,"Fat Italian Man 1," , true],
|
|
[-1628417063,"Italian Man 2," , true],
|
|
[ 1158569407,"Hispanic Man 1," , true],
|
|
[ 1969438324,"Hispanic Man 2," , true],
|
|
[ 1621955848,"Hispanic Man 3," , true],
|
|
[-657489059 ,"Tourist Man 1," , true],
|
|
[-1307068958,"Black Business Man 1," , true],
|
|
[ 734334931 ,"Asian Man 3," , true],
|
|
[ 1865082075,"MODEL_M_M_PRICH_01," , true],
|
|
[-432593815 ,"MODEL_M_O_EASTEURO_01," , true],
|
|
[-1639359785,"Hasidic Jewish Man 1," , true],
|
|
[ 1656087115,"Old Man 1," , true],
|
|
[ 2034185905,"MODEL_M_O_PEASTEURO_02," , true],
|
|
[ 1316404726,"MODEL_M_O_PHARBRON_01," , true],
|
|
[ 980990533 ,"MODEL_M_O_PJERSEY_01," , true],
|
|
[-1298691925,"MODEL_M_O_STREET_01," , true],
|
|
[ 243672348 ,"Old Business Man" , true],
|
|
[ 2085884255,"MODEL_M_Y_BOHO_01," , true],
|
|
[ 221246143 ,"MODEL_M_Y_BOHOGUY_01," , true],
|
|
[ 52357603 ,"MODEL_M_Y_BRONX_01," , true],
|
|
[ 1530937394,"Black Business Man 2," , true],
|
|
[ 690281432 ,"Black Business Man 3," , true],
|
|
[-1149743642,"Asian Man 4," , true],
|
|
[-314369597 ,"Chopshop Mechanic 1," , true],
|
|
[-552829610 ,"Chopshop Mechanic 2," , true],
|
|
[-1097188138,"MODEL_M_Y_DODGY_01," , true],
|
|
[-1775659292,"MODEL_M_Y_DORK_02," , true],
|
|
[ 1207402441,"MODEL_M_Y_DOWNTOWN_01," , true],
|
|
[ 1500619449,"MODEL_M_Y_DOWNTOWN_02," , true],
|
|
[ 594261682 ,"MODEL_M_Y_DOWNTOWN_03," , true],
|
|
[-747824291 ,"MODEL_M_Y_GAYYOUNG" , true],
|
|
[-677160979 ,"MODEL_M_Y_GENSTREET_11," , true],
|
|
[-1678614360,"MODEL_M_Y_GENSTREET_16," , true],
|
|
[ 989044076 ,"MODEL_M_Y_GENSTREET_20," , true],
|
|
[ 1180218190,"MODEL_M_Y_GENSTREET_34," , true],
|
|
[-1420592428,"MODEL_M_Y_HARDMAN_01," , true],
|
|
[-1222963415,"MODEL_M_Y_HARLEM_01," , true],
|
|
[-1746153269,"MODEL_M_Y_HARLEM_02," , true],
|
|
[ 2104499156,"MODEL_M_Y_HARLEM_04," , true],
|
|
[-1874580889,"Hasidic Jewish Man 2," , true],
|
|
[-1055386282,"MODEL_M_Y_LEASTSIDE_01," , true],
|
|
[ 575808580 ,"MODEL_M_Y_PBRONX_01," , true],
|
|
[-71980543 ,"MODEL_M_Y_PCOOL_01," , true],
|
|
[-195159218 ,"MODEL_M_Y_PCOOL_02," , true],
|
|
[ 697247370 ,"MODEL_M_Y_PEASTEURO_01," , true],
|
|
[ 670406267 ,"MODEL_M_Y_PHARBRON_01," , true],
|
|
[ 26615298 ,"MODEL_M_Y_PHARLEM_01," , true],
|
|
[ 1542927558,"MODEL_M_Y_PJERSEY_01," , true],
|
|
[-1806886352,"MODEL_M_Y_PLATIN_01," , true],
|
|
[-1022920796,"MODEL_M_Y_PLATIN_02," , true],
|
|
[-1326394505,"MODEL_M_Y_PLATIN_03," , true],
|
|
[ 607901190 ,"MODEL_M_Y_PMANHAT_01," , true],
|
|
[ 1968470106,"MODEL_M_Y_PMANHAT_02," , true],
|
|
[-344136289 ,"MODEL_M_Y_PORIENT_01," , true],
|
|
[ 560413584 ,"MODEL_M_Y_PQUEENS_01," , true],
|
|
[ 1352017873,"MODEL_M_Y_PRICH_01," , true],
|
|
[ 223726252 ,"MODEL_M_Y_PVILLBO_01," , true],
|
|
[-1252681043,"MODEL_M_Y_PVILLBO_02," , true],
|
|
[-1562020391,"MODEL_M_Y_PVILLBO_03," , true],
|
|
[ 1223224881,"MODEL_M_Y_QUEENSBRIDGE" , true],
|
|
[-1220737489,"MODEL_M_Y_SHADY_02," , true],
|
|
[ 1755322862,"MODEL_M_Y_SKATEBIKE_01," , true],
|
|
[ 386690478 ,"MODEL_M_Y_SOHO_01," , true],
|
|
[ 62496225 ,"MODEL_M_Y_STREET_01," , true],
|
|
[ 523785438 ,"MODEL_M_Y_STREET_03," , true],
|
|
[ 813889395 ,"MODEL_M_Y_STREET_04," , true],
|
|
[-1552214124,"MODEL_M_Y_STREETBLK_02," , true],
|
|
[-650575089 ,"MODEL_M_Y_STREETBLK_03," , true],
|
|
[-740078918 ,"Street Punk 1," , true],
|
|
[-1927496394,"Street Punk 2," , true],
|
|
[ 1374242512,"Street Punk 3," , true],
|
|
[-1139941790,"Tough Guy" , true],
|
|
[ 809067472 ,"Male Tourist" , true]
|
|
],
|
|
[VRR_GAME_MAFIA_ONE]: [
|
|
["Tommy.i3d" , "Tommy Angelo" , true ],
|
|
["TommyBOXER.i3d" , "Tommy Angelo" , true ],
|
|
["TommyCOAT.i3d" , "Tommy Angelo" , false],
|
|
["TommyCOATHAT.i3d" , "Tommy Angelo" , true ],
|
|
["TommyDELNIK.i3d" , "Tommy Angelo" , true ],
|
|
["TommyDELNIKHIGH.i3d" , "Tommy Angelo" , true ],
|
|
["TommyFREERIDER.i3d" , "Tommy Angelo" , true ],
|
|
["TommyGUN.i3d" , "Tommy Angelo" , true ],
|
|
["TommyHAT.i3d" , "Tommy Angelo" , true ],
|
|
["TommyHIGH.i3d" , "Tommy Angelo" , true ],
|
|
["TommyHIGHBLOOD.i3d" , "Tommy Angelo" , false],
|
|
["TommyHighCOATHAT.i3d" , "Tommy Angelo" , true ],
|
|
["TommyHighHAT.i3d" , "Tommy Angelo" , true ],
|
|
["TommyNAHAC.i3d" , "Tommy Angelo (Naked)" , false],
|
|
["TommyOLD.i3d" , "Tommy Angelo (Old)" , true ],
|
|
["TommyOLDBLOOD.i3d" , "Tommy Angelo (Old)" , false],
|
|
["TommyPYTEL.i3d" , "Tommy Angelo (With Bag)" , true ],
|
|
["TommyRACER.i3d" , "Tommy Angelo (Racer)" , true ],
|
|
["TommyRACER2.i3d" , "Tommy Angelo (Racer)" , true ],
|
|
["TommyRUKAV.i3d" , "Tommy Angelo (Suit)" , true ],
|
|
["TommySAILOR.i3d" , "Tommy Angelo (Sailor)" , true ],
|
|
["TommyTAXIDRIVER.i3d" , "Tommy Angelo (Taxi Driver)" , true ],
|
|
["TommyTAXIdriverHIGH.i3d" , "Tommy Angelo (Taxi Driver)" , true ],
|
|
["AsisPZ1.i3d" , "Generic Man" , true ],
|
|
["Barman01.i3d" , "Bartender" , true ],
|
|
["Bclerk01.i3d" , "Generic Man" , true ],
|
|
["Bclerk02.i3d" , "Generic Man" , true ],
|
|
["Bguard01.i3d" , "Bodyguard" , true ],
|
|
["Bguard01M.i3d" , "Bodyguard" , true ],
|
|
["Bguard02.i3d" , "Bodyguard" , true ],
|
|
["Bguard03.i3d" , "Bodyguard" , true ],
|
|
["Bguard03M.i3d" , "Bodyguard" , true ],
|
|
["Biff.i3d" , "Biff" , true ],
|
|
["BigDig.i3d" , "Generic Man" , true ],
|
|
["BnkO01.i3d" , "Security Guard" , false],
|
|
["BnkO02.i3d" , "Security Guard" , false],
|
|
["BnkO03.i3d" , "Security Guard" , false],
|
|
["BobAut01.i3d" , "Generic Man" , true ],
|
|
["Bookmaker01.i3d" , "Generic Man" , true ],
|
|
["Bookmaker02.i3d" , "Generic Man" , true ],
|
|
["Boxer01.i3d" , "Boxer" , true ],
|
|
["Boxer02.i3d" , "Boxer" , true ],
|
|
["Boxer03.i3d" , "Boxer" , true ],
|
|
["Boxer04.i3d" , "Boxer04" , false],
|
|
["Carlo.i3d" , "Carlo" , true ],
|
|
["China1.i3d" , "China1" , false],
|
|
["Chulig1.i3d" , "Generic Man" , true ],
|
|
["Chulig1b.i3d" , "Generic Man" , true ],
|
|
["David.i3d" , "David" , true ],
|
|
["Delnik01.i3d" , "Generic Man" , true ],
|
|
["Delnik02.i3d" , "Generic Man" , true ],
|
|
["Delnik03.i3d" , "Generic Man" , true ],
|
|
["Detektiv01.i3d" , "Detective" , false],
|
|
["Detektiv02.i3d" , "Detective" , false],
|
|
["Detektiv03.i3d" , "Detective" , false],
|
|
["Enemy01+.i3d" , "Generic Man" , true ],
|
|
["Enemy01.i3d" , "Generic Man" , true ],
|
|
["Enemy02+.i3d" , "Generic Man" , true ],
|
|
["Enemy02.i3d" , "Generic Man" , true ],
|
|
["Enemy03+.i3d" , "Generic Man" , true ],
|
|
["Enemy03.i3d" , "Generic Man" , true ],
|
|
["Enemy04.i3d" , "Generic Man" , true ],
|
|
["Enemy04BLOOD.i3d" , "Generic Man" , false],
|
|
["Enemy04K.i3d" , "Generic Man" , true ],
|
|
["Enemy05.i3d" , "Generic Man" , true ],
|
|
["Enemy06+.i3d" , "Generic Man" , true ],
|
|
["Enemy06.i3d" , "Generic Man" , true ],
|
|
["Enemy07+.i3d" , "Generic Man" , true ],
|
|
["Enemy07.i3d" , "Generic Man" , true ],
|
|
["Enemy08+.i3d" , "Generic Man" , true ],
|
|
["Enemy08.i3d" , "Generic Man" , true ],
|
|
["Enemy08K.i3d" , "Generic Man" , true ],
|
|
["Enemy09+.i3d" , "Generic Man" , true ],
|
|
["Enemy09.i3d" , "Generic Man" , true ],
|
|
["Enemy09K.i3d" , "Generic Man" , true ],
|
|
["Enemy10+.i3d" , "Generic Man" , true ],
|
|
["Enemy10.i3d" , "Generic Man" , true ],
|
|
["Enemy10K.i3d" , "Generic Man" , true ],
|
|
["Enemy11K.i3d" , "Generic Man" , true ],
|
|
["Enemy12.i3d" , "Generic Man" , true ],
|
|
["Enemy12K.i3d" , "Generic Man" , true ],
|
|
["Enemy13C.i3d" , "Generic Man" , true ],
|
|
["Enemy91.i3d" , "Generic Man" , true ],
|
|
["Enemy92.i3d" , "Generic Man" , true ],
|
|
["FMVENemy11K.i3d" , "Gangster" , true ],
|
|
["FREEgang01.i3d" , "Gangster" , true ],
|
|
["FREEgang02.i3d" , "Gangster" , true ],
|
|
["FrankHIGH.i3d" , "Frank" , true ],
|
|
["Friend1.i3d" , "Generic Man" , true ],
|
|
["Friend2.i3d" , "Generic Man" , true ],
|
|
["Gangster01.i3d" , "Generic Man" , true ],
|
|
["Gangster02.i3d" , "Generic Man" , true ],
|
|
["Gangster03.i3d" , "Generic Man" , true ],
|
|
["Gangster04.i3d" , "Generic Man" , true ],
|
|
["Gangster05.i3d" , "Generic Man" , true ],
|
|
["GodzMan1.i3d" , "Generic Man" , true ],
|
|
["Guard01.i3d" , "Bodyguard" , true ],
|
|
["Guard02.i3d" , "Bodyguard" , true ],
|
|
["Hasic01.i3d" , "Firefighter" , true ],
|
|
["HighCivil.i3d" , "Generic Man" , true ],
|
|
["HighCivilBLOOD.i3d" , "Generic Man" , false],
|
|
["Homeless01.i3d" , "Generic Man" , true ],
|
|
["Hoolig01.i3d" , "Generic Man" , true ],
|
|
["Hoolig02.i3d" , "Generic Man" , true ],
|
|
["Hoolig03.i3d" , "Generic Man" , true ],
|
|
["Hoolig04.i3d" , "Generic Man" , true ],
|
|
["Hoolig05.i3d" , "Generic Man" , true ],
|
|
["Hoolig06.i3d" , "Generic Man" , true ],
|
|
["I04Delnik01+.i3d" , "I04Delnik01+" , false],
|
|
["I04Delnik01.i3d" , "Generic Man" , true ],
|
|
["Joe.i3d" , "Joe" , true ],
|
|
["Kasar.i3d" , "Generic Man" , true ],
|
|
["Knez.i3d" , "Preacher" , true ],
|
|
["LifeG01.i3d" , "Sailor" , false],
|
|
["Lucas.i3d" , "Lucas" , true ],
|
|
["Luigi.i3d" , "Luigi" , true ],
|
|
["Malticka1.i3d" , "Generic Man" , true ],
|
|
["MorelloHIGH.i3d" , "Morello" , true ],
|
|
["MorelloLOW.i3d" , "Morello" , true ],
|
|
["NormanHIGH.i3d" , "Norman" , true ],
|
|
["Organizator01.i3d" , "Generic Man" , true ],
|
|
["Paulie.i3d" , "Paulie" , true ],
|
|
["PaulieCOATHAT.i3d" , "Paulie" , true ],
|
|
["PaulieCTHIGH.i3d" , "Paulie" , true ],
|
|
["PaulieCorpse.i3d" , "Paulie" , false],
|
|
["PaulieHIGH.i3d" , "Paulie" , true ],
|
|
["Pepe.i3d" , "Pepe" , true ],
|
|
["PoliceMan01.i3d" , "Police Officer" , false],
|
|
["PoliceMan02.i3d" , "Police Officer" , false],
|
|
["Politik.i3d" , "Generic Man" , true ],
|
|
["PortGuard01.i3d" , "Port Guard" , false],
|
|
["PortGuard02.i3d" , "Port Guard" , false],
|
|
["ProdZ1.i3d" , "Generic Man" , true ],
|
|
["Prokur.i3d" , "Prosecutor" , true ],
|
|
["Radni01.i3d" , "Worker" , true ],
|
|
["Radni02.i3d" , "Worker" , true ],
|
|
["Ralph.i3d" , "Ralph" , true ],
|
|
["RalphHIGH.i3d" , "Ralph" , true ],
|
|
["ReditelB.i3d" , "Director" , true ],
|
|
["ReditelH.i3d" , "Director" , true ],
|
|
["RidicNakladaku.i3d" , "Truck Driver" , false],
|
|
["SalMan01K.i3d" , "Gangster" , true ],
|
|
["SalMan02K.i3d" , "Gangster" , true ],
|
|
["SalMan03.i3d" , "Gangster" , true ],
|
|
["SalMan03K.i3d" , "Gangster" , true ],
|
|
["SalMan04.i3d" , "Gangster" , true ],
|
|
["SalMan05.i3d" , "Gangster" , true ],
|
|
["SalMan05K.i3d" , "Salieri" , true ],
|
|
["Salieri2.i3d" , "Salieri" , true ],
|
|
["SalieriHIGH.i3d" , "Salieri" , true ],
|
|
["SalieriHIGH2.i3d" , "Salieri" , true ],
|
|
["SalieriLOW.i3d" , "Salieri" , true ],
|
|
["Sam.i3d" , "Sam" , true ],
|
|
["SamCOATHAT.i3d" , "Sam" , true ],
|
|
["SamHIGH.i3d" , "Sam" , true ],
|
|
["SamHIGHblood1.i3d" , "SamHIGHblood1" , false],
|
|
["SamHIGHblood2.i3d" , "SamHIGHblood2" , false],
|
|
["SamHIGHblood3.i3d" , "SamHIGHblood3" , false],
|
|
["SamHIGHblood4.i3d" , "SamHIGHblood4" , false],
|
|
["Samblood1.i3d" , "Samblood1" , false],
|
|
["Sergio.i3d" , "Sergio" , true ],
|
|
["SergioBLOOD.i3d" , "SergioBLOOD" , false],
|
|
["SynRad1.i3d" , "Generic Man" , true ],
|
|
["SynRad1BLOOD.i3d" , "SynRad1BLOOD" , false],
|
|
["SynRad1DEAD.i3d" , "SynRad1DEAD" , false],
|
|
["Tony.i3d" , "Tony" , true ],
|
|
["VincenzoHIGH.i3d" , "Vincenzo" , true ],
|
|
["VincenzoLOW.i3d" , "Vincenzo" , true ],
|
|
["Vrabec.i3d" , "Generic Man" , true ],
|
|
["Vratny1.i3d" , "Generic Man" , true ],
|
|
["Vypravci.i3d" , "Train Conductor" , false],
|
|
["Vypravci2.i3d" , "Train Conductor" , false],
|
|
["WillG1.i3d" , "Generic Man" , true ],
|
|
["WillG2.i3d" , "Generic Man" , true ],
|
|
["WillMan01.i3d" , "Generic Man" , true ],
|
|
["WillMan02.i3d" , "Generic Man" , true ],
|
|
["Zavod1.i3d" , "Racer" , true ],
|
|
["Zavod2.i3d" , "Racer" , true ],
|
|
["Zavod3.i3d" , "Racer" , true ],
|
|
["ZavodFMV1.i3d" , "Racer" , true ],
|
|
["ZavodFMV2.i3d" , "Racer" , true ],
|
|
["civil02.i3d" , "Generic Man" , true ],
|
|
["civil03.i3d" , "Generic Man" , true ],
|
|
["civil04.i3d" , "Generic Man" , true ],
|
|
["civil05.i3d" , "Generic Man" , true ],
|
|
["civil06.i3d" , "Generic Man" , true ],
|
|
["civil11.i3d" , "Generic Man" , true ],
|
|
["civil11M.i3d" , "Generic Man" , true ],
|
|
["civil12.i3d" , "Generic Man" , true ],
|
|
["civil13.i3d" , "Generic Man" , true ],
|
|
["civil14.i3d" , "Generic Man" , true ],
|
|
["civil15.i3d" , "Generic Man" , true ],
|
|
["civil16.i3d" , "Generic Man" , true ],
|
|
["civil16M.i3d" , "Generic Man" , true ],
|
|
["civil17.i3d" , "Generic Man" , true ],
|
|
["civil18.i3d" , "Generic Man" , true ],
|
|
["civil19.i3d" , "Generic Man" , true ],
|
|
["civil19M.i3d" , "Generic Man" , true ],
|
|
["civil21.i3d" , "Generic Man" , true ],
|
|
["civil21N.i3d" , "Generic Man" , true ],
|
|
["civil22.i3d" , "Generic Man" , true ],
|
|
["civil31.i3d" , "Generic Man" , true ],
|
|
["civil32.i3d" , "Generic Man" , true ],
|
|
["civil33.i3d" , "Generic Man" , true ],
|
|
["civil34.i3d" , "Generic Man" , true ],
|
|
["civil35.i3d" , "Generic Man" , true ],
|
|
["civil36.i3d" , "Generic Man" , true ],
|
|
["civil36M.i3d" , "Generic Man" , true ],
|
|
["civil37.i3d" , "Generic Man" , true ],
|
|
["civil38.i3d" , "Generic Man" , true ],
|
|
["civil39.i3d" , "Generic Man" , true ],
|
|
["civil40.i3d" , "Generic Man" , true ],
|
|
["civil41.i3d" , "Generic Man" , true ],
|
|
["civil42.i3d" , "Generic Man" , true ],
|
|
["civil42M.i3d" , "Generic Man" , true ],
|
|
["civil43.i3d" , "Generic Man" , true ],
|
|
["civil44.i3d" , "Generic Man" , true ],
|
|
["civil51.i3d" , "Generic Man" , true ],
|
|
["civil51M.i3d" , "Generic Man" , true ],
|
|
["civil52.i3d" , "Generic Man" , true ],
|
|
["civil53.i3d" , "Generic Man" , true ],
|
|
["civil54.i3d" , "Generic Man" , true ],
|
|
["civil54M.i3d" , "Generic Man" , true ],
|
|
["civil55.i3d" , "Generic Man" , true ],
|
|
["civil55M.i3d" , "Generic Man" , true ],
|
|
["civil56.i3d" , "Generic Man" , true ],
|
|
["civil56M.i3d" , "Generic Man" , true ],
|
|
["civil57.i3d" , "Generic Man" , true ],
|
|
["civil57M.i3d" , "Generic Man" , true ],
|
|
["civil60.i3d" , "Generic Man" , true ],
|
|
["civil61.i3d" , "Generic Man" , true ],
|
|
["civil62.i3d" , "Generic Man" , true ],
|
|
["civil63.i3d" , "Generic Man" , true ],
|
|
["civil70.i3d" , "Generic Man" , true ],
|
|
["civil70M.i3d" , "Generic Man" , true ],
|
|
["civil71.i3d" , "Generic Man" , true ],
|
|
["civil72.i3d" , "Generic Man" , true ],
|
|
["frank.i3d" , "frank" , true ],
|
|
["ohorelec01.i3d" , "Dead Guy" , false],
|
|
["pianist1.i3d" , "Pianist" , true ],
|
|
["pol01.i3d" , "Police Officer" , false],
|
|
["pol02.i3d" , "Police Officer" , false],
|
|
["pol03.i3d" , "Police Officer" , false],
|
|
["pol11.i3d" , "Police Officer" , false],
|
|
["pol12.i3d" , "Police Officer" , false],
|
|
["pol13.i3d" , "Police Officer" , false],
|
|
["polim62.i3d" , "Police Officer" , false],
|
|
["pumpar01.i3d" , "Fuel Pumper" , true ],
|
|
["recep.i3d" , "recep" , true ],
|
|
["sailor01.i3d" , "Sailor" , false],
|
|
["sailor01M.i3d" , "Sailor" , false],
|
|
["sailor02.i3d" , "Sailor" , false],
|
|
["sailor02M.i3d" , "Sailor" , false],
|
|
["sailor03.i3d" , "Sailor" , false],
|
|
["waiter01.i3d" , "Waiter" , true ],
|
|
["waiter01M.i3d" , "Waiter" , true ],
|
|
["waiter02.i3d" , "Waiter" , true ],
|
|
["waiter02M.i3d" , "Waiter" , true ],
|
|
["waiter03.i3d" , "Waiter" , true ],
|
|
["Alice1.i3d" , "Alice" , true ],
|
|
["Berta.i3d" , "Berta" , true ],
|
|
["Bitch01.i3d" , "Generic Woman" , true ],
|
|
["Bitch02.i3d" , "Generic Woman" , true ],
|
|
["Bitch02Mask.i3d" , "Generic Woman" , true ],
|
|
["Bitch03M.i3d" , "Generic Woman" , true ],
|
|
["CarlZen1.i3d" , "CarlZen1" , true ],
|
|
["Czena01.i3d" , "Generic Woman" , true ],
|
|
["Czena02.i3d" , "Generic Woman" , true ],
|
|
["Czena03.i3d" , "Generic Woman" , true ],
|
|
["Czena04.i3d" , "Generic Woman" , true ],
|
|
["Czena05.i3d" , "Generic Woman" , true ],
|
|
["Czena06.i3d" , "Generic Woman" , true ],
|
|
["Czena07.i3d" , "Generic Woman" , true ],
|
|
["Czena07M.i3d" , "Generic Woman" , true ],
|
|
["Czena08.i3d" , "Generic Woman" , true ],
|
|
["Czena09.i3d" , "Generic Woman" , true ],
|
|
["Czena09M.i3d" , "Generic Woman" , true ],
|
|
["Czena10.i3d" , "Generic Woman" , true ],
|
|
["Czena10M.i3d" , "Generic Woman" , true ],
|
|
["Czena11.i3d" , "Generic Woman" , true ],
|
|
["Czena11M.i3d" , "Generic Woman" , true ],
|
|
["Czena12.i3d" , "Generic Woman" , true ],
|
|
["Czena13.i3d" , "Generic Woman" , true ],
|
|
["FMVCzena03.i3d" , "Generic Woman" , true ],
|
|
["FMVCzena04.i3d" , "Generic Woman" , true ],
|
|
["March1.i3d" , "Generic Woman" , true ],
|
|
["Michelle.i3d" , "Michelle Naked" , false],
|
|
["MichelleLOW.i3d" , "Michelle" , true ],
|
|
["Milenka1.i3d" , "Milenka" , true ],
|
|
["Sarah1.i3d" , "Sarah Naked" , false],
|
|
["Sarah1Obl.i3d" , "Sarah" , true ],
|
|
["Sarah2.i3d" , "Sarah" , true ],
|
|
["Sarah2HIGH.i3d" , "Sarah" , true ],
|
|
["Sarah2HIGHnaha.i3d" , "Sarah Naked" , false],
|
|
["Sarah2LOW.i3d" , "Sarah" , true ],
|
|
["Serv01.i3d" , "Maid" , true ],
|
|
],
|
|
[VRR_GAME_GTA_V]: [
|
|
["a_c_boar", 0xCE5FF074, false],
|
|
["a_c_cat_01", 0x573201B8, false],
|
|
["a_c_chickenhawk", 0xAAB71F62, false],
|
|
["a_c_chimp", 0xA8683715, false],
|
|
["a_c_chop", 0x14EC17EA, false],
|
|
["a_c_cormorant", 0x56E29962, false],
|
|
["a_c_cow", 0xFCFA9E1E, false],
|
|
["a_c_coyote", 0x644AC75E, false],
|
|
["a_c_crow", 0x18012A9F, false],
|
|
["a_c_deer", 0xD86B5A95, false],
|
|
["a_c_dolphin", 0x8BBAB455, false],
|
|
["a_c_fish", 0x2FD800B7, false],
|
|
["a_c_hen", 0x6AF51FAF, false],
|
|
["a_c_humpback", 0x471BE4B2, false],
|
|
["a_c_husky", 0x4E8F95A2, false],
|
|
["a_c_killerwhale", 0x8D8AC8B9, false],
|
|
["a_c_mtlion", 0x1250D7BA, false],
|
|
["a_c_pig", 0xB11BAB56, false],
|
|
["a_c_pigeon", 0x06A20728, false],
|
|
["a_c_poodle", 0x431D501C, false],
|
|
["a_c_pug", 0x6D362854, false],
|
|
["a_c_rabbit_01", 0xDFB55C81, false],
|
|
["a_c_rat", 0xC3B52966, false],
|
|
["a_c_retriever", 0x349F33E1, false],
|
|
["a_c_rhesus", 0xC2D06F53, false],
|
|
["a_c_rottweiler", 0x9563221D, false],
|
|
["a_c_seagull", 0xD3939DFD, false],
|
|
["a_c_sharkhammer", 0x3C831724, false],
|
|
["a_c_sharktiger", 0x06C3F072, false],
|
|
["a_c_shepherd", 0x431FC24C, false],
|
|
["a_c_stingray", 0xA148614D, false],
|
|
["a_c_westy", 0xAD7844BB, false],
|
|
["a_f_m_beach_01", 0x303638A7, true],
|
|
["a_f_m_bevhills_01", 0xBE086EFD, true],
|
|
["a_f_m_bevhills_02", 0xA039335F, true],
|
|
["a_f_m_bodybuild_01", 0x3BD99114, true],
|
|
["a_f_m_business_02", 0x1FC37DBC, true],
|
|
["a_f_m_downtown_01", 0x654AD86E, true],
|
|
["a_f_m_eastsa_01", 0x9D3DCB7A, true],
|
|
["a_f_m_eastsa_02", 0x63C8D891, true],
|
|
["a_f_m_fatbla_01", 0xFAB48BCB, true],
|
|
["a_f_m_fatcult_01", 0xB5CF80E4, true],
|
|
["a_f_m_fatwhite_01", 0x38BAD33B, true],
|
|
["a_f_m_ktown_01", 0x52C824DE, true],
|
|
["a_f_m_ktown_02", 0x41018151, true],
|
|
["a_f_m_prolhost_01", 0x169BD1E1, true],
|
|
["a_f_m_salton_01", 0xDE0E0969, true],
|
|
["a_f_m_skidrow_01", 0xB097523B, true],
|
|
["a_f_m_soucent_01", 0x745855A1, true],
|
|
["a_f_m_soucent_02", 0xF322D338, true],
|
|
["a_f_m_soucentmc_01", 0xCDE955D2, true],
|
|
["a_f_m_tourist_01", 0x505603B9, true],
|
|
["a_f_m_tramp_01", 0x48F96F5B, true],
|
|
["a_f_m_trampbeac_01", 0x8CA0C266, true],
|
|
["a_f_o_genstreet_01", 0x61C81C85, true],
|
|
["a_f_o_indian_01", 0xBAD7BB80, true],
|
|
["a_f_o_ktown_01", 0x47CF5E96, true],
|
|
["a_f_o_salton_01", 0xCCFF7D8A, true],
|
|
["a_f_o_soucent_01", 0x3DFA1830, true],
|
|
["a_f_o_soucent_02", 0xA56DE716, true],
|
|
["a_f_y_beach_01", 0xC79F6928, true],
|
|
["a_f_y_bevhills_01", 0x445AC854, true],
|
|
["a_f_y_bevhills_02", 0x5C2CF7F8, true],
|
|
["a_f_y_bevhills_03", 0x20C8012F, true],
|
|
["a_f_y_bevhills_04", 0x36DF2D5D, true],
|
|
["a_f_y_business_01", 0x2799EFD8, true],
|
|
["a_f_y_business_02", 0x31430342, true],
|
|
["a_f_y_business_03", 0xAE86FDB4, true],
|
|
["a_f_y_business_04", 0xB7C61032, true],
|
|
["a_f_y_eastsa_01", 0xF5B0079D, true],
|
|
["a_f_y_eastsa_02", 0x0438A4AE, true],
|
|
["a_f_y_eastsa_03", 0x51C03FA4, true],
|
|
["a_f_y_epsilon_01", 0x689C2A80, true],
|
|
["a_f_y_femaleagent", 0x50610C43, false],
|
|
["a_f_y_fitness_01", 0x457C64FB, true],
|
|
["a_f_y_fitness_02", 0x13C4818C, true],
|
|
["a_f_y_genhot_01", 0x2F4AEC3E, true],
|
|
["a_f_y_golfer_01", 0x7DD8FB58, true],
|
|
["a_f_y_hiker_01", 0x30830813, true],
|
|
["a_f_y_hippie_01", 0x1475B827, true],
|
|
["a_f_y_hipster_01", 0x8247D331, true],
|
|
["a_f_y_hipster_02", 0x97F5FE8D, true],
|
|
["a_f_y_hipster_03", 0xA5BA9A16, true],
|
|
["a_f_y_hipster_04", 0x199881DC, true],
|
|
["a_f_y_indian_01", 0x092D9CC1, true],
|
|
["a_f_y_juggalo_01", 0xDB134533, true],
|
|
["a_f_y_runner_01", 0xC7496729, true],
|
|
["a_f_y_rurmeth_01", 0x3F789426, true],
|
|
["a_f_y_scdressy_01", 0xDB5EC400, true],
|
|
["a_f_y_skater_01", 0x695FE666, true],
|
|
["a_f_y_soucent_01", 0x2C641D7A, true],
|
|
["a_f_y_soucent_02", 0x5A8EF9CF, true],
|
|
["a_f_y_soucent_03", 0x87B25415, true],
|
|
["a_f_y_tennis_01", 0x550C79C6, true],
|
|
["a_f_y_topless_01", 0x9CF26183, true],
|
|
["a_f_y_tourist_01", 0x563B8570, true],
|
|
["a_f_y_tourist_02", 0x9123FB40, true],
|
|
["a_f_y_vinewood_01", 0x19F41F65, true],
|
|
["a_f_y_vinewood_02", 0xDAB6A0EB, true],
|
|
["a_f_y_vinewood_03", 0x379DDAB8, true],
|
|
["a_f_y_vinewood_04", 0xFAE46146, true],
|
|
["a_f_y_yoga_01", 0xC41B062E, true],
|
|
["a_m_m_acult_01", 0x5442C66B, true],
|
|
["a_m_m_afriamer_01", 0xD172497E, true],
|
|
["a_m_m_beach_01", 0x403DB4FD, true],
|
|
["a_m_m_beach_02", 0x787FA588, true],
|
|
["a_m_m_bevhills_01", 0x54DBEE1F, true],
|
|
["a_m_m_bevhills_02", 0x3FB5C3D3, true],
|
|
["a_m_m_business_01", 0x7E6A64B7, true],
|
|
["a_m_m_eastsa_01", 0xF9A6F53F, true],
|
|
["a_m_m_eastsa_02", 0x07DD91AC, true],
|
|
["a_m_m_farmer_01", 0x94562DD7, true],
|
|
["a_m_m_fatlatin_01", 0x61D201B3, true],
|
|
["a_m_m_genfat_01", 0x06DD569F, true],
|
|
["a_m_m_genfat_02", 0x13AEF042, true],
|
|
["a_m_m_golfer_01", 0xA9EB0E42, true],
|
|
["a_m_m_hasjew_01", 0x6BD9B68C, true],
|
|
["a_m_m_hillbilly_01", 0x6C9B2849, true],
|
|
["a_m_m_hillbilly_02", 0x7B0E452F, true],
|
|
["a_m_m_indian_01", 0xDDCAAA2C, true],
|
|
["a_m_m_ktown_01", 0xD15D7E71, true],
|
|
["a_m_m_malibu_01", 0x2FDE6EB7, true],
|
|
["a_m_m_mexcntry_01", 0xDD817EAD, true],
|
|
["a_m_m_mexlabor_01", 0xB25D16B2, true],
|
|
["a_m_m_og_boss_01", 0x681BD012, true],
|
|
["a_m_m_paparazzi_01", 0xECCA8C15, true],
|
|
["a_m_m_polynesian_01", 0xA9D9B69E, true],
|
|
["a_m_m_prolhost_01", 0x9712C38F, true],
|
|
["a_m_m_rurmeth_01", 0x3BAD4184, true],
|
|
["a_m_m_salton_01", 0x4F2E038A, true],
|
|
["a_m_m_salton_02", 0x60F4A717, true],
|
|
["a_m_m_salton_03", 0xB28C4A45, true],
|
|
["a_m_m_salton_04", 0x964511B7, true],
|
|
["a_m_m_skater_01", 0xD9D7588C, true],
|
|
["a_m_m_skidrow_01", 0x01EEA6BD, true],
|
|
["a_m_m_socenlat_01", 0x0B8D69E3, true],
|
|
["a_m_m_soucent_01", 0x6857C9B7, true],
|
|
["a_m_m_soucent_02", 0x9F6D37E1, true],
|
|
["a_m_m_soucent_03", 0x8BD990BA, true],
|
|
["a_m_m_soucent_04", 0xC2FBFEFE, true],
|
|
["a_m_m_stlat_02", 0xC2A87702, true],
|
|
["a_m_m_tennis_01", 0x546A5344, true],
|
|
["a_m_m_tourist_01", 0xC89F0184, true],
|
|
["a_m_m_tramp_01", 0x1EC93FD0, true],
|
|
["a_m_m_trampbeac_01", 0x53B57EB0, true],
|
|
["a_m_m_tranvest_01", 0xE0E69974, true],
|
|
["a_m_m_tranvest_02", 0xF70EC5C4, true],
|
|
["a_m_o_acult_01", 0x55446010, true],
|
|
["a_m_o_acult_02", 0x4BA14CCA, true],
|
|
["a_m_o_beach_01", 0x8427D398, true],
|
|
["a_m_o_genstreet_01", 0xAD54E7A8, true],
|
|
["a_m_o_ktown_01", 0x1536D95A, true],
|
|
["a_m_o_salton_01", 0x20208E4D, true],
|
|
["a_m_o_soucent_01", 0x2AD8921B, true],
|
|
["a_m_o_soucent_02", 0x4086BD77, true],
|
|
["a_m_o_soucent_03", 0x0E32D8D0, true],
|
|
["a_m_o_tramp_01", 0x174D4245, true],
|
|
["a_m_y_acult_01", 0xB564882B, true],
|
|
["a_m_y_acult_02", 0x80E59F2E, true],
|
|
["a_m_y_beach_01", 0xD1FEB884, true],
|
|
["a_m_y_beach_02", 0x23C7DC11, true],
|
|
["a_m_y_beach_03", 0xE7A963D9, true],
|
|
["a_m_y_beachvesp_01", 0x7E0961B8, true],
|
|
["a_m_y_beachvesp_02", 0xCA56FA52, true],
|
|
["a_m_y_bevhills_01", 0x76284640, true],
|
|
["a_m_y_bevhills_02", 0x668BA707, true],
|
|
["a_m_y_breakdance_01", 0x379F9596, true],
|
|
["a_m_y_busicas_01", 0x9AD32FE9, true],
|
|
["a_m_y_business_01", 0xC99F21C4, true],
|
|
["a_m_y_business_02", 0xB3B3F5E6, true],
|
|
["a_m_y_business_03", 0xA1435105, true],
|
|
["a_m_y_cyclist_01", 0xFDC653C7, true],
|
|
["a_m_y_dhill_01", 0xFF3E88AB, true],
|
|
["a_m_y_downtown_01", 0x2DADF4AA, true],
|
|
["a_m_y_eastsa_01", 0xA4471173, true],
|
|
["a_m_y_eastsa_02", 0x168775F6, true],
|
|
["a_m_y_epsilon_01", 0x77D41A3E, true],
|
|
["a_m_y_epsilon_02", 0xAA82FF9B, true],
|
|
["a_m_y_gay_01", 0xD1CCE036, true],
|
|
["a_m_y_gay_02", 0xA5720781, true],
|
|
["a_m_y_genstreet_01", 0x9877EF71, true],
|
|
["a_m_y_genstreet_02", 0x3521A8D2, true],
|
|
["a_m_y_golfer_01", 0xD71FE131, true],
|
|
["a_m_y_hasjew_01", 0xE16D8F01, true],
|
|
["a_m_y_hiker_01", 0x50F73C0C, true],
|
|
["a_m_y_hippy_01", 0x7D03E617, true],
|
|
["a_m_y_hipster_01", 0x2307A353, true],
|
|
["a_m_y_hipster_02", 0x14D506EE, true],
|
|
["a_m_y_hipster_03", 0x4E4179C6, true],
|
|
["a_m_y_indian_01", 0x2A22FBCE, true],
|
|
["a_m_y_jetski_01", 0x2DB7EEF3, true],
|
|
["a_m_y_juggalo_01", 0x91CA3E2C, true],
|
|
["a_m_y_ktown_01", 0x1AF6542C, true],
|
|
["a_m_y_ktown_02", 0x297FF13F, true],
|
|
["a_m_y_latino_01", 0x132C1A8E, true],
|
|
["a_m_y_methhead_01", 0x696BE0A9, true],
|
|
["a_m_y_mexthug_01", 0x3053E555, true],
|
|
["a_m_y_motox_01", 0x64FDEA7D, true],
|
|
["a_m_y_motox_02", 0x77AC8FDA, true],
|
|
["a_m_y_musclbeac_01", 0x4B652906, true],
|
|
["a_m_y_musclbeac_02", 0xC923247C, true],
|
|
["a_m_y_polynesian_01", 0x8384FC9F, true],
|
|
["a_m_y_roadcyc_01", 0xF561A4C6, true],
|
|
["a_m_y_runner_01", 0x25305EEE, true],
|
|
["a_m_y_runner_02", 0x843D9D0F, true],
|
|
["a_m_y_salton_01", 0xD7606C30, true],
|
|
["a_m_y_skater_01", 0xC1C46677, true],
|
|
["a_m_y_skater_02", 0xAFFAC2E4, true],
|
|
["a_m_y_soucent_01", 0xE716BDCB, true],
|
|
["a_m_y_soucent_02", 0xACA3C8CA, true],
|
|
["a_m_y_soucent_03", 0xC3F0F764, true],
|
|
["a_m_y_soucent_04", 0x8A3703F1, true],
|
|
["a_m_y_stbla_01", 0xCF92ADE9, true],
|
|
["a_m_y_stbla_02", 0x98C7404F, true],
|
|
["a_m_y_stlat_01", 0x8674D5FC, true],
|
|
["a_m_y_stwhi_01", 0x2418C430, true],
|
|
["a_m_y_stwhi_02", 0x36C6E98C, true],
|
|
["a_m_y_sunbathe_01", 0xB7292F0C, true],
|
|
["a_m_y_surfer_01", 0xEAC2C7EE, true],
|
|
["a_m_y_vindouche_01", 0xC19377E7, true],
|
|
["a_m_y_vinewood_01", 0x4B64199D, true],
|
|
["a_m_y_vinewood_02", 0x5D15BD00, true],
|
|
["a_m_y_vinewood_03", 0x1FDF4294, true],
|
|
["a_m_y_vinewood_04", 0x31C9E669, true],
|
|
["a_m_y_yoga_01", 0xAB0A7155, true],
|
|
["cs_amandatownley", 0x95EF18E3, true],
|
|
["cs_andreas", 0xE7565327, true],
|
|
["cs_ashley", 0x26C3D079, true],
|
|
["cs_bankman", 0x9760192E, true],
|
|
["cs_barry", 0x69591CF7, true],
|
|
["cs_beverly", 0xB46EC356, true],
|
|
["cs_brad", 0xEFE5AFE6, true],
|
|
["cs_bradcadaver", 0x7228AF60, true],
|
|
["cs_carbuyer", 0x8CCE790F, true],
|
|
["cs_casey", 0xEA969C40, true],
|
|
["cs_chengsr", 0x30DB9D7B, true],
|
|
["cs_chrisformage", 0xC1F380E6, true],
|
|
["cs_clay", 0xDBCB9834, true],
|
|
["cs_dale", 0x0CE81655, true],
|
|
["cs_davenorton", 0x8587248C, true],
|
|
["cs_debra", 0xECD04FE9, true],
|
|
["cs_denise", 0x6F802738, true],
|
|
["cs_devin", 0x2F016D02, true],
|
|
["cs_dom", 0x4772AF42, true],
|
|
["cs_dreyfuss", 0x3C60A153, true],
|
|
["cs_drfriedlander", 0xA3A35C2F, true],
|
|
["cs_fabien", 0x47035EC1, true],
|
|
["cs_fbisuit_01", 0x585C0B52, true],
|
|
["cs_floyd", 0x062547E7, true],
|
|
["cs_guadalope", 0x0F9513F1, true],
|
|
["cs_gurk", 0xC314F727, true],
|
|
["cs_hunter", 0x5B44892C, true],
|
|
["cs_janet", 0x3034F9E2, true],
|
|
["cs_jewelass", 0x4440A804, true],
|
|
["cs_jimmyboston", 0x039677BD, true],
|
|
["cs_jimmydisanto", 0xB8CC92B4, true],
|
|
["cs_joeminuteman", 0xF09D5E29, true],
|
|
["cs_johnnyklebitz", 0xFA8AB881, true],
|
|
["cs_josef", 0x459762CA, true],
|
|
["cs_josh", 0x450EEF9D, true],
|
|
["cs_karen_daniels", 0x4BAF381C, true],
|
|
["cs_lamardavis", 0x45463A0D, true],
|
|
["cs_lazlow", 0x38951A1B, true],
|
|
["cs_lestercrest", 0xB594F5C3, true],
|
|
["cs_lifeinvad_01", 0x72551375, true],
|
|
["cs_magenta", 0x5816C61A, true],
|
|
["cs_manuel", 0xFBB374CA, true],
|
|
["cs_marnie", 0x574DE134, true],
|
|
["cs_martinmadrazo", 0x43595670, true],
|
|
["cs_maryann", 0x0998C7AD, true],
|
|
["cs_michelle", 0x70AEB9C8, true],
|
|
["cs_milton", 0xB76A330F, true],
|
|
["cs_molly", 0x45918E44, true],
|
|
["cs_movpremf_01", 0x4BBA84D9, true],
|
|
["cs_movpremmale", 0x8D67EE7D, true],
|
|
["cs_mrk", 0xC3CC9A75, true],
|
|
["cs_mrs_thornhill", 0x4F921E6E, true],
|
|
["cs_mrsphillips", 0xCBFDA3CF, true],
|
|
["cs_natalia", 0x4EFEB1F0, true],
|
|
["cs_nervousron", 0x7896DA94, true],
|
|
["cs_nigel", 0xE1479C0B, true],
|
|
["cs_old_man1a", 0x1EEC7BDC, true],
|
|
["cs_old_man2", 0x98F9E770, true],
|
|
["cs_omega", 0x8B70B405, true],
|
|
["cs_orleans", 0xAD340F5A, true],
|
|
["cs_paper", 0x6B38B8F8, true],
|
|
["cs_patricia", 0xDF8B1301, true],
|
|
["cs_priest", 0x4D6DE57E, true],
|
|
["cs_prolsec_02", 0x1E9314A2, true],
|
|
["cs_russiandrunk", 0x46521A32, true],
|
|
["cs_siemonyetarian", 0xC0937202, true],
|
|
["cs_solomon", 0xF6D1E04E, true],
|
|
["cs_stevehains", 0xA4E0A1FE, true],
|
|
["cs_stretch", 0x893D6805, true],
|
|
["cs_tanisha", 0x42FE5370, true],
|
|
["cs_taocheng", 0x8864083D, true],
|
|
["cs_taostranslator", 0x53536529, true],
|
|
["cs_tenniscoach", 0x5C26040A, true],
|
|
["cs_terry", 0x3A5201C5, true],
|
|
["cs_tom", 0x69E8ABC3, true],
|
|
["cs_tomepsilon", 0x8C0FD4E2, true],
|
|
["cs_tracydisanto", 0x0609B130, true],
|
|
["cs_wade", 0xD266D9D6, true],
|
|
["cs_zimbor", 0xEAACAAF0, true],
|
|
["csb_abigail", 0x89768941, true],
|
|
["csb_agent", 0xD770C9B4, false],
|
|
["csb_anita", 0x0703F106, true],
|
|
["csb_anton", 0xA5C787B6, true],
|
|
["csb_ballasog", 0xABEF0004, true],
|
|
["csb_bride", 0x82BF7EA1, true],
|
|
["csb_burgerdrug", 0x8CDCC057, true],
|
|
["csb_car3guy1", 0x04430687, true],
|
|
["csb_car3guy2", 0x1383A508, true],
|
|
["csb_chef", 0xA347CA8A, true],
|
|
["csb_chef2", 0xAE5BE23A, true],
|
|
["csb_chin_goon", 0xA8C22996, true],
|
|
["csb_cletus", 0xCAE9E5D5, true],
|
|
["csb_cop", 0x9AB35F63, false],
|
|
["csb_customer", 0xA44F6F8B, true],
|
|
["csb_denise_friend", 0xB58D2529, true],
|
|
["csb_fos_rep", 0x1BCC157B, true],
|
|
["csb_g", 0xA28E71D7, true],
|
|
["csb_groom", 0x7AAB19D2, true],
|
|
["csb_grove_str_dlr", 0xE8594E22, true],
|
|
["csb_hao", 0xEC9E8F1C, true],
|
|
["csb_hugh", 0x6F139B54, true],
|
|
["csb_imran", 0xE3420BDB, true],
|
|
["csb_jackhowitzer", 0x44BC7BB1, true],
|
|
["csb_janitor", 0xC2005A40, true],
|
|
["csb_maude", 0xBCC475CB, true],
|
|
["csb_money", 0x989DFD9A, true],
|
|
["csb_mp_agent14", 0x6DBBFC8B, false],
|
|
["csb_mweather", 0x613E626C, true],
|
|
["csb_ortega", 0xC0DB04CF, true],
|
|
["csb_oscar", 0xF41F399B, true],
|
|
["csb_paige", 0x5B1FA0C3, true],
|
|
["csb_popov", 0x617D89E2, true],
|
|
["csb_porndudes", 0x2F4AFE35, true],
|
|
["csb_prologuedriver", 0xF00B49DB, true],
|
|
["csb_prolsec", 0x7FA2F024, true],
|
|
["csb_ramp_gang", 0xC2800DBE, true],
|
|
["csb_ramp_hic", 0x858C94B8, true],
|
|
["csb_ramp_hipster", 0x21F58BB4, true],
|
|
["csb_ramp_marine", 0x616C97B9, true],
|
|
["csb_ramp_mex", 0xF64ED7D0, true],
|
|
["csb_rashcosvki", 0x188099A9, true],
|
|
["csb_reporter", 0x2E420A24, true],
|
|
["csb_roccopelosi", 0xAA64168C, true],
|
|
["csb_screen_writer", 0x8BE12CEC, true],
|
|
["csb_stripper_01", 0xAEEA76B5, true],
|
|
["csb_stripper_02", 0x81441B71, true],
|
|
["csb_tonya", 0x6343DD19, true],
|
|
["csb_trafficwarden", 0xDE2937F3, false],
|
|
["csb_undercover", 0xEF785A6A, true],
|
|
["csb_vagspeak", 0x48FF4CA9, true],
|
|
["g_f_importexport_01", 0x84A1B11A, true],
|
|
["g_f_y_ballas_01", 0x158C439C, true],
|
|
["g_f_y_families_01", 0x4E0CE5D3, true],
|
|
["g_f_y_lost_01", 0xFD5537DE, true],
|
|
["g_f_y_vagos_01", 0x5AA42C21, true],
|
|
["g_m_importexport_01", 0xBCA2CCEA, true],
|
|
["g_m_m_armboss_01", 0xF1E823A2, true],
|
|
["g_m_m_armgoon_01", 0xFDA94268, true],
|
|
["g_m_m_armlieut_01", 0xE7714013, true],
|
|
["g_m_m_chemwork_01", 0xF6157D8F, true],
|
|
["g_m_m_chiboss_01", 0xB9DD0300, true],
|
|
["g_m_m_chicold_01", 0x106D9A99, true],
|
|
["g_m_m_chigoon_01", 0x7E4F763F, true],
|
|
["g_m_m_chigoon_02", 0xFF71F826, true],
|
|
["g_m_m_korboss_01", 0x352A026F, true],
|
|
["g_m_m_mexboss_01", 0x5761F4AD, true],
|
|
["g_m_m_mexboss_02", 0x4914D813, true],
|
|
["g_m_y_armgoon_02", 0xC54E878A, true],
|
|
["g_m_y_azteca_01", 0x68709618, true],
|
|
["g_m_y_ballaeast_01", 0xF42EE883, true],
|
|
["g_m_y_ballaorig_01", 0x231AF63F, true],
|
|
["g_m_y_ballasout_01", 0x23B88069, true],
|
|
["g_m_y_famca_01", 0xE83B93B7, true],
|
|
["g_m_y_famdnf_01", 0xDB729238, true],
|
|
["g_m_y_famfor_01", 0x84302B09, true],
|
|
["g_m_y_korean_01", 0x247502A9, true],
|
|
["g_m_y_korean_02", 0x8FEDD989, true],
|
|
["g_m_y_korlieut_01", 0x7CCBE17A, true],
|
|
["g_m_y_lost_01", 0x4F46D607, true],
|
|
["g_m_y_lost_02", 0x3D843282, true],
|
|
["g_m_y_lost_03", 0x32B11CDC, true],
|
|
["g_m_y_mexgang_01", 0xBDDD5546, true],
|
|
["g_m_y_mexgoon_01", 0x26EF3426, true],
|
|
["g_m_y_mexgoon_02", 0x31A3498E, true],
|
|
["g_m_y_mexgoon_03", 0x964D12DC, true],
|
|
["g_m_y_pologoon_01", 0x4F3FBA06, true],
|
|
["g_m_y_pologoon_02", 0xA2E86156, true],
|
|
["g_m_y_salvaboss_01", 0x905CE0CA, true],
|
|
["g_m_y_salvagoon_01", 0x278C8CB7, true],
|
|
["g_m_y_salvagoon_02", 0x3273A285, true],
|
|
["g_m_y_salvagoon_03", 0x03B8C510, true],
|
|
["g_m_y_strpunk_01", 0xFD1C49BB, true],
|
|
["g_m_y_strpunk_02", 0x0DA1EAC6, true],
|
|
["hc_driver", 0x3B474ADF, true],
|
|
["hc_gunman", 0x0B881AEE, true],
|
|
["hc_hacker", 0x99BB00F8, true],
|
|
["ig_abigail", 0x400AEC41, true],
|
|
["ig_agent", 0x246AF208, false],
|
|
["ig_amandatownley", 0x6D1E15F7, true],
|
|
["ig_andreas", 0x47E4EEA0, true],
|
|
["ig_ashley", 0x7EF440DB, true],
|
|
["ig_avon", 0xFCE270C2, true],
|
|
["ig_ballasog", 0xA70B4A92, true],
|
|
["ig_bankman", 0x909D9E7F, true],
|
|
["ig_barry", 0x2F8845A3, true],
|
|
["ig_benny", 0xC4B715D2, true],
|
|
["ig_bestmen", 0x5746CD96, true],
|
|
["ig_beverly", 0xBDA21E5C, true],
|
|
["ig_brad", 0xBDBB4922, true],
|
|
["ig_bride", 0x6162EC47, true],
|
|
["ig_car3guy1", 0x84F9E937, true],
|
|
["ig_car3guy2", 0x75C34ACA, true],
|
|
["ig_casey", 0xE0FA2554, true],
|
|
["ig_chef", 0x49EADBF6, true],
|
|
["ig_chef2", 0x85889AC3, true],
|
|
["ig_chengsr", 0xAAE4EA7B, true],
|
|
["ig_chrisformage", 0x286E54A7, true],
|
|
["ig_clay", 0x6CCFE08A, true],
|
|
["ig_claypain", 0x9D0087A8, true],
|
|
["ig_cletus", 0xE6631195, true],
|
|
["ig_dale", 0x467415E9, true],
|
|
["ig_davenorton", 0x15CD4C33, true],
|
|
["ig_denise", 0x820B33BD, true],
|
|
["ig_devin", 0x7461A0B0, true],
|
|
["ig_dom", 0x9C2DB088, true],
|
|
["ig_dreyfuss", 0xDA890932, true],
|
|
["ig_drfriedlander", 0xCBFC0DF5, true],
|
|
["ig_fabien", 0xD090C350, true],
|
|
["ig_fbisuit_01", 0x3AE4A33B, false],
|
|
["ig_floyd", 0xB1B196B2, true],
|
|
["ig_g", 0x841BA933, true],
|
|
["ig_groom", 0xFECE8B85, true],
|
|
["ig_hao", 0x65978363, true],
|
|
["ig_hunter", 0xCE1324DE, true],
|
|
["ig_janet", 0x0D6D9C49, true],
|
|
["ig_jay_norris", 0x7A32EE74, true],
|
|
["ig_jewelass", 0x0F5D26BB, true],
|
|
["ig_jimmyboston", 0xEDA0082D, true],
|
|
["ig_jimmydisanto", 0x570462B9, true],
|
|
["ig_joeminuteman", 0xBE204C9B, true],
|
|
["ig_johnnyklebitz", 0x87CA80AE, true],
|
|
["ig_josef", 0xE11A9FB4, true],
|
|
["ig_josh", 0x799E9EEE, true],
|
|
["ig_karen_daniels", 0xEB51D959, true],
|
|
["ig_kerrymcintosh", 0x5B3BD90D, true],
|
|
["ig_lamardavis", 0x65B93076, true],
|
|
["ig_lazlow", 0xDFE443E5, true],
|
|
["ig_lestercrest_2", 0x6E42FD26, true],
|
|
["ig_lestercrest", 0x4DA6E849, true],
|
|
["ig_lifeinvad_01", 0x5389A93C, true],
|
|
["ig_lifeinvad_02", 0x27BD51D4, true],
|
|
["ig_magenta", 0xFCDC910A, true],
|
|
["ig_malc", 0xF1BCA919, true],
|
|
["ig_manuel", 0xFD418E10, true],
|
|
["ig_marnie", 0x188232D0, true],
|
|
["ig_maryann", 0xA36F9806, true],
|
|
["ig_maude", 0x3BE8287E, true],
|
|
["ig_michelle", 0xBF9672F4, true],
|
|
["ig_milton", 0xCB3059B2, true],
|
|
["ig_molly", 0xAF03DDE1, true],
|
|
["ig_money", 0x37FACDA6, true],
|
|
["ig_mp_agent14", 0xFBF98469, false],
|
|
["ig_mrk", 0xEDDCAB6D, true],
|
|
["ig_mrs_thornhill", 0x1E04A96B, true],
|
|
["ig_mrsphillips", 0x3862EEA8, true],
|
|
["ig_natalia", 0xDE17DD3B, true],
|
|
["ig_nervousron", 0xBD006AF1, true],
|
|
["ig_nigel", 0xC8B7167D, true],
|
|
["ig_old_man1a", 0x719D27F4, true],
|
|
["ig_old_man2", 0xEF154C47, true],
|
|
["ig_omega", 0x60E6A7D8, true],
|
|
["ig_oneil", 0x2DC6D3E7, true],
|
|
["ig_orleans", 0x61D4C771, true],
|
|
["ig_ortega", 0x26A562B7, true],
|
|
["ig_paige", 0x154FCF3F, true],
|
|
["ig_paper", 0x999B00C6, true],
|
|
["ig_patricia", 0xC56E118C, true],
|
|
["ig_popov", 0x267630FE, true],
|
|
["ig_priest", 0x6437E77D, true],
|
|
["ig_prolsec_02", 0x27B3AD75, true],
|
|
["ig_ramp_gang", 0xE52E126C, true],
|
|
["ig_ramp_hic", 0x45753032, true],
|
|
["ig_ramp_hipster", 0xDEEF9F6E, true],
|
|
["ig_ramp_mex", 0xE6AC74A4, true],
|
|
["ig_rashcosvki", 0x380C4DE6, true],
|
|
["ig_roccopelosi", 0xD5BA52FF, true],
|
|
["ig_russiandrunk", 0x3D0A5EB1, true],
|
|
["ig_screen_writer", 0xFFE63677, true],
|
|
["ig_siemonyetarian", 0x4C7B2F05, true],
|
|
["ig_solomon", 0x86BDFE26, true],
|
|
["ig_stevehains", 0x382121C8, true],
|
|
["ig_stretch", 0x36984358, true],
|
|
["ig_talina", 0xE793C8E8, true],
|
|
["ig_tanisha", 0x0D810489, true],
|
|
["ig_taocheng", 0xDC5C5EA5, true],
|
|
["ig_taostranslator", 0x7C851464, true],
|
|
["ig_tenniscoach", 0xA23B5F57, true],
|
|
["ig_terry", 0x67000B94, true],
|
|
["ig_tomepsilon", 0xCD777AAA, true],
|
|
["ig_tonya", 0xCAC85344, true],
|
|
["ig_tracydisanto", 0xDE352A35, true],
|
|
["ig_trafficwarden", 0x5719786D, false],
|
|
["ig_tylerdix", 0x5265F707, true],
|
|
["ig_vagspeak", 0xF9FD068C, true],
|
|
["ig_wade", 0x92991B72, true],
|
|
["ig_zimbor", 0x0B34D6F5, true],
|
|
["mp_f_boatstaff_01", 0x3293B9CE, true],
|
|
["mp_f_cardesign_01", 0x242C34A7, true],
|
|
["mp_f_chbar_01", 0xC3F6E385, true],
|
|
["mp_f_cocaine_01", 0x4B657AF8, true],
|
|
["mp_f_counterfeit_01", 0xB788F1F5, true],
|
|
["mp_f_deadhooker", 0x73DEA88B, false],
|
|
["mp_f_execpa_01", 0x432CA064, true],
|
|
["mp_f_execpa_02", 0x5972CCF0, true],
|
|
["mp_f_forgery_01", 0x781A3CF8, true],
|
|
["mp_f_freemode_01", 0x9C9EFFD8, true],
|
|
["mp_f_helistaff_01", 0x19B6FF06, false],
|
|
["mp_f_meth_01", 0xD2B27EC1, true],
|
|
["mp_f_misty_01", 0xD128FF9D, true],
|
|
["mp_f_stripperlite", 0x2970A494, true],
|
|
["mp_f_weed_01", 0xB26573A3, true],
|
|
["mp_g_m_pros_01", 0x6C9DD7C9, true],
|
|
["mp_m_avongoon", 0x9C13CB95, true],
|
|
["mp_m_boatstaff_01", 0xC85F0A88, true],
|
|
["mp_m_bogdangoon", 0x4D5696F7, true],
|
|
["mp_m_claude_01", 0xC0F371B7, true],
|
|
["mp_m_cocaine_01", 0x56D38F95, true],
|
|
["mp_m_counterfeit_01", 0x9855C974, true],
|
|
["mp_m_exarmy_01", 0x45348DBB, true],
|
|
["mp_m_execpa_01", 0x3E8417BC, true],
|
|
["mp_m_famdd_01", 0x33A464E5, true],
|
|
["mp_m_fibsec_01", 0x5CDEF405, false],
|
|
["mp_m_forgery_01", 0x613E709B, true],
|
|
["mp_m_freemode_01", 0x705E61F2, true],
|
|
["mp_m_g_vagfun_01", 0xC4A617BD, true],
|
|
["mp_m_marston_01", 0x38430167, true],
|
|
["mp_m_meth_01", 0xEDB42F3F, true],
|
|
["mp_m_niko_01", 0xEEDACFC9, false],
|
|
["mp_m_securoguard_01", 0xDA2C984E, false],
|
|
["mp_m_shopkeep_01", 0x18CE57D0, false],
|
|
["mp_m_waremech_01", 0xF7A74139, true],
|
|
["mp_m_weapexp_01", 0x36EA5B09, true],
|
|
["mp_m_weapwork_01", 0x4186506E, true],
|
|
["mp_m_weed_01", 0x917ED459, true],
|
|
["mp_s_m_armoured_01", 0xCDEF5408, false],
|
|
["player_one", 0x9B22DBAF, false],
|
|
["player_two", 0x9B810FA2, false],
|
|
["player_zero", 0x0D7114C9, false],
|
|
["s_f_m_fembarber", 0x163B875B, true],
|
|
["s_f_m_maid_01", 0xE093C5C6, true],
|
|
["s_f_m_shop_high", 0xAE47E4B0, true],
|
|
["s_f_m_sweatshop_01", 0x312B5BC0, true],
|
|
["s_f_y_airhostess_01", 0x5D71A46F, true],
|
|
["s_f_y_bartender_01", 0x780C01BD, true],
|
|
["s_f_y_baywatch_01", 0x4A8E5536, true],
|
|
["s_f_y_cop_01", 0x15F8700D, false],
|
|
["s_f_y_factory_01", 0x69F46BF3, true],
|
|
["s_f_y_hooker_01", 0x028ABF95, true],
|
|
["s_f_y_hooker_02", 0x14C3E407, true],
|
|
["s_f_y_hooker_03", 0x031640AC, true],
|
|
["s_f_y_migrant_01", 0xD55B2BF5, true],
|
|
["s_f_y_movprem_01", 0x2300C816, true],
|
|
["s_f_y_ranger_01", 0x9FC7F637, false],
|
|
["s_f_y_scrubs_01", 0xAB594AB6, false],
|
|
["s_f_y_sheriff_01", 0x4161D042, false],
|
|
["s_f_y_shop_low", 0xA96E2604, true],
|
|
["s_f_y_shop_mid", 0x3EECBA5D, true],
|
|
["s_f_y_stripper_01", 0x52580019, true],
|
|
["s_f_y_stripper_02", 0x6E0FB794, true],
|
|
["s_f_y_stripperlite", 0x5C14EDFA, true],
|
|
["s_f_y_sweatshop_01", 0x8502B6B2, true],
|
|
["s_m_m_ammucountry", 0x0DE9A30A, true],
|
|
["s_m_m_armoured_01", 0x95C76ECD, false],
|
|
["s_m_m_armoured_02", 0x63858A4A, false],
|
|
["s_m_m_autoshop_01", 0x040EABE3, true],
|
|
["s_m_m_autoshop_02", 0xF06B849D, true],
|
|
["s_m_m_bouncer_01", 0x9FD4292D, true],
|
|
["s_m_m_ccrew_01", 0xC9E5F56B, true],
|
|
["s_m_m_chemsec_01", 0x2EFEAFD5, true],
|
|
["s_m_m_ciasec_01", 0x625D6958, false],
|
|
["s_m_m_cntrybar_01", 0x1A021B83, true],
|
|
["s_m_m_dockwork_01", 0x14D7B4E0, false],
|
|
["s_m_m_doctor_01", 0xD47303AC, false],
|
|
["s_m_m_fiboffice_01", 0xEDBC7546, false],
|
|
["s_m_m_fiboffice_02", 0x26F067AD, false],
|
|
["s_m_m_fibsec_01", 0x7B8B434B, false],
|
|
["s_m_m_gaffer_01", 0xA956BD9E, true],
|
|
["s_m_m_gardener_01", 0x49EA5685, true],
|
|
["s_m_m_gentransport", 0x1880ED06, true],
|
|
["s_m_m_hairdress_01", 0x418DFF92, true],
|
|
["s_m_m_highsec_01", 0xF161D212, true],
|
|
["s_m_m_highsec_02", 0x2930C1AB, true],
|
|
["s_m_m_janitor", 0xA96BD9EC, true],
|
|
["s_m_m_lathandy_01", 0x9E80D2CE, true],
|
|
["s_m_m_lifeinvad_01", 0xDE0077FD, true],
|
|
["s_m_m_linecook", 0xDB9C0997, true],
|
|
["s_m_m_lsmetro_01", 0x765AAAE4, false],
|
|
["s_m_m_mariachi_01", 0x7EA4FFA6, true],
|
|
["s_m_m_marine_01", 0xF2DAA2ED, true],
|
|
["s_m_m_marine_02", 0xF0259D83, true],
|
|
["s_m_m_migrant_01", 0xED0CE4C6, true],
|
|
["s_m_m_movalien_01", 0x64611296, true],
|
|
["s_m_m_movprem_01", 0xD85E6D28, true],
|
|
["s_m_m_movspace_01", 0xE7B31432, true],
|
|
["s_m_m_paramedic_01", 0xB353629E, false],
|
|
["s_m_m_pilot_01", 0xE75B4B1C, false],
|
|
["s_m_m_pilot_02", 0xF63DE8E1, false],
|
|
["s_m_m_postal_01", 0x62599034, false],
|
|
["s_m_m_postal_02", 0x7367324F, false],
|
|
["s_m_m_prisguard_01", 0x56C96FC6, false],
|
|
["s_m_m_scientist_01", 0x4117D39B, false],
|
|
["s_m_m_security_01", 0xD768B228, false],
|
|
["s_m_m_snowcop_01", 0x1AE8BB58, false],
|
|
["s_m_m_strperf_01", 0x795AC7A8, true],
|
|
["s_m_m_strpreach_01", 0x1C0077FB, true],
|
|
["s_m_m_strvend_01", 0xCE9113A9, true],
|
|
["s_m_m_trucker_01", 0x59511A6C, true],
|
|
["s_m_m_ups_01", 0x9FC37F22, false],
|
|
["s_m_m_ups_02", 0xD0BDE116, false],
|
|
["s_m_o_busker_01", 0xAD9EF1BB, true],
|
|
["s_m_y_airworker", 0x62018559, false],
|
|
["s_m_y_ammucity_01", 0x9E08633D, true],
|
|
["s_m_y_armymech_01", 0x62CC28E2, false],
|
|
["s_m_y_autopsy_01", 0xB2273D4E, false],
|
|
["s_m_y_barman_01", 0xE5A11106, true],
|
|
["s_m_y_baywatch_01", 0x0B4A6862, true],
|
|
["s_m_y_blackops_01", 0xB3F3EE34, false],
|
|
["s_m_y_blackops_02", 0x7A05FA59, false],
|
|
["s_m_y_blackops_03", 0x5076A73B, false],
|
|
["s_m_y_busboy_01", 0xD8F9CD47, true],
|
|
["s_m_y_chef_01", 0x0F977CEB, true],
|
|
["s_m_y_clown_01", 0x04498DDE, true],
|
|
["s_m_y_construct_01", 0xD7DA9E99, true],
|
|
["s_m_y_construct_02", 0xC5FEFADE, true],
|
|
["s_m_y_cop_01", 0x5E3DA4A4, false],
|
|
["s_m_y_dealer_01", 0xE497BBEF, true],
|
|
["s_m_y_devinsec_01", 0x9B557274, true],
|
|
["s_m_y_dockwork_01", 0x867639D1, true],
|
|
["s_m_y_doorman_01", 0x22911304, true],
|
|
["s_m_y_dwservice_01", 0x75D30A91, true],
|
|
["s_m_y_dwservice_02", 0xF5908A06, true],
|
|
["s_m_y_factory_01", 0x4163A158, true],
|
|
["s_m_y_fireman_01", 0xB6B1EDA8, false],
|
|
["s_m_y_garbage", 0xEE75A00F, false],
|
|
["s_m_y_grip_01", 0x309E7DEA, true],
|
|
["s_m_y_hwaycop_01", 0x739B1EF5, false],
|
|
["s_m_y_marine_01", 0x65793043, true],
|
|
["s_m_y_marine_02", 0x58D696FE, true],
|
|
["s_m_y_marine_03", 0x72C0CAD2, true],
|
|
["s_m_y_mime", 0x3CDCA742, true],
|
|
["s_m_y_pestcont_01", 0x48114518, true],
|
|
["s_m_y_pilot_01", 0xAB300C07, true],
|
|
["s_m_y_prismuscl_01", 0x5F2113A1, true],
|
|
["s_m_y_prisoner_01", 0xB1BB9B59, true],
|
|
["s_m_y_ranger_01", 0xEF7135AE, true],
|
|
["s_m_y_robber_01", 0xC05E1399, true],
|
|
["s_m_y_sheriff_01", 0xB144F9B9, false],
|
|
["s_m_y_shop_mask", 0x6E122C06, true],
|
|
["s_m_y_strvend_01", 0x927F2323, true],
|
|
["s_m_y_swat_01", 0x8D8F1B10, true],
|
|
["s_m_y_uscg_01", 0xCA0050E9, true],
|
|
["s_m_y_valet_01", 0x3B96F23E, true],
|
|
["s_m_y_waiter_01", 0xAD4C724C, true],
|
|
["s_m_y_winclean_01", 0x550D8D9D, true],
|
|
["s_m_y_xmech_01", 0x441405EC, true],
|
|
["s_m_y_xmech_02_mp", 0x69147A0D, true],
|
|
["s_m_y_xmech_02", 0xBE20FA04, true],
|
|
["u_f_m_corpse_01", 0x2E140314, true],
|
|
["u_f_m_drowned_01", 0xD7F37609, true],
|
|
["u_f_m_miranda", 0x414FA27B, true],
|
|
["u_f_m_promourn_01", 0xA20899E7, true],
|
|
["u_f_o_moviestar", 0x35578634, true],
|
|
["u_f_o_prolhost_01", 0xC512DD23, true],
|
|
["u_f_y_bikerchic", 0xFA389D4F, true],
|
|
["u_f_y_comjane", 0xB6AA85CE, true],
|
|
["u_f_y_corpse_01", 0x9C70109D, true],
|
|
["u_f_y_corpse_02", 0x0D9C72F8, true],
|
|
["u_f_y_hotposh_01", 0x969B6DFE, true],
|
|
["u_f_y_jewelass_01", 0xF0D4BE2E, true],
|
|
["u_f_y_mistress", 0x5DCA2528, true],
|
|
["u_f_y_poppymich", 0x23E9A09E, true],
|
|
["u_f_y_princess", 0xD2E3A284, true],
|
|
["u_f_y_spyactress", 0x5B81D86C, true],
|
|
["u_m_m_aldinapoli", 0xF0EC56E2, true],
|
|
["u_m_m_bankman", 0xC306D6F5, true],
|
|
["u_m_m_bikehire_01", 0x76474545, true],
|
|
["u_m_m_doa_01", 0x621E6BFD, true],
|
|
["u_m_m_edtoh", 0x2A797197, true],
|
|
["u_m_m_fibarchitect", 0x342333D3, false],
|
|
["u_m_m_filmdirector", 0x2B6E1BB6, true],
|
|
["u_m_m_glenstank_01", 0x45BB1666, true],
|
|
["u_m_m_griff_01", 0xC454BCBB, true],
|
|
["u_m_m_jesus_01", 0xCE2CB751, true],
|
|
["u_m_m_jewelsec_01", 0xACCCBDB6, true],
|
|
["u_m_m_jewelthief", 0xE6CC3CDC, true],
|
|
["u_m_m_markfost", 0x1C95CB0B, true],
|
|
["u_m_m_partytarget", 0x81F74DE7, true],
|
|
["u_m_m_prolsec_01", 0x709220C7, true],
|
|
["u_m_m_promourn_01", 0xCE96030B, true],
|
|
["u_m_m_rivalpap", 0x60D5D6DA, true],
|
|
["u_m_m_spyactor", 0xAC0EA5D8, true],
|
|
["u_m_m_streetart_01", 0x6C19E962, true],
|
|
["u_m_m_willyfist", 0x90769A8F, true],
|
|
["u_m_o_filmnoir", 0x2BACC2DB, true],
|
|
["u_m_o_finguru_01", 0x46E39E63, true],
|
|
["u_m_o_taphillbilly", 0x9A1E5E52, true],
|
|
["u_m_o_tramp_01", 0x6A8F1F9B, true],
|
|
["u_m_y_abner", 0xF0AC2626, true],
|
|
["u_m_y_antonb", 0xCF623A2C, true],
|
|
["u_m_y_babyd", 0xDA116E7E, true],
|
|
["u_m_y_baygor", 0x5244247D, true],
|
|
["u_m_y_burgerdrug_01", 0x8B7D3766, true],
|
|
["u_m_y_chip", 0x24604B2B, true],
|
|
["u_m_y_corpse_01", 0x94C2A03F, true],
|
|
["u_m_y_cyclist_01", 0x2D0EFCEB, true],
|
|
["u_m_y_fibmugger_01", 0x85B9C668, true],
|
|
["u_m_y_guido_01", 0xC6B49A2F, true],
|
|
["u_m_y_gunvend_01", 0xB3229752, true],
|
|
["u_m_y_hippie_01", 0xF041880B, true],
|
|
["u_m_y_imporage", 0x348065F5, true],
|
|
["u_m_y_juggernaut_01", 0x90EF5134, true],
|
|
["u_m_y_justin", 0x7DC3908F, true],
|
|
["u_m_y_mani", 0xC8BB1E52, true],
|
|
["u_m_y_militarybum", 0x4705974A, true],
|
|
["u_m_y_paparazzi", 0x5048B328, true],
|
|
["u_m_y_party_01", 0x36E70600, true],
|
|
["u_m_y_pogo_01", 0xDC59940D, true],
|
|
["u_m_y_prisoner_01", 0x7B9B4BC0, true],
|
|
["u_m_y_proldriver_01", 0x855E36A3, true],
|
|
["u_m_y_rsranger_01", 0x3C438CD2, true],
|
|
["u_m_y_sbike", 0x6AF4185D, true],
|
|
["u_m_y_staggrm_01", 0x9194CE03, true],
|
|
["u_m_y_tattoo_01", 0x94AE2B8C, true],
|
|
["u_m_y_zombie_01", 0xAC4B4506, true],
|
|
]
|
|
},
|
|
vehicles: {
|
|
[VRR_GAME_GTA_III]: [
|
|
[90, "Landstalker"],
|
|
[91, "Idaho"],
|
|
[92, "Stinger"],
|
|
[93, "Linerunner"],
|
|
[94, "Perennial"],
|
|
[95, "Sentinel"],
|
|
[96, "Patriot"],
|
|
[97, "Fire Truck"],
|
|
[98, "Trashmaster"],
|
|
[99, "Stretch"],
|
|
[100, "Manana"],
|
|
[101, "Infernus"],
|
|
[102, "Blista"],
|
|
[103, "Pony"],
|
|
[104, "Mule"],
|
|
[105, "Cheetah"],
|
|
[106, "Ambulance"],
|
|
[107, "FBI Car"],
|
|
[108, "Moonbeam"],
|
|
[109, "Esperanto"],
|
|
[110, "Taxi"],
|
|
[111, "Kuruma"],
|
|
[112, "Bobcat"],
|
|
[113, "Mr. Whoopee"],
|
|
[114, "BF Injection"],
|
|
[115, "Manana (Corpse)"],
|
|
[116, "Police Car"],
|
|
[117, "Enforcer"],
|
|
[118, "Securicar"],
|
|
[119, "Banshee"],
|
|
[120, "Predator"],
|
|
[121, "Bus"],
|
|
[122, "Rhino"],
|
|
[123, "Barracks OL"],
|
|
[124, "Train"],
|
|
[125, "Police Helicopter"],
|
|
[126, "Dodo"],
|
|
[127, "Coach"],
|
|
[128, "Cabbie"],
|
|
[129, "Stallion"],
|
|
[130, "Rumpo"],
|
|
[131, "RC Bandit"],
|
|
[132, "Bellyup"],
|
|
[133, "Mr. Wongs"],
|
|
[134, "Mafia Sentinel"],
|
|
[135, "Yardie Lobo"],
|
|
[136, "Yakuza Stinger"],
|
|
[137, "Diablo Stallion"],
|
|
[138, "Cartel Cruiser"],
|
|
[139, "Hoods Rumpo XL"],
|
|
[140, "Air Train"],
|
|
[141, "Dead Dodo"],
|
|
[142, "Speeder"],
|
|
[143, "Reefer"],
|
|
[144, "Panlantic"],
|
|
[145, "Flatbed"],
|
|
[146, "Yankee"],
|
|
[147, "Escape"],
|
|
[148, "Borgnine Taxi"],
|
|
[149, "Toyz Van"],
|
|
[150, "Ghost"],
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA VC
|
|
[130, "Landstalker"],
|
|
[131, "Idaho"],
|
|
[132, "Stinger"],
|
|
[133, "Linerunner"],
|
|
[134, "Perennial"],
|
|
[135, "Sentinel"],
|
|
[136, "Rio"],
|
|
[137, "Firetruck"],
|
|
[138, "Trashmaster"],
|
|
[139, "Stretch"],
|
|
[140, "Manana"],
|
|
[141, "Infernus"],
|
|
[142, "Voodoo"],
|
|
[143, "Pony"],
|
|
[144, "Mule"],
|
|
[145, "Cheetah"],
|
|
[146, "Ambulance"],
|
|
[147, "FBI Washington"],
|
|
[148, "Moonbeam"],
|
|
[149, "Esperanto"],
|
|
[150, "Taxi"],
|
|
[151, "Washington"],
|
|
[152, "Bobcat"],
|
|
[153, "Mr.Whoopee"],
|
|
[154, "BF-Injection"],
|
|
[155, "Hunter"],
|
|
[156, "Police Car"],
|
|
[157, "Enforcer"],
|
|
[158, "Securicar"],
|
|
[159, "Banshee"],
|
|
[160, "Predator"],
|
|
[161, "Bus"],
|
|
[162, "Rhino"],
|
|
[163, "Barracks OL"],
|
|
[164, "Cuban Hermes"],
|
|
[165, "Helicopter"],
|
|
[166, "Angel"],
|
|
[167, "Coach"],
|
|
[168, "Cabbie"],
|
|
[169, "Stallion"],
|
|
[170, "Rumpo"],
|
|
[171, "RC Bandit"],
|
|
[172, "Romero's Hearse"],
|
|
[173, "Packer"],
|
|
[174, "Sentinel XS"],
|
|
[175, "Admiral"],
|
|
[176, "Squalo"],
|
|
[177, "Sea Sparrow"],
|
|
[178, "Pizza Boy"],
|
|
[179, "Gang Burrito"],
|
|
[180, "Airtrain"],
|
|
[181, "Deaddodo"],
|
|
[182, "Speeder"],
|
|
[183, "Reefer"],
|
|
[184, "Tropic"],
|
|
[185, "Flatbed"],
|
|
[186, "Yankee"],
|
|
[187, "Caddy"],
|
|
[188, "Zebra Cab"],
|
|
[189, "Top Fun"],
|
|
[190, "Skimmer"],
|
|
[191, "PCJ-600"],
|
|
[192, "Faggio"],
|
|
[193, "Freeway"],
|
|
[194, "RC Varon"],
|
|
[195, "RC Raider"],
|
|
[196, "Glendale"],
|
|
[197, "Oceanic"],
|
|
[198, "Sanchez"],
|
|
[199, "Sparrow"],
|
|
[200, "Patriot"],
|
|
[201, "Love Fist"],
|
|
[202, "Coast Guard"],
|
|
[203, "Dinghy"],
|
|
[204, "Hermes"],
|
|
[205, "Sabre"],
|
|
[206, "Sabre Turbo"],
|
|
[207, "Phoenix"],
|
|
[208, "Walton"],
|
|
[209, "Regina"],
|
|
[210, "Comet"],
|
|
[211, "Deluxo"],
|
|
[212, "Burrito"],
|
|
[213, "Spand Express"],
|
|
[214, "Marquis"],
|
|
[215, "Baggage Handler"],
|
|
[216, "Kaufman Cab"],
|
|
[217, "Maverick"],
|
|
[218, "VCN Maverick"],
|
|
[219, "Rancher"],
|
|
[220, "FBI Rancher"],
|
|
[221, "Virgo"],
|
|
[222, "Greenwood"],
|
|
[223, "Cuban Jetmax"],
|
|
[224, "Hotring Racer 1"],
|
|
[225, "Sandking"],
|
|
[226, "Blista Compact"],
|
|
[227, "Police Maverick"],
|
|
[228, "Boxville"],
|
|
[229, "Benson"],
|
|
[230, "Mesa Grande"],
|
|
[231, "RC Goblin"],
|
|
[232, "Hotring Racer 2"],
|
|
[233, "Hotring Racer 3"],
|
|
[234, "Bloodring Banger 1"],
|
|
[235, "Bloodring Banger 2"],
|
|
[236, "VCPD Cheetah"],
|
|
],
|
|
[VRR_GAME_GTA_SA]: [ // GTA San Andreas
|
|
[400, "Landstalker" ],
|
|
[401, "Bravura" ],
|
|
[402, "Buffalo" ],
|
|
[403, "Linerunner" ],
|
|
[404, "Pereniel" ],
|
|
[405, "Sentinel" ],
|
|
[406, "Dumper" ],
|
|
[407, "Firetruck" ],
|
|
[408, "Trashmaster" ],
|
|
[409, "Stretch" ],
|
|
[410, "Manana" ],
|
|
[411, "Infernus" ],
|
|
[412, "Voodoo" ],
|
|
[413, "Pony" ],
|
|
[414, "Mule" ],
|
|
[415, "Cheetah" ],
|
|
[416, "Ambulance" ],
|
|
[417, "Leviathan" ],
|
|
[418, "Moonbeam" ],
|
|
[419, "Esperanto" ],
|
|
[420, "Taxi" ],
|
|
[421, "Washington" ],
|
|
[422, "Bobcat" ],
|
|
[423, "Mr Whoopee" ],
|
|
[424, "BF Injection" ],
|
|
[425, "Hunter" ],
|
|
[426, "Premier" ],
|
|
[427, "Enforcer" ],
|
|
[428, "Securicar" ],
|
|
[429, "Banshee" ],
|
|
[430, "Predator" ],
|
|
[431, "Bus" ],
|
|
[432, "Rhino" ],
|
|
[433, "Barracks" ],
|
|
[434, "Hotknife" ],
|
|
[435, "Box Trailer" ],
|
|
[436, "Previon" ],
|
|
[437, "Coach" ],
|
|
[438, "Cabbie" ],
|
|
[439, "Stallion" ],
|
|
[440, "Rumpo" ],
|
|
[441, "RC Bandit" ],
|
|
[442, "Romero" ],
|
|
[443, "Packer" ],
|
|
[444, "Monster" ],
|
|
[445, "Admiral" ],
|
|
[446, "Squalo" ],
|
|
[447, "Seasparrow" ],
|
|
[448, "Pizzaboy" ],
|
|
[449, "Tram" ],
|
|
[450, "Grain Trailer" ],
|
|
[451, "Turismo" ],
|
|
[452, "Speeder" ],
|
|
[453, "Reefer" ],
|
|
[454, "Tropic" ],
|
|
[455, "Flatbed" ],
|
|
[456, "Yankee" ],
|
|
[457, "Caddy" ],
|
|
[458, "Solair" ],
|
|
[459, "Berkley's RC Van" ],
|
|
[460, "Skimmer" ],
|
|
[461, "PCJ-600" ],
|
|
[462, "Faggio" ],
|
|
[463, "Freeway" ],
|
|
[464, "RC Baron" ],
|
|
[465, "RC Raider" ],
|
|
[466, "Glendale" ],
|
|
[467, "Oceanic" ],
|
|
[468, "Sanchez" ],
|
|
[469, "Sparrow" ],
|
|
[470, "Patriot" ],
|
|
[471, "Quad" ],
|
|
[472, "Coastguard" ],
|
|
[473, "Dinghy" ],
|
|
[474, "Hermes" ],
|
|
[475, "Sabre" ],
|
|
[476, "Rustler" ],
|
|
[477, "ZR-350" ],
|
|
[478, "Walton" ],
|
|
[479, "Regina" ],
|
|
[480, "Comet" ],
|
|
[481, "BMX" ],
|
|
[482, "Burrito" ],
|
|
[483, "Camper" ],
|
|
[484, "Marquis" ],
|
|
[485, "Baggage" ],
|
|
[486, "Dozer" ],
|
|
[487, "Maverick" ],
|
|
[488, "News Maverick" ],
|
|
[489, "Rancher" ],
|
|
[490, "FBI Rancher" ],
|
|
[491, "Virgo" ],
|
|
[492, "Greenwood" ],
|
|
[493, "Jetmax" ],
|
|
[494, "Hotring-Racer A" ],
|
|
[495, "Sandking" ],
|
|
[496, "Blista" ],
|
|
[497, "Police Maverick" ],
|
|
[498, "Boxville" ],
|
|
[499, "Benson" ],
|
|
[500, "Mesa" ],
|
|
[501, "RC Goblin" ],
|
|
[502, "Hotring-Racer B" ],
|
|
[503, "Hotring-Racer C" ],
|
|
[504, "Bloodring-Banger" ],
|
|
[505, "Rancher" ],
|
|
[506, "Super-GT" ],
|
|
[507, "Elegant" ],
|
|
[508, "Journey" ],
|
|
[509, "Bike" ],
|
|
[510, "Mountain Bike" ],
|
|
[511, "Beagle" ],
|
|
[512, "Cropduster" ],
|
|
[513, "Stunt" ],
|
|
[514, "Tanker" ],
|
|
[515, "RoadTrain" ],
|
|
[516, "Nebula" ],
|
|
[517, "Majestic" ],
|
|
[518, "Buccaneer" ],
|
|
[519, "Shamal" ],
|
|
[520, "Hydra" ],
|
|
[521, "FCR-900" ],
|
|
[522, "NRG-500" ],
|
|
[523, "HPV1000" ],
|
|
[524, "Cement Truck" ],
|
|
[525, "Tow Truck" ],
|
|
[526, "Fortune" ],
|
|
[527, "Cadrona" ],
|
|
[528, "FBI Truck" ],
|
|
[529, "Willard" ],
|
|
[530, "Forklift" ],
|
|
[531, "Tractor" ],
|
|
[532, "Combine" ],
|
|
[533, "Feltzer" ],
|
|
[534, "Remington" ],
|
|
[535, "Slamvan" ],
|
|
[536, "Blade" ],
|
|
[537, "Freight" ],
|
|
[538, "Streak" ],
|
|
[539, "Vortex" ],
|
|
[540, "Vincent" ],
|
|
[541, "Bullet" ],
|
|
[542, "Clover" ],
|
|
[543, "Sadler" ],
|
|
[544, "Firetruck" ],
|
|
[545, "Hustler" ],
|
|
[546, "Intruder" ],
|
|
[547, "Primo" ],
|
|
[548, "Cargobob" ],
|
|
[549, "Tampa" ],
|
|
[550, "Sunrise" ],
|
|
[551, "Merit" ],
|
|
[552, "Utility" ],
|
|
[553, "Nevada" ],
|
|
[554, "Yosemite" ],
|
|
[555, "Windsor" ],
|
|
[556, "Monster Truck A" ],
|
|
[557, "Monster Truck B" ],
|
|
[558, "Uranus" ],
|
|
[559, "Jester" ],
|
|
[560, "Sultan" ],
|
|
[561, "Stratum" ],
|
|
[562, "Elegy" ],
|
|
[563, "Raindance" ],
|
|
[564, "RC Tiger" ],
|
|
[565, "Flash" ],
|
|
[566, "Tahoma" ],
|
|
[567, "Savanna" ],
|
|
[568, "Bandito" ],
|
|
[569, "Freight" ],
|
|
[570, "Trailer" ],
|
|
[571, "Kart" ],
|
|
[572, "Mower" ],
|
|
[573, "Duneride" ],
|
|
[574, "Sweeper" ],
|
|
[575, "Broadway" ],
|
|
[576, "Tornado" ],
|
|
[577, "AT-400" ],
|
|
[578, "DFT-30" ],
|
|
[579, "Huntley" ],
|
|
[580, "Stafford" ],
|
|
[581, "BF-400" ],
|
|
[582, "Newsvan" ],
|
|
[583, "Tug" ],
|
|
[584, "Tanker Trailer" ],
|
|
[585, "Emperor" ],
|
|
[586, "Wayfarer" ],
|
|
[587, "Euros" ],
|
|
[588, "Hotdog" ],
|
|
[589, "Club" ],
|
|
[590, "Freight Boxcar" ],
|
|
[591, "Short Box Trailer"],
|
|
[592, "Andromada" ],
|
|
[593, "Dodo" ],
|
|
[594, "RC Cam" ],
|
|
[595, "Launch" ],
|
|
[596, "Police Car (LSPD)"],
|
|
[597, "Police Car (SFPD)"],
|
|
[598, "Police Car (LVPD)"],
|
|
[599, "Police Ranger" ],
|
|
[600, "Picador" ],
|
|
[601, "S.W.A.T. Van" ],
|
|
[602, "Alpha" ],
|
|
[603, "Phoenix" ],
|
|
[604, "Broken Glendale" ],
|
|
[605, "Broken Sadler" ],
|
|
[606, "Luggage Trailer" ],
|
|
[607, "Luggage Trailer" ],
|
|
[608, "Stair Trailer" ],
|
|
[609, "Boxville" ],
|
|
[610, "Farm Plow" ],
|
|
[611, "Utility Trailer" ],
|
|
],
|
|
[VRR_GAME_GTA_IV]: [ // GTA IV
|
|
[ 1264341792, "Admiral" ],
|
|
[ 1560980623, "Airtug" ],
|
|
[ 1171614426, "Ambulance" ],
|
|
[-1041692462, "Banshee" ],
|
|
[ 2053223216, "Benson" ],
|
|
[ 850991848 , "Biff" ],
|
|
[-344943009 , "Blista" ],
|
|
[ 1075851868, "Bobcat" ],
|
|
[-1987130134, "Boxville" ],
|
|
[-682211828 , "Buccaneer" ],
|
|
[-1346687836, "Burrito" ],
|
|
[-907477130 , "Burrito 2" ],
|
|
[-713569950 , "Bus" ],
|
|
[ 1884962369, "Cabby" ],
|
|
[ 2006918058, "Cavalcade" ],
|
|
[-67282078 , "Chavos" ],
|
|
[-2030171296, "Cognoscenti" ],
|
|
[ 1063483177, "Comet" ],
|
|
[ 108773431 , "Coquette" ],
|
|
[ 162883121 , "DF8" ],
|
|
[-1130810103, "Dillettante" ],
|
|
[ 723973206 , "Dukes" ],
|
|
[-1971955454, "E109" ],
|
|
[-685276541 , "Emperor" ],
|
|
[-1883002148, "Rusty Emperor" ],
|
|
[-276900515 , "Esperanto" ],
|
|
[-2119578145, "Faction" ],
|
|
[ 1127131465, "FIB Car" ],
|
|
[-1097828879, "Feltzer" ],
|
|
[ 974744810 , "Feroci" ],
|
|
[ 1026055242, "Airport Feroci" ],
|
|
[ 1938952078, "Firetruck" ],
|
|
[ 1353720154, "Flatbed" ],
|
|
[ 627033353 , "Fortune" ],
|
|
[ 1491375716, "Forklift" ],
|
|
[ 2016857647, "Futo" ],
|
|
[ 675415136 , "FXT" ],
|
|
[ 884422927 , "Habanero" ],
|
|
[-341892653 , "Hakumai" ],
|
|
[ 486987393 , "Huntley" ],
|
|
[ 418536135 , "Infernus" ],
|
|
[-1289722222, "Ingot" ],
|
|
[ 886934177 , "Intruder" ],
|
|
[ 1269098716, "Landstalker" ],
|
|
[-37030056 , "Lokus" ],
|
|
[-2124201592, "Manana" ],
|
|
[ 1304597482, "Marbella" ],
|
|
[-1260881538, "Merit" ],
|
|
[-310465116 , "Minivan" ],
|
|
[ 525509695 , "Moonbeam" ],
|
|
[ 583100975 , "Mr. Tasty" ],
|
|
[ 904750859 , "Mule" ],
|
|
[ 148777611 , "Noose Patrol Car" ],
|
|
[ 1911513875, "Noose Stockade" ],
|
|
[ 1348744438, "Oracle" ],
|
|
[ 569305213 , "Packer" ],
|
|
[-808457413 , "Patriot" ],
|
|
[-2077743597, "Perennial" ],
|
|
[-1590284256, "Airport Perennial"],
|
|
[ 1830407356, "Peyote" ],
|
|
[-2137348917, "Phantom" ],
|
|
[ 131140572 , "Pinnacle" ],
|
|
[ 1376298265, "PMP-600" ],
|
|
[ 2046537925, "Police Cruiser" ],
|
|
[-1627000575, "Police Patrol" ],
|
|
[-350085182 , "Police Patriot" ],
|
|
[-119658072 , "Pony" ],
|
|
[-1883869285, "Premier" ],
|
|
[-1962071130, "Presidente" ],
|
|
[-1150599089, "Primo" ],
|
|
[-1900572838, "Police Stockade" ],
|
|
[ 1390084576, "Rancher" ],
|
|
[ 83136452 , "Rebla" ],
|
|
[-845979911 , "Reply" ],
|
|
[ 627094268 , "Romero" ],
|
|
[-1932515764, "Roman's Taxi" ],
|
|
[-227741703 , "Ruiner" ],
|
|
[-449022887 , "Sabre" ],
|
|
[ 1264386590, "Sabre 2" ],
|
|
[-1685021548, "Sabre GT" ],
|
|
[-322343873 , "Schafter" ],
|
|
[ 1349725314, "Sentinel" ],
|
|
[ 1344573448, "Solair" ],
|
|
[-810318068 , "Speedo" ],
|
|
[ 1923400478, "Stallion" ],
|
|
[ 1677715180, "Steed" ],
|
|
[ 1747439474, "Stockade" ],
|
|
[ 1723137093, "Stratum" ],
|
|
[-1961627517, "Stretch" ],
|
|
[ 970598228 , "Sultan" ],
|
|
[-295689028 , "Sultan RS" ],
|
|
[ 1821991593, "Super GT" ],
|
|
[-956048545 , "Taxi" ],
|
|
[ 1208856469, "Taxi 2" ],
|
|
[ 1917016601, "Trashmaster" ],
|
|
[-1896659641, "Turismo" ],
|
|
[ 1534326199, "Uranus" ],
|
|
[-825837129 , "Vigero" ],
|
|
[-1758379524, "Vigero 2" ],
|
|
[-583281407 , "Vincent" ],
|
|
[-498054846 , "Virgo" ],
|
|
[ 2006667053, "Voodoo" ],
|
|
[ 1777363799, "Washington" ],
|
|
[ 1937616578, "Willard" ],
|
|
[-1099960214, "Yankee" ],
|
|
[-1830458836, "Bobber" ],
|
|
[-1842748181, "Faggio" ],
|
|
[ 584879743 , "Hellfury" ],
|
|
[ 1203311498, "NRG-900" ],
|
|
[-909201658 , "PCJ-600" ],
|
|
[ 788045382 , "Sanchez" ],
|
|
[-570033273 , "Zombie" ],
|
|
[ 837858166 , "Annihilator" ],
|
|
[-1660661558, "Maverick" ],
|
|
[ 353883353 , "Police Maverick" ],
|
|
[ 2027357303, "Tour Maverick" ],
|
|
[ 1033245328, "Dinghy" ],
|
|
[ 861409633 , "Jetmax" ],
|
|
[-1043459709, "Marquis" ],
|
|
[-488123221 , "Predator" ],
|
|
[ 1759673526, "Reefer" ],
|
|
[ 400514754 , "Squalo" ],
|
|
[ 1064455782, "Tuga" ],
|
|
[ 290013743 , "Tropic" ],
|
|
[-960289747 , "Cablecar" ],
|
|
[ 800869680 , "Subway" ],
|
|
[-1953988645, "El Train" ],
|
|
],
|
|
[VRR_GAME_MAFIA_ONE]: [ // Mafia 1
|
|
["fordtTud00.i3d" , "Blue Bolt Ace Tudor" ],
|
|
["fordtTud01.i3d" , "Dark Blue Bolt Ace Tudor" ],
|
|
["fordtTud02.i3d" , "Brown Bolt Ace Tudor" ],
|
|
["fordtTud03.i3d" , "Green Bolt Ace Tudor" ],
|
|
["fordtTud04.i3d" , "Red Bolt Ace Tudor" ],
|
|
["fordtto00.i3d" , "Blue Bolt Ace Touring" ],
|
|
["fordtto01.i3d" , "Dark Blue Bolt Ace Touring" ],
|
|
["fordtto02.i3d" , "Brown Bolt Ace Touring" ],
|
|
["fordtto03.i3d" , "Green Bolt Ace Touring" ],
|
|
["fordtto04.i3d" , "Red Bolt Ace Touring" ],
|
|
["fordtru00.i3d" , "Blue Bolt Ace Runabout" ],
|
|
["fordtru01.i3d" , "Dark Blue Bolt Ace Runabout" ],
|
|
["fordtru02.i3d" , "Brown Bolt Ace Runabout" ],
|
|
["fordtru03.i3d" , "Green Bolt Ace Runabout" ],
|
|
["fordtru04.i3d" , "Red Bolt Ace Runabout" ],
|
|
["fordtpi00.i3d" , "Blue Bolt Ace Pickup" ],
|
|
["fordtpi01.i3d" , "Dark Blue Bolt Ace Pickup" ],
|
|
["fordtpi02.i3d" , "Brown Bolt Ace Pickup" ],
|
|
["fordtpi03.i3d" , "Green Bolt Ace Pickup" ],
|
|
["fordtpi04.i3d" , "Red Bolt Ace Pickup" ],
|
|
["fordtFor00.i3d" , "Blue Bolt Ace Fordor" ],
|
|
["fordtFor01.i3d" , "Dark Blue Bolt Ace Fordor" ],
|
|
["fordtFor02.i3d" , "Brown Bolt Ace Fordor" ],
|
|
["fordtFor03.i3d" , "Green Bolt Ace Fordor" ],
|
|
["fordtFor04.i3d" , "Red Bolt Ace Fordor" ],
|
|
["fordtco00.i3d" , "Blue Bolt Ace Coupe" ],
|
|
["fordtco01.i3d" , "Dark Blue Bolt Ace Coupe" ],
|
|
["fordtco02.i3d" , "Brown Bolt Ace Coupe" ],
|
|
["fordtco03.i3d" , "Green Bolt Ace Coupe" ],
|
|
["fordtco04.i3d" , "Red Bolt Ace Coupe" ],
|
|
["forAtu00.i3d" , "Brown Bolt Model B Tudor" ],
|
|
["ForAtu01.i3d" , "Red Bolt Model B Tudor" ],
|
|
["ForAtu02.i3d" , "Green Bolt Model B Tudor" ],
|
|
["ForAtu03.i3d" , "Dark Blue Bolt Model B Tudor" ],
|
|
["ForAro00.i3d" , "Brown Bolt Model B Roadster" ],
|
|
["ForAro01.i3d" , "Red Bolt Model B Roadster" ],
|
|
["ForAro02.i3d" , "Green Bolt Model B Roadster" ],
|
|
["ForAro03.i3d" , "Dark Blue Bolt Model B Roadster" ],
|
|
["ForApic00.i3d" , "Brown Bolt Model B Pickup" ],
|
|
["ForApic01.i3d" , "Red Bolt Model B Pickup" ],
|
|
["ForApic02.i3d" , "Green Bolt Model B Pickup" ],
|
|
["ForApic03.i3d" , "Dark Blue Bolt Model B Pickup" ],
|
|
["ForAfo00.i3d" , "Brown Bolt Model B Fordor" ],
|
|
["ForAfo01.i3d" , "Red Bolt Model B Fordor" ],
|
|
["ForAfo02.i3d" , "Green Bolt Model B Fordor" ],
|
|
["ForAfo03.i3d" , "Dark Blue Bolt Model B Fordor" ],
|
|
["ForAde00.i3d" , "Brown Bolt Model B Delivery" ],
|
|
["ForAde01.i3d" , "Red Bolt Model B Delivery" ],
|
|
["ForAde02.i3d" , "Green Bolt Model B Delivery" ],
|
|
["ForAde03.i3d" , "Dark Blue Bolt Model B Delivery" ],
|
|
["ForAcou00.i3d" , "Brown Bolt Model B Coupe" ],
|
|
["ForAcou01.i3d" , "Red Bolt Model B Coupe" ],
|
|
["ForAcou02.i3d" , "Green Bolt Model B Coupe" ],
|
|
["ForAcou03.i3d" , "Dark Blue Bolt Model B Coupe" ],
|
|
["ForAtu00.i3d" , "Brown Bolt Model B Tudor" ],
|
|
["ForAtu01.i3d" , "Red Bolt Model B Tudor" ],
|
|
["ForAtu02.i3d" , "Green Bolt Model B Tudor" ],
|
|
["ForAtu03.i3d" , "Dark Blue Bolt Model B Tudor" ],
|
|
["forVco00.i3d" , "Green Bolt V8 Coupe" ],
|
|
["forVco01.i3d" , "Red Bolt V8 Coupe" ],
|
|
["forVco02.i3d" , "Blue Bolt V8 Coupe" ],
|
|
["forVco03.i3d" , "Grey Bolt V8 Coupe" ],
|
|
["forVfor00.i3d" , "Green Bolt V8 Forder" ],
|
|
["forVfor01.i3d" , "Red Bolt V8 Forder" ],
|
|
["forVfor02.i3d" , "Blue Bolt V8 Forder" ],
|
|
["forVfor03.i3d" , "Grey Bolt V8 Forder" ],
|
|
["forVro00.i3d" , "Green Bolt V8 Roadster" ],
|
|
["forVro01.i3d" , "Red Bolt V8 Roadster" ],
|
|
["forVro02.i3d" , "Blue Bolt V8 Roadster" ],
|
|
["forVro03.i3d" , "Grey Bolt V8 Roadster" ],
|
|
["forVto00.i3d" , "Green Bolt V8 Touring" ],
|
|
["forVto01.i3d" , "Red Bolt V8 Touring" ],
|
|
["forVto02.i3d" , "Blue Bolt V8 Touring" ],
|
|
["forVto03.i3d" , "Grey Bolt V8 Touring" ],
|
|
["forVtud00.i3d" , "Green Bolt V8 Tudor" ],
|
|
["forVtud01.i3d" , "Red Bolt V8 Tudor" ],
|
|
["forVtud02.i3d" , "Blue Bolt V8 Tudor" ],
|
|
["forVtud03.i3d" , "Grey Bolt V8 Tudor" ],
|
|
["miller00.i3d" , "Brubaker" ],
|
|
["speedster00.i3d" , "Silver Bruno Speedster 851" ],
|
|
["speedster01.i3d" , "Red Bruno Speedster 851" ],
|
|
["speedster02.i3d" , "Green Bruno Speedster 851" ],
|
|
["alfa00.i3d" , "Caesar 8C 2300 Racing" ],
|
|
["alfa8C00.i3d" , "Red Caesar 8C Mostro" ],
|
|
["alfa8C01.i3d" , "Black Caesar 8C Mostro" ],
|
|
["merced500K00.i3d" , "White Celeste Marque 500" ],
|
|
["merced500K01.i3d" , "Brown Celeste Marque 500" ],
|
|
["bugatti00.i3d" , "Blue Corrozella C-Otto" ],
|
|
["bugatti01.i3d" , "Green Corrozella C-Otto" ],
|
|
["pontFor00.i3d" , "Blue Crusader Chromium Forder" ],
|
|
["pontFor01.i3d" , "Violet Crusader Chromium Forder" ],
|
|
["pontTud00.i3d" , "Green Crusader Chromium Forder" ],
|
|
["pontTud01.i3d" , "Dark Blue Crusader Chromium Forder"],
|
|
["blackha00.i3d" , "Blue Falconer" ],
|
|
["blackha01.i3d" , "Red Falconer" ],
|
|
["black00.i3d" , "Gangster Falconer" ],
|
|
["taxi00.i3d" , "Falconer Yellowcar" ],
|
|
["hudcou00.i3d" , "Umber Guardian Terraplane Coupe" ],
|
|
["hudcou01.i3d" , "Beige Guardian Terraplane Coupe" ],
|
|
["hudcou02.i3d" , "Black Guardian Terraplane Coupe" ],
|
|
["hudfor00.i3d" , "Umber Guardian Terraplane Fordor" ],
|
|
["hudfor01.i3d" , "Beige Guardian Terraplane Fordor" ],
|
|
["hudfor02.i3d" , "Black Guardian Terraplane Fordor" ],
|
|
["hudtu00.i3d" , "Umber Guardian Terraplane Tudor" ],
|
|
["hudtu01.i3d" , "Beige Guardian Terraplane Tudor" ],
|
|
["hudtu02.i3d" , "Black Guardian Terraplane Tudor" ],
|
|
["cad_ford00.i3d" , "Lassister Fordor" ],
|
|
["cad_phaeton00", "Lassister Phaeton" ],
|
|
["cad_road00.i3d" , "Lassister Roadster" ],
|
|
["hartmann00.i3d" , "Lassister Appolyon" ],
|
|
["hearseCa00.i3d" , "Lassister Charon" ],
|
|
["polCad00.i3d" , "Lassister Police" ],
|
|
["chemaFor00.i3d" , "Green Shubert Extra Six Fordor" ],
|
|
["chemaFor01.i3d" , "White Shubert Extra Six Fordor" ],
|
|
["chemaFor02.i3d" , "Blue Shubert Extra Six Fordor" ],
|
|
["polimFor00.i3d" , "Shubert Extra Six Fordor Police" ],
|
|
["chematud00.i3d" , "Green Shubert Extra Six Tudor" ],
|
|
["chematud01.i3d" , "White Shubert Extra Six Tudor" ],
|
|
["chematud02.i3d" , "Blue Shubert Extra Six Tudor" ],
|
|
["polimTud00.i3d" , "Shubert Extra Six Tudor Police" ],
|
|
["chev00.i3d" , "Red Shubert Six" ],
|
|
["chev01.i3d" , "White Shubert Six" ],
|
|
["chev02.i3d" , "Black Shubert Six" ],
|
|
["poli00.i3d" , "Shubert Six Police" ],
|
|
["arrow00.i3d" , "Silver Fletcher" ],
|
|
["cordca00.i3d" , "Orange Thor 810 Cabriolet" ],
|
|
["cordca01.i3d" , "Black Thor 810 Cabriolet" ],
|
|
["cordph00.i3d" , "Orange Thor 810 Phaeton" ],
|
|
["cordph01.i3d" , "Black Thor 810 Phaeton" ],
|
|
["cordse00.i3d" , "Orange Thor 810 Sedan" ],
|
|
["cordse01.i3d" , "Black Thor 810 Sedan" ],
|
|
["deuseJco00.i3d" , "Trautenberg Model J" ],
|
|
["duesenberg00.i3d" , "Trautenberg Racer 4WD" ],
|
|
["airflFor00.i3d" , "Yellow Ulver Airstream Fordor" ],
|
|
["airflFor01.i3d" , "Green Ulver Airstream Fordor" ],
|
|
["airfltud00.i3d" , "Yellow Ulver Airstream Tudor" ],
|
|
["airfltud01.i3d" , "Green Ulver Airstream Tudor" ],
|
|
["buiCou00.i3d" , "Blue Wright Coupe" ],
|
|
["buiCou01.i3d" , "Red Wright Coupe" ],
|
|
["buiCou02.i3d" , "Green Wright Coupe" ],
|
|
["buigang00.i3d" , "Gangster Wright Coupe" ],
|
|
["buikFor00.i3d" , "Blue Wright Fordor" ],
|
|
["buikFor01.i3d" , "Red Wright Fordor" ],
|
|
["buikFor02.i3d" , "Green Wright Fordor" ],
|
|
["Ambulance00.i3d" , "Bolt Ambulance" ],
|
|
["fire00.i3d" , "Bolt Firetruck" ],
|
|
["hearseA00.i3d" , "Bolt Hearse" ],
|
|
["truckA00.i3d" , "Bolt Truck Flatbed" ],
|
|
["truckB00.i3d" , "Bolt Truck Covered" ],
|
|
["TruckBxx00.i3d" , "Bolt Truck(Atlantic Import)" ],
|
|
["truckBx00.i3d" , "Bolt Truck" ],
|
|
],
|
|
[VRR_GAME_GTA_V]: [
|
|
["adder", 3078201489],
|
|
["airbus", 1283517198],
|
|
["airtug", 1560980623],
|
|
["akula", 1181327175],
|
|
["akuma", 1672195559],
|
|
["alpha", 767087018],
|
|
["alphaz1", 2771347558],
|
|
["alkonost", 3929093893],
|
|
["ambulance", 1171614426],
|
|
["annihilator2", 295054921],
|
|
["annihilator", 837858166],
|
|
["apc", 562680400],
|
|
["ardent", 159274291],
|
|
["armytanker", 3087536137],
|
|
["armytrailer2", 2657817814],
|
|
["armytrailer", 2818520053],
|
|
["asbo", 1118611807],
|
|
["asea2", 2487343317],
|
|
["asea", 2485144969],
|
|
["asterope", 2391954683],
|
|
["autarch", 3981782132],
|
|
["avarus", 2179174271],
|
|
["avenger2", 408970549],
|
|
["avenger", 2176659152],
|
|
["avisa", 2588363614],
|
|
["bagger", 2154536131],
|
|
["baletrailer", 3895125590],
|
|
["baller2", 142944341],
|
|
["baller3", 1878062887],
|
|
["baller4", 634118882],
|
|
["baller5", 470404958],
|
|
["baller6", 666166960],
|
|
["baller", 3486135912],
|
|
["banshee2", 633712403],
|
|
["banshee", 3253274834],
|
|
["barracks2", 1074326203],
|
|
["barracks3", 630371791],
|
|
["barracks", 3471458123],
|
|
["barrage", 4081974053],
|
|
["bati2", 3403504941],
|
|
["bati", 4180675781],
|
|
["benson", 2053223216],
|
|
["besra", 1824333165],
|
|
["bestiagts", 1274868363],
|
|
["bf400", 86520421],
|
|
["bfinjection", 1126868326],
|
|
["biff", 850991848],
|
|
["bifta", 3945366167],
|
|
["bison2", 2072156101],
|
|
["bison3", 1739845664],
|
|
["bison", 4278019151],
|
|
["bjxl", 850565707],
|
|
["blade", 3089165662],
|
|
["blazer2", 4246935337],
|
|
["blazer3", 3025077634],
|
|
["blazer4", 3854198872],
|
|
["blazer5", 2704629607],
|
|
["blazer", 2166734073],
|
|
["blimp2", 3681241380],
|
|
["blimp3", 3987008919],
|
|
["blimp", 4143991942],
|
|
["blista2", 1039032026],
|
|
["blista3", 3703315515],
|
|
["blista", 3950024287],
|
|
["bmx", 1131912276],
|
|
["boattrailer", 524108981],
|
|
["bobcatxl", 1069929536],
|
|
["bodhi2", 2859047862],
|
|
["bombushka", 4262088844],
|
|
["boxville2", 4061868990],
|
|
["boxville3", 121658888],
|
|
["boxville4", 444171386],
|
|
["boxville5", 682434785],
|
|
["boxville", 2307837162],
|
|
["brawler", 2815302597],
|
|
["brickade", 3989239879],
|
|
["brioso2", 1429622905],
|
|
["brioso", 1549126457],
|
|
["bruiser2", 2600885406],
|
|
["bruiser3", 2252616474],
|
|
["bruiser", 668439077],
|
|
["brutus2", 2403970600],
|
|
["brutus3", 2038858402],
|
|
["brutus", 2139203625],
|
|
["btype2", 3463132580],
|
|
["btype3", 3692679425],
|
|
["btype", 117401876],
|
|
["buccaneer2", 3281516360],
|
|
["buccaneer", 3612755468],
|
|
["buffalo2", 736902334],
|
|
["buffalo3", 237764926],
|
|
["buffalo", 3990165190],
|
|
["bulldozer", 1886712733],
|
|
["bullet", 2598821281],
|
|
["burrito2", 3387490166],
|
|
["burrito3", 2551651283],
|
|
["burrito4", 893081117],
|
|
["burrito5", 1132262048],
|
|
["burrito", 2948279460],
|
|
["bus", 3581397346],
|
|
["buzzard2", 745926877],
|
|
["buzzard", 788747387],
|
|
["cablecar", 3334677549],
|
|
["caddy2", 3757070668],
|
|
["caddy3", 3525819835],
|
|
["caddy", 1147287684],
|
|
["camper", 1876516712],
|
|
["calico", 3101054893],
|
|
["caracara2", 2945871676],
|
|
["caracara", 1254014755],
|
|
["carbonizzare", 2072687711],
|
|
["carbonrs", 11251904],
|
|
["cargobob2", 1621617168],
|
|
["cargobob3", 1394036463],
|
|
["cargobob4", 2025593404],
|
|
["cargobob", 4244420235],
|
|
["cargoplane", 368211810],
|
|
["casco", 941800958],
|
|
["cavalcade2", 3505073125],
|
|
["cavalcade", 2006918058],
|
|
["cerberus2", 679453769],
|
|
["cerberus3", 1909700336],
|
|
["cerberus", 3493417227],
|
|
["cheburek", 3306466016],
|
|
["cheetah2", 223240013],
|
|
["cheetah", 2983812512],
|
|
["chernobog", 3602674979],
|
|
["chimera", 6774487],
|
|
["chino2", 2933279331],
|
|
["chino", 349605904],
|
|
["cliffhanger", 390201602],
|
|
["clique", 2728360112],
|
|
["club", 2196012677],
|
|
["coach", 2222034228],
|
|
["cog552", 704435172],
|
|
["cog55", 906642318],
|
|
["cogcabrio", 330661258],
|
|
["cognoscenti2", 3690124666],
|
|
["cognoscenti", 2264796000],
|
|
["comet2", 3249425686],
|
|
["comet3", 2272483501],
|
|
["comet4", 1561920505],
|
|
["comet5", 661493923],
|
|
["comet6", 2568944644],
|
|
["contender", 683047626],
|
|
["coquette2", 1011753235],
|
|
["coquette3", 784565758],
|
|
["coquette4", 2566281822],
|
|
["coquette", 108773431],
|
|
["cruiser", 448402357],
|
|
["crusader", 321739290],
|
|
["cuban800", 3650256867],
|
|
["cutter", 3288047904],
|
|
["cyclone", 1392481335],
|
|
["cypher", 1755697647],
|
|
["daemon2", 2890830793],
|
|
["daemon", 2006142190],
|
|
["deathbike2", 2482017624],
|
|
["deathbike3", 2920466844],
|
|
["deathbike", 4267640610],
|
|
["defiler", 822018448],
|
|
["deluxo", 1483171323],
|
|
["deveste", 1591739866],
|
|
["deviant", 1279262537],
|
|
["diablous2", 1790834270],
|
|
["diablous", 4055125828],
|
|
["dilettante2", 1682114128],
|
|
["dilettante", 3164157193],
|
|
["dinghy2", 276773164],
|
|
["dinghy3", 509498602],
|
|
["dinghy4", 867467158],
|
|
["dinghy5", 3314393930],
|
|
["dinghy", 1033245328],
|
|
["dloader", 1770332643],
|
|
["docktrailer", 2154757102],
|
|
["docktug", 3410276810],
|
|
["dodo", 3393804037],
|
|
["dominator2", 3379262425],
|
|
["dominator3", 3308022675],
|
|
["dominator4", 3606777648],
|
|
["dominator5", 2919906639],
|
|
["dominator6", 3001042683],
|
|
["dominator7", 426742808],
|
|
["dominator8", 736672010],
|
|
["dominator", 80636076],
|
|
["double", 2623969160],
|
|
["drafter", 686471183],
|
|
["dubsta2", 3900892662],
|
|
["dubsta3", 3057713523],
|
|
["dubsta", 1177543287],
|
|
["dukes2", 3968823444],
|
|
["dukes3", 2134119907],
|
|
["dukes", 723973206],
|
|
["dump", 2164484578],
|
|
["dune2", 534258863],
|
|
["dune3", 1897744184],
|
|
["dune4", 3467805257],
|
|
["dune5", 3982671785],
|
|
["dune", 2633113103],
|
|
["duster", 970356638],
|
|
["dynasty", 310284501],
|
|
["elegy2", 3728579874],
|
|
["elegy", 196747873],
|
|
["ellie", 3027423925],
|
|
["emerus", 1323778901],
|
|
["emperor2", 2411965148],
|
|
["emperor3", 3053254478],
|
|
["emperor", 3609690755],
|
|
["enduro", 1753414259],
|
|
["entity2", 2174267100],
|
|
["entityxf", 3003014393],
|
|
["esskey", 2035069708],
|
|
["euros", 2038480341],
|
|
["everon", 2538945576],
|
|
["exemplar", 4289813342],
|
|
["f620", 3703357000],
|
|
["faction2", 2504420315],
|
|
["faction3", 2255212070],
|
|
["faction", 2175389151],
|
|
["fagaloa", 1617472902],
|
|
["faggio2", 55628203],
|
|
["faggio3", 3005788552],
|
|
["faggio", 2452219115],
|
|
["fbi2", 2647026068],
|
|
["fbi", 1127131465],
|
|
["fcr2", 3537231886],
|
|
["fcr", 627535535],
|
|
["felon2", 4205676014],
|
|
["felon", 3903372712],
|
|
["feltzer2", 2299640309],
|
|
["feltzer3", 2728226064],
|
|
["firetruk", 1938952078],
|
|
["fixter", 3458454463],
|
|
["flashgt", 3035832600],
|
|
["flatbed", 1353720154],
|
|
["fmj", 1426219628],
|
|
["forklift", 1491375716],
|
|
["formula2", 2334210311],
|
|
["formula", 340154634],
|
|
["fq2", 3157435195],
|
|
["freecrawler", 4240635011],
|
|
["freight", 1030400667],
|
|
["freightcar", 184361638],
|
|
["freightcar2", 3186376089],
|
|
["freightcont1", 920453016],
|
|
["freightcont2", 240201337],
|
|
["freightgrain", 642617954],
|
|
["freighttrailer", 3517691494],
|
|
["frogger2", 1949211328],
|
|
["frogger", 744705981],
|
|
["fugitive", 1909141499],
|
|
["furia", 960812448],
|
|
["furoregt", 3205927392],
|
|
["fusilade", 499169875],
|
|
["futo", 2016857647],
|
|
["futo2", 2787736776],
|
|
["gargoyle", 741090084],
|
|
["gauntlet2", 349315417],
|
|
["gauntlet3", 722226637],
|
|
["gauntlet4", 1934384720],
|
|
["gauntlet5", 2172320429],
|
|
["gauntlet", 2494797253],
|
|
["gb200", 1909189272],
|
|
["gburrito2", 296357396],
|
|
["gburrito", 2549763894],
|
|
["glendale2", 3381377750],
|
|
["glendale", 75131841],
|
|
["gp1", 1234311532],
|
|
["graintrailer", 1019737494],
|
|
["granger", 2519238556],
|
|
["gresley", 2751205197],
|
|
["growler", 1304459735],
|
|
["gt500", 2215179066],
|
|
["guardian", 2186977100],
|
|
["habanero", 884422927],
|
|
["hakuchou2", 4039289119],
|
|
["hakuchou", 1265391242],
|
|
["halftrack", 4262731174],
|
|
["handler", 444583674],
|
|
["hauler2", 387748548],
|
|
["hauler", 1518533038],
|
|
["havok", 2310691317],
|
|
["hellion", 3932816511],
|
|
["hermes", 15219735],
|
|
["hexer", 301427732],
|
|
["hotknife", 37348240],
|
|
["hotring", 1115909093],
|
|
["howard", 3287439187],
|
|
["hunter", 4252008158],
|
|
["huntley", 486987393],
|
|
["hustler", 600450546],
|
|
["hydra", 970385471],
|
|
["imorgon", 3162245632],
|
|
["impaler2", 1009171724],
|
|
["impaler3", 2370166601],
|
|
["impaler4", 2550461639],
|
|
["impaler", 3001042683],
|
|
["imperator2", 1637620610],
|
|
["imperator3", 3539435063],
|
|
["imperator", 444994115],
|
|
["infernus2", 2889029532],
|
|
["infernus", 418536135],
|
|
["ingot", 3005245074],
|
|
["innovation", 4135840458],
|
|
["insurgent2", 2071877360],
|
|
["insurgent3", 2370534026],
|
|
["insurgent", 2434067162],
|
|
["intruder", 886934177],
|
|
["issi2", 3117103977],
|
|
["issi3", 931280609],
|
|
["issi4", 628003514],
|
|
["issi5", 1537277726],
|
|
["issi6", 1239571361],
|
|
["issi7", 1854776567],
|
|
["italigtb2", 3812247419],
|
|
["italigtb", 2246633323],
|
|
["italigto", 3963499524],
|
|
["italirsx", 3145241962],
|
|
["jackal", 3670438162],
|
|
["jb7002", 394110044],
|
|
["jb700", 1051415893],
|
|
["jester4", 2712905841],
|
|
["jester2", 3188613414],
|
|
["jester3", 4080061290],
|
|
["jester", 2997294755],
|
|
["jet", 1058115860],
|
|
["jetmax", 861409633],
|
|
["journey", 4174679674],
|
|
["jugular", 4086055493],
|
|
["kalahari", 92612664],
|
|
["kamacho", 4173521127],
|
|
["kanjo", 409049982],
|
|
["khamelion", 544021352],
|
|
["khanjali", 2859440138],
|
|
["komoda", 3460613305],
|
|
["kosatka", 1336872304],
|
|
["krieger", 3630826055],
|
|
["kuruma2", 410882957],
|
|
["kuruma", 2922118804],
|
|
["landstalker2", 3456868130],
|
|
["landstalker", 1269098716],
|
|
["lazer", 3013282534],
|
|
["le7b", 3062131285],
|
|
["lectro", 640818791],
|
|
["lguard", 469291905],
|
|
["limo2", 4180339789],
|
|
["locust", 3353694737],
|
|
["longfin", 1861786828],
|
|
["lurcher", 2068293287],
|
|
["luxor2", 3080673438],
|
|
["luxor", 621481054],
|
|
["lynx", 482197771],
|
|
["mamba", 2634021974],
|
|
["mammatus", 2548391185],
|
|
["manana2", 1717532765],
|
|
["manana", 2170765704],
|
|
["manchez2", 1086534307],
|
|
["manchez", 2771538552],
|
|
["marquis", 3251507587],
|
|
["marshall", 1233534620],
|
|
["massacro2", 3663206819],
|
|
["massacro", 4152024626],
|
|
["maverick", 2634305738],
|
|
["menacer", 2044532910],
|
|
["mesa2", 3546958660],
|
|
["mesa3", 2230595153],
|
|
["mesa", 914654722],
|
|
["metrotrain", 868868440],
|
|
["michelli", 1046206681],
|
|
["microlight", 2531412055],
|
|
["miljet", 165154707],
|
|
["minitank", 3040635986],
|
|
["minivan2", 3168702960],
|
|
["minivan", 3984502180],
|
|
["mixer2", 475220373],
|
|
["mixer", 3510150843],
|
|
["mogul", 3545667823],
|
|
["molotok", 1565978651],
|
|
["monroe", 3861591579],
|
|
["monster3", 1721676810],
|
|
["monster4", 840387324],
|
|
["monster5", 3579220348],
|
|
["monster", 3449006043],
|
|
["moonbeam2", 1896491931],
|
|
["moonbeam", 525509695],
|
|
["mower", 1783355638],
|
|
["mule2", 3244501995],
|
|
["mule3", 2242229361],
|
|
["mule4", 1945374990],
|
|
["mule", 904750859],
|
|
["nebula", 3412338231],
|
|
["nemesis", 3660088182],
|
|
["neo", 2674840994],
|
|
["neon", 2445973230],
|
|
["nero2", 1093792632],
|
|
["nero", 1034187331],
|
|
["nightblade", 2688780135],
|
|
["nightshade", 2351681756],
|
|
["nightshark", 433954513],
|
|
["nimbus", 2999939664],
|
|
["ninef2", 2833484545],
|
|
["ninef", 1032823388],
|
|
["nokota", 1036591958],
|
|
["novak", 2465530446],
|
|
["omnis", 3517794615],
|
|
["openwheel1", 1492612435],
|
|
["openwheel2", 1181339704],
|
|
["oppressor2", 2069146067],
|
|
["oppressor", 884483972],
|
|
["oracle2", 3783366066],
|
|
["oracle", 1348744438],
|
|
["osiris", 1987142870],
|
|
["outlaw", 408825843],
|
|
["packer", 569305213],
|
|
["panto", 3863274624],
|
|
["paradise", 1488164764],
|
|
["paragon2", 1416466158],
|
|
["paragon", 3847255899],
|
|
["pariah", 867799010],
|
|
["patriot2", 3874056184],
|
|
["patriot", 3486509883],
|
|
["patrolboat", 4018222598],
|
|
["pbus2", 345756458],
|
|
["pbus", 2287941233],
|
|
["pcj", 3385765638],
|
|
["penetrator", 2536829930],
|
|
["penumbra2", 3663644634],
|
|
["penumbra", 3917501776],
|
|
["peyote2", 2490551588],
|
|
["peyote3", 1107404867],
|
|
["peyote", 1830407356],
|
|
["pfister811", 2465164804],
|
|
["phantom2", 2645431192],
|
|
["phantom3", 177270108],
|
|
["phantom", 2157618379],
|
|
["phoenix", 2199527893],
|
|
["picador", 1507916787],
|
|
["pigalle", 1078682497],
|
|
["police2", 2667966721],
|
|
["police3", 1912215274],
|
|
["police4", 2321795001],
|
|
["police", 2046537925],
|
|
["policeb", 4260343491],
|
|
["policeold1", 2758042359],
|
|
["policeold2", 2515846680],
|
|
["policet", 456714581],
|
|
["polmav", 353883353],
|
|
["pony2", 943752001],
|
|
["pony", 4175309224],
|
|
["pounder2", 1653666139],
|
|
["pounder", 2112052861],
|
|
["prairie", 2844316578],
|
|
["pranger", 741586030],
|
|
["predator", 3806844075],
|
|
["premier", 2411098011],
|
|
["previon", 1416471345],
|
|
["primo2", 2254540506],
|
|
["primo", 3144368207],
|
|
["proptrailer", 356391690],
|
|
["prototipo", 2123327359],
|
|
["pyro", 2908775872],
|
|
["radi", 2643899483],
|
|
["raiden", 2765724541],
|
|
["raketrailer", 390902130],
|
|
["rallytruck", 2191146052],
|
|
["rancherxl2", 1933662059],
|
|
["rancherxl", 1645267888],
|
|
["rapidgt2", 1737773231],
|
|
["rapidgt3", 2049897956],
|
|
["rapidgt", 2360515092],
|
|
["raptor", 3620039993],
|
|
["ratbike", 1873600305],
|
|
["ratloader2", 3705788919],
|
|
["ratloader", 3627815886],
|
|
["rcbandito", 4008920556],
|
|
["reaper", 234062309],
|
|
["rebel2", 2249373259],
|
|
["rebel", 3087195462],
|
|
["rebla", 83136452],
|
|
["regina", 4280472072],
|
|
["remus", 1377217886],
|
|
["rentalbus", 3196165219],
|
|
["retinue2", 2031587082],
|
|
["retinue", 1841130506],
|
|
["revolter", 3884762073],
|
|
["rhapsody", 841808271],
|
|
["rhino", 782665360],
|
|
["riata", 2762269779],
|
|
["riot2", 2601952180],
|
|
["riot", 3089277354],
|
|
["ripley", 3448987385],
|
|
["rocoto", 2136773105],
|
|
["rogue", 3319621991],
|
|
["romero", 627094268],
|
|
["rrocket", 916547552],
|
|
["rt3000", 3842363289],
|
|
["rubble", 2589662668],
|
|
["ruffian", 3401388520],
|
|
["ruiner2", 941494461],
|
|
["ruiner3", 777714999],
|
|
["ruiner", 4067225593],
|
|
["rumpo2", 2518351607],
|
|
["rumpo3", 1475773103],
|
|
["rumpo", 1162065741],
|
|
["ruston", 719660200],
|
|
["s80", 3970348707],
|
|
["sabregt2", 223258115],
|
|
["sabregt", 2609945748],
|
|
["sadler2", 734217681],
|
|
["sadler", 3695398481],
|
|
["sanchez2", 2841686334],
|
|
["sanchez", 788045382],
|
|
["sanctus", 1491277511],
|
|
["sandking2", 989381445],
|
|
["sandking", 3105951696],
|
|
["savage", 4212341271],
|
|
["savestra", 903794909],
|
|
["sc1", 1352136073],
|
|
["scarab2", 1542143200],
|
|
["scarab3", 3715219435],
|
|
["scarab", 3147997943],
|
|
["schafter2", 3039514899],
|
|
["schafter3", 2809443750],
|
|
["schafter4", 1489967196],
|
|
["schafter5", 3406724313],
|
|
["schafter6", 1922255844],
|
|
["schlagen", 3787471536],
|
|
["schwarzer", 3548084598],
|
|
["scorcher", 4108429845],
|
|
["scramjet", 3656405053],
|
|
["scrap", 2594165727],
|
|
["seabreeze", 3902291871],
|
|
["seashark2", 3678636260],
|
|
["seashark3", 3983945033],
|
|
["seashark", 3264692260],
|
|
["seasparrow2", 1229411063],
|
|
["seasparrow3", 1593933419],
|
|
["seasparrow", 3568198617],
|
|
["seminole2", 2484160806],
|
|
["seminole", 1221512915],
|
|
["sentinel2", 873639469],
|
|
["sentinel3", 1104234922],
|
|
["sentinel", 1349725314],
|
|
["serrano", 1337041428],
|
|
["seven70", 2537130571],
|
|
["shamal", 3080461301],
|
|
["sheava", 819197656],
|
|
["sheriff2", 1922257928],
|
|
["sheriff", 2611638396],
|
|
["shotaro", 3889340782],
|
|
["skylift", 1044954915],
|
|
["slamtruck", 3249056020],
|
|
["slamvan2", 833469436],
|
|
["slamvan3", 1119641113],
|
|
["slamvan4", 2233918197],
|
|
["slamvan5", 373261600],
|
|
["slamvan6", 1742022738],
|
|
["slamvan", 729783779],
|
|
["sovereign", 743478836],
|
|
["specter2", 1074745671],
|
|
["specter", 1886268224],
|
|
["speeder2", 437538602],
|
|
["speeder", 231083307],
|
|
["speedo2", 728614474],
|
|
["speedo4", 219613597],
|
|
["speedo", 3484649228],
|
|
["squaddie", 4192631813],
|
|
["squalo", 400514754],
|
|
["stafford", 321186144],
|
|
["stalion2", 3893323758],
|
|
["stalion", 1923400478],
|
|
["stanier", 2817386317],
|
|
["starling", 2594093022],
|
|
["stinger", 1545842587],
|
|
["stingergt", 2196019706],
|
|
["stockade3", 4080511798],
|
|
["stockade", 1747439474],
|
|
["stratum", 1723137093],
|
|
["streiter", 1741861769],
|
|
["stretch", 2333339779],
|
|
["strikeforce", 1692272545],
|
|
["stromberg", 886810209],
|
|
["stryder", 301304410],
|
|
["stunt", 2172210288],
|
|
["submersible2", 3228633070],
|
|
["submersible", 771711535],
|
|
["sugoi", 987469656],
|
|
["sultan3", 4003946083],
|
|
["sultan2", 872704284],
|
|
["sultan", 970598228],
|
|
["sultanrs", 3999278268],
|
|
["suntrap", 4012021193],
|
|
["superd", 1123216662],
|
|
["supervolito2", 2623428164],
|
|
["supervolito", 710198397],
|
|
["surano", 384071873],
|
|
["surfer2", 2983726598],
|
|
["surfer", 699456151],
|
|
["surge", 2400073108],
|
|
["swift2", 1075432268],
|
|
["swift", 3955379698],
|
|
["swinger", 500482303],
|
|
["t20", 1663218586],
|
|
["taco", 1951180813],
|
|
["tailgater2", 3050505892],
|
|
["tailgater", 3286105550],
|
|
["taipan", 3160260734],
|
|
["tampa2", 3223586949],
|
|
["tampa3", 3084515313],
|
|
["tampa", 972671128],
|
|
["tanker2", 1956216962],
|
|
["tanker", 3564062519],
|
|
["tankercar", 586013744],
|
|
["taxi", 3338918751],
|
|
["technical2", 1180875963],
|
|
["technical3", 1356124575],
|
|
["technical", 2198148358],
|
|
["tempesta", 272929391],
|
|
["terbyte", 2306538597],
|
|
["tezeract", 1031562256],
|
|
["thrax", 1044193113],
|
|
["thrust", 1836027715],
|
|
["thruster", 1489874736],
|
|
["tigon", 2936769864],
|
|
["tiptruck2", 3347205726],
|
|
["tiptruck", 48339065],
|
|
["titan", 1981688531],
|
|
["torero", 1504306544],
|
|
["tornado2", 1531094468],
|
|
["tornado3", 1762279763],
|
|
["tornado4", 2261744861],
|
|
["tornado5", 2497353967],
|
|
["tornado6", 2736567667],
|
|
["tornado", 464687292],
|
|
["toro2", 908897389],
|
|
["toro", 1070967343],
|
|
["toros", 3126015148],
|
|
["tourbus", 1941029835],
|
|
["towtruck2", 3852654278],
|
|
["towtruck", 2971866336],
|
|
["toreador", 1455990255],
|
|
["tr2", 2078290630],
|
|
["tr3", 1784254509],
|
|
["tr4", 2091594960],
|
|
["tractor2", 2218488798],
|
|
["tractor3", 1445631933],
|
|
["tractor", 1641462412],
|
|
["trailerlarge", 1502869817],
|
|
["trailerlogs", 2016027501],
|
|
["trailers2", 2715434129],
|
|
["trailers3", 2236089197],
|
|
["trailers4", 3194418602],
|
|
["trailers", 3417488910],
|
|
["trailersmall2", 2413121211],
|
|
["trailersmall", 712162987],
|
|
["trash2", 3039269212],
|
|
["trash", 1917016601],
|
|
["trflat", 2942498482],
|
|
["tribike2", 3061159916],
|
|
["tribike3", 3894672200],
|
|
["tribike", 1127861609],
|
|
["trophytruck2", 3631668194],
|
|
["trophytruck", 101905590],
|
|
["tropic2", 1448677353],
|
|
["tropic", 290013743],
|
|
["tropos", 1887331236],
|
|
["tug", 2194326579],
|
|
["tula", 1043222410],
|
|
["tulip", 1456744817],
|
|
["turismo2", 3312836369],
|
|
["turismor", 408192225],
|
|
["tvtrailer", 2524324030],
|
|
["tyrant", 3918533058],
|
|
["tyrus", 2067820283],
|
|
["utillitruck2", 887537515],
|
|
["utillitruck3", 2132890591],
|
|
["utillitruck", 516990260],
|
|
["vacca", 338562499],
|
|
["vader", 4154065143],
|
|
["vagner", 1939284556],
|
|
["vagrant", 740289177],
|
|
["valkyrie2", 1543134283],
|
|
["valkyrie", 2694714877],
|
|
["vamos", 4245851645],
|
|
["vectre", 2754593701],
|
|
["velum2", 1077420264],
|
|
["velum", 2621610858],
|
|
["verlierer2", 1102544804],
|
|
["verus", 298565713],
|
|
["vetir", 2014313426],
|
|
["veto", 3437611258],
|
|
["veto2", 2802050217],
|
|
["vestra", 1341619767],
|
|
["vigero", 3469130167],
|
|
["vigilante", 3052358707],
|
|
["vindicator", 2941886209],
|
|
["virgo2", 3395457658],
|
|
["virgo3", 16646064],
|
|
["virgo", 3796912450],
|
|
["viseris", 3903371924],
|
|
["visione", 3296789504],
|
|
["volatol", 447548909],
|
|
["volatus", 2449479409],
|
|
["voltic2", 989294410],
|
|
["voltic", 2672523198],
|
|
["voodoo2", 523724515],
|
|
["voodoo", 2006667053],
|
|
["vortex", 3685342204],
|
|
["vstr", 1456336509],
|
|
["warrener", 579912970],
|
|
["washington", 1777363799],
|
|
["wastelander", 2382949506],
|
|
["weevil", 1644055914],
|
|
["windsor2", 2364918497],
|
|
["windsor", 1581459400],
|
|
["winky", 4084658662],
|
|
["wolfsbane", 3676349299],
|
|
["xa21", 917809321],
|
|
["xls2", 3862958888],
|
|
["xls", 1203490606],
|
|
["yosemite2", 1693751655],
|
|
["yosemite3", 67753863],
|
|
["yosemite", 1871995513],
|
|
["youga2", 1026149675],
|
|
["youga3", 1802742206],
|
|
["youga", 65402552],
|
|
["z190", 838982985],
|
|
["zentorno", 2891838741],
|
|
["zhaba", 1284356689],
|
|
["zion2", 3101863448],
|
|
["zion3", 1862507111],
|
|
["zion", 3172678083],
|
|
["zombiea", 3285698347],
|
|
["zombieb", 3724934023],
|
|
["zorrusso", 3612858749],
|
|
["zr350", 2436313176],
|
|
["zr3802", 3188846534],
|
|
["zr3803", 2816263004],
|
|
["zr380", 540101442],
|
|
["ztype", 758895617],
|
|
]
|
|
},
|
|
objects: {
|
|
[VRR_GAME_GTA_III]: [
|
|
[172, "BaseballBat"],
|
|
[173, "Colt45"],
|
|
[178, "Uzi"],
|
|
[176, "Shotgun"],
|
|
[171, "AK47"],
|
|
[180, "M16"],
|
|
[177, "SniperRifle"],
|
|
[175, "RPG"],
|
|
[181, "Flamethrower"],
|
|
[174, "MolotovCocktail"],
|
|
[170, "Grenade"],
|
|
[182, "RemoteDetonator"],
|
|
[1319, "GenericPackageWhite"],
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA VC
|
|
[259, "BrassKnuckles"],
|
|
[260, "Screwdriver"],
|
|
[261, "GolfClub"],
|
|
[262, "Nitestick"],
|
|
[263, "Knife"],
|
|
[264, "BaseballBat"],
|
|
[265, "Hammer"],
|
|
[266, "MeatCleaver"],
|
|
[267, "Machete"],
|
|
[268, "Katana"],
|
|
[269, "Chainsaw"],
|
|
[270, "Grenade"],
|
|
[270, "RemoteGrenade"],
|
|
[271, "Teargas"],
|
|
[272, "MolotovCocktail"],
|
|
[273, "RocketUnfirable"],
|
|
[274, "Colt45"],
|
|
[275, "Python"],
|
|
[277, "Shotgun"],
|
|
[278, "SpazShotgun"],
|
|
[279, "StubbyShotgun"],
|
|
[281, "Tec9"],
|
|
[282, "Uzi"],
|
|
[283, "Ingram"],
|
|
[284, "MP5"],
|
|
[280, "M4"],
|
|
[276, "Ruger"],
|
|
[285, "SniperRifle"],
|
|
[286, "LaserSniper"],
|
|
[287, "RPG"],
|
|
[288, "FlameThrower"],
|
|
[289, "M60"],
|
|
[290, "Minigun"],
|
|
[291, "Detonator"],
|
|
[258, "Cellphone"],
|
|
[349, "Crate"],
|
|
[346, "CardboardBox"],
|
|
[342, "Barrel"],
|
|
[502, "GenericPackage"],
|
|
[596, "BottleWhite"],
|
|
[594, "BeerCan"],
|
|
[592, "BottleYellow"],
|
|
[500, "ArmourVest"],
|
|
[510, "PizzaBox"],
|
|
[597, "SodaBottle"],
|
|
[502, "GenericPackage2"]
|
|
],
|
|
[VRR_GAME_GTA_SA]: [ // GTA SA
|
|
[331, "BrassKnuckles"],
|
|
[333, "GolfClub"],
|
|
[334, "Nitestick"],
|
|
[335, "Knife"],
|
|
[336, "BaseballBat"],
|
|
[337, "Shovel"],
|
|
[338, "PoolCue"],
|
|
[339, "Katana"],
|
|
[341, "Chainsaw"],
|
|
[321, "PurpleDildo"],
|
|
[322, "Dildo"],
|
|
[323, "Vibrator"],
|
|
[324, "SilverVibrator"],
|
|
[325, "Flowers"],
|
|
[326, "Cane"],
|
|
[342, "Grenade"],
|
|
[343, "Teargas"],
|
|
[344, "MolotovCocktail"],
|
|
[346, "9mm"],
|
|
[347, "Silenced9mm"],
|
|
[348, "DesertEagle"],
|
|
[349, "Shotgun"],
|
|
[350, "SawnOffShotgun"],
|
|
[351, "CombatShotgun"],
|
|
[352, "MicroSMG"],
|
|
[353, "MP5"],
|
|
[355, "AK47"],
|
|
[356, "M4"],
|
|
[372, "Tec9"],
|
|
[357, "CountryRifle"],
|
|
[358, "SniperRifle"],
|
|
[359, "RPG"],
|
|
[361, "Flamethrower"],
|
|
[362, "Minigun"],
|
|
[363, "SatchelCharge"],
|
|
[364, "Detonator"],
|
|
[365, "Spraycan"],
|
|
[366, "FireExtinguisher"],
|
|
[367, "Camera"],
|
|
[368, "NightVisionGoggles"],
|
|
[369, "ThermalGoggles"],
|
|
[371, "Parachute"],
|
|
[330, "Cellphone"],
|
|
[1279, "GenericPackage"],
|
|
[1271, "Crate"],
|
|
[3632, "Barrel"],
|
|
[1275, "Outfit"],
|
|
[1484, "BottleWhite"],
|
|
[594, "BeerCan"],
|
|
[1512, "BottleYellow"],
|
|
[373, "ArmourVest"],
|
|
[2880, "Cheeseburger"],
|
|
[1582, "Pizzabox"],
|
|
[1544, "BottleSoda"],
|
|
[2601, "CanSoda"],
|
|
],
|
|
},
|
|
weaponModels: {
|
|
[VRR_GAME_GTA_III]: [ // GTA III
|
|
0, // Fist
|
|
172, // Baseball Bat
|
|
173, // Colt 45
|
|
178, // Uzi
|
|
176, // Shotgun
|
|
171, // AK-47
|
|
180, // M16
|
|
177, // Sniper Rifle
|
|
175, // Rocket Launcher
|
|
181, // Flamethrower
|
|
174, // Molotov Cocktail
|
|
170 // Grenade
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA Vice City
|
|
0,
|
|
259,
|
|
260,
|
|
261,
|
|
262,
|
|
263,
|
|
264,
|
|
265,
|
|
266,
|
|
267,
|
|
268,
|
|
269,
|
|
270,
|
|
291,
|
|
271,
|
|
272,
|
|
273,
|
|
274,
|
|
275,
|
|
277,
|
|
278,
|
|
279,
|
|
281,
|
|
282,
|
|
283,
|
|
284,
|
|
280,
|
|
276,
|
|
285,
|
|
286,
|
|
287,
|
|
288,
|
|
289,
|
|
290,
|
|
-1,
|
|
-1,
|
|
292
|
|
],
|
|
[VRR_GAME_GTA_V]: [
|
|
|
|
]
|
|
},
|
|
locations: {
|
|
[VRR_GAME_GTA_III]: [ // GTA III
|
|
// Police Stations
|
|
["Portland Police Station", [1143.875, -675.1875, 14.97], 0.0, [1127.95, -666.06, 14.413]],
|
|
["Staunton Island Police Station", [340.25, -1123.375, 25.98], 0.0, null],
|
|
["Shoreside Vale Police Station", [-1253.0, -138.1875, 58.75], 0.0, null],
|
|
|
|
// Hospitals
|
|
["Portland Hospital", [1144.25, -596.875, 14.97], 0.0, [1127.64, -586.84, 14.414]],
|
|
["Staunton Island Hospital", [183.5, -17.75, 16.21], 0.0, null],
|
|
["Shoreside Vale Hospital", [-1259.5, -44.5, 58.89], 0.0, null],
|
|
|
|
// Fire Stations
|
|
["Portland Fire Station", [1103.70, -52.45, 7.49], 0.0, null],
|
|
["Staunton Island Fire Station", [-78.48, -436.80, 16.17], 0.0, null],
|
|
["Shoreside Vale Fire Station", [-1202.10, -14.67, 53.20], 0.0, null],
|
|
|
|
// Pay and Sprays
|
|
["Portland Pay and Spray", [925.4, -360.3, 10.83], 0.0, [928.35, -335.53, 9.413]],
|
|
["Staunton Island Pay and Spray", [381.8, -493.8, 25.95], 0.0, null],
|
|
["Shoreside Vale Pay and Spray", [-1142.4, 35.01, 58.61], 0.0, null],
|
|
|
|
// Ammunations
|
|
["Portland Ammunation", [1068.3, -400.9, 15.24], 0.0, null],
|
|
["Staunton Island Ammunation", [348.2, -717.9, 26.43], 0.0, null],
|
|
|
|
// Train Stations
|
|
["Bedford Point Train Station (Subway)", [178.52, -1551.40, 26.162], -3.105, [188.24, -1603.86, 25.700]],
|
|
["Francis International Airport Train Station (Subway)", [-633.42, -760.06, 18.919], 1.586, [-693.17, -725.14, 8.313]],
|
|
["Rockford Train Station (Subway)", [225.66, -69.07, 20.998], -3.115, [227.01, -59.56, 20.697]],
|
|
["Saint Marks Train Station (Portland EL)", [1306.69, -512.38, 40.078], -2.458, [1312.85, -506.36, 40.641]],
|
|
["Hepburn Heights Train Station (Portland EL)", [1029.07, -164.18, 4.972], 0.005, [1020.75, -166.69, 4.412]],
|
|
["Chinatown Train Station (Portland EL)", [775.27, -622.28, 14.747], 0.006, [812.43, -630.49, 14.413]],
|
|
|
|
// Safehouses
|
|
["Portland Safehouse", [885.52, -308.47, 8.615], -1.532, [839.16, -298.12, 4.717]],
|
|
|
|
// Other
|
|
["St Mathias College", [201.59, -281.42, 15.779], -0.005, null],
|
|
["Newport Parking Garage", [294.22, -547.87, 25.780], 3.119, null],
|
|
["City Hall", [96.60, -951.61, 26.168], 3.138, null],
|
|
["Belleville Park East", [109.15, -695.76, 26.168], 1.594, null],
|
|
["Belleville Park Bathroom", [38.69, -724.96, 22.756], -3.104, null],
|
|
["Belleville Park West", [0.40, -773.05, 26.056], -1.476, null],
|
|
["Stadium Entrance", [-18.65, -231.80, 29.861], 0.002, null],
|
|
["Kenji's Casino", [454.10, -1421.26, 26.124], -0.769, null],
|
|
["Saint Marks Bistro", [1345.48, -457.41, 49.549], 1.537, null],
|
|
["Leone Mansion", [1417.94, -194.18, 49.905], -1.570, [1378.31, -296.16, 49.414]],
|
|
["Ciprianis Ristorante", [1202.50, -320.78, 24.973], -1.553, [1199.28, -321.10, 24.413]],
|
|
["Luigi's Club", [904.82, -425.37, 14.929], 1.602, [907.36, -423.80, 14.413]],
|
|
["Portland Fuel Station", [1157.34, -75.45, 7.065], -0.027, null],
|
|
["Easy Credit Autos", [1217.81, -113.87, 14.973], -3.051, null],
|
|
["Head Radio Headquarters", [986.40, -46.40, 7.473], -1.615, null],
|
|
["Borgnine Taxi Headquarters", [929.36, -48.59, 7.473], -2.935, null],
|
|
["Fuzz Ball", [1000.03, -877.82, 14.547], -3.136, null],
|
|
["Portland Docks", [1360.55, -818.08, 14.415], -1.574, [1356.94, -816.28, 14.413]],
|
|
["Punk Noodle Diner", [1040.10, -653.10, 14.973], 1.551, [1042.29, -656.87, 14.413]],
|
|
["Greasy Joe's Diner", [864.45, -999.86, 4.646], -0.020, null],
|
|
["Hepburn Heights Projects", [913.98, -227.83, 4.413], 0.001, null],
|
|
],
|
|
|
|
[VRR_GAME_GTA_VC]: [ // GTA VC
|
|
// Police Stations
|
|
["Washington Beach Police Station", [399.77, -468.90, 11.73], 0.0, null],
|
|
["Vice Point Police Station", [508.96, 512.07, 12.10], 0.0, null],
|
|
["Downtown Police Station", [-657.43, 762.31, 11.59], 0.0, null],
|
|
["Little Havana Police Station", [-885.08, -470.44, 13.11], 0.0, null],
|
|
|
|
// Hospitals
|
|
["Downtown Hospital", [-822.57, 1152.82, 12.41], 0.0, null],
|
|
["Little Havana Medical Center", [-885.08, -470.44, 13.11], 0.0, null],
|
|
["Ocean Beach Hospital", [-133.19, -980.76, 10.46], 0.0, null],
|
|
|
|
// Misc/Other
|
|
["Paper Products", [-1085.83, -232.72, 11.446], -3.139, null],
|
|
["Little Haiti Slums", [-958.90, 116.41, 9.300], 0.031, null],
|
|
["Kaufman Cabs", [-1013.35, 198.70, 11.266], -1.680, null],
|
|
["Moist Palms Hotel", [-703.50, 545.30, 11.099], -3.105, null],
|
|
["North Point Mall", [486.50, 1124.89, 16.348], 1.610, null],
|
|
["Ocean View Hotel", [238.14, -1280.48, 11.071], 1.282, null],
|
|
["Ocean Beach Fuel Station", [63.32, -1074.50, 10.006], 0.102, null],
|
|
["Ken Rosenberg's Office", [115.48, -823.76, 10.463], -2.221, null],
|
|
["Office Building Lower Level", [-579.00, 794.43, 22.88], 0.0, null],
|
|
["Office Building Upper Level", [-556.13, 788.12, 97.51], 0.0, null],
|
|
["VCN Roof", [-446.21, 1128.09, 56.69], 0.0, null],
|
|
["Downtown Building Roof", [-448.37, 1249.13, 77.40], 0.0, null],
|
|
["Downtown Ammunation Back Lot", [-741.58, 1254.04, 12.18], 0.0, null],
|
|
["Phil's Place", [-1098.68, 343.21, 11.26], 0.0, null],
|
|
|
|
// Bar, Restaurants and Food
|
|
["Little Havana Donut Shop", [-856.28, -649.32, 11.047], 1.700, null],
|
|
["Robina's Cafe", [-1170.36, -604.25, 11.640], -2.973, null],
|
|
["Biker Bar", [-601.72, 654.60, 11.073], -1.463, null],
|
|
|
|
// Clubs
|
|
["Malibu Club", [492.23, -81.41, 11.261], -2.306, null],
|
|
["Poll Position Club", [100.09, -1477.78, 10.432], 0.484, null],
|
|
|
|
// Tool Shops
|
|
["Little Havana Tool Shop", [-969.01, -684.27, 11.456], -2.994, null],
|
|
["Washington Beach Tool Shop", [197.83, -486.04, 11.127], 0.000, null]
|
|
|
|
// Gunshops
|
|
["Ocean Beach Ammunation", [-53.41, -1482.25, 10.293], 1.441, null],
|
|
["Downtown Ammunation", [-676.39, 1196.51, 11.07], 0.0, null],
|
|
|
|
// Pay-n-sprays
|
|
["Ocean Beach Pay-n-spray", [-18.51, -1256.76, 10.463], -1.556, null],
|
|
],
|
|
|
|
[VRR_GAME_GTA_SA]: [ // GTA SA
|
|
// Police Stations
|
|
["Los Santos Police Department", [1545.53, -1675.64, 13.561], -1.575, null],
|
|
["San Fierro Police Department", [-1605.16, 720.79, 11.90], 0.0, null],
|
|
["Las Venturas Police Department", [2339.68, 2453.99, 14.97], 0.0, null],
|
|
|
|
// Ammunations
|
|
["Market Ammunation", [1364.84, -1283.79, 13.547], -0.541, null],
|
|
|
|
// Hospitals
|
|
["All Saints General Hospital", [1182.67, -1323.81, 13.579], 1.543, null],
|
|
["County General Hospital", [2034.7567,-1403.1083,17.2931], 0.0, null],
|
|
|
|
// Strip Clubs
|
|
["Pig Pen Strip Club", [2420.906982,-1222.321777,25.348423], 0.0, null],
|
|
|
|
// Night/Dance Clubs
|
|
["Club Tableau", [551.877502, -1506.095581, 14.550004], 1.0, null],
|
|
["Club Alhambra", [1832.55, -1681.91, 13.510], -1.561, null],
|
|
|
|
// Bars
|
|
["Ten Green Bottles Bar", [2305.922363,-1646.797241,14.461124], 1.0, null],
|
|
|
|
// Restaurants and Food
|
|
["Market Donut Shop", [1040.932006,-1336.229492,13.550251], 1.0, null],
|
|
["Idlewood Pizza Stack", [2099.827636,-1806.375610,13.554687], 0.0, null],
|
|
["Temple Burger Shot", [1212.020019,-924.311462,42.930198], 1.0, null],
|
|
|
|
// Clothes Shops
|
|
["Ganton Binco", [2244.837402,-1664.232299,15.476562], 1.0, null],
|
|
["Los Santos Victim ", [456.31, -1501.53, 31.041], -1.378, null],
|
|
["Los Santos Didier Sachs", [449.68, -1479.94, 30.639], -1.149, null],
|
|
["ProLaps Los Santos", [502.37, -1355.58, 16.133], 2.659, null],
|
|
["Market Cluckin Bell", [923.53, -1352.72, 13.377], -1.596, null],
|
|
["Marina Burger Shot", [816.55, -1617.00, 13.859], 1.396, null],
|
|
|
|
// Airports
|
|
["Los Santos International Airport Gate", [1958.201049,-2182.789794,13.546875], 1.0, null],
|
|
["Los Santos International Airport Runway", [2054.12, -2493.84, 13.547], 1.569, null],
|
|
["Los Santos Stadium", [2694.261474,-1703.194335,11.506717], 1.0, null],
|
|
|
|
// Sex Shops
|
|
["El Corona Sex Shop", [1944.994873,-2116.641113,13.550632], 1.0, null],
|
|
["Temple Sex Shop", [1090.181884,-927.265869,43.182197], 1.0, null],
|
|
["Market Sex Shop", [1090.181884,-927.265869,43.182197], 1.0, null]
|
|
|
|
// Misc/Other
|
|
["Grotti Dealership", [540.6011,-1291.2489,17.2422], 0.0, null],
|
|
["Santa Maria Beach", [302.994567,-1900.099121,1.938840], 0.0, null],
|
|
["Glen Park Bridge", [1968.33, -1195.10, 25.70], 0.0, null],
|
|
["Los Santos Skate Park", [1865.96, -1380.53, 13.50], 0.0, null],
|
|
["Los Santos Garbage Dump", [2194.91, -1977.58, 13.55], 0.0, null],
|
|
|
|
// Train Stations
|
|
["Unity Station", [1742.60, -1859.98, 13.414], -3.112, null],
|
|
["Market Station", [814.26, -1345.38, 13.532], -1.624, null],
|
|
],
|
|
|
|
[VRR_GAME_GTA_IV]: [ // GTA IV
|
|
// Police Stations
|
|
["Broker Police Station", [894.99, -357.39, 18.185], 2.923, null],
|
|
["South Bohan Police Station", [435.40, 1592.29, 17.353], 3.087, null],
|
|
["Northern Gardens Police Station", [974.93, 1870.45, 23.073], -1.621, null],
|
|
["South Slopes Police Station", [1233.25, -89.13, 28.034], 1.568, null],
|
|
["Middle Park East Police Station", [50.12, 679.88, 15.316], 1.569, null],
|
|
["East Holland Police Station", [85.21, 1189.82, 14.755], 3.127, null],
|
|
["Francis International Airport Police Station", [2170.87, 448.87, 6.085], 1.501, null],
|
|
["Chinatown Police Station", [213.12, -211.70, 10.752], 0.200, null],
|
|
["Acter Police Station", [-1714.95, 276.31, 22.134], 1.127, null],
|
|
["Port Tudor Police Station", [-1220.73, -231.53, 3.024], 2.210, null],
|
|
["Leftwood Police Station", [-927.66, 1263.63, 24.587], -0.913, null],
|
|
|
|
// Fire Stations
|
|
["Broker Fire Station", [953.13, 95.90, 35.004], 1.595, null],
|
|
["Northwood Fire Station", [-271.02, 1542.15, 20.420], -1.160, null],
|
|
["Northern Gardens Fire Station", [1120.47, 1712.36, 10.534], -0.682, null],
|
|
["Francis International Airport Fire Station", [2364.87, 166.83, 5.813], 0.156, null],
|
|
["Chinatown Fire Station", [295.40, -336.88, 4.963], 2.887, null],
|
|
["Berchem Fire Station", [-1574.90, 546.54, 25.449], -0.509, null],
|
|
["Tudor Fire Station", [-2144.97, 164.15, 12.051], -2.149, null],
|
|
|
|
// Safehouses
|
|
["Hove Beach Safehouse Parking", [904.27, -498.00, 14.522], 3.127, null],
|
|
["South Bohan Safehouse", [589.42, 1402.15, 10.364], 0.007, null],
|
|
|
|
// Hospitals
|
|
["Schottler Medical Center", [1199.59, 196.78, 33.554], 1.633, null],
|
|
["Northern Gardens Medical Center", [980.71, 1831.61, 23.898], -0.049, null],
|
|
["Leftwood Hospital", [-1317.27, 1277.20, 22.370], 2.246, null],
|
|
["Acter Medical Center", [-1538.43, 344.58, 20.943], -0.156, null],
|
|
|
|
// Fuel Stations
|
|
["Hove Beach Fuel Station", [1128.51, -359.55, 18.441], -0.052, null],
|
|
["Lancaster Fuel Station", [108.37, 1135.13, 13.975], 0.007, null],
|
|
["The Meat Quarter Fuel Station", [-434.30, -19.47, 9.864], 1.469, null],
|
|
["Cerveza Heights Fuel Station", [1123.50, 328.84, 29.245], -0.154, null],
|
|
["Tudor Fuel Station", [-1389.91, 29.19, 6.875], 0.982, null],
|
|
|
|
// Restaurants
|
|
["Star Junction Burger Shot", [-174.00, 276.96, 14.818], -0.029, null],
|
|
["South Bohan Burger Shot", [441.95, 1516.64, 16.289], -2.682, null],
|
|
["Industrial Burger Shot", [1096.93, 1598.33, 16.721], -2.289, null],
|
|
|
|
// Night Clubs/Strip Clubs/Bars
|
|
["Perestroika Club", [957.58, -292.58, 19.644], -0.009, null],
|
|
["Triangle Club", [1210.90, 1718.18, 16.667], 1.819, null],
|
|
["Bahama Mamas Club", [-387.33, 412.33, 5.674], 2.997, null],
|
|
["Maisonette Club", [-482.28, 155.56, 7.555], -1.559, null],
|
|
|
|
// TW@ Cafes
|
|
["Outlook Internet Cafe", [977.42, -169.11, 24.013], 1.844, null],
|
|
["Berchem Internet Cafe", [-1584.46, 466.05, 25.398], -2.441, null],
|
|
|
|
// Pay-n-Sprays
|
|
["Hove Beach Pay-n-Spray", [1058.57, -282.58, 20.760], -3.135, null],
|
|
["Leftwood Pay-n-Spray", [-1148.69, 1171.52, 16.457], -0.059, null],
|
|
|
|
// Clothes Shops
|
|
["Hove Beach Russian Clothes Shop", [896.31, -442.59, 15.888], 1.500, null],
|
|
|
|
// Car Wash
|
|
["Willis Car Wash", [1831.02, 360.20, 22.061], -1.515, null],
|
|
["Tudor Car Wash", [-1371.68, 35.13, 7.028], 1.029, null],
|
|
|
|
// Gun Shops
|
|
["Downtown Broker Gun Shop", [1054.11, 86.84, 33.408], -1.574, null],
|
|
["Chinatown Gun Shop", [65.43, -342.36, 14.767], -1.589, null],
|
|
["Port Tudor Gun Shop", [-1338.77, 307.61, 13.378], -1.530, null],
|
|
|
|
// Train Stations
|
|
["Hove Beach Train Station", [1000.41, -544.82, 14.854], -1.576, null],
|
|
["Schottler Train Station", [1303.93, -37.75, 28.377], 3.065, null],
|
|
["Cerveza Heights Train Station", [1386.87, 374.13, 23.063], 3.111, null],
|
|
["Lynch Street Train Station", [1594.73, 364.80, 25.226], -0.965, null],
|
|
["East Park Train Station", [-35.78, 634.79, 14.663], -0.050, null],
|
|
["West Park Train Station", [-377.13, 677.05, 14.679], -0.069, null],
|
|
["North Park Train Station", [-135.08, 1153.95, 14.773], -1.567, null],
|
|
["Vespucci Circus Train Station", [-85.11, 1427.04, 20.421], 1.501, null],
|
|
["Frankfort Low Train Station", [-331.94, 1427.05, 12.617], 1.541, null],
|
|
["Frankfort High Train Station", [-343.79, 1433.12, 12.283], 0.113, null],
|
|
["Vauxite Train Station", [-483.38, 1333.91, 17.481], 1.509, null],
|
|
["Quartz Street West Train Station", [-545.54, 926.22, 9.945], -1.524, null],
|
|
["Manganese West Train Station", [-461.60, 530.56, 9.857], 3.091, null],
|
|
["Frankfort Ave Train Station", [-377.52, 371.91, 14.762], -3.125, null],
|
|
["Suffolk Train Station", [-252.77, -171.83, 14.447], 1.594, null],
|
|
["Feldspar Train Station", [-350.62, -335.35, 4.909], -2.287, null],
|
|
["City Hall Train Station", [-115.31, -501.22, 14.755], -1.365, null],
|
|
["Castle Gardens Train Station", [82.95, -757.81, 4.965], -1.006, null],
|
|
["Emerald Train Station", [116.57, -318.15, 14.768], 1.499, null],
|
|
["Easton Train Station", [-35.76, -18.50, 14.769], 3.137, null],
|
|
["Manganese East Train Station", [131.46, 522.74, 14.661], 0.005, null],
|
|
["Quartz Street East Train Station", [134.35, 910.15, 14.717], -0.112, null],
|
|
["San Quentin Ave Train Station", [373.12, 1625.93, 16.347], -2.249, null],
|
|
["Windmill Street Train Station", [749.97, 1447.44, 14.252], -0.120, null],
|
|
["Francis International Airport Train Station", [2297.57, 474.62, 6.086], 0.066, null],
|
|
|
|
// Misc
|
|
["Hove Beach Laundromat", [1011.74, -325.33, 20.339], -1.402, null],
|
|
["The Exchange Docks", [-354.68, -661.62, 4.791], 2.066, null],
|
|
["Firefly Island Bowling", [1198.99, -681.49, 16.445], -0.017, null],
|
|
["Broker Bus Depot", [1004.15, 279.19, 31.512], -2.193, null],
|
|
["The Lost MC Clubhouse", [-1713.29, 358.25, 25.449], 2.566, null],
|
|
["Alderney State Correctional Facility (Prison)", [-1155.21, -374.34, 2.885], -1.680, null],
|
|
["Chinatown Bank of Liberty", [-34.92, -466.80, 14.75], -1.52, null],
|
|
["Suffolk Church", [-274.30, -281.63, 14.36], 1.56],
|
|
["Francis International Airport Runway", [2610.75, 262.42, 5.875], 2.381, null],
|
|
["Happiness Island", [-621.81, -963.22, 4.843], -0.109, null],
|
|
|
|
// More will be added soon!
|
|
],
|
|
[VRR_GAME_MAFIA_ONE]: [
|
|
["Works Quarter Fire Station", [-1883.96, -4.89, -348.49], null],
|
|
["Salieri's Bar", [-1774.59, -5.62, 3.29], null],
|
|
["Little Italy Gas Station", [-1781.84, -4.83, -204.96], null],
|
|
["Port of Lost Heaven Main Entrance", [-2039.28, -5.57, -767.31], null],
|
|
["Road to Lost Heaven Racing Circuit", [-3049.63, -1.85, -436.09], null],
|
|
["Chinatown", [-1709.77, 14.36, 583.77], null],
|
|
["Downtown Bank", [-175.78, 19.06, -399.13], null],
|
|
["Downtown-Hoboken Gas Station", [-108.68, 8.46, -134.26], null],
|
|
["New Ark Hospital", [-759.00, 11.40, 747.31], null],
|
|
], // Mafia 1
|
|
},
|
|
weaponSlots: {
|
|
[VRR_GAME_GTA_III]: [
|
|
0,
|
|
1,
|
|
2,
|
|
3,
|
|
4,
|
|
5,
|
|
6,
|
|
7,
|
|
8,
|
|
9,
|
|
10,
|
|
11
|
|
],
|
|
[VRR_GAME_GTA_VC]: [
|
|
0,
|
|
0,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
3,
|
|
3,
|
|
4,
|
|
4,
|
|
4,
|
|
5,
|
|
5,
|
|
5,
|
|
5,
|
|
6,
|
|
6,
|
|
8,
|
|
8,
|
|
7,
|
|
7,
|
|
7,
|
|
7,
|
|
9,
|
|
-1,
|
|
9,
|
|
],
|
|
[VRR_GAME_GTA_SA]: [
|
|
0,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
8,
|
|
8,
|
|
8,
|
|
-1,
|
|
-1,
|
|
-1,
|
|
2,
|
|
2,
|
|
2,
|
|
3,
|
|
3,
|
|
3,
|
|
4,
|
|
4,
|
|
5,
|
|
5,
|
|
4,
|
|
6,
|
|
6,
|
|
7,
|
|
7,
|
|
7,
|
|
7,
|
|
8,
|
|
12,
|
|
9,
|
|
9,
|
|
9,
|
|
9,
|
|
9,
|
|
11,
|
|
9,
|
|
9,
|
|
9,
|
|
]
|
|
},
|
|
fightStyles: {
|
|
[VRR_GAME_GTA_SA]: [ // GTA SA
|
|
["Default", [4, 6]],
|
|
["Boxing", [5, 6]],
|
|
["Kung Fu", [6, 6]],
|
|
["Kick Boxing", [7, 6]],
|
|
["Unnamed", [8, 6]],
|
|
],
|
|
},
|
|
walkStyles: {
|
|
[VRR_GAME_GTA_III]: [ // GTA III
|
|
"Man",
|
|
"Ped",
|
|
"Player",
|
|
"Rocket",
|
|
"One Handed Weapon",
|
|
"Two Handed Weapon",
|
|
"Baseball Bat",
|
|
"Shuffle",
|
|
"Old Man",
|
|
"Gang 1",
|
|
"Gang 2",
|
|
"Fat Man",
|
|
"Old Fat Man",
|
|
"Woman",
|
|
"Shopping",
|
|
"Busy Woman",
|
|
"Sexy Woman",
|
|
"Old Woman",
|
|
"Fat Woman",
|
|
"Panic Chunky",
|
|
"Player Back",
|
|
"Player Left",
|
|
"Player Right",
|
|
"Rocket Back",
|
|
"Rocket Left",
|
|
"Rocket Right",
|
|
],
|
|
},
|
|
animations: {
|
|
// [name, groupId, animId, animType, deltaTime, null, null, null, null, moveType],
|
|
[VRR_GAME_GTA_III]: [ // GTA III
|
|
|
|
new AnimationData("talk", {groupId: 0, animId: 11}),
|
|
new AnimationData("chat", {groupId: 0, animId: 11}),
|
|
new AnimationData("hailtaxi", {groupId: 0, animId: 12}),
|
|
new AnimationData("wave", {groupId: 0, animId: 12}),
|
|
|
|
new AnimationData("headscratch", {groupId: 0, animId: 157}),
|
|
new AnimationData("lookaround1", {groupId: 0, animId: 158}),
|
|
new AnimationData("lookaround2", {groupId: 0, animId: 7}),
|
|
new AnimationData("plant", {groupId: 0, animId: 162}),
|
|
new AnimationData("cower", {groupId: 0, animId: 163}),
|
|
new AnimationData("aimdown", {groupId: 0, animId: 160}),
|
|
new AnimationData("aimcrouch", {groupId: 0, animId: 165}),
|
|
new AnimationData("throw", {groupId: 0, animId: 166}),
|
|
new AnimationData("handsup", {groupId: 0, animId: 167, animType: VRR_ANIMTYPE_SURRENDER}),
|
|
new AnimationData("sit", {groupId: 0, animId: 111}),
|
|
new AnimationData("sitleft", {groupId: 0, animId: 111, moveType: VRR_ANIMMOVE_LEFT}),
|
|
new AnimationData("sitback", {groupId: 0, animId: 111, moveType: VRR_ANIMMOVE_BACK}),
|
|
new AnimationData("sitright", {groupId: 0, animId: 111, moveType: VRR_ANIMMOVE_RIGHT}),
|
|
new AnimationData("sitforward", {groupId: 0, animId: 111, moveType: VRR_ANIMMOVE_FORWARD}),
|
|
new AnimationData("sitarmright", {groupId: 0, animId: 120, moveType: VRR_ANIMMOVE_BACK}),
|
|
new AnimationData("tazed", {groupId: 0, animId: 13, animType: VRR_ANIMTYPE_FORCED}),
|
|
new AnimationData("walk", {groupId: 0, animId: 0}),
|
|
new AnimationData("jog", {groupId: 0, animId: 1}),
|
|
new AnimationData("tired", {groupId: 0, animId: 9}),
|
|
new AnimationData("trip", {groupId: 0, animId: 27}),
|
|
new AnimationData("punch", {groupId: 0, animId: 45}),
|
|
new AnimationData("groundkick", {groupId: 0, animId: 46}),
|
|
new AnimationData("bathit1", {groupId: 0, animId: 47}),
|
|
new AnimationData("batgroundhit", {groupId: 0, animId: 48}),
|
|
new AnimationData("shootpistol", {groupId: 0, animId: 49}),
|
|
new AnimationData("toss", {groupId: 0, animId: 54}),
|
|
new AnimationData("pressbutton", {groupId: 0, animId: 56}),
|
|
new AnimationData("fightidle", {groupId: 0, animId: 66}),
|
|
new AnimationData("roundhouse", {groupId: 0, animId: 75}),
|
|
new AnimationData("highkick", {groupId: 0, animId: 71}),
|
|
new AnimationData("phonetalk", {groupId: 0, animId: 172}),
|
|
new AnimationData("handcuffed", {groupId: 0, animId: 8, animType: VRR_ANIMTYPE_FORCED}),
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA VC
|
|
new AnimationData("talk", {groupId: 0, animId: 11}),
|
|
new AnimationData("chat", {groupId: 0, animId: 11}),
|
|
new AnimationData("hailtaxi", {groupId: 0, animId: 12}),
|
|
new AnimationData("handsup", {groupId: 0, animId: 161, animType: VRR_ANIMTYPE_SURRENDER}),
|
|
new AnimationData("flipoff", {groupId: 0, animId: 163}),
|
|
new AnimationData("phoneout", {groupId: 0, animId: 164}),
|
|
new AnimationData("phonein", {groupId: 0, animId: 165}),
|
|
new AnimationData("phonetalk", {groupId: 0, animId: 166}),
|
|
new AnimationData("sit", {groupId: 0, animId: 169, animSpeed: 1.0}),
|
|
new AnimationData("atm", {groupId: 0, animId: 171}),
|
|
new AnimationData("cpr", {groupId: 24, animId: 214}),
|
|
new AnimationData("idle1", {groupId: 26, animId: 215}),
|
|
new AnimationData("idle2", {groupId: 26, animId: 216}),
|
|
new AnimationData("idle3", {groupId: 26, animId: 217}),
|
|
new AnimationData("idle4", {groupId: 26, animId: 218}),
|
|
new AnimationData("dance1", {groupId: 28, animId: 226}),
|
|
new AnimationData("dance2", {groupId: 28, animId: 227}),
|
|
new AnimationData("dance3", {groupId: 28, animId: 228}),
|
|
new AnimationData("dance4", {groupId: 28, animId: 229}),
|
|
new AnimationData("dance5", {groupId: 28, animId: 230}),
|
|
new AnimationData("dance6", {groupId: 28, animId: 231}),
|
|
new AnimationData("dance7", {groupId: 28, animId: 232}),
|
|
new AnimationData("pressbutton", {groupId: 0, animId: 62}),
|
|
new AnimationData("sitright", {groupId: 0, animId: 169, moveType: VRR_ANIMMOVE_RIGHT}),
|
|
new AnimationData("sitleft", {groupId: 0, animId: 169, moveType: VRR_ANIMMOVE_LEFT}),
|
|
new AnimationData("sitforward", {groupId: 0, animId: 169, moveType: VRR_ANIMMOVE_FORWARD}),
|
|
new AnimationData("sitback", {groupId: 0, animId: 169, moveType: VRR_ANIMMOVE_BACK}),
|
|
new AnimationData("tazed", {groupId: 0, animId: 13, animType: VRR_ANIMTYPE_FORCED}),
|
|
new AnimationData("fightidle1", {groupId: 0, animId: 45}),
|
|
new AnimationData("highkick1", {groupId: 0, animId: 50}),
|
|
new AnimationData("kneekick", {groupId: 0, animId: 51}),
|
|
new AnimationData("leftpunch", {groupId: 0, animId: 52}),
|
|
new AnimationData("rightpunch", {groupId: 0, animId: 53}),
|
|
new AnimationData("roundhouse", {groupId: 0, animId: 54}),
|
|
new AnimationData("highkick2", {groupId: 0, animId: 55}),
|
|
new AnimationData("hitandblock", {groupId: 0, animId: 56}),
|
|
new AnimationData("frontpunch", {groupId: 0, animId: 57}),
|
|
new AnimationData("elbowleft", {groupId: 0, animId: 58}),
|
|
new AnimationData("elbowright", {groupId: 0, animId: 59}),
|
|
new AnimationData("rearkick", {groupId: 0, animId: 61}),
|
|
new AnimationData("groundkick", {groupId: 0, animId: 65}),
|
|
new AnimationData("toss", {groupId: 0, animId: 66}),
|
|
new AnimationData("sithigh", {groupId: 0, animId: 104}),
|
|
new AnimationData("rollforward", {groupId: 0, animId: 147}),
|
|
new AnimationData("aimdown", {groupId: 0, animId: 155}),
|
|
new AnimationData("aimcrouch1", {groupId: 0, animId: 157}),
|
|
new AnimationData("aimcrouch2", {groupId: 0, animId: 160}),
|
|
new AnimationData("pose", {groupId: 0, animId: 172}),
|
|
new AnimationData("holdrifle", {groupId: 0, animId: 10}),
|
|
new AnimationData("tired", {groupId: 0, animId: 9}),
|
|
new AnimationData("handcuffed", {groupId: 0, animId: 9, animType: VRR_ANIMTYPE_FORCED}),
|
|
new AnimationData("walk", {groupId: 0, animId: 0}),
|
|
new AnimationData("jog", {groupId: 0, animId: 1}),
|
|
new AnimationData("headscratch", {groupId: 0, animId: 152}),
|
|
new AnimationData("lookaround", {groupId: 0, animId: 153}),
|
|
|
|
],
|
|
[VRR_GAME_GTA_SA]: [ // GTA SA
|
|
new AnimationData("knockback", {groupId: 0, animId: 105}),
|
|
new AnimationData("idle1", {groupId: 0, animId: 135}),
|
|
new AnimationData("cower", {groupId: 0, animId: 141}),
|
|
new AnimationData("handsup", {groupId: 0, animId: 142}),
|
|
new AnimationData("fucku", {groupId: 0, animId: 144}),
|
|
new AnimationData("phoneout", {groupId: 0, animId: 145}),
|
|
new AnimationData("phonein", {groupId: 0, animId: 146}),
|
|
new AnimationData("phonetalk", {groupId: 0, animId: 146}),
|
|
new AnimationData("sit1", {groupId: 0, animId: 150}),
|
|
new AnimationData("atm", {groupId: 0, animId: 151}),
|
|
new AnimationData("mindtrick", {groupId: 0, animId: 153}),
|
|
new AnimationData("look2", {groupId: 0, animId: 165}),
|
|
new AnimationData("gestureno", {groupId: 0, animId: 166}),
|
|
new AnimationData("gestureyes", {groupId: 0, animId: 167}),
|
|
new AnimationData("wave2", {groupId: 0, animId: 168}),
|
|
new AnimationData("snort", {groupId: 0, animId: 169}),
|
|
new AnimationData("sitright", {groupId: 0, animId: 150, moveType: VRR_ANIMMOVE_RIGHT}),
|
|
new AnimationData("sitleft", {groupId: 0, animId: 150, moveType: VRR_ANIMMOVE_LEFT}),
|
|
new AnimationData("sitforward", {groupId: 0, animId: 150, moveType: VRR_ANIMMOVE_FORWARD}),
|
|
new AnimationData("sitback", {groupId: 0, animId: 150, moveType: VRR_ANIMMOVE_BACK}),
|
|
new AnimationData("tazed", {groupId: 0, animId: 15, moveType: VRR_ANIMTYPE_FORCED}),
|
|
|
|
/*
|
|
["talk", "PED", "IDLE_CHAT", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["fucku", "PED", "FUCKU", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["taichi", "PARK", "Tai_Chi_Loop", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["slapass", "SWEET", "sweet_ass_slap", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["wave", "ON_LOOKERS", "wave_loop", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["vomit", "EAT_Vomit_P", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["cower", "ped", "cower", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["laugh", "RAPPING", "Laugh_01", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["plant", "BOMBER", "BOM_Plant", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["smoke1", "SMOKING","M_smklean_loop", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["smoke2", "SMOKING","F_smklean_loop", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["smoke3", "SMOKING","M_smkstnd_loop", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["sit1", "ped","SEAT_idle", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["sit2", "BEACH", "ParkSit_M_loop", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["sit3", "BEACH", "ParkSit_W_loop", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["sit4", "BEACH", "SitnWait_loop_W", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["scratch", "MISC","Scratchballs_01", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["standup", "ped", "SEAT_up", VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
//["faceshocked", 0, 150, VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null, VRR_ANIMMOVE_NONE],
|
|
//["facesurprised", 0, 150, VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null, VRR_ANIMMOVE_NONE],
|
|
//["faceconfused", 0, 150, VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null, VRR_ANIMMOVE_NONE],
|
|
//["faceangry", 0, 159, VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null, VRR_ANIMMOVE_NONE],
|
|
//["facetalk1", 0, 160, VRR_ANIMTYPE_NORMAL, 0.0, null, null, null, null, VRR_ANIMMOVE_NONE],
|
|
*/
|
|
],
|
|
[VRR_GAME_GTA_IV]: [ // GTA IV
|
|
new AnimationData("dance1", {groupId: "DAN_LOOP_A", animId: "DANCING", animSpeed: 16.0, infiniteLoop: true, infiniteLoopNoMovement: false, dontReturnToStartCoords: true, freezeLastFrame: false}),
|
|
],
|
|
},
|
|
meleeWeapons: {
|
|
[VRR_GAME_GTA_III]: [1],
|
|
[VRR_GAME_GTA_VC]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
|
|
[VRR_GAME_GTA_SA]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
|
|
},
|
|
blipSprites: {
|
|
[VRR_GAME_GTA_III]: { // GTA III
|
|
PoliceStation: 8,
|
|
FireStation: 9,
|
|
Hospital: 12,
|
|
Ammunation: 20,
|
|
PayAndSpray: 18,
|
|
VehicleDealership: 6,
|
|
Restaurant: 0,
|
|
FastFood: 0,
|
|
Bank: 0,
|
|
FuelStation: 0,
|
|
Business: 0,
|
|
House: 0,
|
|
},
|
|
[VRR_GAME_GTA_VC]: { // GTA VC
|
|
PoliceStation: 0,
|
|
FireStation: 0,
|
|
Hospital: 0,
|
|
Ammunation: 16,
|
|
PayAndSpray: 27,
|
|
VehicleDealership: 7,
|
|
Restaurant: 0,
|
|
FastFood: 0,
|
|
Bank: 24,
|
|
FuelStation: 0,
|
|
Business: 0,
|
|
House: 0,
|
|
Clothes: 28,
|
|
BoatDealership: 12,
|
|
Club: 13,
|
|
Tools: 18,
|
|
Bar: 11,
|
|
},
|
|
[VRR_GAME_GTA_SA]: { // GTA SA
|
|
PoliceStation: 30,
|
|
FireStation: 20,
|
|
Hospital: 22,
|
|
Ammunation: 6,
|
|
PayAndSpray: 63,
|
|
VehicleDealership: 55,
|
|
AirplaneDealership: 5,
|
|
BoatDealership: 9,
|
|
Restaurant: 50,
|
|
FastFood: 0,
|
|
Clothes: 45,
|
|
Pizza: 29,
|
|
Chicken: 14,
|
|
Burger: 10,
|
|
Bank: 52,
|
|
FuelStation: 17,
|
|
Business: 0,
|
|
House: 31,
|
|
Gym: 54,
|
|
RepairGarage: 27,
|
|
Trophy: 33,
|
|
Race: 53,
|
|
Job: 56,
|
|
Bar: 49,
|
|
Club: 48,
|
|
RepairGarage: 27,
|
|
Trophy: 33,
|
|
Race: 53,
|
|
Job: 56,
|
|
},
|
|
[VRR_GAME_GTA_IV]: { // GTA IV
|
|
PoliceStation: 60,
|
|
FireStation: 61,
|
|
Hospital: 62,
|
|
Ammunation: 59,
|
|
PayAndSpray: 75,
|
|
VehicleDealership: 91,
|
|
AirplaneDealership: 56,
|
|
BoatDealership: 48,
|
|
Restaurant: 57,
|
|
FastFood: 21,
|
|
Bank: 78,
|
|
FuelStation: 0,
|
|
Business: 0,
|
|
House: 29,
|
|
Clothes: 50,
|
|
Pizza: 0,
|
|
Chicken: 22,
|
|
Burger: 21,
|
|
Bar: 47,
|
|
Club: 51,
|
|
Gym: 54,
|
|
RepairGarage: 75,
|
|
Trophy: 81,
|
|
Race: 65,
|
|
Job: 80,
|
|
Misc: 0,
|
|
ComedyClub: 70,
|
|
CabaretClub: 71,
|
|
Ransom: 72,
|
|
StripClub: 66,
|
|
Male: 63,
|
|
Female: 64,
|
|
TrainStation: 58,
|
|
Heart: 54,
|
|
Bowling: 49,
|
|
Internet: 24,
|
|
},
|
|
},
|
|
pickupModels: {
|
|
[VRR_GAME_GTA_III]: { // GTA 3
|
|
PoliceStation: 1361,
|
|
FireStation: 1361,
|
|
Hospital: 1361,
|
|
ammunation: 1361,
|
|
PayAndSpray: 1361,
|
|
VehicleDealership: 1361,
|
|
Restaurant: 1361,
|
|
FastFood: 1361,
|
|
Bank: 1323,
|
|
FuelStation: 1361,
|
|
Business: 1361,
|
|
House: 1361,
|
|
Clothes: 1361,
|
|
Misc: 1361,
|
|
Exit: 1361,
|
|
Job: 1361,
|
|
},
|
|
[VRR_GAME_GTA_VC]: { // GTA Vice City
|
|
PoliceStation: 375,
|
|
FireStation: 406,
|
|
Hospital: 366,
|
|
Ammunation: 406,
|
|
PayAndSpray: 406,
|
|
VehicleDealership: 406,
|
|
Restaurant: 406,
|
|
FastFood: 406,
|
|
Bank: 408,
|
|
FuelStation: 406,
|
|
Business: 406,
|
|
House: 407,
|
|
Clothes: 409,
|
|
Misc: 406,
|
|
Exit: 406,
|
|
Job: 406,
|
|
SaveDisk: 411,
|
|
Camera: 382,
|
|
KillFrenzy: 383,
|
|
Pill: 367,
|
|
},
|
|
[VRR_GAME_GTA_SA]: { // GTA San Andreas
|
|
PoliceStation: 1247,
|
|
FireStation: 1318,
|
|
Hospital: 1240,
|
|
Ammunation: 1239,
|
|
PayAndSpray: 1239,
|
|
VehicleDealership: 1239,
|
|
Restaurant: 1239,
|
|
FastFood: 1239,
|
|
Bank: 1274,
|
|
FuelStation: 1239,
|
|
Business: 1272,
|
|
House: 1273,
|
|
Clothes: 1275,
|
|
Misc: 1239,
|
|
Exit: 1318,
|
|
Job: 1239,
|
|
SaveDisk: 1277,
|
|
Pill: 1241,
|
|
Camera: 1253,
|
|
TwoPlayer: 1314,
|
|
RampageSkull: 1254,
|
|
TwoPlayerRampage: 1313,
|
|
},
|
|
[VRR_GAME_GTA_IV]: { // GTA IV
|
|
PoliceStation: -1,
|
|
FireStation: -1,
|
|
Hospital: -1,
|
|
Ammunation: -1,
|
|
PayAndSpray: -1,
|
|
VehicleDealership: -1,
|
|
Restaurant: -1,
|
|
FastFood: -1,
|
|
Bank: -1,
|
|
FuelStation: -1,
|
|
Business: -1,
|
|
House: -1,
|
|
Clothes: -1,
|
|
Misc: -1,
|
|
Exit: -1,
|
|
Job: -1,
|
|
}
|
|
},
|
|
pickupTypes: {
|
|
[VRR_GAME_GTA_III]: { // GTA 3
|
|
business: 255,
|
|
house: 255,
|
|
bank: 255,
|
|
clothes: 255,
|
|
info: 255,
|
|
job: 255,
|
|
},
|
|
[VRR_GAME_GTA_VC]: { // GTA Vice City
|
|
business: 255,
|
|
house: 255,
|
|
bank: 255,
|
|
clothes: 255,
|
|
info: 255,
|
|
job: 255,
|
|
},
|
|
[VRR_GAME_GTA_SA]: { // GTA San Andreas
|
|
business: 1,
|
|
house: 1,
|
|
bank: 1,
|
|
clothes: 1,
|
|
info: 1,
|
|
job: 1,
|
|
},
|
|
[VRR_GAME_GTA_IV]: { // GTA IV
|
|
business: -1,
|
|
house: -1,
|
|
bank: -1,
|
|
clothes: -1,
|
|
info: -1,
|
|
job: -1,
|
|
}
|
|
},
|
|
|
|
// THIS IS SCREEN HEIGHT, NOT ACTUAL DOOR POSITION IN THE WORLD
|
|
propertyLabelHeight: {
|
|
[VRR_GAME_GTA_III]: 85,
|
|
[VRR_GAME_GTA_VC]: 85,
|
|
[VRR_GAME_GTA_SA]: 85,
|
|
[VRR_GAME_GTA_IV]: 85,
|
|
[VRR_GAME_GTA_IV_EFLC]: 85,
|
|
VRR_GAME_GTA_MAFIA_ONE: 85,
|
|
VRR_GAME_GTA_MAFIA_TWO: 85,
|
|
VRR_GAME_GTA_MAFIA_THREE: 85,
|
|
},
|
|
defaultBusinessItems: {
|
|
[VRR_GAME_GTA_III]: { // GTA III
|
|
ClothingStore: [
|
|
["Outfit", 500, 2]
|
|
],
|
|
LegalGunStore: [
|
|
["Baseball Bat", 500, 2],
|
|
["Colt 45", 500, 2],
|
|
["Shotgun", 500, 2],
|
|
["Colt 45 Ammo", 500, 2],
|
|
["Shotgun Ammo", 500, 2],
|
|
],
|
|
IllegalGunStore: [
|
|
["Uzi", 500, 2],
|
|
["AK-47", 500, 2],
|
|
["M16", 500, 2],
|
|
["Sniper Rifle", 500, 2],
|
|
["Uzi Ammo", 500, 2],
|
|
["AK-47 Ammo", 500, 2],
|
|
["M16 Ammo", 500, 2],
|
|
["Shotgun Ammo", 500, 2],
|
|
],
|
|
GasStation: [
|
|
["Bottle of Soda", 500, 2],
|
|
["Can of Soda", 500, 2],
|
|
["Slice of Pizza", 500, 2],
|
|
["Bottle of Water", 500, 2],
|
|
["Can of Beer", 500, 2],
|
|
["Pack of Smokes", 500, 2],
|
|
],
|
|
ElectronicsStore: [
|
|
["Phone", 500, 2],
|
|
["Walkie Talkie", 500, 2],
|
|
["Megaphone", 500, 2],
|
|
["Tazer", 500, 2],
|
|
["Camera", 500, 2],
|
|
],
|
|
Bar: [
|
|
["Bottle of Vodka", 500, 2],
|
|
["Bottle of Whiskey", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
["Bottle of Wine", 500, 2],
|
|
["Bottle of Bourbon", 500, 2],
|
|
["Shot of Bourbon", 500, 2],
|
|
["Shot of Vodka", 500, 2],
|
|
["Shot of Whiskey", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
],
|
|
Club: [
|
|
["Bottle of Vodka", 500, 2],
|
|
["Bottle of Whiskey", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
["Bottle of Wine", 500, 2],
|
|
["Bottle of Bourbon", 500, 2],
|
|
["Shot of Bourbon", 500, 2],
|
|
["Shot of Vodka", 500, 2],
|
|
["Shot of Whiskey", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
],
|
|
Chicken: [
|
|
["Bucket of Chicken", 500, 2],
|
|
["Chicken Tenders Meal", 500, 2],
|
|
["Large Fries", 500, 2],
|
|
["Small Fries", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Burger: [
|
|
["Bacon Cheeseburger", 500, 2],
|
|
["Double Cheeseburger", 500, 2],
|
|
["Big Boy Burger", 500, 2],
|
|
["Large Fries", 500, 2],
|
|
["Small Fries", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Chinese: [
|
|
["Egg Roll", 500, 2],
|
|
["Lo Mein", 500, 2],
|
|
["Fried Rice", 500, 2],
|
|
["Crab Rangoon", 500, 2],
|
|
["Egg Drop Soup", 500, 2],
|
|
["Moo Shu Pork", 500, 2],
|
|
["Egg Foo Young", 500, 2],
|
|
["Sesame Chicken", 500, 2],
|
|
],
|
|
Italian: [
|
|
["Bottle of Wine", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
["Arancini", 500, 2],
|
|
["Lasagne", 500, 2],
|
|
["Chicken Alfredo", 500, 2],
|
|
["Fettucine Alfredo", 500, 2],
|
|
["Chicken Parmigiana", 500, 2],
|
|
["Chicken Carbonara", 500, 2],
|
|
["Sausage Rigatoni", 500, 2],
|
|
["Chicken Salad", 500, 2],
|
|
["Caesar Salad", 500, 2],
|
|
],
|
|
Mexican: [
|
|
["Crunchy Taco", 500, 2],
|
|
["Beaf and Bean Burrito", 500, 2],
|
|
["Burrito Supreme", 500, 2],
|
|
["Cheesy Nachos", 500, 2],
|
|
["Nacho Supreme", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Pizza: [
|
|
["Large Pizza", 500, 2],
|
|
["Medium Pizza", 500, 2],
|
|
["Small Pizza", 500, 2],
|
|
["Buffalo Wings", 500, 2],
|
|
["Hot Wings", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
CoffeeDonutShop: [
|
|
["Glazed Donut", 500, 2],
|
|
["Frosted Donut", 500, 2],
|
|
["Jelly Donut", 500, 2],
|
|
["Cream-filled Donut", 500, 2],
|
|
["Apple Fritter", 500, 2],
|
|
["Pumpkin Spice Latte", 500, 2],
|
|
["Mocha Latte", 500, 2],
|
|
["Iced Coffee", 500, 2],
|
|
["Large Coffee", 500, 2],
|
|
["Small Coffee", 500, 2],
|
|
],
|
|
VehicleRepairShop: [
|
|
["Vehicle Repair Kit", 500, 2],
|
|
["Vehicle Primary Colour Kit", 500, 2],
|
|
["Vehicle Secondary Colour Kit", 500, 2],
|
|
],
|
|
},
|
|
[VRR_GAME_GTA_VC]: { // GTA VC
|
|
ClothingStore: [
|
|
["Outfit", 500, 2]
|
|
],
|
|
LegalGunStore: [
|
|
["Baseball Bat", 500, 2],
|
|
["Brass Knuckles", 500, 2],
|
|
["Colt .45", 500, 2],
|
|
["Python", 500, 2],
|
|
["Shotgun", 500, 2],
|
|
["Stubby Shotgun", 500, 2],
|
|
["Colt .45 Ammo", 500, 2],
|
|
["Python Ammo", 500, 2],
|
|
["Shotgun Ammo", 500, 2],
|
|
["Stubby Shotgun Ammo", 500, 2],
|
|
],
|
|
IllegalGunStore: [
|
|
["Uzi", 500, 2],
|
|
["MP5", 500, 2],
|
|
["Tec-9", 500, 2],
|
|
["Ingram", 500, 2],
|
|
["Ruger", 500, 2],
|
|
["M4", 500, 2],
|
|
["Sniper Rifle", 500, 2],
|
|
["Laser Sniper", 500, 2],
|
|
["Uzi Ammo", 500, 2],
|
|
["MP5 Ammo", 500, 2],
|
|
["Tec-9 Ammo", 500, 2],
|
|
["Ingram Ammo", 500, 2],
|
|
["Ruger Ammo", 500, 2],
|
|
["M4 Ammo", 500, 2],
|
|
["Sniper Rifle Ammo", 500, 2],
|
|
["Laser Sniper Ammo", 500, 2],
|
|
],
|
|
GasStation: [
|
|
["Bottle of Soda", 500, 2],
|
|
["Can of Soda", 500, 2],
|
|
["Slice of Pizza", 500, 2],
|
|
["Bottle of Water", 500, 2],
|
|
["Can of Beer", 500, 2]
|
|
],
|
|
ElectronicsStore: [
|
|
["Phone", 500, 2],
|
|
["Walkie Talkie", 500, 2],
|
|
["Megaphone", 500, 2],
|
|
["Tazer", 500, 2],
|
|
["Camera", 500, 2]
|
|
],
|
|
Bar: [
|
|
["Bottle of Vodka", 500, 2],
|
|
["Bottle of Whiskey", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
["Bottle of Wine", 500, 2],
|
|
["Bottle of Bourbon", 500, 2],
|
|
["Shot of Bourbon", 500, 2],
|
|
["Shot of Vodka", 500, 2],
|
|
["Shot of Whiskey", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
],
|
|
Club: [
|
|
["Bottle of Vodka", 500, 2],
|
|
["Bottle of Whiskey", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
["Bottle of Wine", 500, 2],
|
|
["Bottle of Bourbon", 500, 2],
|
|
["Shot of Bourbon", 500, 2],
|
|
["Shot of Vodka", 500, 2],
|
|
["Shot of Whiskey", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
],
|
|
Chicken: [
|
|
["Bucket of Chicken", 500, 2],
|
|
["Chicken Tenders Meal", 500, 2],
|
|
["Large Fries", 500, 2],
|
|
["Small Fries", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Burger: [
|
|
["Bacon Cheeseburger", 500, 2],
|
|
["Double Cheeseburger", 500, 2],
|
|
["Big Boy Burger", 500, 2],
|
|
["Large Fries", 500, 2],
|
|
["Small Fries", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Chinese: [
|
|
["Egg Roll", 500, 2],
|
|
["Lo Mein", 500, 2],
|
|
["Fried Rice", 500, 2],
|
|
["Crab Rangoon", 500, 2],
|
|
["Egg Drop Soup", 500, 2],
|
|
["Moo Shu Pork", 500, 2],
|
|
["Egg Foo Young", 500, 2],
|
|
["Sesame Chicken", 500, 2],
|
|
],
|
|
Italian: [
|
|
["Bottle of Wine", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
["Arancini", 500, 2],
|
|
["Lasagne", 500, 2],
|
|
["Chicken Alfredo", 500, 2],
|
|
["Fettucine Alfredo", 500, 2],
|
|
["Chicken Parmigiana", 500, 2],
|
|
["Chicken Carbonara", 500, 2],
|
|
["Sausage Rigatoni", 500, 2],
|
|
["Chicken Salad", 500, 2],
|
|
["Caesar Salad", 500, 2],
|
|
],
|
|
Mexican: [
|
|
["Crunchy Taco", 500, 2],
|
|
["Beaf and Bean Burrito", 500, 2],
|
|
["Burrito Supreme", 500, 2],
|
|
["Cheesy Nachos", 500, 2],
|
|
["Nacho Supreme", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Pizza: [
|
|
["Large Pizza", 500, 2],
|
|
["Medium Pizza", 500, 2],
|
|
["Small Pizza", 500, 2],
|
|
["Buffalo Wings", 500, 2],
|
|
["Hot Wings", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
CoffeeDonutShop: [
|
|
["Glazed Donut", 500, 2],
|
|
["Frosted Donut", 500, 2],
|
|
["Jelly Donut", 500, 2],
|
|
["Cream-filled Donut", 500, 2],
|
|
["Apple Fritter", 500, 2],
|
|
["Pumpkin Spice Latte", 500, 2],
|
|
["Mocha Latte", 500, 2],
|
|
["Iced Coffee", 500, 2],
|
|
["Large Coffee", 500, 2],
|
|
["Small Coffee", 500, 2],
|
|
],
|
|
VehicleRepairShop: [
|
|
["Vehicle Repair Kit", 500, 2],
|
|
["Vehicle Primary Colour Kit", 500, 2],
|
|
["Vehicle Secondary Colour Kit", 500, 2],
|
|
],
|
|
},
|
|
[VRR_GAME_GTA_SA]: { // GTA SA
|
|
ClothingStore: [
|
|
["Outfit", 500, 2]
|
|
],
|
|
LegalGunStore: [
|
|
["Baseball Bat", 500, 2],
|
|
["Pepper Spray", 500, 2],
|
|
["Brass Knuckles", 500, 2],
|
|
["9mm", 500, 2],
|
|
["Desert Eagle", 500, 2],
|
|
["Shotgun", 500, 2],
|
|
["Country Rifle", 500, 2],
|
|
["9mm Ammo", 500, 2],
|
|
["Desert Eagle Ammo", 500, 2],
|
|
["Shotgun Ammo", 500, 2],
|
|
["Country Rifle Ammo", 500, 2],
|
|
],
|
|
IllegalGunStore: [
|
|
["Micro SMG/Uzi", 500, 2],
|
|
["MP5", 500, 2],
|
|
["Tec-9", 500, 2],
|
|
["AK-47", 500, 2],
|
|
["M4", 500, 2],
|
|
["Combat Shotgun", 500, 2],
|
|
["Sniper Rifle", 500, 2],
|
|
["Micro SMG/Uzi Ammo", 500, 2],
|
|
["MP5 Ammo", 500, 2],
|
|
["Tec-9 Ammo", 500, 2],
|
|
["AK-47 Ammo", 500, 2],
|
|
["M4 Ammo", 500, 2],
|
|
["Combat Shotgun Ammo", 500, 2],
|
|
["Sniper Rifle Ammo", 500, 2],
|
|
],
|
|
SexShop: [
|
|
["Purple Dildo", 500, 2],
|
|
["Dildo", 500, 2],
|
|
["Vibrator", 500, 2],
|
|
["Silver Vibrator", 500, 2],
|
|
["Flowers", 500, 2],
|
|
["Cane", 500, 2],
|
|
["Pool Cue", 500, 2],
|
|
],
|
|
GasStation: [
|
|
["Bottle of Soda", 500, 2],
|
|
["Can of Soda", 500, 2],
|
|
["Slice of Pizza", 500, 2],
|
|
["Bottle of Water", 500, 2],
|
|
["Can of Beer", 500, 2],
|
|
["Cane", 500, 2],
|
|
["Pool Cue", 500, 2],
|
|
],
|
|
ElectronicsStore: [
|
|
["Phone", 500, 2],
|
|
["Walkie Talkie", 500, 2],
|
|
["Megaphone", 500, 2],
|
|
["Tazer", 500, 2],
|
|
["Camera", 500, 2]
|
|
],
|
|
Bar: [
|
|
["Bottle of Vodka", 500, 2],
|
|
["Bottle of Whiskey", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
["Bottle of Wine", 500, 2],
|
|
["Bottle of Bourbon", 500, 2],
|
|
["Shot of Bourbon", 500, 2],
|
|
["Shot of Vodka", 500, 2],
|
|
["Shot of Whiskey", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
],
|
|
Club: [
|
|
["Bottle of Vodka", 500, 2],
|
|
["Bottle of Whiskey", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
["Bottle of Wine", 500, 2],
|
|
["Bottle of Bourbon", 500, 2],
|
|
["Shot of Bourbon", 500, 2],
|
|
["Shot of Vodka", 500, 2],
|
|
["Shot of Whiskey", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
],
|
|
Chicken: [
|
|
["Bucket of Chicken", 500, 2],
|
|
["Chicken Tenders Meal", 500, 2],
|
|
["Large Fries", 500, 2],
|
|
["Small Fries", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Burger: [
|
|
["Bacon Cheeseburger", 500, 2],
|
|
["Double Cheeseburger", 500, 2],
|
|
["Big Boy Burger", 500, 2],
|
|
["Large Fries", 500, 2],
|
|
["Small Fries", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Chinese: [
|
|
["Egg Roll", 500, 2],
|
|
["Lo Mein", 500, 2],
|
|
["Fried Rice", 500, 2],
|
|
["Crab Rangoon", 500, 2],
|
|
["Egg Drop Soup", 500, 2],
|
|
["Moo Shu Pork", 500, 2],
|
|
["Egg Foo Young", 500, 2],
|
|
["Sesame Chicken", 500, 2],
|
|
],
|
|
Italian: [
|
|
["Bottle of Wine", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
["Arancini", 500, 2],
|
|
["Lasagne", 500, 2],
|
|
["Chicken Alfredo", 500, 2],
|
|
["Fettucine Alfredo", 500, 2],
|
|
["Chicken Parmigiana", 500, 2],
|
|
["Chicken Carbonara", 500, 2],
|
|
["Sausage Rigatoni", 500, 2],
|
|
["Chicken Salad", 500, 2],
|
|
["Caesar Salad", 500, 2],
|
|
],
|
|
Mexican: [
|
|
["Crunchy Taco", 500, 2],
|
|
["Beaf and Bean Burrito", 500, 2],
|
|
["Burrito Supreme", 500, 2],
|
|
["Cheesy Nachos", 500, 2],
|
|
["Nacho Supreme", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Pizza: [
|
|
["Large Pizza", 500, 2],
|
|
["Medium Pizza", 500, 2],
|
|
["Small Pizza", 500, 2],
|
|
["Buffalo Wings", 500, 2],
|
|
["Hot Wings", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
CoffeeDonutShop: [
|
|
["Glazed Donut", 500, 2],
|
|
["Frosted Donut", 500, 2],
|
|
["Jelly Donut", 500, 2],
|
|
["Cream-filled Donut", 500, 2],
|
|
["Apple Fritter", 500, 2],
|
|
["Pumpkin Spice Latte", 500, 2],
|
|
["Mocha Latte", 500, 2],
|
|
["Iced Coffee", 500, 2],
|
|
["Apple Fritter", 500, 2],
|
|
["Large Coffee", 500, 2],
|
|
["Small Coffee", 500, 2],
|
|
],
|
|
VehicleRepairShop: [
|
|
["Vehicle Repair Kit", 500, 2],
|
|
["Vehicle Primary Colour Kit", 500, 2],
|
|
["Vehicle Secondary Colour Kit", 500, 2],
|
|
],
|
|
VehicleModShop: [
|
|
["Vehicle Primary Colour Kit", 500, 2],
|
|
["Vehicle Secondary Colour Kit", 500, 2],
|
|
["Decal Kit", 500, 2],
|
|
["Spoiler", 500, 2],
|
|
["Side Skirt", 500, 2],
|
|
["Wheels", 500, 2],
|
|
["Roof", 500, 2],
|
|
["Front Bumper", 500, 2],
|
|
["Rear Bumper", 500, 2],
|
|
["Exhaust", 500, 2],
|
|
["NOS x5", 500, 2],
|
|
["NOS x10", 500, 2],
|
|
["Hydraulics", 500, 2],
|
|
],
|
|
},
|
|
[VRR_GAME_GTA_IV]: { // GTA IV
|
|
ClothingStore: [
|
|
["Outfit", 500, 2]
|
|
],
|
|
LegalGunStore: [
|
|
["Baseball Bat", 500, 2],
|
|
["Knife", 500, 2],
|
|
["Glock 9mm", 500, 2],
|
|
["Desert Eagle", 500, 2],
|
|
["Stubby Shotgun", 500, 2],
|
|
["Glock 9mm Ammo", 500, 2],
|
|
["Desert Eagle Ammo", 500, 2],
|
|
["Stubby Shotgun Ammo", 500, 2],
|
|
],
|
|
IllegalGunStore: [
|
|
["MP5", 500, 2],
|
|
["Micro Uzi", 500, 2],
|
|
["AK-47", 500, 2],
|
|
["M4", 500, 2],
|
|
["Beretta Shotgun", 500, 2],
|
|
["Sniper Rifle", 500, 2],
|
|
["MP5 Ammo", 500, 2],
|
|
["Micro Uzi Ammo", 500, 2],
|
|
["AK-47 Ammo", 500, 2],
|
|
["M4 Ammo", 500, 2],
|
|
["Beretta Shotgun Ammo", 500, 2],
|
|
["Sniper Rifle Ammo", 500, 2],
|
|
],
|
|
GasStation: [
|
|
["Bottle of Soda", 500, 2],
|
|
["Can of Soda", 500, 2],
|
|
["Slice of Pizza", 500, 2],
|
|
["Bottle of Water", 500, 2],
|
|
["Can of Beer", 500, 2]
|
|
],
|
|
ElectronicsStore: [
|
|
["Phone", 500, 2],
|
|
["Walkie Talkie", 500, 2],
|
|
["Megaphone", 500, 2],
|
|
["Tazer", 500, 2],
|
|
["Camera", 500, 2]
|
|
],
|
|
Bar: [
|
|
["Bottle of Vodka", 500, 2],
|
|
["Bottle of Whiskey", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
["Bottle of Wine", 500, 2],
|
|
["Bottle of Bourbon", 500, 2],
|
|
["Shot of Bourbon", 500, 2],
|
|
["Shot of Vodka", 500, 2],
|
|
["Shot of Whiskey", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
],
|
|
Club: [
|
|
["Bottle of Vodka", 500, 2],
|
|
["Bottle of Whiskey", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
["Bottle of Wine", 500, 2],
|
|
["Bottle of Bourbon", 500, 2],
|
|
["Shot of Bourbon", 500, 2],
|
|
["Shot of Vodka", 500, 2],
|
|
["Shot of Whiskey", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
],
|
|
Chicken: [
|
|
["Bucket of Chicken", 500, 2],
|
|
["Chicken Tenders Meal", 500, 2],
|
|
["Large Fries", 500, 2],
|
|
["Small Fries", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Burger: [
|
|
["Bacon Cheeseburger", 500, 2],
|
|
["Double Cheeseburger", 500, 2],
|
|
["Big Boy Burger", 500, 2],
|
|
["Large Fries", 500, 2],
|
|
["Small Fries", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Chinese: [
|
|
["Egg Roll", 500, 2],
|
|
["Lo Mein", 500, 2],
|
|
["Fried Rice", 500, 2],
|
|
["Crab Rangoon", 500, 2],
|
|
["Egg Drop Soup", 500, 2],
|
|
["Moo Shu Pork", 500, 2],
|
|
["Egg Foo Young", 500, 2],
|
|
["Sesame Chicken", 500, 2],
|
|
],
|
|
Italian: [
|
|
["Bottle of Wine", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
["Arancini", 500, 2],
|
|
["Lasagne", 500, 2],
|
|
["Chicken Alfredo", 500, 2],
|
|
["Fettucine Alfredo", 500, 2],
|
|
["Chicken Parmigiana", 500, 2],
|
|
["Chicken Carbonara", 500, 2],
|
|
["Sausage Rigatoni", 500, 2],
|
|
["Chicken Salad", 500, 2],
|
|
["Caesar Salad", 500, 2],
|
|
],
|
|
Mexican: [
|
|
["Crunchy Taco", 500, 2],
|
|
["Beaf and Bean Burrito", 500, 2],
|
|
["Burrito Supreme", 500, 2],
|
|
["Cheesy Nachos", 500, 2],
|
|
["Nacho Supreme", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Pizza: [
|
|
["Large Pizza", 500, 2],
|
|
["Medium Pizza", 500, 2],
|
|
["Small Pizza", 500, 2],
|
|
["Buffalo Wings", 500, 2],
|
|
["Hot Wings", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
CoffeeDonutShop: [
|
|
["Glazed Donut", 500, 2],
|
|
["Frosted Donut", 500, 2],
|
|
["Jelly Donut", 500, 2],
|
|
["Cream-filled Donut", 500, 2],
|
|
["Apple Fritter", 500, 2],
|
|
["Pumpkin Spice Latte", 500, 2],
|
|
["Mocha Latte", 500, 2],
|
|
["Iced Coffee", 500, 2],
|
|
["Apple Fritter", 500, 2],
|
|
["Large Coffee", 500, 2],
|
|
["Small Coffee", 500, 2],
|
|
],
|
|
VehicleRepairShop: [
|
|
["Vehicle Repair Kit", 500, 2],
|
|
["Vehicle Decal Kit", 500, 2],
|
|
["Vehicle Primary Colour Kit", 500, 2],
|
|
["Vehicle Secondary Colour Kit", 500, 2],
|
|
],
|
|
},
|
|
[VRR_GAME_MAFIA_ONE]: { // Mafia 1
|
|
ClothingStore: [
|
|
["Outfit", 500, 2]
|
|
],
|
|
LegalGunStore: [
|
|
["Baseball Bat", 500, 2],
|
|
["Knuckleduster", 500, 2],
|
|
["Knife", 500, 2],
|
|
["S&W Model 10 M&P", 500, 2],
|
|
["S&W Model 27 Magnum", 500, 2],
|
|
["Colt 1911", 500, 2],
|
|
["Shotgun", 500, 2],
|
|
["Sawed-off Shotgun", 500, 2],
|
|
["S&W Model 10 M&P Ammo", 500, 2],
|
|
["S&W Model 27 Magnum Ammo", 500, 2],
|
|
["Colt 1911 Ammo", 500, 2],
|
|
["Shotgun Ammo", 500, 2],
|
|
["Sawed-off Shotgun Ammo", 500, 2],
|
|
],
|
|
IllegalGunStore: [
|
|
],
|
|
SexShop: [
|
|
["Purple Dildo", 500, 2],
|
|
["Dildo", 500, 2],
|
|
["Vibrator", 500, 2],
|
|
["Silver Vibrator", 500, 2],
|
|
["Flowers", 500, 2]
|
|
],
|
|
GasStation: [
|
|
["Bottle of Soda", 500, 2],
|
|
["Can of Soda", 500, 2],
|
|
["Slice of Pizza", 500, 2],
|
|
["Bottle of Water", 500, 2],
|
|
["Can of Beer", 500, 2]
|
|
],
|
|
ElectronicsStore: [
|
|
["Phone", 500, 2],
|
|
["Walkie Talkie", 500, 2],
|
|
["Megaphone", 500, 2],
|
|
["Tazer", 500, 2],
|
|
["Camera", 500, 2]
|
|
],
|
|
Bar: [
|
|
["Bottle of Vodka", 500, 2],
|
|
["Bottle of Whiskey", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
["Bottle of Wine", 500, 2],
|
|
["Bottle of Bourbon", 500, 2],
|
|
["Shot of Bourbon", 500, 2],
|
|
["Shot of Vodka", 500, 2],
|
|
["Shot of Whiskey", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
],
|
|
Club: [
|
|
["Bottle of Vodka", 500, 2],
|
|
["Bottle of Whiskey", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
["Bottle of Wine", 500, 2],
|
|
["Bottle of Bourbon", 500, 2],
|
|
["Shot of Bourbon", 500, 2],
|
|
["Shot of Vodka", 500, 2],
|
|
["Shot of Whiskey", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
],
|
|
Chicken: [
|
|
["Bucket of Chicken", 500, 2],
|
|
["Chicken Tenders Meal", 500, 2],
|
|
["Large Fries", 500, 2],
|
|
["Small Fries", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Burger: [
|
|
["Bacon Cheeseburger", 500, 2],
|
|
["Double Cheeseburger", 500, 2],
|
|
["Big Boy Burger", 500, 2],
|
|
["Large Fries", 500, 2],
|
|
["Small Fries", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Chinese: [
|
|
["Egg Roll", 500, 2],
|
|
["Lo Mein", 500, 2],
|
|
["Fried Rice", 500, 2],
|
|
["Crab Rangoon", 500, 2],
|
|
["Egg Drop Soup", 500, 2],
|
|
["Moo Shu Pork", 500, 2],
|
|
["Egg Foo Young", 500, 2],
|
|
["Sesame Chicken", 500, 2],
|
|
],
|
|
Italian: [
|
|
["Bottle of Wine", 500, 2],
|
|
["Glass of Wine", 500, 2],
|
|
["Arancini", 500, 2],
|
|
["Lasagne", 500, 2],
|
|
["Chicken Alfredo", 500, 2],
|
|
["Fettucine Alfredo", 500, 2],
|
|
["Chicken Parmigiana", 500, 2],
|
|
["Chicken Carbonara", 500, 2],
|
|
["Sausage Rigatoni", 500, 2],
|
|
["Chicken Salad", 500, 2],
|
|
["Caesar Salad", 500, 2],
|
|
],
|
|
Mexican: [
|
|
["Crunchy Taco", 500, 2],
|
|
["Beaf and Bean Burrito", 500, 2],
|
|
["Burrito Supreme", 500, 2],
|
|
["Cheesy Nachos", 500, 2],
|
|
["Nacho Supreme", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
Pizza: [
|
|
["Large Pizza", 500, 2],
|
|
["Medium Pizza", 500, 2],
|
|
["Small Pizza", 500, 2],
|
|
["Buffalo Wings", 500, 2],
|
|
["Hot Wings", 500, 2],
|
|
["Bottle of Soda", 500, 2],
|
|
],
|
|
CoffeeDonutShop: [
|
|
["Glazed Donut", 500, 2],
|
|
["Frosted Donut", 500, 2],
|
|
["Jelly Donut", 500, 2],
|
|
["Cream-filled Donut", 500, 2],
|
|
["Apple Fritter", 500, 2],
|
|
["Pumpkin Spice Latte", 500, 2],
|
|
["Mocha Latte", 500, 2],
|
|
["Iced Coffee", 500, 2],
|
|
["Apple Fritter", 500, 2],
|
|
["Large Coffee", 500, 2],
|
|
["Small Coffee", 500, 2],
|
|
],
|
|
VehicleRepairShop: [
|
|
["Vehicle Repair Kit", 500, 2],
|
|
],
|
|
}
|
|
},
|
|
interiors: {
|
|
[VRR_GAME_GTA_VC]: { // GTA VC
|
|
Mall: [toVector3(379.62, 1007.00, 19.22), 4, false, -1],
|
|
MalibuClub: [toVector3(489.83, -76.49, 11.48), 17, false, -1],
|
|
PoliceStation: [toVector3(396.38, -472.96, 12.34), 12, false, -1],
|
|
Apartment: [toVector3(26.67, -1328.89, 13.00), 11, false, -1],
|
|
HotelLobby: [toVector3(228.53, -1277.12, 12.07), 1, false, -1],
|
|
BikerBar: [toVector3(-597.41, 651.84, 11.30), 11, false, -1],
|
|
Mansion: [toVector3(-379.14, -551.65, 19.32), 2, false, -1],
|
|
GunRange: [toVector3(-667.79, 1217.51, 11.10), 10, false, -1],
|
|
Bank: [toVector3(-894.52, -341.16, 13.45), 3, false, -1],
|
|
StripClub: [toVector3(97.53, -1472.06, 10.43), 5, false, -1],
|
|
RosenbergOffice: [toVector3(137.29, -1370.20, 13.18), 6, false, -1],
|
|
Arena: [toVector3(-1080.49, 1331.16, 13.91), 15, false, -1],
|
|
GhettoShack: [toVector3(-962.74, 146.96, 9.40), 12, false, -1],
|
|
HotelRoom: [toVector3(226.47, -1274.98, 19.271), 2, false, -1],
|
|
ConcertHall: [toVector3(-925.417, 1053.4, 13.2005), 8, false, -1],
|
|
RecordingStudio: [toVector3(-879.767, 1156.88, 17.8115), 9, false, -1],
|
|
PrintWorks: [toVector3(-1064.98, -279.093, 12.0882), 18, false, -1],
|
|
Gas: [toVector3(447.26, 789.09, 12.95), 0, false, -1],
|
|
},
|
|
|
|
[VRR_GAME_GTA_SA]: { // GTA SA
|
|
LSPD: [toVector3(247.113, 62.929, 1003.64), 2, false, -1],
|
|
LVPD: [toVector3(288.82, 167.39, 1007.17), 3, false, -1],
|
|
SFPD: [toVector3(246.40, 110.84, 1003.22), 10, false, -1],
|
|
ReeceBarberShop: [toVector3(411.62, -21.43, 1001.80), 2, false, -1],
|
|
FourDragons: [toVector3(2016.26, 1017.77, 996.87), 10, false, -1],
|
|
Caligula: [toVector3(2233.8, 1712.23, 1011.76), 1, false, -1],
|
|
GenericCasino: [toVector3(1118.88, -10.27, 1002.08), 12, false, -1],
|
|
CluckinBell: [toVector3(365.71, -9.88, 1001.85), 9, false, -1],
|
|
PizzaStack: [toVector3(372.35, -131.65, 1001.49), 5, false, -1],
|
|
BurgerShot: [toVector3(375.96, -65.81, 1001.50), 10, false, -1],
|
|
TattooParlor: [toVector3(-203.07, -24.16, 1002.27), 16, false, -1],
|
|
Bank: [toVector3(2305.14, -16.274, 26.74), 1, false, -1],
|
|
Gas1: [toVector3(-25.96, -187.67, 1003.54), 17, false, -1],
|
|
Gas2: [toVector3(6.09, -29.27, 1003.54), 10, false, -1],
|
|
Gas3: [toVector3(-30.94, -89.60, 1003.54), 18, false, -1],
|
|
Gas4: [toVector3(-25.13, -139.06, 1003.54), 16, false, -1],
|
|
Gas5: [toVector3(-27.31, -29.27, 1003.54), 4, false, -1],
|
|
Gas6: [toVector3(-26.69, -55.71, 1003.54), 6, false, -1],
|
|
Shamal: [toVector3(2.38, 33.10, 1199.84), 1, false, -1],
|
|
Andromeda: [toVector3(315.85, 1024.49, 1949.79), 9, false, -1],
|
|
AirportTickets: [toVector3(-1827.14, 7.20, 1061.14), 14, false, -1],
|
|
AirportBaggage: [toVector3(-1855.56, 41.26, 1061.14), 14, false, -1],
|
|
Ammu1: [toVector3(286.14, -40.64, 1001.56), 1, false, -1],
|
|
Ammu2: [toVector3(286.80, -82.54, 1001.53), 4, false, -1],
|
|
Ammu3: [toVector3(296.91, -108.07, 1001.56), 6, false, -1],
|
|
Ammu4: [toVector3(314.82, -141.43, 999.66), 7, false, -1],
|
|
Ammu5: [toVector3(316.52, -167.70, 999.66), 6, false, -1],
|
|
AmmuBooth: [toVector3(302.29, -143.13, 1004.06), 7, false, -1],
|
|
AmmuRange: [toVector3(280.79, -135.20, 1004.06), 7, false, -1],
|
|
House1: [toVector3(235.51, 1189.17, 1080.34), 3, false, -1],
|
|
House2: [toVector3(225.76, 1240.00, 1082.15), 2, false, -1],
|
|
House3: [toVector3(223.04, 1289.26, 1082.20), 1, false, -1],
|
|
House4: [toVector3(225.63, 1022.48, 1084.07), 7, false, -1],
|
|
House5: [toVector3(295.14, 1474.47, 1080.52), 15, false, -1],
|
|
House6: [toVector3(328.49, 1480.59, 1084.45), 15, false, -1],
|
|
House7: [toVector3(385.80, 1471.77, 1080.21), 15, false, -1],
|
|
Atrium: [toVector3(1726.18, -1641.00, 20.23), 18, false, -1],
|
|
CrackPalace: [toVector3(2,567.52, -1294.59, 1063.25), 2, false, -1],
|
|
BloodbowlStadium: [toVector3(-1394.20, 987.62, 1023.96), 15, false, -1],
|
|
BurningDesireHouse: [toVector3(2338.32, -1180.61, 1027.98), 5, false, -1],
|
|
FurhbergerHouse: [toVector3(2807.63, -1170.15, 1025.57), 8, false, -1],
|
|
DillimoreGas: [toVector3(664.19, -570.73, 16.34), 0, false, -1],
|
|
DonutShop: [toVector3(377.19, -192.90, 1000.64), 17, false, -1],
|
|
Airport: [toVector3(-1830.81, 16.83, 1061.14), 14, false, -1],
|
|
JeffersonMotel: [toVector3(2220.26, -1,148.01, 1025.80), 15, false, -1],
|
|
KickstartStadium: [toVector3(-1410.72, 1,591.16, 1052.53), 14, false, -1],
|
|
LibertyCity: [toVector3(-750.80, 491.00, 1371.70), 1, false, -1],
|
|
LSXBaggageReclaim: [toVector3(-1870.80, 59.81, 1056.25), 14, false, -1],
|
|
JizzyClub: [toVector3(-2637.69, 1404.24, 906.46), 3, false, -1],
|
|
RCBattlefield: [toVector3(-1079.99, 1061.58, 1343.04), 10, false, -1],
|
|
RyderHouse: [toVector3(2451.77, -1699.80, 1013.51), 2, false, -1],
|
|
SFGarage: [toVector3(-2042.42, 178.59, 28.84), 1, false, -1],
|
|
SweetHouse: [toVector3(2535.83, -1,674.32, 1015.50), 1, false, -1],
|
|
KatieHouse: [toVector3(267.22, 304.71, 999.14), 2, false, -1],
|
|
HelenaHouse: [toVector3(292.44, 308.77, 999.14), 3, false, -1],
|
|
WelcomePump: [toVector3(681.66, -453.32, -25.61), 1, false, -1],
|
|
WoozieApartment: [toVector3(-2158.72, 641.29, 1052.38), 1, false, -1],
|
|
EightTrackStadium: [toVector3(-1395.96, -208.20, 1051.17), 7, false, -1],
|
|
DirtBikeStadium: [toVector3(-1424.93, -664.59, 1059.86), 4, false, -1],
|
|
CrackDen: [toVector3(75.0475, 1094.6, 18.7597), 5, false, -1],
|
|
MotelRoom: [toVector3(2251.85, -1138.16, 1050.63), 9, false, -1],
|
|
HashburyHouse: [toVector3(2260.76, -1210.45, 1049.02), 10, false, -1],
|
|
CJHouse: [toVector3(2496.65, -1696.55, 1014.74), 3, false, -1],
|
|
MaddDoggMansion: [toVector3(1299.14, -794.77, 1084.00), 5, false, -1],
|
|
MotelRoom2: [toVector3(2262.83, -1137.71, 1050.63), 10, false, -1],
|
|
SafeHouse1: [toVector3(2365.42, -1131.85, 1050.88), 8, false, -1],
|
|
SafeHouse2: [toVector3(2324.33, -1144.79, 1050.71), 12, false, -1],
|
|
ZeroStore: [toVector3(-2240.00, 131.00, 1035.40), 6, false, -1],
|
|
Brothel1: [toVector3(940.65, -18.48, 1000.93), 3, false, -1],
|
|
Brothel2: [toVector3(967.53, -53.02, 1001.12), 3, false, -1],
|
|
Brothel3: [toVector3(744.27, 1437.25, 1102.70), 6, false, -1],
|
|
ProlapsStore: [toVector3(207.35, -138.00, 1003.31), 3, false, -1],
|
|
VictimStore: [toVector3(221.33, -6.61, 1005.19), 5, false, -1],
|
|
SuburbanStore: [toVector3(203.81, -46.53, 1001.80), 1, false, -1],
|
|
SexShop: [toVector3(-106.72, -19.64, 1000.71), 3, false, -1],
|
|
BincoStore: [toVector3(207.54, -109.00, 1005.13), 15, false, -1],
|
|
Wardrobe: [toVector3(255.71, -41.13, 1002.02), 14, false, -1],
|
|
CityHall: [toVector3(389.538, 173.652, 1008.38), 3, false, -1],
|
|
GantonGym: [toVector3(772.11,-3.89,1000.72), 5, false, -1],
|
|
KungFuGym: [toVector3(774.21, -48.92, 1000.58), 6, false, -1],
|
|
LVGym: [toVector3(773.57, -77.09, 1000.65), 7, false, -1],
|
|
InsuranceCompany: [toVector3(-2029.76, -119.624, 1035.17), 1, false, -1],
|
|
StripClub1: [toVector3(1204.80,-11.58,1000.92), 2, false, -1],
|
|
StripClub1Private: [toVector3(1204.80, 13.89, 1000.92), 2, false, -1],
|
|
NightClub: [toVector3(493.39,-22.72,1000.67), 17, false, -1],
|
|
Warehouse1: [toVector3(1412.63, -1.78, 1000.92), 1, false, -1],
|
|
Warehouse2: [toVector3(1302.51, -1.78, 1001.02), 18, false, -1],
|
|
Warehouse3: [toVector3(76.63, -301.15, 1.57), 0, false, -1],
|
|
Warehouse4: [toVector3(1059.89, 2081.68, 10.82), 0, false, -1],
|
|
BikeSchool: [toVector3(1494.32, 1304.94, 1093.28), 3, false, -1],
|
|
Bar1: [toVector3(501.98,-69.15,998.75), 11, false, -1],
|
|
Diner1: [toVector3(459.58, -88.60, 999.55), 4, false, -1],
|
|
//Diner2: [toVector3(454.97, -110.10, 1000.07), 4, false, -1],
|
|
//Diner3: [toVector3(435.27, -80.95, 999.55), 5, false, -1],
|
|
SmallPoliceStation: [toVector3(322.19, 302.49, 999.14), 5, false, -1],
|
|
Cinema: [toVector3(2179.95,-1009.75,1021.68), 0, true, -1],
|
|
Courthouse: [toVector3(1219.51, -1792.69, 2431.34), 0, true, -1],
|
|
},
|
|
|
|
[VRR_GAME_GTA_IV]: { // GTA IV
|
|
Office2: [toVector3(-1153.30, 417.37, 5.578), 0, false, -1],
|
|
House1: [toVector3(-426.16, 1466.52, 38.971), 0, false, -1],
|
|
House2: [toVector3(-969.77, 883.27, 18.817), 0, false, -1],
|
|
House3: [toVector3(95.75, 851.68, 45.051), 0, false, -1],
|
|
House4: [toVector3(603.04, 1404.06, 17.479), 0, false, -1],
|
|
House5: [toVector3(892.56, -502.13, 19.407), 0, false, -1],
|
|
House6: [toVector3(-524.09, 830.54, 23.627), 0, false, -1],
|
|
House7: [toVector3(806.36, 146.68, 29.243), 0, false, -1],
|
|
House8: [toVector3(356.91, 1511.28, 21.432), 0, false, -1],
|
|
House9: [toVector3(1319.40, -847.02, 8.872), 0, false, -1],
|
|
House10: [toVector3(1331.40, 126.60, 36.558), 0, false, -1],
|
|
House11: [toVector3(1387.81, 622.66, 35.857), 0, false, -1],
|
|
House12: [toVector3(932.74, -189.29, 35.143), 0, false, -1],
|
|
House13: [toVector3(-1397.85, 1473.89, 26.447), 0, false, -1],
|
|
House14: [toVector3(806.36, 146.68, 29.243), 0, false, -1],
|
|
House15: [toVector3(-526.49, 829.41, 23.627), 0, false, -1],
|
|
Gym: [toVector3(403.31, 1480.32, 11.834), 0, false, -1],
|
|
PoliceStation: [toVector3(-406.52, 286.57, 13.682), 0, false, -1],
|
|
FancyRestaurant: [toVector3(-118.24, -259.06, 12.654), 0, false, -1],
|
|
Basement: [toVector3(1304.38, -856.66, 5.490), 0, false, -1],
|
|
Office1: [toVector3(-409.31, 285.49, 18.592), 0, false, -1],
|
|
Office2: [toVector3(-1153.30, 417.37, 5.578), 0, false, -1],
|
|
Office3: [toVector3(817.64, -259.77, 15.343), 0, false, -1],
|
|
Office4: [toVector3(-86.35, 56.70, 75.953), 0, false, -1],
|
|
HospitalRoom: [toVector3(1240.00, 192.44, 33.553), 0, false, -1],
|
|
Church: [toVector3(-286.72, -282.36, 15.632), 0, false, -1],
|
|
Prison: [toVector3(-1082.69, -364.05, 7.404), 0, false, -1],
|
|
Ship: [toVector3(-336.53, -1494.56, 9.945), 0, false, -1],
|
|
},
|
|
[VRR_GAME_GTA_IV_EFLC]: {}, // GTA IV EFLC
|
|
[VRR_GAME_MAFIA_ONE]: { // Mafia 1
|
|
},
|
|
[VRR_GAME_MAFIA_TWO]: { // Mafia 2
|
|
},
|
|
[VRR_GAME_MAFIA_THREE]: { // Mafia 3
|
|
},
|
|
[VRR_GAME_MAFIA_ONE_DE]: { // Mafia 1 Definitive Edition
|
|
},
|
|
},
|
|
skinChangePosition: {
|
|
[VRR_GAME_GTA_SA]: [toVector3(258.14, -41.76, 1002.023), 1.322, 14],
|
|
},
|
|
policeStations: {
|
|
[VRR_GAME_GTA_III]: [ // GTA 3
|
|
{
|
|
position: toVector3(1143.875, -675.1875, 14.97),
|
|
heading: 1.5,
|
|
blip: false,
|
|
name: "Portland",
|
|
},
|
|
{
|
|
position: toVector3(340.25, -1123.375, 25.98),
|
|
heading: 3.14,
|
|
blip: false,
|
|
name: "Staunton Island",
|
|
},
|
|
{
|
|
position: toVector3(-1253.0, -138.1875, 58.75),
|
|
heading: 1.5,
|
|
blip: false,
|
|
name: "Shoreside Vale",
|
|
},
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA VC
|
|
{
|
|
position: toVector3(399.77, -468.90, 11.73),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "Washington Beach",
|
|
},
|
|
{
|
|
position: toVector3(508.96, 512.07, 12.10),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "Vice Point",
|
|
},
|
|
{
|
|
position: toVector3(-657.43, 762.31, 11.59),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "Downtown",
|
|
},
|
|
{
|
|
position: toVector3(-885.08, -470.44, 13.11),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "Little Havana",
|
|
},
|
|
],
|
|
[VRR_GAME_GTA_SA]: [ // GTA SA
|
|
{
|
|
position: toVector3(1545.53, -1675.64, 13.561),
|
|
heading: -1.575,
|
|
blip: false,
|
|
name: "Los Santos",
|
|
},
|
|
{
|
|
position: toVector3(2290.06, 2428.15, 10.82),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "Las Venturas",
|
|
},
|
|
{
|
|
position: toVector3(-1606.92, 718.08, 12.23),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "San Fierro",
|
|
},
|
|
{
|
|
position: toVector3(-212.65, 977.99, 19.33),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "Fort Carson",
|
|
},
|
|
{
|
|
position: toVector3(-212.65, 977.99, 19.33),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "Dillimore",
|
|
},
|
|
],
|
|
[VRR_GAME_GTA_IV]: [ // GTA IV
|
|
|
|
{
|
|
position: toVector3(894.99, -357.39, 18.185),
|
|
heading: 2.923,
|
|
blip: false,
|
|
name: "Broker",
|
|
},
|
|
{
|
|
position: toVector3(435.40, 1592.29, 17.353),
|
|
heading: 3.087,
|
|
blip: false,
|
|
name: "South Bohan",
|
|
},
|
|
{
|
|
position: toVector3(974.93, 1870.45, 23.073),
|
|
heading: -1.621,
|
|
blip: false,
|
|
name: "Northern Gardens",
|
|
},
|
|
{
|
|
position: toVector3(1233.25, -89.13, 28.034),
|
|
heading: 1.568,
|
|
blip: false,
|
|
name: "South Slopes",
|
|
},
|
|
{
|
|
position: toVector3(50.12, 679.88, 15.316),
|
|
heading: 1.569,
|
|
blip: false,
|
|
name: "Middle Park East",
|
|
},
|
|
{
|
|
position: toVector3(85.21, 1189.82, 14.755),
|
|
heading: 3.127,
|
|
blip: false,
|
|
name: "East Holland",
|
|
},
|
|
{
|
|
position: toVector3(2170.87, 448.87, 6.085),
|
|
heading: 1.501,
|
|
blip: false,
|
|
name: "Francis International Airport",
|
|
},
|
|
{
|
|
position: toVector3(213.12, -211.70, 10.752),
|
|
heading: 0.200,
|
|
blip: false,
|
|
name: "Chinatown",
|
|
},
|
|
{
|
|
position: toVector3(-1714.95, 276.31, 22.134),
|
|
heading: 1.127,
|
|
blip: false,
|
|
name: "Acter",
|
|
},
|
|
{
|
|
position: toVector3(-1220.73, -231.53, 3.024),
|
|
heading: 2.210,
|
|
blip: false,
|
|
name: "Port Tudor",
|
|
},
|
|
{
|
|
position: toVector3(-927.66, 1263.63, 24.587),
|
|
heading: -0.913,
|
|
blip: false,
|
|
name: "Leftwood",
|
|
},
|
|
],
|
|
},
|
|
fireStations: {
|
|
[VRR_GAME_GTA_III]: [ // GTA 3
|
|
{
|
|
position: toVector3(1103.70, -52.45, 7.49),
|
|
heading: 1.5,
|
|
blip: false,
|
|
name: "Portland",
|
|
},
|
|
{
|
|
position: toVector3(-78.48, -436.80, 16.17),
|
|
heading: 3.14,
|
|
blip: false,
|
|
name: "Staunton Island",
|
|
},
|
|
{
|
|
position: toVector3(-1202.10, -14.67, 53.20),
|
|
heading: 1.5,
|
|
blip: false,
|
|
name: "Shoreside Vale",
|
|
},
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA VC
|
|
|
|
],
|
|
[VRR_GAME_GTA_SA]: [ // GTA SA
|
|
|
|
],
|
|
VRR_GAME_GTA_UG: [ // GTA UG
|
|
|
|
],
|
|
[VRR_GAME_GTA_IV]: [ // GTA IV
|
|
{
|
|
position: toVector3(953.13, 95.90, 35.004),
|
|
heading: 1.595,
|
|
blip: false,
|
|
name: "Broker",
|
|
},
|
|
{
|
|
position: toVector3(-271.02, 1542.15, 20.420),
|
|
heading: -1.160,
|
|
blip: false,
|
|
name: "Northwood",
|
|
},
|
|
{
|
|
position: toVector3(1120.47, 1712.36, 10.534),
|
|
heading: -0.682,
|
|
blip: false,
|
|
name: "Northern Gardens",
|
|
},
|
|
{
|
|
position: toVector3(2364.87, 166.83, 5.813),
|
|
heading: 0.156,
|
|
blip: false,
|
|
name: "Francis International Airport",
|
|
},
|
|
{
|
|
position: toVector3(295.40, -336.88, 4.963),
|
|
heading: 2.887,
|
|
blip: false,
|
|
name: "Chinatown",
|
|
},
|
|
],
|
|
},
|
|
hospitals: {
|
|
[VRR_GAME_GTA_III]: [ // GTA 3
|
|
{
|
|
position: toVector3(1144.25, -596.875, 14.97),
|
|
heading: 1.5,
|
|
blip: false,
|
|
name: "Portland",
|
|
},
|
|
{
|
|
position: toVector3(183.5, -17.75, 16.21),
|
|
heading: 3.14,
|
|
blip: false,
|
|
name: "Staunton Island",
|
|
},
|
|
{
|
|
position: toVector3(-1259.5, -44.5, 58.89),
|
|
heading: 1.5,
|
|
blip: false,
|
|
name: "Shoreside Vale",
|
|
},
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA VC
|
|
{
|
|
position: toVector3(493.14, 709.31, 11.80),
|
|
heading: 1.5,
|
|
blip: false,
|
|
name: "Unknown",
|
|
},
|
|
{
|
|
position: toVector3(-826.06, 1144.41, 12.41),
|
|
heading: 1.5,
|
|
blip: false,
|
|
name: "Unknown",
|
|
},
|
|
],
|
|
[VRR_GAME_GTA_SA]: [ // GTA SA
|
|
{
|
|
position: toVector3(1172.96, -1323.42, 15.40),
|
|
heading: 1.5,
|
|
blip: false,
|
|
name: "All Saints General Hospital",
|
|
},
|
|
{
|
|
position: toVector3(2034.04, -1405.07, 17.24),
|
|
heading: 1.5,
|
|
blip: false,
|
|
name: "County General Hospital",
|
|
},
|
|
{
|
|
position: toVector3(-2654.14, 635.36, 14.45),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "San Fierro Medical Center",
|
|
},
|
|
{
|
|
position: toVector3(1607.44, 1819.85, 10.83),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "Las Venturas Hospital",
|
|
},
|
|
{
|
|
position: toVector3(-316.84, 1056.59, 19.74),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "Fort Carson Medical Center",
|
|
},
|
|
],
|
|
[VRR_GAME_GTA_IV]: [ // GTA IV
|
|
{
|
|
position: toVector3(1199.59, 196.78, 33.554),
|
|
heading: 1.633,
|
|
blip: false,
|
|
name: "Schottler Medical Center",
|
|
},
|
|
{
|
|
position: toVector3(980.71, 1831.61, 23.898),
|
|
heading: -0.049,
|
|
blip: false,
|
|
name: "Northern Gardens Medical Center",
|
|
},
|
|
{
|
|
position: toVector3(-1317.27, 1277.20, 22.370),
|
|
heading: 2.246,
|
|
blip: false,
|
|
name: "Leftwood Medical Center",
|
|
},
|
|
{
|
|
position: toVector3(-1538.43, 344.58, 20.943),
|
|
heading: -0.156,
|
|
blip: false,
|
|
name: "Acter Medical Center",
|
|
},
|
|
],
|
|
[VRR_GAME_MAFIA_ONE]: [
|
|
// Mafia 1
|
|
{
|
|
position: toVector3(-759.00, 11.40, 747.31),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "New Ark Hospital",
|
|
},
|
|
],
|
|
},
|
|
payAndSprays: {
|
|
[VRR_GAME_GTA_III]: [ // GTA 3
|
|
{
|
|
position: toVector3(925.4, -360.3, 10.83),
|
|
blip: false,
|
|
name: "Portland",
|
|
},
|
|
{
|
|
position: toVector3(381.8, -493.8, 25.95),
|
|
blip: false,
|
|
name: "Staunton Island",
|
|
},
|
|
{
|
|
position: toVector3(-1142.4, 35.01, 58.61),
|
|
blip: false,
|
|
name: "Shoreside Vale",
|
|
},
|
|
],
|
|
},
|
|
ammunations: {
|
|
[VRR_GAME_GTA_III]: [ // GTA 3
|
|
{
|
|
position: toVector3(1068.3, -400.9, 15.24),
|
|
blip: false,
|
|
name: "Portland",
|
|
},
|
|
{
|
|
position: toVector3(348.2, -717.9, 26.43),
|
|
blip: false,
|
|
name: "Staunton Island",
|
|
},
|
|
],
|
|
},
|
|
fuelStations: {
|
|
[VRR_GAME_GTA_III]: [ // GTA 3
|
|
{
|
|
position: toVector3(1161.9, -76.73, 7.27),
|
|
blip: false,
|
|
name: "Portland",
|
|
},
|
|
],
|
|
},
|
|
taxiModels: {
|
|
[VRR_GAME_GTA_III]: [ // GTA III
|
|
110,
|
|
128,
|
|
148
|
|
],
|
|
[VRR_GAME_GTA_VC]: [ // GTA VC
|
|
150,
|
|
160,
|
|
216
|
|
],
|
|
[VRR_GAME_GTA_SA]: [// GTA SA
|
|
420,
|
|
438
|
|
],
|
|
[VRR_GAME_GTA_IV]: [ // GTA IV
|
|
-1932515764,
|
|
-956048545,
|
|
1208856469
|
|
],
|
|
},
|
|
vehicleUpgrades: {
|
|
[VRR_GAME_GTA_SA]: { // GTA SA
|
|
1000: "Pro Spoiler",
|
|
1001: "Win Spoiler",
|
|
1002: "Drag Spoiler",
|
|
1003: "Alpha Spoiler",
|
|
1004: "Champ Scoop Hood",
|
|
1005: "Fury Scoop Hood",
|
|
1006: "Roof Scoop Roof",
|
|
1007: "Right Sideskirt",
|
|
1008: "5x Nitro",
|
|
1009: "2x Nitro",
|
|
1010: "10x Nitro",
|
|
1011: "Race Scoop Hood",
|
|
1012: "Worx Scoop Hood",
|
|
1013: "Round Fog Lamps",
|
|
1014: "Champ Spoiler",
|
|
1015: "Race Spoiler",
|
|
1016: "Worx Spoiler",
|
|
1017: "Left Sideskirt",
|
|
1018: "Upswept Exhaust",
|
|
1019: "Twin Exhaust",
|
|
1020: "Large Exhaust",
|
|
1021: "Medium Exhaust",
|
|
1022: "Small Exhaust",
|
|
1023: "Fury Spoiler",
|
|
1024: "Square Fog Lamps",
|
|
1025: "Offroad Wheels",
|
|
1026: "Right Alien Sideskirt",
|
|
1027: "Left Alien Sideskirt",
|
|
1028: "Alien Exhaust",
|
|
1029: "X-Flow Exhaust",
|
|
1030: "Left X-Flow Sideskirt",
|
|
1031: "Right X-Flow Sideskirt",
|
|
1032: "Alien Roof Vent Roof",
|
|
1033: "X-Flow Roof Vent Roof",
|
|
1034: "Alien Exhaust",
|
|
1035: "X-Flow Roof Vent Roof",
|
|
1036: "Right Alien Sideskirt",
|
|
1037: "X-Flow Exhaust",
|
|
1038: "Alien Roof Vent Roof",
|
|
1039: "Left X-Flow Sideskirt",
|
|
1040: "Left Alien Sideskirt",
|
|
1041: "Right X-Flow Sideskirt",
|
|
1042: "Right Chrome Sideskirt",
|
|
1043: "Slamin Exhaust",
|
|
1044: "Chrome Exhaust",
|
|
1045: "X-Flow Exhaust",
|
|
1046: "Alien Exhaust",
|
|
1047: "Right Alien Sideskirt",
|
|
1048: "Right X-Flow Sideskirt",
|
|
1049: "Alien Spoiler",
|
|
1050: "X-Flow Spoiler",
|
|
1051: "Left Alien Sideskirt",
|
|
1052: "Left X-Flow Sideskirt",
|
|
1053: "X-Flow Roof",
|
|
1054: "Alien Roof",
|
|
1055: "Alien Roof",
|
|
1056: "Right Alien Sideskirt",
|
|
1057: "Right X-Flow Sideskirt",
|
|
1058: "Alien Spoiler",
|
|
1059: "X-Flow Exhaust",
|
|
1060: "X-Flow Spoiler",
|
|
1061: "X-Flow Roof",
|
|
1062: "Left Alien Sideskirt",
|
|
1063: "Left X-Flow Sideskirt",
|
|
1064: "Alien Exhaust",
|
|
1065: "Alien Exhaust",
|
|
1066: "X-Flow Exhaust",
|
|
1067: "Alien Roof",
|
|
1068: "X-Flow Roof",
|
|
1069: "Right Alien Sideskirt",
|
|
1070: "Right X-Flow Sideskirt",
|
|
1071: "Left Alien Sideskirt",
|
|
1072: "Left X-Flow Sideskirt",
|
|
1073: "Shadow Wheels",
|
|
1074: "Mega Wheels",
|
|
1075: "Rimshine Wheels",
|
|
1076: "Wires Wheels",
|
|
1077: "Classic Wheels",
|
|
1078: "Twist Wheels",
|
|
1079: "Cutter Wheels",
|
|
1080: "Switch Wheels",
|
|
1081: "Grove Wheels",
|
|
1082: "Import Wheels",
|
|
1083: "Dollar Wheels",
|
|
1084: "Trance Wheels",
|
|
1085: "Atomic Wheels",
|
|
1086: "Stereo Stereo",
|
|
1087: "Hydraulics Hydraulics",
|
|
1088: "Alien Roof",
|
|
1089: "X-Flow Exhaust",
|
|
1090: "Right Alien Sideskirt",
|
|
1091: "X-Flow Roof",
|
|
1092: "Alien Exhaust",
|
|
1093: "Right X-Flow Sideskirt",
|
|
1094: "Left Alien Sideskirt",
|
|
1095: "Right X-Flow Sideskirt",
|
|
1096: "Ahab Wheels",
|
|
1097: "Virtual Wheels",
|
|
1098: "Access Wheels",
|
|
1099: "Left Chrome Sideskirt",
|
|
1100: "Chrome Grill Bullbar",
|
|
1101: "Left Chrome Flames Sideskirt",
|
|
1102: "Left Chrome Strip Sideskirt",
|
|
1103: "Covertible Roof",
|
|
1104: "Chrome Exhaust",
|
|
1105: "Slamin Exhaust",
|
|
1106: "Right Chrome Arches Sideskirt",
|
|
1107: "Left Chrome Strip Sideskirt",
|
|
1108: "Right Chrome Strip Sideskirt",
|
|
1109: "Chrome Rear Bullbars",
|
|
1110: "Slamin Rear Bullbars",
|
|
1113: "Chrome Exhaust",
|
|
1114: "Slamin Exhaust",
|
|
1115: "Chrome Front Bullbars",
|
|
1116: "Slamin Front Bullbars",
|
|
1117: "Chrome Front Bumper",
|
|
1118: "Right Chrome Trim Sideskirt",
|
|
1119: "Right Wheelcovers Sideskirt",
|
|
1120: "Left Chrome Trim Sideskirt",
|
|
1121: "Left Wheelcovers Sideskirt",
|
|
1122: "Right Chrome Flames Sideskirt",
|
|
1123: "Chrome Bars Bullbars",
|
|
1124: "Left Chrome Arches Sideskirt",
|
|
1125: "Chrome Lights Bullbars",
|
|
1126: "Chrome Exhaust Exhaust",
|
|
1127: "Slamin Exhaust Exhaust",
|
|
1128: "Vinyl Hardtop Roof",
|
|
1129: "Chrome Exhaust",
|
|
1130: "Hardtop Roof",
|
|
1131: "Softtop Roof",
|
|
1132: "Slamin Exhaust",
|
|
1133: "Right Chrome Strip Sideskirt",
|
|
1134: "Right Chrome Strip Sideskirt",
|
|
1135: "Slamin Exhaust",
|
|
1136: "Chrome Exhaust",
|
|
1137: "Left Chrome Strip Sideskirt",
|
|
1138: "Alien Spoiler",
|
|
1139: "X-Flow Spoiler",
|
|
1140: "X-Flow Rear Bumper",
|
|
1141: "Alien Rear Bumper",
|
|
1142: "Left Oval Vents Vents",
|
|
1143: "Right Oval Vents Vents",
|
|
1144: "Left Square Vents Vents",
|
|
1145: "Right Square Vents Vents",
|
|
1146: "X-Flow Spoiler",
|
|
1147: "Alien Spoiler",
|
|
1148: "X-Flow Rear Bumper",
|
|
1149: "Alien Rear Bumper",
|
|
1150: "Alien Rear Bumper",
|
|
1151: "X-Flow Rear Bumper",
|
|
1152: "X-Flow Front Bumper",
|
|
1153: "Alien Front Bumper",
|
|
1154: "Alien Rear Bumper",
|
|
1155: "Alien Front Bumper",
|
|
1156: "X-Flow Rear Bumper",
|
|
1157: "X-Flow Front Bumper",
|
|
1158: "X-Flow Spoiler",
|
|
1159: "Alien Rear Bumper",
|
|
1160: "Alien Front Bumper",
|
|
1161: "X-Flow Rear Bumper",
|
|
1162: "Alien Spoiler",
|
|
1163: "X-Flow Spoiler",
|
|
1164: "Alien Spoiler",
|
|
1165: "X-Flow Front Bumper",
|
|
1166: "Alien Front Bumper",
|
|
1167: "X-Flow Rear Bumper",
|
|
1168: "Alien Rear Bumper",
|
|
1169: "Alien Front Bumper",
|
|
1170: "X-Flow Front Bumper",
|
|
1171: "Alien Front Bumper",
|
|
1172: "X-Flow Front Bumper",
|
|
1173: "X-Flow Front Bumper",
|
|
1174: "Chrome Front Bumper",
|
|
1175: "Slamin Rear Bumper",
|
|
1176: "Chrome Front Bumper",
|
|
1177: "Slamin Rear Bumper",
|
|
1178: "Slamin Rear Bumper",
|
|
1179: "Chrome Front Bumper",
|
|
1180: "Chrome Rear Bumper",
|
|
1181: "Slamin Front Bumper",
|
|
1182: "Chrome Front Bumper",
|
|
1183: "Slamin Rear Bumper",
|
|
1184: "Chrome Rear Bumper",
|
|
1185: "Slamin Front Bumper",
|
|
1186: "Slamin Rear Bumper",
|
|
1187: "Chrome Rear Bumper",
|
|
1188: "Slamin Front Bumper",
|
|
1189: "Chrome Front Bumper",
|
|
1190: "Slamin Front Bumper",
|
|
1191: "Chrome Front Bumper",
|
|
1192: "Chrome Rear Bumper",
|
|
1193: "Slamin Rear Bumper"
|
|
},
|
|
},
|
|
fishingLocations: {
|
|
[VRR_GAME_GTA_SA]: [ // GTA San Andreas
|
|
toVector3(403.8266, -2088.7598, 7.8359),
|
|
toVector3(398.7553, -2088.7490, 7.8359),
|
|
toVector3(396.2197,-2088.6692,7.8359),
|
|
toVector3(391.1094,-2088.7976,7.8359),
|
|
toVector3(383.4157,-2088.7849,7.8359),
|
|
toVector3(374.9598,-2088.7979,7.8359),
|
|
toVector3(369.8107,-2088.7927,7.8359),
|
|
toVector3(367.3637,-2088.7925,7.8359),
|
|
toVector3(362.2244,-2088.7981,7.8359),
|
|
toVector3(354.5382,-2088.7979,7.8359),
|
|
],
|
|
},
|
|
fishingCollectables: {
|
|
[VRR_GAME_GTA_SA]: [
|
|
// Fish
|
|
["Salmon"],
|
|
["Tuna"],
|
|
["Crab"],
|
|
["Trout"],
|
|
["Sea Bass"],
|
|
["Shark"],
|
|
["Turtle"],
|
|
["Manta Ray"],
|
|
["Cat Fish"],
|
|
["Blue Marlin"],
|
|
|
|
// Junk
|
|
["Rusty Can"],
|
|
["Old Pants"],
|
|
["Shoes"],
|
|
["Garbage"],
|
|
["Baby Diaper"],
|
|
["Tire"],
|
|
["Car Battery"],
|
|
["Horse Hoove"],
|
|
["Log"],
|
|
["Soggy Dildo"],
|
|
["Clump of Seaweed"],
|
|
],
|
|
[VRR_GAME_GTA_VC]: [
|
|
// Fish
|
|
["Salmon"],
|
|
["Tuna"],
|
|
["Crab"],
|
|
["Trout"],
|
|
["Sea Bass"],
|
|
["Shark"],
|
|
["Turtle"],
|
|
["Manta Ray"],
|
|
["Cat Fish"],
|
|
["Blue Marlin"],
|
|
|
|
// Junk
|
|
["Rusty Can"],
|
|
["Old Pants"],
|
|
["Shoes"],
|
|
["Garbage"],
|
|
["Baby Diaper"],
|
|
["Tire"],
|
|
["Car Battery"],
|
|
["Horse Hoove"],
|
|
["Log"],
|
|
["Soggy Dildo"],
|
|
["Clump of Seaweed"],
|
|
],
|
|
[VRR_GAME_GTA_SA]: [
|
|
// Fish
|
|
["Salmon"],
|
|
["Tuna"],
|
|
["Crab"],
|
|
["Trout"],
|
|
["Sea Bass"],
|
|
["Shark"],
|
|
["Turtle"],
|
|
["Manta Ray"],
|
|
["Cat Fish"],
|
|
["Blue Marlin"],
|
|
|
|
// Junk
|
|
["Rusty Can"],
|
|
["Old Pants"],
|
|
["Shoes"],
|
|
["Garbage"],
|
|
["Baby Diaper"],
|
|
["Tire"],
|
|
["Car Battery"],
|
|
["Horse Hoove"],
|
|
["Log"],
|
|
["Soggy Dildo"],
|
|
["Clump of Seaweed"],
|
|
],
|
|
[VRR_GAME_GTA_IV]: [
|
|
// Fish
|
|
["Salmon"],
|
|
["Tuna"],
|
|
["Crab"],
|
|
["Trout"],
|
|
["Sea Bass"],
|
|
["Shark"],
|
|
["Turtle"],
|
|
["Manta Ray"],
|
|
["Cat Fish"],
|
|
["Blue Marlin"],
|
|
|
|
// Junk
|
|
["Rusty Can"],
|
|
["Old Pants"],
|
|
["Shoes"],
|
|
["Garbage"],
|
|
["Baby Diaper"],
|
|
["Tire"],
|
|
["Car Battery"],
|
|
["Horse Hoove"],
|
|
["Log"],
|
|
["Soggy Dildo"],
|
|
["Clump of Seaweed"],
|
|
],
|
|
[VRR_GAME_MAFIA_ONE]: [
|
|
// Fish
|
|
["Salmon"],
|
|
["Tuna"],
|
|
["Crab"],
|
|
["Trout"],
|
|
["Sea Bass"],
|
|
["Shark"],
|
|
["Turtle"],
|
|
["Manta Ray"],
|
|
["Cat Fish"],
|
|
["Blue Marlin"],
|
|
|
|
// Junk
|
|
["Rusty Can"],
|
|
["Old Pants"],
|
|
["Shoes"],
|
|
["Garbage"],
|
|
["Baby Diaper"],
|
|
["Tire"],
|
|
["Car Battery"],
|
|
["Horse Hoove"],
|
|
["Log"],
|
|
["Soggy Dildo"],
|
|
["Clump of Seaweed"],
|
|
],
|
|
},
|
|
mainWorldDimension: {
|
|
[VRR_GAME_GTA_III]: 0, // GTA 3
|
|
[VRR_GAME_GTA_VC]: 0, // GTA VC
|
|
[VRR_GAME_GTA_SA]: 0, // GTA SA
|
|
[VRR_GAME_GTA_IV]: 0, // GTA IV
|
|
[VRR_GAME_GTA_IV_EFLC]: 0, // GTA IV EFLC
|
|
[VRR_GAME_MAFIA_ONE]: 0, // Mafia 1
|
|
[VRR_GAME_MAFIA_TWO]: 0, // Mafia 2
|
|
[VRR_GAME_MAFIA_THREE]: 0, // Mafia 3
|
|
[VRR_GAME_MAFIA_ONE_DE]: 0, // Mafia Definitive Edition
|
|
},
|
|
mainWorldInterior: {
|
|
[VRR_GAME_GTA_III]: 0, // GTA 3
|
|
[VRR_GAME_GTA_VC]: 0, // GTA VC
|
|
[VRR_GAME_GTA_SA]: 0, // GTA SA
|
|
[VRR_GAME_GTA_IV]: 0, // GTA IV
|
|
[VRR_GAME_GTA_IV_EFLC]: 0, // GTA IV EFLC
|
|
[VRR_GAME_MAFIA_ONE]: 0, // Mafia 1
|
|
[VRR_GAME_MAFIA_TWO]: 0, // Mafia 2
|
|
[VRR_GAME_MAFIA_THREE]: 0, // Mafia 3
|
|
[VRR_GAME_MAFIA_ONE_DE]: 0, // Mafia Definitive Edition
|
|
},
|
|
};
|
|
|
|
// ===========================================================================
|