9136 lines
333 KiB
JavaScript
9136 lines
333 KiB
JavaScript
// ===========================================================================
|
|
// Vortrex's Roleplay Resource
|
|
// https://github.com/VortrexFTW/v-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 : V_ANIMTYPE_NORMAL;
|
|
this.animSpeed = (typeof data.animSpeed != "undefined") ? data.animSpeed : 0.0;
|
|
this.moveType = (typeof data.moveType != "undefined") ? data.moveType : V_ANIMMOVE_NONE;
|
|
this.loop = (typeof data.moveType != "undefined") ? data.moveType : false;
|
|
this.duration = (typeof data.duration != "undefined") ? data.duration : -1;
|
|
|
|
// 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;
|
|
}
|
|
};
|
|
|
|
// ===========================================================================
|
|
|
|
class WeatherData {
|
|
constructor(weatherId, name, allowWithSnow) {
|
|
this.weatherId = weatherId;
|
|
this.name = name;
|
|
this.allowWithSnow = allowWithSnow;
|
|
}
|
|
}
|
|
|
|
// ===========================================================================
|
|
|
|
let supportedFeatures = {
|
|
// Invalid, GTAIII, GTAVC, GTASA, Invalid, GTAIV, Invalid, Invalid, Invalid, M1, M2, M3, M1DE
|
|
time: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: true
|
|
},
|
|
weather: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: true
|
|
},
|
|
serverElements: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: true,
|
|
[V_GAME_MAFIA_TWO]: true,
|
|
[V_GAME_MAFIA_THREE]: true,
|
|
[V_GAME_MAFIA_ONE_DE]: true
|
|
},
|
|
snow: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
customCamera: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: true,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
fadeCamera: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: true,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
pickup: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
sphere: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: false,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
worldLabel: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: true,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
blip: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
attachedBlip: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
fightStyle: {
|
|
[V_GAME_GTA_III]: false,
|
|
[V_GAME_GTA_VC]: false,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
walkStyle: {
|
|
[V_GAME_GTA_III]: false,
|
|
[V_GAME_GTA_VC]: false,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
marker: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
vehicleColour: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
object: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
interior: {
|
|
[V_GAME_GTA_III]: false,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
interiorScene: {
|
|
[V_GAME_GTA_III]: false,
|
|
[V_GAME_GTA_VC]: false,
|
|
[V_GAME_GTA_SA]: false,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: true,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
pedScale: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: false,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
objectScale: {
|
|
[V_GAME_GTA_III]: false,
|
|
[V_GAME_GTA_VC]: false,
|
|
[V_GAME_GTA_SA]: false,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
pedArmour: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false
|
|
},
|
|
rendering2D: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: true,
|
|
[V_GAME_MAFIA_TWO]: true,
|
|
[V_GAME_MAFIA_THREE]: true,
|
|
[V_GAME_MAFIA_ONE_DE]: false,
|
|
},
|
|
customNametag: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false, // World pos to screen native crashes game
|
|
[V_GAME_GTA_IV_EFLC]: false, // World pos to screen native crashes game
|
|
[V_GAME_MAFIA_ONE]: true,
|
|
[V_GAME_MAFIA_TWO]: false, // Needs world pos to screen implemented
|
|
[V_GAME_MAFIA_THREE]: false, // Needs world pos to screen implemented
|
|
[V_GAME_MAFIA_ONE_DE]: false,
|
|
},
|
|
dimension: { // Also called "Virtual World" by some MP mods
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: true,
|
|
[V_GAME_MAFIA_TWO]: true,
|
|
[V_GAME_MAFIA_THREE]: true,
|
|
[V_GAME_MAFIA_ONE_DE]: false,
|
|
},
|
|
dummyElement: {
|
|
[V_GAME_GTA_III]: false,
|
|
[V_GAME_GTA_VC]: false,
|
|
[V_GAME_GTA_SA]: false,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: true,
|
|
[V_GAME_MAFIA_TWO]: true,
|
|
[V_GAME_MAFIA_THREE]: true,
|
|
[V_GAME_MAFIA_ONE_DE]: false,
|
|
},
|
|
mouseCursor: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false,
|
|
},
|
|
toggleCollision: {
|
|
[V_GAME_GTA_III]: true,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: false,
|
|
[V_GAME_GTA_IV_EFLC]: false,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false,
|
|
},
|
|
vehicleUpgrades: {
|
|
[V_GAME_GTA_III]: false,
|
|
[V_GAME_GTA_VC]: false,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: false,
|
|
[V_GAME_MAFIA_TWO]: false,
|
|
[V_GAME_MAFIA_THREE]: false,
|
|
[V_GAME_MAFIA_ONE_DE]: false,
|
|
},
|
|
commandHandler: {
|
|
[V_GAME_GTA_III]: false,
|
|
[V_GAME_GTA_VC]: true,
|
|
[V_GAME_GTA_SA]: true,
|
|
[V_GAME_GTA_IV]: true,
|
|
[V_GAME_GTA_IV_EFLC]: true,
|
|
[V_GAME_MAFIA_ONE]: true,
|
|
[V_GAME_MAFIA_TWO]: true,
|
|
[V_GAME_MAFIA_THREE]: true,
|
|
[V_GAME_MAFIA_THREE]: true,
|
|
[V_GAME_MAFIA_ONE_DE]: true,
|
|
}
|
|
};
|
|
|
|
// ===========================================================================
|
|
|
|
// Connected MP mods only
|
|
let extraContentResource = {
|
|
[V_GAME_GTA_III]: "agrp-gta3",
|
|
[V_GAME_GTA_VC]: "agrp-gtavc",
|
|
[V_GAME_GTA_SA]: "agrp-gtasa",
|
|
[V_GAME_GTA_IV]: "agrp-gtaiv",
|
|
[V_GAME_GTA_IV_EFLC]: "agrp-gtaiv",
|
|
[V_GAME_MAFIA_ONE]: "agrp-mafia1",
|
|
[V_GAME_MAFIA_TWO]: "agrp-mafia2",
|
|
[V_GAME_MAFIA_TWO]: "agrp-mafia3",
|
|
[V_GAME_MAFIA_ONE_DE]: "agrp-mafia1de",
|
|
[V_GAME_GTA_V]: "agrp-gtav",
|
|
};
|
|
|
|
// ===========================================================================
|
|
|
|
/**
|
|
* @typedef {Object} GameConfig
|
|
*/
|
|
let gameData = {
|
|
weaponNames: {
|
|
[V_GAME_GTA_III]: [ // GTA III
|
|
"Fist",
|
|
"Bat",
|
|
"Pistol",
|
|
"Uzi",
|
|
"Shotgun",
|
|
"AK47",
|
|
"M16",
|
|
"Sniper Rifle",
|
|
"Rocket Launcher",
|
|
"Flamethrower",
|
|
"Molotov",
|
|
"Grenade"
|
|
],
|
|
[V_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"
|
|
],
|
|
[V_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"
|
|
],
|
|
[V_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",
|
|
],
|
|
[V_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",
|
|
],
|
|
[V_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",
|
|
},
|
|
[V_GAME_GTA_V]: { // GTA V
|
|
|
|
}
|
|
},
|
|
weather: {
|
|
[V_GAME_GTA_III]: [ // GTA III
|
|
new WeatherData(0, "Clear", true),
|
|
new WeatherData(1, "Overcast", false),
|
|
new WeatherData(2, "Thunderstorm", false),
|
|
new WeatherData(3, "Fog", true),
|
|
new WeatherData(4, "Clear", false),
|
|
new WeatherData(5, "Rainy", false),
|
|
new WeatherData(6, "Dark/Cloudy", false),
|
|
new WeatherData(7, "Light/Cloudy", false),
|
|
new WeatherData(8, "Overcast/Cloudy", true),
|
|
new WeatherData(9, "Grey/Cloudy", false),
|
|
],
|
|
[V_GAME_GTA_VC]: [ // GTA Vice City
|
|
new WeatherData(0, "Clear", true),
|
|
new WeatherData(1, "Overcast", false),
|
|
new WeatherData(2, "Thunderstorm", false),
|
|
new WeatherData(3, "Fog", true),
|
|
new WeatherData(4, "Sunny", false),
|
|
new WeatherData(5, "Hurricane", false),
|
|
new WeatherData(6, "Dark/Cloudy", false),
|
|
new WeatherData(7, "Light/Cloudy", false),
|
|
new WeatherData(8, "Overcast/Cloudy", true),
|
|
new WeatherData(9, "Grey/Cloudy", false),
|
|
],
|
|
[V_GAME_GTA_SA]: [ // GTA San Andreas
|
|
new WeatherData(0, "Blue Skies", false),
|
|
new WeatherData(1, "Blue Skies", false),
|
|
new WeatherData(2, "Blue Skies", false),
|
|
new WeatherData(3, "Blue Skies", false),
|
|
new WeatherData(4, "Blue Skies", false),
|
|
new WeatherData(5, "Blue Skies", false),
|
|
new WeatherData(6, "Blue Skies", false),
|
|
new WeatherData(7, "Blue Skies", false),
|
|
new WeatherData(8, "Thunderstorm", false),
|
|
new WeatherData(9, "Cloudy/Foggy", true),
|
|
new WeatherData(10, "Clear Blue Skies", false),
|
|
new WeatherData(11, "Heatwave", false),
|
|
new WeatherData(12, "Dull/Colorless", false),
|
|
new WeatherData(13, "Dull/Colorless", false),
|
|
new WeatherData(14, "Dull/Colorless", false),
|
|
new WeatherData(15, "Dull/Colorless", false),
|
|
new WeatherData(16, "Dull/Rainy", false),
|
|
new WeatherData(17, "Heatwave", false),
|
|
new WeatherData(18, "Heatwave", false),
|
|
new WeatherData(19, "Sandstorm", false),
|
|
new WeatherData(20, "Greenish/Foggy", false),
|
|
],
|
|
[V_GAME_GTA_IV]: [ // GTA IV
|
|
new WeatherData(1, "Blue Skies", false),
|
|
new WeatherData(2, "Extra Sunny", false),
|
|
new WeatherData(3, "Sunny", false),
|
|
new WeatherData(4, "Sunny/Windy", false),
|
|
new WeatherData(5, "Cloudy", false),
|
|
new WeatherData(6, "Rain", false),
|
|
new WeatherData(7, "Light Rain", false),
|
|
new WeatherData(8, "Foggy", false),
|
|
new WeatherData(9, "Thunderstorm", false),
|
|
new WeatherData(10, "Extra Sunny", false),
|
|
new WeatherData(11, "Sunny/Windy", false),
|
|
],
|
|
[V_GAME_GTA_IV_EFLC]: [ // GTA IV EFLC
|
|
new WeatherData(1, "Blue Skies", false),
|
|
new WeatherData(2, "Extra Sunny", false),
|
|
new WeatherData(3, "Sunny", false),
|
|
new WeatherData(4, "Sunny/Windy", false),
|
|
new WeatherData(5, "Cloudy", false),
|
|
new WeatherData(6, "Rain", false),
|
|
new WeatherData(7, "Light Rain", false),
|
|
new WeatherData(8, "Foggy", false),
|
|
new WeatherData(9, "Thunderstorm", false),
|
|
new WeatherData(10, "Extra Sunny", false),
|
|
new WeatherData(11, "Sunny/Windy", false),
|
|
],
|
|
[V_GAME_GTA_V]: [
|
|
|
|
],
|
|
[V_GAME_MAFIA_ONE_DE]: [
|
|
new WeatherData("__test_all_cloud", "__test_all_cloud", false),
|
|
new WeatherData("__test_cloud", "__test_cloud", false),
|
|
new WeatherData("__test_high_cloud", "__test_high_cloud", false),
|
|
new WeatherData("_default_editor", "_default_editor", false),
|
|
new WeatherData("_default_game", "_default_game", false),
|
|
new WeatherData("_default_game_cloudy", "_default_game_cloudy", false),
|
|
new WeatherData("_default_game_foggy", "_default_game_foggy", false),
|
|
new WeatherData("_default_game_morning_sunny", "_default_game_morning_sunny", false),
|
|
new WeatherData("_default_game_overcast", "_default_game_overcast", false),
|
|
new WeatherData("_default_game_rainy", "_default_game_rainy", false),
|
|
new WeatherData("_test_jakub", "_test_jakub", false),
|
|
new WeatherData("_time_of_day", "_time_of_day", false),
|
|
new WeatherData("cine_0495_intermission_one_morello", "cine_0495_intermission_one_morello", false),
|
|
new WeatherData("cine_0997", "cine_0997", false),
|
|
new WeatherData("cine_1195_omerta_funeral_night", "cine_1195_omerta_funeral_night", false),
|
|
new WeatherData("cine_1195_omerta_funeral_night_emiss_off", "cine_1195_omerta_funeral_night_emiss_off", false),
|
|
new WeatherData("cine_1700_afternoon2", "cine_1700_afternoon2", false),
|
|
new WeatherData("cine_1700_night_rain", "cine_1700_night_rain", false),
|
|
new WeatherData("cine_1700_noon", "cine_1700_noon", false),
|
|
new WeatherData("cine_1700_sunset", "cine_1700_sunset", false),
|
|
new WeatherData("day_cycle_01", "day_cycle_01", false),
|
|
new WeatherData("lh_gui_menu_default", "lh_gui_menu_default", false),
|
|
new WeatherData("main_menu", "main_menu", false),
|
|
new WeatherData("mm_000_prolgue_cp_240_norman_stairs", "mm_000_prolgue_cp_240_norman_stairs", false),
|
|
new WeatherData("mm_000_prologue_cp_000", "mm_000_prologue_cp_000", false),
|
|
new WeatherData("mm_000_prologue_cp_00_lighthouse_cliff", "mm_000_prologue_cp_00_lighthouse_cliff", false),
|
|
new WeatherData("mm_000_prologue_cp_00_lihgthouse", "mm_000_prologue_cp_00_lihgthouse", false),
|
|
new WeatherData("mm_000_prologue_cp_050_church_open", "mm_000_prologue_cp_050_church_open", false),
|
|
new WeatherData("mm_000_prologue_cp_060_church_edge", "mm_000_prologue_cp_060_church_edge", false),
|
|
new WeatherData("mm_000_prologue_cp_070_church_city", "mm_000_prologue_cp_070_church_city", false),
|
|
new WeatherData("mm_000_prologue_cp_080_city_look_up", "mm_000_prologue_cp_080_city_look_up", false),
|
|
new WeatherData("mm_000_prologue_cp_090_city_look_down", "mm_000_prologue_cp_090_city_look_down", false),
|
|
new WeatherData("mm_000_prologue_cp_100_italy_metro", "mm_000_prologue_cp_100_italy_metro", false),
|
|
new WeatherData("mm_000_prologue_cp_110_italy_market", "mm_000_prologue_cp_110_italy_market", false),
|
|
new WeatherData("mm_000_prologue_cp_120_italy_street", "mm_000_prologue_cp_120_italy_street", false),
|
|
new WeatherData("mm_000_prologue_cp_130_city_to_work", "mm_000_prologue_cp_130_city_to_work", false),
|
|
new WeatherData("mm_000_prologue_cp_150_work_boat", "mm_000_prologue_cp_150_work_boat", false),
|
|
new WeatherData("mm_000_prologue_cp_170_work_truck", "mm_000_prologue_cp_170_work_truck", false),
|
|
new WeatherData("mm_000_prologue_cp_180_crowd", "mm_000_prologue_cp_180_crowd", false),
|
|
new WeatherData("mm_000_prologue_cp_190_boat_reveal", "mm_000_prologue_cp_190_boat_reveal", false),
|
|
new WeatherData("mm_000_prologue_cp_200_boat_boat", "mm_000_prologue_cp_200_boat_boat", false),
|
|
new WeatherData("mm_000_prologue_cp_210_boat_bridge", "mm_000_prologue_cp_210_boat_bridge", false),
|
|
new WeatherData("mm_000_prologue_cp_220_norman_bridge", "mm_000_prologue_cp_220_norman_bridge", false),
|
|
new WeatherData("mm_000_prologue_cp_260_crowd", "mm_000_prologue_cp_260_crowd", false),
|
|
new WeatherData("mm_000_prologue_cp_300_norman_feet", "mm_000_prologue_cp_300_norman_feet", false),
|
|
new WeatherData("mm_00_prologue_cp_00_lighthouse_car", "mm_00_prologue_cp_00_lighthouse_car", false),
|
|
new WeatherData("mm_00_prologue_cp_00_lighthouse_house", "mm_00_prologue_cp_00_lighthouse_house", false),
|
|
new WeatherData("mm_010_chase_cp_020_escape", "mm_010_chase_cp_020_escape", false),
|
|
new WeatherData("mm_010_chase_cp_020_escape_gi_off", "mm_010_chase_cp_020_escape_gi_off", false),
|
|
new WeatherData("mm_020_taxi_cp_010_arrival", "mm_020_taxi_cp_010_arrival", false),
|
|
new WeatherData("mm_030_molotov_cp_010_cine", "mm_030_molotov_cp_010_cine", false),
|
|
new WeatherData("mm_030_molotov_cp_010_cinematic_intro", "mm_030_molotov_cp_010_cinematic_intro", false),
|
|
new WeatherData("mm_040_motel_cp_005_meet_salieri", "mm_040_motel_cp_005_meet_salieri", false),
|
|
new WeatherData("mm_050_race_cp_010", "mm_050_race_cp_010", false),
|
|
new WeatherData("mm_050_race_cp_110", "mm_050_race_cp_110", false),
|
|
new WeatherData("mm_050_race_cp_120", "mm_050_race_cp_120", false),
|
|
new WeatherData("mm_050_race_cp_140", "mm_050_race_cp_140", false),
|
|
new WeatherData("mm_060_sarah_cp_010_cine_0600_sarah_intro", "mm_060_sarah_cp_010_cine_0600_sarah_intro", false),
|
|
new WeatherData("mm_070_hoodlums_cp_010", "mm_070_hoodlums_cp_010", false),
|
|
new WeatherData("mm_070_hoodlums_cp_086_cover_paulie", "mm_070_hoodlums_cp_086_cover_paulie", false),
|
|
new WeatherData("mm_080_brothel_cp_010_cs_start", "mm_080_brothel_cp_010_cs_start", false),
|
|
new WeatherData("mm_080_brothel_cp_110_cine_0850_brothel_funera", "mm_080_brothel_cp_110_cine_0850_brothel_funera", false),
|
|
new WeatherData("mm_100_farm_cp_000", "mm_100_farm_cp_000", false),
|
|
new WeatherData("mm_100_farm_cp_050", "mm_100_farm_cp_050", false),
|
|
new WeatherData("mm_100_farm_cp_080", "mm_100_farm_cp_080", false),
|
|
new WeatherData("mm_100_farm_cp_140", "mm_100_farm_cp_140", false),
|
|
new WeatherData("mm_110_omerta_cp_010_cs_cs_park", "mm_110_omerta_cp_010_cs_cs_park", false),
|
|
new WeatherData("mm_110_omerta_cp_050_cs_safehouse", "mm_110_omerta_cp_050_cs_safehouse", false),
|
|
new WeatherData("mm_110_omerta_cp_120_cine_funeral", "mm_110_omerta_cp_120_cine_funeral", false),
|
|
new WeatherData("mm_110_omerta_cp_120_cs_funeral", "mm_110_omerta_cp_120_cs_funeral", false),
|
|
new WeatherData("mm_120_mansion_cp_010_cs_salvatore", "mm_120_mansion_cp_010_cs_salvatore", false),
|
|
new WeatherData("mm_130_parking_cp_010_cine_parking", "mm_130_parking_cp_010_cine_parking", false),
|
|
new WeatherData("mm_140_salieri_cp_010_cine_salieri", "mm_140_salieri_cp_010_cine_salieri", false),
|
|
new WeatherData("mm_140_salieri_cp_100_salieri_outro", "mm_140_salieri_cp_100_salieri_outro", false),
|
|
new WeatherData("mm_150_boat_cp_010", "mm_150_boat_cp_010", false),
|
|
new WeatherData("mm_150_boat_cp_080_explore_the_ship", "mm_150_boat_cp_080_explore_the_ship", false),
|
|
new WeatherData("mm_150_boat_cp_120", "mm_150_boat_cp_120", false),
|
|
new WeatherData("mm_160_harbor_cp_000_cinematic_night", "mm_160_harbor_cp_000_cinematic_night", false),
|
|
new WeatherData("mm_160_harbor_cp_080_harbour_entrance_cutscene", "mm_160_harbor_cp_080_harbour_entrance_cutscene", false),
|
|
new WeatherData("mm_170_plane_cp_010_cine_1700_plane", "mm_170_plane_cp_010_cine_1700_plane", false),
|
|
new WeatherData("mm_170_plane_cp_060_cine_1750_plane_airport", "mm_170_plane_cp_060_cine_1750_plane_airport", false),
|
|
new WeatherData("mm_180_sniper_cp_010", "mm_180_sniper_cp_010", false),
|
|
new WeatherData("mm_180_sniper_cp_010_2", "mm_180_sniper_cp_010_2", false),
|
|
new WeatherData("mm_190_cigars_cp_010_cs_intro", "mm_190_cigars_cp_010_cs_intro", false),
|
|
new WeatherData("mm_190_cigars_cp_030_drive_to_harbor", "mm_190_cigars_cp_030_drive_to_harbor", false),
|
|
new WeatherData("mm_200_bank_cp_010_bank_arrival", "mm_200_bank_cp_010_bank_arrival", false),
|
|
new WeatherData("mm_210_gallery_cp_010", "mm_210_gallery_cp_010", false),
|
|
new WeatherData("mm_210_gallery_cp_050", "mm_210_gallery_cp_050", false),
|
|
new WeatherData("mm_cine_0005_prologue", "mm_cine_0005_prologue", false),
|
|
new WeatherData("mm_cine_0995_intermission_two", "mm_cine_0995_intermission_two", false),
|
|
new WeatherData("mm_cine_1395_intermission_three", "mm_cine_1395_intermission_three", false),
|
|
new WeatherData("mm_cine_1795_intermission_four", "mm_cine_1795_intermission_four", false),
|
|
new WeatherData("mm_prologue_cp_290_cross_road", "mm_prologue_cp_290_cross_road", false),
|
|
new WeatherData("outro_cine_2210_salieri", "outro_cine_2210_salieri", false),
|
|
new WeatherData("outro_cine_2210_tommy_death", "outro_cine_2210_tommy_death", false),
|
|
new WeatherData("outro_cine_2210_tommy_prison", "outro_cine_2210_tommy_prison", false),
|
|
new WeatherData("outro_cine_2210_vincenzo_ralph", "outro_cine_2210_vincenzo_ralph", false),
|
|
new WeatherData("outro_cine_2210_wedding", "outro_cine_2210_wedding", false),
|
|
new WeatherData("temp_teaser_trailer", "temp_teaser_trailer", false),
|
|
new WeatherData("test_for_screenshots_alpha", "test_for_screenshots_alpha", false),
|
|
new WeatherData("test_no_color_grading_day", "test_no_color_grading_day", false),
|
|
new WeatherData("test_no_color_grading_night", "test_no_color_grading_night", false),
|
|
new WeatherData("test_no_color_grading_overcast", "test_no_color_grading_overcast", false),
|
|
new WeatherData("trailer_comp_02", "trailer_comp_02", false),
|
|
new WeatherData("trailer_comp_02b", "trailer_comp_02b", false),
|
|
new WeatherData("trailer_comp_02c", "trailer_comp_02c", false),
|
|
new WeatherData("trailer_comp_03", "trailer_comp_03", false),
|
|
],
|
|
},
|
|
gameNames: {
|
|
[V_GAME_GTA_III]: "GTA III",
|
|
[V_GAME_GTA_VC]: "GTA Vice City",
|
|
[V_GAME_GTA_SA]: "GTA San Andreas",
|
|
[V_GAME_GTA_IV]: "GTA IV",
|
|
[V_GAME_GTA_IV_EFLC]: "GTA IV: Episodes from Liberty City",
|
|
[V_GAME_MAFIA_ONE]: "Mafia: The City of Lost Heaven",
|
|
[V_GAME_MAFIA_TWO]: "Mafia II",
|
|
[V_GAME_MAFIA_THREE]: "Mafia III",
|
|
[V_GAME_MAFIA_ONE_DE]: "Mafia Definitive Edition",
|
|
[V_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: {
|
|
[V_GAME_GTA_III]: [ // GTA III
|
|
"Head Radio",
|
|
"Double Cleff FM",
|
|
"Jah Radio",
|
|
"Rise FM",
|
|
"Lips 106",
|
|
"Flashback FM",
|
|
"Chatterbox 109",
|
|
"MP3 Player"
|
|
],
|
|
[V_GAME_GTA_VC]: [ // GTA Vice City
|
|
"Wildstyle",
|
|
"Flash FM",
|
|
"K CHAT",
|
|
"Fever 105",
|
|
"VROCK",
|
|
"VCPR",
|
|
"Espantoso",
|
|
"Emotion 98.3",
|
|
"Wave 103",
|
|
"MP3 Player"
|
|
],
|
|
[V_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"
|
|
],
|
|
[V_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: {
|
|
[V_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 1", true],
|
|
[11, "Mafia Member 2", true],
|
|
[12, "Triad Member 1", true],
|
|
[13, "Triad Member 2", true],
|
|
[14, "Diablo Member 1", true],
|
|
[15, "Diablo Member 2", true],
|
|
[16, "Yakuza Member 1", true],
|
|
[17, "Yakuza Member 2", true],
|
|
[18, "Yardie Member 1", true],
|
|
[19, "Yardie Member 2", true],
|
|
[20, "Cartel Soldier 1", true],
|
|
[21, "Cartel Soldier 2", true],
|
|
[22, "Red Jacks Thug", true],
|
|
[23, "Purple Nines Thug", true],
|
|
[24, "Street Criminal 1", true],
|
|
[25, "Street Criminal 2", 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 1", true],
|
|
[38, "Elder Woman 2", true],
|
|
[39, "Prostitute 1", true],
|
|
[40, "Prostitute 2", true],
|
|
[41, "Random Guy", true],
|
|
[42, "Diseased Man", true],
|
|
[43, "Deseased Woman", true],
|
|
[44, "Young Woman", true],
|
|
[45, "Old Man 1", true],
|
|
[46, "Random Guy", true],
|
|
[47, "Old Woman 1", true],
|
|
[48, "Old Woman 2", true],
|
|
[49, "Old Man 2", true],
|
|
[50, "Random Guy", true],
|
|
[51, "Old Woman 3", true],
|
|
[52, "Young Woman", true],
|
|
[53, "Docks Worker 1", true],
|
|
[54, "Docks Worker 2", true],
|
|
[55, "Male Street Bum", true],
|
|
[56, "Female Street Bum", true],
|
|
[57, "Delivery Guy 1", true],
|
|
[58, "Delivery Guy 2", 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 1", true],
|
|
[70, "Male Cocks Fan 2", true],
|
|
[71, "Female Cocks Fan", true],
|
|
[72, "Male Paramedics Assistant", true],
|
|
[73, "Female Paramedics Assistant", true],
|
|
[74, "Construction Worker 1", true],
|
|
[75, "Construction Worker 2", true],
|
|
[76, "Zip Customer", true],
|
|
[77, "Party Woman 1", true],
|
|
[78, "Party Woman 2", 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 1", true],
|
|
[89, "Colombian Cartel Member 2", true],
|
|
[90, "Colombian Cartel Member 3", true],
|
|
[91, "Colombian Cartel Member 4", true],
|
|
[92, "Police Officer", false],
|
|
[93, "Curly Bob", true],
|
|
[94, "Phil Cassidy", true],
|
|
[95, "Detective", true],
|
|
[96, "8-Ball 1", true],
|
|
[97, "8-Ball 2", true],
|
|
[98, "Salvatore Leone", true],
|
|
[99, "Mafia Member", true],
|
|
[100, "Joey Leone 1", true],
|
|
[101, "Joey Leone 2", true],
|
|
[102, "Bar Owner", true],
|
|
[103, "Kenji Kasen", true],
|
|
[104, "Mike Forelli", true],
|
|
[105, "Donald Love 1", true],
|
|
[106, "Donald Love 2", true],
|
|
[107, "Luigi Goterelli", true],
|
|
[108, "Maria Latore", true],
|
|
[109, "Mickey Hamfists", true],
|
|
[110, "Miguel", true],
|
|
[111, "Misty", true],
|
|
[112, "Old Oriental Gentleman 1", true],
|
|
[113, "Old Oriental Gentleman 2", true],
|
|
[114, "Old Oriental Gentleman 3", true],
|
|
[115, "Ray Machowski", true],
|
|
[116, "Mafia Member", true],
|
|
[117, "Ammunation Clerk", true],
|
|
[118, "Tanner", true],
|
|
[119, "Toni Cipriani", true],
|
|
[120, "Darkel", true],
|
|
[121, "Chuff Security Officer", false],
|
|
[122, "Claude Speed (Prison)", false],
|
|
[123, "Busker 1", false],
|
|
[124, "Busker 2", false],
|
|
[125, "Busker 3", false],
|
|
[125, "Busker 4", false],
|
|
],
|
|
[V_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 1", true],
|
|
[10, "Bum 1", true],
|
|
[11, "Greaser", true],
|
|
[12, "Random Guy 1", true],
|
|
[13, "Random Guy 2", true],
|
|
[14, "Random Lady", true],
|
|
[15, "Random Guy 3", true],
|
|
[16, "Random Guy 4", true],
|
|
[17, "Beach Lady 1", true],
|
|
[18, "Fat Beach Lady", true],
|
|
[19, "Beach Guy 1", true],
|
|
[20, "Fat Beach Guy", true],
|
|
[21, "Random Lady 2", true],
|
|
[22, "Random Lady 3", true],
|
|
[23, "Random Lady 4", true],
|
|
[24, "Prostitute 1", true],
|
|
[25, "Bum 2", true],
|
|
[26, "Bum 3", true],
|
|
[27, "Random Guy", true],
|
|
[28, "Taxi Driver 1", true],
|
|
[29, "Haitian", true],
|
|
[30, "Criminal", true],
|
|
[31, "Random Lady 5", true],
|
|
[32, "Random Lady 6", true],
|
|
[33, "Random Guy 5", true],
|
|
[34, "Random Guy 6", true],
|
|
[35, "Random Lady 7", true],
|
|
[36, "Random Lady 8", true],
|
|
[37, "Random Guy 7", true],
|
|
[38, "Beach Lady 2", true],
|
|
[39, "Beach Guy 2", true],
|
|
[40, "Beach Lady 3", true],
|
|
[41, "Beach Guy 3", true],
|
|
[42, "Random Guy 8", true],
|
|
[43, "Prostitute 2", true],
|
|
[44, "Bum 4", true],
|
|
[45, "Bum 5", true],
|
|
[46, "Random Guy 9", true],
|
|
[47, "Random Guy 9", true],
|
|
[48, "Punk 1", true],
|
|
[49, "Prostitute 3", true],
|
|
[50, "Random Old Lady", true],
|
|
[51, "Punk 2", true],
|
|
[52, "Random Guy 10", true],
|
|
[53, "Random Lady 9", true],
|
|
[54, "Random Lady 10", true],
|
|
[55, "Random Guy 11", true],
|
|
[56, "Random Guy 12", true],
|
|
[57, "Beach Lady", true],
|
|
[58, "Beach Guy 13", true],
|
|
[59, "Beach Lady", true],
|
|
[60, "Beach Guy 14", true],
|
|
[61, "Construction Worker", true],
|
|
[62, "Golfer 1", true],
|
|
[63, "Golfer 2", true],
|
|
[64, "Golfer 3", true],
|
|
[65, "Beach Lady 4", true],
|
|
[66, "Beach Guy 4", true],
|
|
[67, "Random Lady 11", true],
|
|
[68, "Random Guy 15", true],
|
|
[69, "Random Guy 16", true],
|
|
[70, "Prostitute 4", true],
|
|
[71, "Bum Lady", true],
|
|
[72, "Random Guy 17", true],
|
|
[73, "Random Guy 18", true],
|
|
[74, "Taxi Driver 2", true],
|
|
[75, "Random Woman", true],
|
|
[76, "Skater Guy 1", true],
|
|
[77, "Beach Lady 5", true],
|
|
[78, "Skater Guy 2", true],
|
|
[79, "Young Woman Shopper", true],
|
|
[80, "Old Women Shopper", true],
|
|
[81, "Tourist 1", true],
|
|
[82, "Tourist 2", true],
|
|
[83, "Cuban 1", true],
|
|
[84, "Cuban 2", true],
|
|
[85, "Haitian 1", true],
|
|
[86, "Haitian 2", true],
|
|
[87, "Shark 1", true],
|
|
[88, "Shark 2", true],
|
|
[89, "Diaz Guy 1", true],
|
|
[90, "Diaz Guy 2", true],
|
|
[91, "Security Guard 1", false],
|
|
[92, "Security Guard 2", false],
|
|
[93, "Biker 1", true],
|
|
[94, "Biker 2", true],
|
|
[95, "Vercetti Guy 1", true],
|
|
[96, "Vercetti Guy 2", true],
|
|
[97, "Undercover Cop 1", false],
|
|
[98, "Undercover Cop 2", false],
|
|
[99, "Undercover Cop 3", false],
|
|
[100, "Undercover Cop 4", false],
|
|
[101, "Undercover Cop 5", false],
|
|
[102, "Undercover Cop 6", false],
|
|
[103, "Random Guy", true],
|
|
[104, "Bodyguard", true],
|
|
[105, "Prostitute 1", true],
|
|
[106, "Prostitute 2", false],
|
|
[107, "Ricardo Diaz", true],
|
|
[108, "Love Fist 1", true],
|
|
[109, "Ken Rosenburg", true],
|
|
[110, "Candy Suxx", true],
|
|
[111, "Hilary", true],
|
|
[112, "Love Fist 2", true],
|
|
[113, "Phil", true],
|
|
[114, "Rockstar Guy", true],
|
|
[115, "Sonny", true],
|
|
[116, "Lance", true],
|
|
[117, "Mercedes", true],
|
|
[118, "Love Fist 3", 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 1", true],
|
|
[128, "Cam 2", true],
|
|
[129, "Phil 1", true],
|
|
[130, "Phil 2", true],
|
|
[131, "Bodyguard", true],
|
|
[132, "Pizza Worker", true],
|
|
[133, "Taxi Driver 3", true],
|
|
[134, "Taxi Driver 4", true],
|
|
[135, "Sailor 1", true],
|
|
[136, "Sailor 2", true],
|
|
[137, "Sailor 3", true],
|
|
[138, "Chef", true],
|
|
[139, "Criminal", true],
|
|
//[140, "French Guy" , true ],
|
|
//[141, "Worker" , true ],
|
|
[142, "Haitian", true],
|
|
[143, "Waitress", true],
|
|
[144, "Forelli Member 1", true],
|
|
[145, "Forelli Member 2", true],
|
|
[146, "Forelli Member 3", true],
|
|
[147, "Columbian", true],
|
|
[148, "Random Guy 19", true],
|
|
[149, "Beach Guy", true],
|
|
[150, "Random Guy 20", true],
|
|
[151, "Random Guy 21", true],
|
|
[152, "Random Guy 22", true],
|
|
[153, "Drag Queen", true],
|
|
[154, "Diaz Traitor", true],
|
|
[155, "Random Guy 23", true],
|
|
[156, "Random Guy 24", true],
|
|
[157, "Stripper 1", true],
|
|
[158, "Stripper 2", true],
|
|
[159, "Stripper 3", 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 1", true],
|
|
[173, "Club Bouncer 2", true],
|
|
[174, "Stripclub Dancer 1", true],
|
|
[175, "Random Guy 25", true],
|
|
[176, "Stripclub Dancer 2", true],
|
|
[177, "Stripclub Dancer 3", true],
|
|
[178, "Stripclub Dancer 4", true],
|
|
[179, "Gang Member 1", true],
|
|
[180, "Tommy Vercetti (Endgame T-Shirt)", true],
|
|
[181, "Forelli Thug 1", true],
|
|
[182, "Forelli Thug 2", true],
|
|
[183, "Random Lady 12", true],
|
|
[184, "Gang Member 2", true],
|
|
[185, "Party Waitress", true],
|
|
[186, "Kent Paul", true],
|
|
[187, "Big Head Taxi Driver", false],
|
|
],
|
|
[V_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],
|
|
],
|
|
[V_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]
|
|
],
|
|
[V_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 1", true],
|
|
["Bguard01M.i3d", "Bodyguard 2", true],
|
|
["Bguard02.i3d", "Bodyguard 3", true],
|
|
["Bguard03.i3d", "Bodyguard 4", true],
|
|
["Bguard03M.i3d", "Bodyguard 5", true],
|
|
["Biff.i3d", "Biff", true],
|
|
["BigDig.i3d", "Generic Man", true],
|
|
["BnkO01.i3d", "Security Guard 1", false],
|
|
["BnkO02.i3d", "Security Guard 2", false],
|
|
["BnkO03.i3d", "Security Guard 3", 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 1", true],
|
|
["FREEgang01.i3d", "Gangster 2", true],
|
|
["FREEgang02.i3d", "Gangster 3", true],
|
|
["FrankHIGH.i3d", "Frank", true],
|
|
["Friend1.i3d", "Generic Man", true],
|
|
["Friend2.i3d", "Generic Man", true],
|
|
["Gangster01.i3d", "Gangster 4", true],
|
|
["Gangster02.i3d", "Gangster 5", true],
|
|
["Gangster03.i3d", "Gangster 6", true],
|
|
["Gangster04.i3d", "Gangster 7", true],
|
|
["Gangster05.i3d", "Gangster 8", true],
|
|
["GodzMan1.i3d", "Generic Man", true],
|
|
["Guard01.i3d", "Bodyguard 6", true],
|
|
["Guard02.i3d", "Bodyguard 7", 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 1", false],
|
|
["PoliceMan02.i3d", "Police Officer 2", false],
|
|
["Politik.i3d", "Generic Man", true],
|
|
["PortGuard01.i3d", "Port Guard 1", false],
|
|
["PortGuard02.i3d", "Port Guard 2", 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 1", false],
|
|
["Vypravci2.i3d", "Train Conductor 2", 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 3", false],
|
|
["pol02.i3d", "Police Officer 4", false],
|
|
["pol03.i3d", "Police Officer 5", false],
|
|
["pol11.i3d", "Police Officer 6", false],
|
|
["pol12.i3d", "Police Officer 7", false],
|
|
["pol13.i3d", "Police Officer 8", false],
|
|
["polim62.i3d", "Police Officer 9", false],
|
|
["pumpar01.i3d", "Fuel Pumper", true],
|
|
["recep.i3d", "recep", false],
|
|
["sailor01.i3d", "Sailor 1", false],
|
|
["sailor01M.i3d", "Sailor 2", false],
|
|
["sailor02.i3d", "Sailor 3", false],
|
|
["sailor02M.i3d", "Sailor 4", false],
|
|
["sailor03.i3d", "Sailor 5", false],
|
|
["waiter01.i3d", "Waiter 1", true],
|
|
["waiter01M.i3d", "Waiter 2", true],
|
|
["waiter02.i3d", "Waiter 3", true],
|
|
["waiter02M.i3d", "Waiter 4", true],
|
|
["waiter03.i3d", "Waiter 5", 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],
|
|
],
|
|
[V_GAME_GTA_V]: [
|
|
["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],
|
|
["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],
|
|
],
|
|
[V_GAME_MAFIA_ONE_DE]: [
|
|
// Grabbed these from ScriptHook trainer, names need updated!!!
|
|
["243122717181072438", "243122717181072438"],
|
|
["16049473986895072625", "16049473986895072625"],
|
|
["1699206604166521616", "1699206604166521616"],
|
|
["12007985679161864782", "12007985679161864782"],
|
|
["9563181307498475124", "9563181307498475124"],
|
|
["4896714587364001279", "4896714587364001279"],
|
|
["18162492160084283726", "18162492160084283726"],
|
|
["7075568729250795634", "7075568729250795634"],
|
|
["15209411131043304404", "15209411131043304404"],
|
|
["12848152782649195120", "12848152782649195120"],
|
|
["15767325702782930989", "15767325702782930989"],
|
|
["13401793903553166127", "13401793903553166127"],
|
|
["1287412724113706579", "1287412724113706579"],
|
|
["18042397682989455902", "18042397682989455902"],
|
|
["8932802154733468973", "8932802154733468973"],
|
|
["2628903267593852831", "2628903267593852831"],
|
|
["11844853567684614863", "11844853567684614863"],
|
|
["2408996589394429820", "2408996589394429820"],
|
|
["16931494632101727150", "16931494632101727150"],
|
|
["9384437811606977498", "9384437811606977498"],
|
|
["13910491350914685166", "13910491350914685166"],
|
|
["5097725242378116687", "5097725242378116687"],
|
|
["11886995136222473008", "11886995136222473008"],
|
|
["2189710307319299933", "2189710307319299933"],
|
|
["197259132129526896", "197259132129526896"],
|
|
["14972234292427888651", "14972234292427888651"],
|
|
["7627845656632045728", "7627845656632045728"],
|
|
["8542005084983449033", "8542005084983449033"],
|
|
["18367755642517192239", "18367755642517192239"],
|
|
["5791988814234215988", "5791988814234215988"],
|
|
["16483111489197100779", "16483111489197100779"],
|
|
["12849716907606756318", "12849716907606756318"],
|
|
["826548844040725956", "826548844040725956"],
|
|
["4720736542111142402", "4720736542111142402"],
|
|
["16201201426886102855", "16201201426886102855"],
|
|
["16902297023295883510", "16902297023295883510"],
|
|
["9713371962235614874", "9713371962235614874"],
|
|
["1781876933088299158", "1781876933088299158"],
|
|
["5136191516960053753", "5136191516960053753"],
|
|
["3125024935421117027", "3125024935421117027"],
|
|
["8040699748466038752", "8040699748466038752"],
|
|
["10803678010978040701", "10803678010978040701"],
|
|
["9396106808146239705", "9396106808146239705"],
|
|
["11532327441940070370", "11532327441940070370"],
|
|
["163945130689705554", "163945130689705554"],
|
|
["18179698145078137743", "18179698145078137743"],
|
|
["3224627224049851153", "3224627224049851153"],
|
|
["4907498481780543654", "4907498481780543654"],
|
|
["14215847007851587965", "14215847007851587965"],
|
|
["11178457468007888528", "11178457468007888528"],
|
|
["18338465529903587443", "18338465529903587443"],
|
|
["15220279797656932744", "15220279797656932744"],
|
|
["9126953824508420909", "9126953824508420909"],
|
|
["13956647180975450559", "13956647180975450559"],
|
|
["10985432315156629541", "10985432315156629541"],
|
|
["17745640175148389693", "17745640175148389693"],
|
|
["4456172613510763578", "4456172613510763578"],
|
|
["13873580366849256264", "13873580366849256264"],
|
|
["1995995933894667995", "1995995933894667995"],
|
|
["3591614863220741615", "3591614863220741615"],
|
|
["8061807173976835012", "8061807173976835012"],
|
|
["11415168956135319567", "11415168956135319567"],
|
|
["11415168956135319565", "11415168956135319565"],
|
|
["428285290883389722", "428285290883389722"],
|
|
["16818008064544721197", "16818008064544721197"],
|
|
["14940150104002356365", "14940150104002356365"],
|
|
["16270947656990290799", "16270947656990290799"],
|
|
["12606723074965601085", "12606723074965601085"],
|
|
["6068936815270875260", "6068936815270875260"],
|
|
["1494210466786790375", "1494210466786790375"],
|
|
["13627920524400447973", "13627920524400447973"],
|
|
["14362862208543102774", "14362862208543102774"],
|
|
["12800794881605575391", "12800794881605575391"],
|
|
["13009490328434614376", "13009490328434614376"],
|
|
["4371591398238129885", "4371591398238129885"],
|
|
["14270688231769973447", "14270688231769973447"],
|
|
["12211854513889705667", "12211854513889705667"],
|
|
["14543873573514135570", "14543873573514135570"],
|
|
["3601193159257071099", "3601193159257071099"],
|
|
["17465674103106753556", "17465674103106753556"],
|
|
["11707887644065058139", "11707887644065058139"],
|
|
["9781212798942661889", "9781212798942661889"],
|
|
["9321260804801578648", "9321260804801578648"],
|
|
["6031290616264263844", "6031290616264263844"],
|
|
["16867169953630812819", "16867169953630812819"],
|
|
["16867169953630812816", "16867169953630812816"],
|
|
["16867169953630812817", "16867169953630812817"],
|
|
["1725714335468352412", "1725714335468352412"],
|
|
["7479386354208409828", "7479386354208409828"],
|
|
["10990419337064557490", "10990419337064557490"],
|
|
["14027861963781994311", "14027861963781994311"],
|
|
["1428422415093825153", "1428422415093825153"],
|
|
["Alien CIA", "12976518175357021749"],
|
|
["Alien Assassin", "4899050844682216083"],
|
|
["Alien Jacket", "6875978479664880658"],
|
|
["16199394224606436476", "16199394224606436476"],
|
|
["13529848767548895185", "13529848767548895185"],
|
|
["6109431926537274305", "6109431926537274305"],
|
|
["6274590013508700533", "6274590013508700533"],
|
|
["1543588223465537325", "1543588223465537325"],
|
|
["3563251442671423314", "3563251442671423314"],
|
|
["8767566090896060945", "8767566090896060945"],
|
|
["4374653289527006388", "4374653289527006388"],
|
|
["4374653289527006390", "4374653289527006390"],
|
|
["4374653289527006385", "4374653289527006385"],
|
|
["12869725927973592336", "12869725927973592336"],
|
|
["9732308097615154831", "9732308097615154831"],
|
|
["8442368667426823522", "8442368667426823522"],
|
|
["3221815783363218069", "3221815783363218069"],
|
|
["16550011245187657587", "16550011245187657587"],
|
|
["5670815345135415900", "5670815345135415900"],
|
|
["3668485010167013041", "3668485010167013041"],
|
|
["6841756835227557334", "6841756835227557334"],
|
|
["3777654783524476850", "3777654783524476850"],
|
|
["9592225200290715943", "9592225200290715943"],
|
|
["16545048867349773209", "16545048867349773209"],
|
|
["16344855810956115531", "16344855810956115531"],
|
|
["9024609446539980771", "9024609446539980771"],
|
|
["13536188714364319284", "13536188714364319284"],
|
|
["1956391898804940207", "1956391898804940207"],
|
|
["12796575717532314928", "12796575717532314928"],
|
|
["11839224804211419075", "11839224804211419075"],
|
|
["5210241720711941723", "5210241720711941723"],
|
|
["9232758060345430977", "9232758060345430977"],
|
|
["291750541090111203", "291750541090111203"],
|
|
["4602624214374383755", "4602624214374383755"],
|
|
["12375676490886500347", "12375676490886500347"],
|
|
["7446459366619815801", "7446459366619815801"],
|
|
["5512298941822374547", "5512298941822374547"],
|
|
["18240330627157827189", "18240330627157827189"],
|
|
["15002596765923333757", "15002596765923333757"],
|
|
["11486319690801468092", "11486319690801468092"],
|
|
["1945186479179092578", "1945186479179092578"],
|
|
["9994365934535128203", "9994365934535128203"],
|
|
["4224497234297882090", "4224497234297882090"],
|
|
["783812984712276571", "783812984712276571"],
|
|
["16351890598409236681", "16351890598409236681"],
|
|
["1563797776120968568", "1563797776120968568"],
|
|
["5085392615410818695", "5085392615410818695"],
|
|
["8764896658204694237", "8764896658204694237"],
|
|
["4810043606710714478", "4810043606710714478"],
|
|
["529540505505680849", "529540505505680849"],
|
|
["1635844031204927071", "1635844031204927071"],
|
|
["5223246869413523488", "5223246869413523488"],
|
|
["1342171890685081916", "1342171890685081916"],
|
|
["9953864611665477124", "9953864611665477124"],
|
|
["16934786944201847662", "16934786944201847662"],
|
|
["6441285091636537575", "6441285091636537575"],
|
|
["6076300256165312434", "6076300256165312434"],
|
|
["3060282834165942296", "3060282834165942296"],
|
|
["374648052891859079", "374648052891859079"],
|
|
["16111155477347318302", "16111155477347318302"],
|
|
["15703763831735370530", "15703763831735370530"],
|
|
["9129317956111572271", "9129317956111572271"],
|
|
["18187434932497386406", "18187434932497386406"],
|
|
["2855108180794443759", "2855108180794443759"],
|
|
["1862995309130156719", "1862995309130156719"],
|
|
["11814482336668479045", "11814482336668479045"],
|
|
["1000206573455626180", "1000206573455626180"],
|
|
["2724590714556670091", "2724590714556670091"],
|
|
["13727268164938523017", "13727268164938523017"],
|
|
["8216626924457893510", "8216626924457893510"],
|
|
["131315859462909606", "131315859462909606"],
|
|
["13937737317794929937", "13937737317794929937"],
|
|
["1667423257377661824", "1667423257377661824"],
|
|
["8395858990289428097", "8395858990289428097"],
|
|
["4542669251287258287", "4542669251287258287"],
|
|
["5838331429741412184", "5838331429741412184"],
|
|
["15910925101550496629", "15910925101550496629"],
|
|
["Paulie Coat", "5874491335140879700"],
|
|
["2322163907649451619", "2322163907649451619"],
|
|
["15477229324149345740", "15477229324149345740"],
|
|
["12338781790897907483", "12338781790897907483"],
|
|
["14360169735246090787", "14360169735246090787"],
|
|
["4458558416866205622", "4458558416866205622"],
|
|
["13327451931336949962", "13327451931336949962"],
|
|
["7881874040059469767", "7881874040059469767"],
|
|
["13497937940965565683", "13497937940965565683"],
|
|
["17200582605773137886", "17200582605773137886"],
|
|
["18242890343414651193", "18242890343414651193"],
|
|
["11707922317896918301", "11707922317896918301"],
|
|
["8866396308432925397", "8866396308432925397"],
|
|
["1994950381848737018", "1994950381848737018"],
|
|
["2624519215596331124", "2624519215596331124"],
|
|
["9944475769571967257", "9944475769571967257"],
|
|
["13604348442857333985", "13604348442857333985"],
|
|
["2992689631338464589", "2992689631338464589"],
|
|
["4339756176390287267", "4339756176390287267"],
|
|
["3058560554530390359", "3058560554530390359"],
|
|
["13812319904031614153", "13812319904031614153"],
|
|
["1023662018336758021", "1023662018336758021"],
|
|
["10877660597025987114", "10877660597025987114"],
|
|
["5404208752486286320", "5404208752486286320"],
|
|
["16948541784306236003", "16948541784306236003"],
|
|
["15605252725012839660", "15605252725012839660"],
|
|
["8764486384667436329", "8764486384667436329"],
|
|
["589436446746165580", "589436446746165580"],
|
|
["3293404798518805065", "3293404798518805065"],
|
|
["899179189265418013", "899179189265418013"],
|
|
["8633370345163957025", "8633370345163957025"],
|
|
["9445978990464130126", "9445978990464130126"],
|
|
["11761005441800969363", "11761005441800969363"],
|
|
["11113364953570633421", "11113364953570633421"],
|
|
["14045057002496227379", "14045057002496227379"],
|
|
["12061653079953734445", "12061653079953734445"],
|
|
["2980867968150596490", "2980867968150596490"],
|
|
["12269872859824156934", "12269872859824156934"],
|
|
["2664200660314364271", "2664200660314364271"],
|
|
["12445424258539732648", "12445424258539732648"],
|
|
["2319468964438741821", "2319468964438741821"],
|
|
["1739133039813259551", "1739133039813259551"],
|
|
["6135030621812811612", "6135030621812811612"],
|
|
["8648450099155850974", "8648450099155850974"],
|
|
["7967471804153575825", "7967471804153575825"],
|
|
["6821300260198188981", "6821300260198188981"],
|
|
["12423449746465148724", "12423449746465148724"],
|
|
["9661185957798957418", "9661185957798957418"],
|
|
["10305147571158142054", "10305147571158142054"],
|
|
["16372344140668801693", "16372344140668801693"],
|
|
["6800019943006047372", "6800019943006047372"],
|
|
["1661161608661103160", "1661161608661103160"],
|
|
["14558696082698898401", "14558696082698898401"],
|
|
["10589416250659660963", "10589416250659660963"],
|
|
["11870883447789500408", "11870883447789500408"],
|
|
["5147389039239150232", "5147389039239150232"],
|
|
["12603957366552477097", "12603957366552477097"],
|
|
["16222119165805558047", "16222119165805558047"],
|
|
["12580428437733523160", "12580428437733523160"],
|
|
["6730761636956661896", "6730761636956661896"],
|
|
["10873999334899710234", "10873999334899710234"],
|
|
["Zombie", "11030247349375009750"],
|
|
["10778293743591644636", "10778293743591644636"],
|
|
["1970435647551799758", "1970435647551799758"],
|
|
["8309506601229459415", "8309506601229459415"],
|
|
["10679903507084418558", "10679903507084418558"],
|
|
["437789722492400514", "437789722492400514"],
|
|
["3146014741139329400", "3146014741139329400"],
|
|
["13417787264458878848", "13417787264458878848"],
|
|
["11112970440323852564", "11112970440323852564"],
|
|
["17403058064750729034", "17403058064750729034"],
|
|
["14719355281010930125", "14719355281010930125"],
|
|
["1597865836962733922", "1597865836962733922"],
|
|
["18298914506059991581", "18298914506059991581"],
|
|
["7539848037569565375", "7539848037569565375"],
|
|
["2424658310681413444", "2424658310681413444"],
|
|
["16940286932657184392", "16940286932657184392"],
|
|
["8238401855436260126", "8238401855436260126"],
|
|
["6949425875933972935", "6949425875933972935"],
|
|
["3108044976771979317", "3108044976771979317"],
|
|
["7179244844229769799", "7179244844229769799"],
|
|
["6912549951200205375", "6912549951200205375"],
|
|
["11603462238876672757", "11603462238876672757"],
|
|
["11769240244030715892", "11769240244030715892"],
|
|
["15185893278641995282", "15185893278641995282"],
|
|
["13451972748110572420", "13451972748110572420"],
|
|
["17983183234375066937", "17983183234375066937"],
|
|
["9535647598830090421", "9535647598830090421"],
|
|
["16371847312097609139", "16371847312097609139"],
|
|
["10542514884046182704", "10542514884046182704"],
|
|
["13447011868391187551", "13447011868391187551"],
|
|
["10157104987861821144", "10157104987861821144"],
|
|
["14093937316787522023", "14093937316787522023"],
|
|
["6392442693889268596", "6392442693889268596"],
|
|
["18386523575258492567", "18386523575258492567"],
|
|
["8329268713007939636", "8329268713007939636"],
|
|
["3934550392522190364", "3934550392522190364"],
|
|
["16904865596304099041", "16904865596304099041"],
|
|
["11055248179408165867", "11055248179408165867"],
|
|
["1431968250478494403", "1431968250478494403"],
|
|
["17251927287420533520", "17251927287420533520"],
|
|
["11507818691262268753", "11507818691262268753"],
|
|
["17200341309507841809", "17200341309507841809"],
|
|
["10030730034361745322", "10030730034361745322"],
|
|
["392265338660487596", "392265338660487596"],
|
|
["18042654745526439733", "18042654745526439733"],
|
|
["13886010535835661855", "13886010535835661855"],
|
|
["Librarian", "11347549795486968081"],
|
|
["901202681440428015", "901202681440428015"],
|
|
["1758155669950570499", "1758155669950570499"],
|
|
["14869070334086688793", "14869070334086688793"],
|
|
["5773700855453635485", "5773700855453635485"],
|
|
["10901662970961584059", "10901662970961584059"],
|
|
["18138732573124363299", "18138732573124363299"],
|
|
["106484496509674315", "106484496509674315"],
|
|
["8238871823474049117", "8238871823474049117"],
|
|
["12374274205784654189", "12374274205784654189"],
|
|
["13284137220290937623", "13284137220290937623"],
|
|
["10104272322814271113", "10104272322814271113"],
|
|
["11729356986730977959", "11729356986730977959"],
|
|
["7572808580267743891", "7572808580267743891"],
|
|
["16202461292008692831", "16202461292008692831"],
|
|
["8626061921101283374", "8626061921101283374"],
|
|
["997456286206193390", "997456286206193390"],
|
|
["14026315611034787346", "14026315611034787346"],
|
|
["2884881432760744213", "2884881432760744213"],
|
|
["9680741894172266679", "9680741894172266679"],
|
|
["9205985454425949538", "9205985454425949538"],
|
|
["4258669308665352757", "4258669308665352757"],
|
|
["9255921705695728734", "9255921705695728734"],
|
|
["8882111882328868745", "8882111882328868745"],
|
|
["7476179200226925319", "7476179200226925319"],
|
|
["14702603430826498795", "14702603430826498795"],
|
|
["4973265140478670305", "4973265140478670305"],
|
|
["14634272552827766617", "14634272552827766617"],
|
|
["14178070242783388059", "14178070242783388059"],
|
|
["456407478418297820", "456407478418297820"],
|
|
["13534276587608800368", "13534276587608800368"],
|
|
["9511630353709327558", "9511630353709327558"],
|
|
["13613296714485527502", "13613296714485527502"],
|
|
["13080228428497599266", "13080228428497599266"],
|
|
["18074632505944169756", "18074632505944169756"],
|
|
["146960383954086520", "146960383954086520"],
|
|
["7991060313937920647", "7991060313937920647"],
|
|
["760232292216526167", "760232292216526167"],
|
|
["11293184356105883892", "11293184356105883892"],
|
|
["12670401756445453292", "12670401756445453292"],
|
|
["7423517672679019284", "7423517672679019284"],
|
|
["16250933200474870368", "16250933200474870368"],
|
|
["5288207188159489111", "5288207188159489111"],
|
|
["12739045624477749040", "12739045624477749040"],
|
|
["808869603373503202", "808869603373503202"],
|
|
["4308849918992250390", "4308849918992250390"],
|
|
["14774124403145273160", "14774124403145273160"],
|
|
["7479167946915314863", "7479167946915314863"],
|
|
["6095569861464821947", "6095569861464821947"],
|
|
["1342826841634182461", "1342826841634182461"],
|
|
["1375866352254943286", "1375866352254943286"],
|
|
["5780499523525946552", "5780499523525946552"],
|
|
["11663287195813781779", "11663287195813781779"],
|
|
["3666545431247347734", "3666545431247347734"],
|
|
["9242932216955481074", "9242932216955481074"],
|
|
["Tommy Cabby Cap", "2963501179172230373"],
|
|
["9433973454657801787", "9433973454657801787"],
|
|
["Tommy Coat Mask", "11525787114099016664"],
|
|
["Tommy Jacket Black Cats", "16890845161420029388"],
|
|
["Tommy Cabby Cap", "7228997795965996595"],
|
|
["Tommy Cabby", "2197174444358456707"],
|
|
["Tommy Suit White", "6522850236816218510"],
|
|
["Tommy After Race", "5745420749075225025"],
|
|
["Tommy Jacket Leather", "16022257718226389851"],
|
|
["Tommy Jacket Leather", "6708912026655656203"],
|
|
["Tommy Good Boy", "13515212279725276812"],
|
|
["Tommy Funeral", "2444833966330214227"],
|
|
["Tommy Suit Black Pinstripe", "7442797467920627251"],
|
|
["Tommy Suit Black Pinstripe", "565556132443472611"],
|
|
["Tommy Suit Black Hat", "13898153412613487060"],
|
|
["Tommy Suit Black", "9731327888530581174"],
|
|
["Tommy Waiscoat", "12970614910736064211"],
|
|
["Tommy Coat Hat", "10510507382574762429"],
|
|
["Tommy Prison", "9976574154889813562"],
|
|
["Tommy Jacket Lincoln", "8244647910207197359"],
|
|
["Tommy Old", "5027297859762541072"],
|
|
["Tommy Wedding", "13004382520258102624"],
|
|
["Tommy Racer", "5306901865268729458"],
|
|
["Tommy Mechanic", "10505412751276834323"],
|
|
["Tommy Cowboy", "8248014175162448505"],
|
|
["Tommy Clown", "10505412751276834320"],
|
|
["Tommy Pyjamas", "10505412751276834321"],
|
|
["Tommy Boxer", "10505412751276834326"],
|
|
["Tommy Policeman", "10505412751276834327"],
|
|
["Tommy Hobo", "10505412751276834324"],
|
|
["Tommy Elevator Operator", "10505412751276834331"],
|
|
["Tommy Sailor", "8862706462560032118"],
|
|
["Tommy Coat Dirty", "12395256871352626316"],
|
|
["Tommy Jacket Vito", "17520078242966287918"],
|
|
["7702555181644971406", "7702555181644971406"],
|
|
["14920430912992098164", "14920430912992098164"],
|
|
["14920430912992098167", "14920430912992098167"],
|
|
["14920430912992098166", "14920430912992098166"],
|
|
["14920430912992098161", "14920430912992098161"],
|
|
["14920430912992098160", "14920430912992098160"],
|
|
["14920430912992098163", "14920430912992098163"],
|
|
["14920430912992098162", "14920430912992098162"],
|
|
["14920430912992098173", "14920430912992098173"],
|
|
["14920430912992098172", "14920430912992098172"],
|
|
["14920429813480469922", "14920429813480469922"],
|
|
["11821963798485029356", "11821963798485029356"],
|
|
["11821963798485029359", "11821963798485029359"],
|
|
["11821963798485029358", "11821963798485029358"],
|
|
["12034829560617396871", "12034829560617396871"],
|
|
["9307101247586904918", "9307101247586904918"],
|
|
["9307101247586904917", "9307101247586904917"],
|
|
["18422825012661102249", "18422825012661102249"],
|
|
["12062304365696654795", "12062304365696654795"],
|
|
["16663530224575217550", "16663530224575217550"],
|
|
["5097439936431229160", "5097439936431229160"],
|
|
["17156269653721028297", "17156269653721028297"],
|
|
["13163672743135581048", "13163672743135581048"],
|
|
["3629161918112336023", "3629161918112336023"],
|
|
["6434733132224587024", "6434733132224587024"],
|
|
["1522320823114519798", "1522320823114519798"],
|
|
["9054885582651595359", "9054885582651595359"],
|
|
["16570564304852938488", "16570564304852938488"],
|
|
["14552849087787507822", "14552849087787507822"],
|
|
["1290862781144688232", "1290862781144688232"],
|
|
["9885998735288028716", "9885998735288028716"],
|
|
["13860799695551156584", "13860799695551156584"],
|
|
["12145510980209587298", "12145510980209587298"],
|
|
["5997034166114650201", "5997034166114650201"],
|
|
["16011856369750089688", "16011856369750089688"],
|
|
["16170089624625448671", "16170089624625448671"],
|
|
["16170089624625448664", "16170089624625448664"],
|
|
["Show Girl", "17391294508041534387"],
|
|
["Show Girl 2", "5754904549273808538"],
|
|
["Surrealist", "3636575860539303021"],
|
|
["12598287125892574231", "12598287125892574231"],
|
|
["10267456709801322475", "10267456709801322475"],
|
|
["12414140700410522121", "12414140700410522121"],
|
|
["13639665665739627299", "13639665665739627299"],
|
|
["13639665665739627303", "13639665665739627303"],
|
|
["13017276890178417047", "13017276890178417047"],
|
|
["9895780534409622360", "9895780534409622360"],
|
|
["16159114683117028969", "16159114683117028969"],
|
|
["18335000491084539531", "18335000491084539531"],
|
|
["12099606852676862985", "12099606852676862985"],
|
|
["13423496155262050891", "13423496155262050891"],
|
|
["5271725366346580147", "5271725366346580147"],
|
|
["16401794397527989774", "16401794397527989774"],
|
|
["16508991153834901104", "16508991153834901104"],
|
|
["66572291731855460", "66572291731855460"],
|
|
["2263360058239417590", "2263360058239417590"],
|
|
["1406196143483184935", "1406196143483184935"],
|
|
["11806012892489386334", "11806012892489386334"],
|
|
["17604495613183489515", "17604495613183489515"],
|
|
["Paulie Coat", "2519029570137113328"],
|
|
["Paulie Suit Grey", "6339161746032116436"],
|
|
["Paulie Mask", "17705493706535808113"],
|
|
["13520095838914007699", "13520095838914007699"],
|
|
["Paulie Worker", "12825919424589462906"],
|
|
["Paulie Drunk", "11503810928182405559"],
|
|
["Paulie Suit Grey Hat", "4580728006618019872"],
|
|
["Paulie Suit Grey", "1682930424617353244"],
|
|
["Paulie Suit Grey", "14520451827139274210"],
|
|
["Paulie Injured", "1950238572306526877"],
|
|
["Paulie Suit Purple Hat", "1316418693817134463"],
|
|
["Paulie Suit Purple Hat", "8781446634312869332"],
|
|
["Paulie Suit Purple Hat", "8516037798184477049"],
|
|
["Paulie Suit Purple", "13149915010946305503"],
|
|
["Paulie Suit Purple", "12208412838339778201"],
|
|
["Paulie Coat", "4046309650320006708"],
|
|
["Paulie Coat Dirty", "16236084515501798317"],
|
|
["Paulie Coat Dirty", "10014320101352207238"],
|
|
["16288526544495997941", "16288526544495997941"],
|
|
["4372521071044968289", "4372521071044968289"],
|
|
["15029735409935426053", "15029735409935426053"],
|
|
["11885712611873299762", "11885712611873299762"],
|
|
["5568928876402003965", "5568928876402003965"],
|
|
["Salieri Fedora", "6271052910699436849"],
|
|
["7939680250043760409", "7939680250043760409"],
|
|
["2101677959308091574", "2101677959308091574"],
|
|
["9660942274595606827", "9660942274595606827"],
|
|
["Sam Suit Grey Coat", "7539891421188849313"],
|
|
["Sam Suit Black", "1099655312102072501"],
|
|
["Sam Nose Blood", "7742558485311279849"],
|
|
["Sam Worker", "5014018612803556833"],
|
|
["Sam Injured", "2228509685745949124"],
|
|
["Sam Coat Injured", "12366093166558070785"],
|
|
["Sam Suit Black", "9890938358930933025"],
|
|
["Sam Suit Black", "3397843008389334265"],
|
|
["Sam Suit Black Tie", "3355828162931489926"],
|
|
["Sam Suit Black Tie", "1522392718933216856"],
|
|
["Sam Suit Grey Hat", "9535413397183989123"],
|
|
["Sam Hat", "1956960746572648541"],
|
|
["Sam Suit Grey", "9230497306291596595"],
|
|
["Sam Suit Grey", "7462645910547421962"],
|
|
["Sam Coat", "17870629304394847055"],
|
|
["Sam Coat", "5718600293016636135"],
|
|
["Sam Injured", "4753173214321580897"],
|
|
["Sarah", "1913470866107666857"],
|
|
["Sarah Married", "3340341389585976592"],
|
|
["2512378556208683050", "2512378556208683050"],
|
|
["3770003404186101438", "3770003404186101438"],
|
|
["14427097972861851504", "14427097972861851504"],
|
|
["15666573019477122728", "15666573019477122728"],
|
|
["2358804665542075642", "2358804665542075642"],
|
|
["17034377968981367985", "17034377968981367985"],
|
|
["8574156783377258904", "8574156783377258904"],
|
|
["5384390353903046852", "5384390353903046852"],
|
|
["4044859539716912325", "4044859539716912325"],
|
|
["362232782783275299", "362232782783275299"],
|
|
["10319065832074111916", "10319065832074111916"],
|
|
["17191474163121811169", "17191474163121811169"],
|
|
["Sam Shot", "15473280308569493189"],
|
|
["Sam Bowtie", "16691962176204762214"],
|
|
["Sam Bowtie", "1603485464005565174"],
|
|
["Sam Shot", "4212193053683371326"],
|
|
["Sam Shot", "17582426933065501070"],
|
|
["15970438640789158171", "15970438640789158171"],
|
|
["Dino", "18048812374608787524"],
|
|
["947113604335810780", "947113604335810780"],
|
|
["4847406247953459178", "4847406247953459178"],
|
|
["5376006616458769700", "5376006616458769700"],
|
|
["5376006616458769703", "5376006616458769703"],
|
|
["14500003962912182979", "14500003962912182979"],
|
|
["5376006616458769702", "5376006616458769702"],
|
|
["15473496983265292872", "15473496983265292872"],
|
|
["5376006616458769697", "5376006616458769697"],
|
|
["5376006616458769696", "5376006616458769696"],
|
|
["17906348081019014627", "17906348081019014627"],
|
|
["10173581435705281421", "10173581435705281421"],
|
|
["10602379221855502830", "10602379221855502830"],
|
|
["10449458294315264105", "10449458294315264105"],
|
|
["6701909666729712370", "6701909666729712370"],
|
|
["6701909666729712369", "6701909666729712369"],
|
|
["1390591403124940629", "1390591403124940629"],
|
|
["1412257775219453008", "1412257775219453008"],
|
|
["1412257775219453011", "1412257775219453011"],
|
|
["4645848871498021773", "4645848871498021773"],
|
|
["7923685861678014248", "7923685861678014248"],
|
|
["10149273269341412635", "10149273269341412635"],
|
|
["11362103351702384559", "11362103351702384559"],
|
|
["18377415624175399316", "18377415624175399316"],
|
|
["18377415624175399319", "18377415624175399319"],
|
|
["16143477176428826125", "16143477176428826125"],
|
|
["16661087232681830122", "16661087232681830122"],
|
|
["10318063413025396523", "10318063413025396523"],
|
|
["16974394898989621019", "16974394898989621019"],
|
|
["16974394898989621016", "16974394898989621016"],
|
|
["16974394898989621017", "16974394898989621017"],
|
|
["10892423649658988740", "10892423649658988740"],
|
|
["5958503337067714924", "5958503337067714924"],
|
|
["16720014467284912957", "16720014467284912957"],
|
|
["9844612121788842541", "9844612121788842541"],
|
|
["4128798588886270043", "4128798588886270043"],
|
|
["12840183211807671197", "12840183211807671197"],
|
|
["16430870353818664854", "16430870353818664854"],
|
|
["16395523495093699422", "16395523495093699422"],
|
|
["7723639695795869393", "7723639695795869393"],
|
|
["6570373347489359862", "6570373347489359862"],
|
|
["10825932761286839472", "10825932761286839472"],
|
|
["17267666676458482425", "17267666676458482425"],
|
|
["7272203058398881567", "7272203058398881567"],
|
|
["13901441007328254932", "13901441007328254932"],
|
|
["17226088951818312693", "17226088951818312693"],
|
|
["10699427901172897101", "10699427901172897101"],
|
|
["3236579487653039675", "3236579487653039675"],
|
|
["9838990206470126042", "9838990206470126042"],
|
|
["9376595287512408496", "9376595287512408496"],
|
|
["9405583659325418055", "9405583659325418055"],
|
|
["7543730781055744842", "7543730781055744842"],
|
|
["10363455016926282172", "10363455016926282172"],
|
|
["Beach Girl", "17057108608322975435"],
|
|
["11591041512269543108", "11591041512269543108"],
|
|
["11591041512269543111", "11591041512269543111"],
|
|
["Clown", "15448755363452048096"],
|
|
["7123459488826601328", "7123459488826601328"],
|
|
["11843060433200368497", "11843060433200368497"],
|
|
["2031396092387316272", "2031396092387316272"],
|
|
["12300528497147707313", "12300528497147707313"],
|
|
["17568118404958921744", "17568118404958921744"],
|
|
["12382169025234477707", "12382169025234477707"],
|
|
["292782418999898977", "292782418999898977"],
|
|
["9599019374829371535", "9599019374829371535"],
|
|
["7353491847859427125", "7353491847859427125"],
|
|
["15292175815915287286", "15292175815915287286"],
|
|
["11223061260668061693", "11223061260668061693"],
|
|
["1108177611581336154", "1108177611581336154"],
|
|
["5478608751879692710", "5478608751879692710"],
|
|
["1703909312337448122", "1703909312337448122"],
|
|
["8745527428189487543", "8745527428189487543"],
|
|
["13496351615135405719", "13496351615135405719"],
|
|
["1907856645210621937", "1907856645210621937"],
|
|
["17042213364345548926", "17042213364345548926"],
|
|
["10091641774473386396", "10091641774473386396"],
|
|
["13197857677460866186", "13197857677460866186"],
|
|
["1026011816724190500", "1026011816724190500"],
|
|
["2127695675926584996", "2127695675926584996"],
|
|
["6047906054062826952", "6047906054062826952"],
|
|
["13470626851157019549", "13470626851157019549"],
|
|
["7077965878769614842", "7077965878769614842"],
|
|
["15091318419544839530", "15091318419544839530"],
|
|
["10634406992346688556", "10634406992346688556"],
|
|
["18254317155338220604", "18254317155338220604"],
|
|
["6995032230235459540", "6995032230235459540"],
|
|
["14592963147054093910", "14592963147054093910"],
|
|
["12358792915655394839", "12358792915655394839"],
|
|
["9162533839304053765", "9162533839304053765"],
|
|
["10075981305312143896", "10075981305312143896"],
|
|
["9804167268136738067", "9804167268136738067"],
|
|
["7126429652130692203", "7126429652130692203"],
|
|
["8940064912880624354", "8940064912880624354"],
|
|
["8940392197370406445", "8940392197370406445"],
|
|
["Prostitute", "9943287358956516983"],
|
|
["4763856007073182683", "4763856007073182683"],
|
|
["16732006640773528790", "16732006640773528790"],
|
|
["7341079937272478373", "7341079937272478373"],
|
|
["14382363065313371449", "14382363065313371449"],
|
|
["11972369167062676256", "11972369167062676256"],
|
|
["15415993657221011989", "15415993657221011989"],
|
|
["13233559362706926993", "13233559362706926993"],
|
|
["13927968284090030579", "13927968284090030579"],
|
|
["15078885443361628773", "15078885443361628773"],
|
|
["17072855569475686048", "17072855569475686048"],
|
|
["3294909036990047762", "3294909036990047762"],
|
|
["Joe", "3971786709408123548"],
|
|
["1387556624581324781", "1387556624581324781"],
|
|
["12283063746775044052", "12283063746775044052"],
|
|
["1995824384019331202", "1995824384019331202"],
|
|
["17604107915927312785", "17604107915927312785"],
|
|
["1966784246992923437", "1966784246992923437"],
|
|
["5699564401143353515", "5699564401143353515"],
|
|
["404310431150798248", "404310431150798248"],
|
|
["12404976395357701441", "12404976395357701441"],
|
|
["3188344175585351442", "3188344175585351442"],
|
|
["10488004751059950971", "10488004751059950971"],
|
|
["11427140019159619448", "11427140019159619448"],
|
|
["11497751094206445833", "11497751094206445833"],
|
|
["7631249579806502633", "7631249579806502633"],
|
|
["15718552528315476324", "15718552528315476324"],
|
|
["1383221635830894886", "1383221635830894886"],
|
|
["7632684100725100624", "7632684100725100624"],
|
|
["4221606164981895738", "4221606164981895738"],
|
|
["4221606164981895737", "4221606164981895737"],
|
|
["4221606164981895736", "4221606164981895736"],
|
|
["Paulie Suit Purple", "6333941415109452136"],
|
|
["17201584946271371896", "17201584946271371896"],
|
|
["14689987868741051847", "14689987868741051847"],
|
|
["867723938646795964", "867723938646795964"],
|
|
["Sam Suit Grey", "9375610523962830199"],
|
|
["11096421071469083895", "11096421071469083895"],
|
|
["11096421071469083892", "11096421071469083892"],
|
|
["11096421071469083893", "11096421071469083893"],
|
|
["11096421071469083890", "11096421071469083890"],
|
|
["16690183298653723822", "16690183298653723822"],
|
|
["9581701855696232445", "9581701855696232445"],
|
|
["8428343943772230292", "8428343943772230292"],
|
|
["13296154699591050027", "13296154699591050027"],
|
|
["1434528207469009330", "1434528207469009330"],
|
|
["1554822620095846337", "1554822620095846337"],
|
|
["5307331117560090032", "5307331117560090032"],
|
|
["12792696835492931451", "12792696835492931451"],
|
|
["12792696835492931448", "12792696835492931448"],
|
|
["7415518848855868728", "7415518848855868728"],
|
|
["7522341381067187581", "7522341381067187581"],
|
|
["13199614312911739244", "13199614312911739244"],
|
|
["12187410864831410177", "12187410864831410177"],
|
|
["7609302889316086907", "7609302889316086907"],
|
|
["15685665501565507483", "15685665501565507483"],
|
|
["2776600188641477906", "2776600188641477906"],
|
|
["689876345686393096", "689876345686393096"],
|
|
["14810209833438745234", "14810209833438745234"],
|
|
["14810209833438745235", "14810209833438745235"],
|
|
["14810209833438745236", "14810209833438745236"],
|
|
["14810209833438745237", "14810209833438745237"],
|
|
["6032042113822036684", "6032042113822036684"],
|
|
["14626197832679930719", "14626197832679930719"],
|
|
["6457991948734279609", "6457991948734279609"],
|
|
["13089832670046439114", "13089832670046439114"],
|
|
["16215585284869296729", "16215585284869296729"],
|
|
["2347726826661000091", "2347726826661000091"],
|
|
["4220753372439536554", "4220753372439536554"],
|
|
["10455108995425383833", "10455108995425383833"],
|
|
["6843160065625655362", "6843160065625655362"],
|
|
["2388426821383522736", "2388426821383522736"],
|
|
["13787523346972787570", "13787523346972787570"],
|
|
["12591632826342501519", "12591632826342501519"],
|
|
["16609011049929020766", "16609011049929020766"],
|
|
["755046457833718335", "755046457833718335"],
|
|
["8697763360379630297", "8697763360379630297"],
|
|
["5121759852794858014", "5121759852794858014"],
|
|
["1058630735679129353", "1058630735679129353"],
|
|
["7982498571267651209", "7982498571267651209"],
|
|
["5394627887633535271", "5394627887633535271"],
|
|
["5394627887633535268", "5394627887633535268"],
|
|
["9479259080054085675", "9479259080054085675"],
|
|
["13892642584169536462", "13892642584169536462"],
|
|
["14303544146758424033", "14303544146758424033"],
|
|
["13261229493607685892", "13261229493607685892"],
|
|
["2011588059276128179", "2011588059276128179"],
|
|
["4344286597883987127", "4344286597883987127"],
|
|
["9275197893999353035", "9275197893999353035"],
|
|
["10543404010956903852", "10543404010956903852"],
|
|
["849876347048203551", "849876347048203551"],
|
|
["10784048376110507726", "10784048376110507726"],
|
|
["12216911259366597433", "12216911259366597433"],
|
|
["12216911259366597434", "12216911259366597434"],
|
|
["13990918561770228274", "13990918561770228274"],
|
|
["11836880631317752225", "11836880631317752225"],
|
|
["6129418158551589458", "6129418158551589458"],
|
|
["5710370887565348720", "5710370887565348720"],
|
|
["5710370887565348723", "5710370887565348723"],
|
|
["5710370887565348722", "5710370887565348722"],
|
|
["5710370887565348725", "5710370887565348725"],
|
|
["5710370887565348724", "5710370887565348724"],
|
|
["13806079720549051262", "13806079720549051262"],
|
|
["10081647400478493069", "10081647400478493069"],
|
|
["Morello Coat", "13418783098802843801"],
|
|
["15396093932872710957", "15396093932872710957"],
|
|
["8407997266491951305", "8407997266491951305"],
|
|
["2006189127705414906", "2006189127705414906"],
|
|
["3184609116024674897", "3184609116024674897"],
|
|
["3184609116024674896", "3184609116024674896"],
|
|
["2541916285709005291", "2541916285709005291"],
|
|
["3831614699038536973", "3831614699038536973"],
|
|
["3831614699038536974", "3831614699038536974"],
|
|
["16115963551080513821", "16115963551080513821"],
|
|
["1024029513062833411", "1024029513062833411"],
|
|
["8008374813512398428", "8008374813512398428"],
|
|
["834323944258720184", "834323944258720184"],
|
|
["Morpheus", "5566874084318867535"],
|
|
["8578037496085534536", "8578037496085534536"],
|
|
["1907959853547156445", "1907959853547156445"],
|
|
["13338312353532426183", "13338312353532426183"],
|
|
["13338312353532426180", "13338312353532426180"],
|
|
["13338312353532426181", "13338312353532426181"],
|
|
["13338312353532426178", "13338312353532426178"],
|
|
["13338312353532426179", "13338312353532426179"],
|
|
["17345976444306693858", "17345976444306693858"],
|
|
["1607457389244070872", "1607457389244070872"],
|
|
["2817254119636654403", "2817254119636654403"],
|
|
["16173333488536307033", "16173333488536307033"],
|
|
["933772122716929104", "933772122716929104"],
|
|
["17364753758524986793", "17364753758524986793"],
|
|
["17264989967462493624", "17264989967462493624"],
|
|
["13440086092903952776", "13440086092903952776"],
|
|
["13863766886265577833", "13863766886265577833"],
|
|
["11734575489361916290", "11734575489361916290"],
|
|
["395717696568284754", "395717696568284754"],
|
|
["15770665463115656929", "15770665463115656929"],
|
|
["17656094837485659114", "17656094837485659114"],
|
|
["5968169630680488053", "5968169630680488053"],
|
|
["14195502421645357164", "14195502421645357164"],
|
|
["971734450587180856", "971734450587180856"],
|
|
["14768853305386263825", "14768853305386263825"],
|
|
["5416849133803991862", "5416849133803991862"],
|
|
["15293283625726835002", "15293283625726835002"],
|
|
["6755974623629597786", "6755974623629597786"],
|
|
["15092927978855143013", "15092927978855143013"],
|
|
["18428898870951687308", "18428898870951687308"],
|
|
["6645739233069413328", "6645739233069413328"],
|
|
["15823511396366885724", "15823511396366885724"],
|
|
["15823511396366885727", "15823511396366885727"],
|
|
["1944406632226156149", "1944406632226156149"],
|
|
["11623703329277098311", "11623703329277098311"],
|
|
["11509818280952223548", "11509818280952223548"],
|
|
["15498636631236575010", "15498636631236575010"],
|
|
["16087549055591630210", "16087549055591630210"],
|
|
["17348262165907383945", "17348262165907383945"],
|
|
["17296610029182154409", "17296610029182154409"],
|
|
["7604976834075936748", "7604976834075936748"],
|
|
["2458804863128150581", "2458804863128150581"],
|
|
["15867541959558150980", "15867541959558150980"],
|
|
["3335333013324277756", "3335333013324277756"],
|
|
["4576521785740715141", "4576521785740715141"],
|
|
["13501390512246005624", "13501390512246005624"],
|
|
["13832250727223446177", "13832250727223446177"],
|
|
["17909471494466668594", "17909471494466668594"],
|
|
["16997469425774731183", "16997469425774731183"],
|
|
["295673107493290391", "295673107493290391"],
|
|
["3627122617493157784", "3627122617493157784"],
|
|
["8076085324124529941", "8076085324124529941"],
|
|
["13958437033256820544", "13958437033256820544"],
|
|
["13958437033256820547", "13958437033256820547"],
|
|
["13958437033256820546", "13958437033256820546"],
|
|
["13958437033256820549", "13958437033256820549"],
|
|
["13958437033256820548", "13958437033256820548"],
|
|
["13958437033256820551", "13958437033256820551"],
|
|
["14908369019515829056", "14908369019515829056"],
|
|
["14908369019515829059", "14908369019515829059"],
|
|
["14908369019515829058", "14908369019515829058"],
|
|
["14908369019515829061", "14908369019515829061"],
|
|
["14908369019515829060", "14908369019515829060"],
|
|
["14908369019515829063", "14908369019515829063"],
|
|
["12930553235529680345", "12930553235529680345"],
|
|
["3979730788145725031", "3979730788145725031"],
|
|
["3979730788145725028", "3979730788145725028"],
|
|
["3979730788145725029", "3979730788145725029"],
|
|
["16195386483735872310", "16195386483735872310"],
|
|
["5084461713041180686", "5084461713041180686"],
|
|
["11484697053670535518", "11484697053670535518"],
|
|
["11484697053670535517", "11484697053670535517"],
|
|
["11484697053670535516", "11484697053670535516"],
|
|
["10853508484994828594", "10853508484994828594"],
|
|
["10853508484994828593", "10853508484994828593"],
|
|
["6709595749833597808", "6709595749833597808"],
|
|
["16350211994433194500", "16350211994433194500"],
|
|
["15591013400659324435", "15591013400659324435"],
|
|
["3065033146884644371", "3065033146884644371"],
|
|
["7128326061876513025", "7128326061876513025"],
|
|
["2664719944019361485", "2664719944019361485"],
|
|
["15516525160363346017", "15516525160363346017"],
|
|
["15516525160363346018", "15516525160363346018"],
|
|
["14723757038697025247", "14723757038697025247"],
|
|
["14723757038697025244", "14723757038697025244"],
|
|
["14723757038697025245", "14723757038697025245"],
|
|
["9244840500283036257", "9244840500283036257"],
|
|
["17714282667932140532", "17714282667932140532"],
|
|
["17714282667932140535", "17714282667932140535"],
|
|
["17714282667932140534", "17714282667932140534"],
|
|
["10041762764671191002", "10041762764671191002"],
|
|
["10041762764671191001", "10041762764671191001"],
|
|
["10041762764671191000", "10041762764671191000"],
|
|
["10041762764671191007", "10041762764671191007"],
|
|
["10041762764671191006", "10041762764671191006"],
|
|
["4444583216156359309", "4444583216156359309"],
|
|
["4444583216156359310", "4444583216156359310"],
|
|
["4444583216156359311", "4444583216156359311"],
|
|
["7176311396226745307", "7176311396226745307"],
|
|
["Michelle Crying", "6783937429886201131"],
|
|
["Priest", "6640065539863125301"],
|
|
["5231845445502588337", "5231845445502588337"],
|
|
["5231845445502588338", "5231845445502588338"],
|
|
["5231845445502588339", "5231845445502588339"],
|
|
["5231845445502588340", "5231845445502588340"],
|
|
["14836039048460299910", "14836039048460299910"],
|
|
["Tommy Suit Black Pinstripe", "5009626877859331774"],
|
|
["Tommy Suit Black Pinstripe", "17370870701666720098"],
|
|
["Tommy Loose Tie", "3461377101257056730"],
|
|
["Tommy Coat Dirty", "5135234534309318924"],
|
|
["Tommy Coat", "15396386711214395032"],
|
|
["Tommy Coat", "7896394292210089783"],
|
|
["Tommy Suit Black Pinstripe", "2741503867073006163"],
|
|
["Tommy Suit Black Pinstripe Hat", "16117888644291730074"],
|
|
["Tommy Suit Black Pinstripe", "6513452538813286892"],
|
|
["Tommy Racer", "16511166070911407911"],
|
|
["Tommy Mask", "6383327453537082992"],
|
|
["10295438481054844524", "10295438481054844524"],
|
|
["13478002404153138603", "13478002404153138603"],
|
|
["Frank Grey Suit", "10971138828064262595"],
|
|
["Frank Vest", "14798042997518827496"],
|
|
["582504675584704806", "582504675584704806"],
|
|
["3514477000758188757", "3514477000758188757"],
|
|
["174939955391050817", "174939955391050817"],
|
|
["Morello Hat", "1210693785250579341"],
|
|
["10029431515544697714", "10029431515544697714"],
|
|
["Paulie Coat", "16922695808871587265"],
|
|
["Paulie Coat Dirty", "8552865502533275684"],
|
|
["Paulie Coat Dirty", "11408085305121582266"],
|
|
["Paulie Drunk", "14261308872867909182"],
|
|
["Paulie Suit Grey", "4582201410962217305"],
|
|
["Paulie Mask", "10369061622393523895"],
|
|
["Paulie Suit Grey", "5129700715121135903"],
|
|
["12264612721070044654", "12264612721070044654"],
|
|
["Don Salieri Explosion", "18324307515386490690"],
|
|
["1801567009792564534", "1801567009792564534"],
|
|
["Sam Suit Black Tie", "15233437163230606314"],
|
|
["Sam Nose Blood", "17142793234430118630"],
|
|
["Sam Injured", "3195969894213159627"],
|
|
["Sam Suit Black", "15076694566491843575"],
|
|
["Sarah", "8230941039798278466"],
|
|
["7527711250568205424", "7527711250568205424"],
|
|
["Vincenzo", "5545606381232892995"],
|
|
["15457732533156927798", "15457732533156927798"],
|
|
["14089186516992105681", "14089186516992105681"],
|
|
["11417105296774363846", "11417105296774363846"],
|
|
["1171763309693423775", "1171763309693423775"],
|
|
["6300927524155027029", "6300927524155027029"],
|
|
["8143061011923220404", "8143061011923220404"],
|
|
["8878171163614292131", "8878171163614292131"],
|
|
["4313964556376933881", "4313964556376933881"],
|
|
["17801553393596260330", "17801553393596260330"],
|
|
["14361298835748584929", "14361298835748584929"],
|
|
["7646962453670479290", "7646962453670479290"],
|
|
["1107903220509669209", "1107903220509669209"],
|
|
["6892933706456221844", "6892933706456221844"],
|
|
["9929620647692187293", "9929620647692187293"],
|
|
["5474385043057313766", "5474385043057313766"],
|
|
["6831614315253702353", "6831614315253702353"],
|
|
["12933205152128222058", "12933205152128222058"],
|
|
["14041232922199430334", "14041232922199430334"],
|
|
["15590484785129790983", "15590484785129790983"],
|
|
["3098941796730417145", "3098941796730417145"],
|
|
["11483122681909145400", "11483122681909145400"],
|
|
["15907920311504163801", "15907920311504163801"],
|
|
["9982494101158482579", "9982494101158482579"],
|
|
["5045561014684761450", "5045561014684761450"],
|
|
["6096991615891389121", "6096991615891389121"],
|
|
["3342975952783913681", "3342975952783913681"],
|
|
["15763604725413742720", "15763604725413742720"],
|
|
["10543433908480755098", "10543433908480755098"],
|
|
["7776431849472631397", "7776431849472631397"],
|
|
["4795534737475495528", "4795534737475495528"],
|
|
["12155050569460833816", "12155050569460833816"],
|
|
["12155050569460833819", "12155050569460833819"],
|
|
["12155050569460833818", "12155050569460833818"],
|
|
["12155050569460833821", "12155050569460833821"],
|
|
["12155050569460833820", "12155050569460833820"],
|
|
["7060573417735023444", "7060573417735023444"],
|
|
["5794656408681790019", "5794656408681790019"],
|
|
["6559248886872819582", "6559248886872819582"],
|
|
["8587330313165762501", "8587330313165762501"],
|
|
["3864104446017389798", "3864104446017389798"],
|
|
["7086032387307262323", "7086032387307262323"],
|
|
["9659202579408019649", "9659202579408019649"],
|
|
["13031225299987347666", "13031225299987347666"],
|
|
["17510316472360449355", "17510316472360449355"],
|
|
["4252760015174433890", "4252760015174433890"],
|
|
["13319951456178765410", "13319951456178765410"],
|
|
["862967163122696858", "862967163122696858"],
|
|
["2543505285459540186", "2543505285459540186"],
|
|
["238327913974426025", "238327913974426025"],
|
|
["12593940115087558337", "12593940115087558337"],
|
|
["3277393575846850034", "3277393575846850034"],
|
|
["7203451738111658043", "7203451738111658043"],
|
|
["4246180503825583092", "4246180503825583092"],
|
|
["17275829046129998337", "17275829046129998337"],
|
|
["5381914921987420158", "5381914921987420158"],
|
|
["6963688842318208", "6963688842318208"],
|
|
["4574445725674225130", "4574445725674225130"],
|
|
["6867504646061991646", "6867504646061991646"],
|
|
["3066463898262778517", "3066463898262778517"],
|
|
["11870265814353928790", "11870265814353928790"],
|
|
["12549253279491086263", "12549253279491086263"],
|
|
["13790647155125252457", "13790647155125252457"],
|
|
["12529837127957589681", "12529837127957589681"],
|
|
["14952934291784821236", "14952934291784821236"],
|
|
["3050548013057885831", "3050548013057885831"],
|
|
["15505285581883209658", "15505285581883209658"],
|
|
["9359211989856038460", "9359211989856038460"],
|
|
["11546676718588821353", "11546676718588821353"],
|
|
["11341664780552231868", "11341664780552231868"],
|
|
["18440994353731352316", "18440994353731352316"],
|
|
["7172497344113441232", "7172497344113441232"],
|
|
["15362205945831296294", "15362205945831296294"],
|
|
["16282878187052274612", "16282878187052274612"],
|
|
["7134705490383142335", "7134705490383142335"],
|
|
["2742770420795865794", "2742770420795865794"],
|
|
["7543054751323349204", "7543054751323349204"],
|
|
["17453291362219300851", "17453291362219300851"],
|
|
["3579067163844281855", "3579067163844281855"],
|
|
["14947966455920286791", "14947966455920286791"],
|
|
["7427732046582492614", "7427732046582492614"],
|
|
["5740164892248756506", "5740164892248756506"],
|
|
["1332826926261856006", "1332826926261856006"],
|
|
["9783769699213274879", "9783769699213274879"],
|
|
["610965493415050672", "610965493415050672"],
|
|
["2719006844977195445", "2719006844977195445"],
|
|
["6216714318435021436", "6216714318435021436"],
|
|
["6607905789643980200", "6607905789643980200"],
|
|
["6356014296286997177", "6356014296286997177"],
|
|
["9364132676797000658", "9364132676797000658"],
|
|
["2144897897818889665", "2144897897818889665"],
|
|
["4429087293230617853", "4429087293230617853"],
|
|
["4869119582344974891", "4869119582344974891"],
|
|
["10774810579535113678", "10774810579535113678"],
|
|
["8874701715823059197", "8874701715823059197"],
|
|
["10726768650064519936", "10726768650064519936"],
|
|
["1414532091891796946", "1414532091891796946"],
|
|
["4695033606619472304", "4695033606619472304"],
|
|
["2687655867760432080", "2687655867760432080"],
|
|
["13357197539636705195", "13357197539636705195"],
|
|
["6496677427995561427", "6496677427995561427"],
|
|
["14266790414507645269", "14266790414507645269"],
|
|
["356097113311188124", "356097113311188124"],
|
|
["6916975301941109997", "6916975301941109997"],
|
|
["16692680330480584559", "16692680330480584559"],
|
|
["14399405948695157125", "14399405948695157125"],
|
|
["2440499489477949244", "2440499489477949244"],
|
|
["1887281427340498688", "1887281427340498688"],
|
|
["13518036756117126129", "13518036756117126129"],
|
|
["14230991133784921667", "14230991133784921667"],
|
|
["5136308455286176405", "5136308455286176405"],
|
|
["1723600768627059568", "1723600768627059568"],
|
|
["7952770155188212087", "7952770155188212087"],
|
|
["10019025356237460667", "10019025356237460667"],
|
|
["2145127387962501388", "2145127387962501388"],
|
|
["1584079589587411389", "1584079589587411389"],
|
|
["11258987159844853953", "11258987159844853953"],
|
|
["11561866893217181054", "11561866893217181054"],
|
|
["13474687949907653387", "13474687949907653387"],
|
|
["6095371813834907456", "6095371813834907456"],
|
|
["18150467649554809368", "18150467649554809368"],
|
|
["5004733818309657898", "5004733818309657898"],
|
|
["2392501512107714307", "2392501512107714307"],
|
|
["11459760137922160495", "11459760137922160495"],
|
|
["13767453219181309861", "13767453219181309861"],
|
|
["6537175134999903517", "6537175134999903517"],
|
|
["4952625066154277865", "4952625066154277865"],
|
|
["5072466424469777304", "5072466424469777304"],
|
|
["10701541148023418535", "10701541148023418535"],
|
|
["16003930449456374631", "16003930449456374631"],
|
|
["15968040539195215435", "15968040539195215435"],
|
|
["4031535778341185", "4031535778341185"],
|
|
["76909021292810000", "76909021292810000"],
|
|
["8511782327774199654", "8511782327774199654"],
|
|
["17610210144545016120", "17610210144545016120"],
|
|
["16445292591926776419", "16445292591926776419"],
|
|
["1291646302145221561", "1291646302145221561"],
|
|
["1442457212188311089", "1442457212188311089"],
|
|
["11496068855009064067", "11496068855009064067"],
|
|
["13140506676631259147", "13140506676631259147"],
|
|
["8799333060089491892", "8799333060089491892"],
|
|
["2005395271018940343", "2005395271018940343"],
|
|
["5530010100807640261", "5530010100807640261"],
|
|
["12564203290389881376", "12564203290389881376"],
|
|
["5790045502637389042", "5790045502637389042"],
|
|
["16705220096110763648", "16705220096110763648"],
|
|
["2736461361812076392", "2736461361812076392"],
|
|
["4289304391636971385", "4289304391636971385"],
|
|
["8951097513871340802", "8951097513871340802"],
|
|
["17438654421724551932", "17438654421724551932"],
|
|
["12213515046004131742", "12213515046004131742"],
|
|
["1453747633398726382", "1453747633398726382"],
|
|
["17202071677588811472", "17202071677588811472"],
|
|
["18093785744658994887", "18093785744658994887"],
|
|
["17939502845273381156", "17939502845273381156"],
|
|
["10915814180409555635", "10915814180409555635"],
|
|
["16751193251196022135", "16751193251196022135"],
|
|
["226985394752001125", "226985394752001125"],
|
|
["14295568872005596884", "14295568872005596884"],
|
|
["3647846567700639554", "3647846567700639554"],
|
|
["6632098883186730485", "6632098883186730485"],
|
|
["14665267999569933063", "14665267999569933063"],
|
|
["9549172791180711249", "9549172791180711249"],
|
|
["18160487436577682851", "18160487436577682851"],
|
|
["18422864602832668152", "18422864602832668152"],
|
|
["14580601836494217474", "14580601836494217474"],
|
|
["10284798443686326417", "10284798443686326417"],
|
|
["12611848299160216803", "12611848299160216803"],
|
|
["4348589360134172548", "4348589360134172548"],
|
|
["14278795300422962902", "14278795300422962902"],
|
|
["2426958133091695895", "2426958133091695895"],
|
|
["6769376129323220683", "6769376129323220683"],
|
|
["4696219633402751213", "4696219633402751213"],
|
|
["14720021065392934849", "14720021065392934849"],
|
|
["15620387217874601459", "15620387217874601459"],
|
|
["2122240005632543994", "2122240005632543994"],
|
|
["9079233177679205244", "9079233177679205244"],
|
|
["3136177233867221551", "3136177233867221551"],
|
|
["4356805622571075345", "4356805622571075345"],
|
|
["18167161971679675167", "18167161971679675167"],
|
|
["9665289770441918503", "9665289770441918503"],
|
|
["9310737323394612745", "9310737323394612745"],
|
|
["1907722558849565004", "1907722558849565004"],
|
|
["8661870207011785358", "8661870207011785358"],
|
|
["13463686388199976210", "13463686388199976210"],
|
|
["5987812812027802244", "5987812812027802244"],
|
|
["2716716832141695418", "2716716832141695418"],
|
|
["11455966061350231738", "11455966061350231738"],
|
|
["13803948759164185916", "13803948759164185916"],
|
|
["16905209747958122236", "16905209747958122236"],
|
|
["15477939621797286814", "15477939621797286814"],
|
|
["9676347365354456384", "9676347365354456384"],
|
|
["5572926718223665486", "5572926718223665486"],
|
|
["15565029684937380366", "15565029684937380366"],
|
|
["13983313497429406416", "13983313497429406416"],
|
|
["7326721767473908016", "7326721767473908016"],
|
|
["6186552635564120096", "6186552635564120096"],
|
|
["5332167365736555960", "5332167365736555960"],
|
|
["1932348076364311810", "1932348076364311810"],
|
|
["13436579921467083197", "13436579921467083197"],
|
|
["115558984872927196", "115558984872927196"],
|
|
["12055096432685532030", "12055096432685532030"],
|
|
["10194873288562131820", "10194873288562131820"],
|
|
["5003379007601258158", "5003379007601258158"],
|
|
["13011160564306273400", "13011160564306273400"],
|
|
["5253981878892415642", "5253981878892415642"],
|
|
["15314005682694843173", "15314005682694843173"],
|
|
["13318300299728203671", "13318300299728203671"],
|
|
["11523249059073127798", "11523249059073127798"],
|
|
["2930366914146951080", "2930366914146951080"],
|
|
["9570994799292730549", "9570994799292730549"],
|
|
["17903902946750390983", "17903902946750390983"],
|
|
["8585285616592864986", "8585285616592864986"],
|
|
["12909992481835458652", "12909992481835458652"],
|
|
["4456324125198646663", "4456324125198646663"],
|
|
["18035746331763284933", "18035746331763284933"],
|
|
["10838995385128288401", "10838995385128288401"],
|
|
["9328272813603522382", "9328272813603522382"],
|
|
["16844751189400704872", "16844751189400704872"],
|
|
["4779766067145515114", "4779766067145515114"],
|
|
["12260262922265092708", "12260262922265092708"],
|
|
["10330089601256806427", "10330089601256806427"],
|
|
["13240512002710839069", "13240512002710839069"],
|
|
["2878302962213137972", "2878302962213137972"],
|
|
["17305096487245924825", "17305096487245924825"],
|
|
["11534310342178818075", "11534310342178818075"],
|
|
["10699966164371807632", "10699966164371807632"],
|
|
["13090365847638135618", "13090365847638135618"],
|
|
["18327019333336305958", "18327019333336305958"],
|
|
["17246957429761467932", "17246957429761467932"],
|
|
["4168300463118840254", "4168300463118840254"],
|
|
["3155752586736470226", "3155752586736470226"],
|
|
["12767112926379577946", "12767112926379577946"],
|
|
["12767112926379577945", "12767112926379577945"],
|
|
["12767112926379577944", "12767112926379577944"],
|
|
["539597391935433613", "539597391935433613"],
|
|
["4260441462644718609", "4260441462644718609"],
|
|
["5710411347889049976", "5710411347889049976"],
|
|
["4820074231633336684", "4820074231633336684"],
|
|
["17416862288840688917", "17416862288840688917"],
|
|
["10494262954518364329", "10494262954518364329"],
|
|
["9069679191564665332", "9069679191564665332"],
|
|
["2258401610458869560", "2258401610458869560"],
|
|
["13930755650209307876", "13930755650209307876"],
|
|
["11433676174260562280", "11433676174260562280"],
|
|
["794677045300148389", "794677045300148389"],
|
|
["8465019896256778589", "8465019896256778589"],
|
|
["12820983751166324614", "12820983751166324614"],
|
|
["1792173081565082254", "1792173081565082254"],
|
|
["14660575997438278980", "14660575997438278980"],
|
|
["3775619814940284482", "3775619814940284482"],
|
|
["15315528242841511666", "15315528242841511666"],
|
|
["15418971198026657566", "15418971198026657566"],
|
|
["12362385333728075164", "12362385333728075164"],
|
|
["14558676297234375150", "14558676297234375150"],
|
|
["3770884168232654057", "3770884168232654057"],
|
|
["5642854669745612969", "5642854669745612969"],
|
|
["13840967104086359807", "13840967104086359807"],
|
|
["15826746350477897256", "15826746350477897256"],
|
|
["10281328026469495187", "10281328026469495187"],
|
|
["13395090490033298053", "13395090490033298053"],
|
|
["11379755786114415319", "11379755786114415319"],
|
|
["13395090490033298054", "13395090490033298054"],
|
|
["52965260872066594", "52965260872066594"],
|
|
["13395090490033298055", "13395090490033298055"],
|
|
["16311240527652890185", "16311240527652890185"],
|
|
["13395090490033298048", "13395090490033298048"],
|
|
["10416675753846052820", "10416675753846052820"],
|
|
["10870326770135318632", "10870326770135318632"],
|
|
["9849255611781661766", "9849255611781661766"],
|
|
["15089673526376704000", "15089673526376704000"],
|
|
["7334590003367140728", "7334590003367140728"],
|
|
["8047407490360099997", "8047407490360099997"],
|
|
["7481369627170965249", "7481369627170965249"],
|
|
["12678995355646913794", "12678995355646913794"],
|
|
["8150757495320767438", "8150757495320767438"],
|
|
["1563000735452048481", "1563000735452048481"],
|
|
["2177163467259059390", "2177163467259059390"],
|
|
["8354610035408386364", "8354610035408386364"],
|
|
["10326854087765135118", "10326854087765135118"],
|
|
["9341123312921340809", "9341123312921340809"],
|
|
["10847791012687566409", "10847791012687566409"],
|
|
["16931516176056010072", "16931516176056010072"],
|
|
["2904513105424639944", "2904513105424639944"],
|
|
["12897149699927481786", "12897149699927481786"],
|
|
["6467835005107478776", "6467835005107478776"],
|
|
["14459549022698874858", "14459549022698874858"],
|
|
["4569996873306532853", "4569996873306532853"],
|
|
["15787811439656916781", "15787811439656916781"],
|
|
["3479985004368505532", "3479985004368505532"],
|
|
["11924036445342039073", "11924036445342039073"],
|
|
["17083075309188537982", "17083075309188537982"],
|
|
["6223812290825330828", "6223812290825330828"],
|
|
["4659475830084401772", "4659475830084401772"],
|
|
["15406244923058331621", "15406244923058331621"],
|
|
["16493849359497067420", "16493849359497067420"],
|
|
["17071616392376476498", "17071616392376476498"],
|
|
["8789155632255658930", "8789155632255658930"],
|
|
["8789155632255658929", "8789155632255658929"],
|
|
["16761062852220650123", "16761062852220650123"],
|
|
["13680387491084579337", "13680387491084579337"],
|
|
["13629675719518743775", "13629675719518743775"],
|
|
["16995292118619096832", "16995292118619096832"],
|
|
["16995292118619096835", "16995292118619096835"],
|
|
["17661224141336936072", "17661224141336936072"],
|
|
["Soldier", "6250295835888607464"],
|
|
["4785232584776821780", "4785232584776821780"],
|
|
["8325078452854398663", "8325078452854398663"],
|
|
["Soldier 2", "14810942602154599304"],
|
|
["15537935386505478516", "15537935386505478516"],
|
|
["14542896111772414249", "14542896111772414249"],
|
|
["1004936559507116777", "1004936559507116777"],
|
|
["17768715204575582402", "17768715204575582402"],
|
|
["5140428376010098898", "5140428376010098898"],
|
|
["13030487758480911474", "13030487758480911474"],
|
|
["8517193202904471883", "8517193202904471883"],
|
|
["16615660136312726667", "16615660136312726667"],
|
|
["18176079015714478528", "18176079015714478528"],
|
|
["10389704905510773113", "10389704905510773113"],
|
|
["579776244618355786", "579776244618355786"],
|
|
["579776244618355785", "579776244618355785"],
|
|
["579776244618355784", "579776244618355784"],
|
|
["1535284355884926846", "1535284355884926846"],
|
|
["274192713505880275", "274192713505880275"],
|
|
["274192713505880272", "274192713505880272"],
|
|
["274192713505880273", "274192713505880273"],
|
|
["6518661514554611993", "6518661514554611993"],
|
|
["10878721536812270323", "10878721536812270323"],
|
|
["10878721536812270320", "10878721536812270320"],
|
|
["10878721536812270321", "10878721536812270321"],
|
|
["18289911092104089017", "18289911092104089017"],
|
|
["1629919081398497304", "1629919081398497304"],
|
|
["1629919081398497307", "1629919081398497307"],
|
|
["1629919081398497306", "1629919081398497306"],
|
|
["9014619049716020180", "9014619049716020180"],
|
|
["1371903433414768848", "1371903433414768848"],
|
|
["4421906283530528976", "4421906283530528976"],
|
|
["9415395235626466437", "9415395235626466437"],
|
|
["3150418645809391526", "3150418645809391526"],
|
|
["13830328333493312734", "13830328333493312734"],
|
|
["8302390786227351388", "8302390786227351388"],
|
|
["12153497947363106373", "12153497947363106373"],
|
|
["1066753174423346738", "1066753174423346738"],
|
|
["18140919650868410542", "18140919650868410542"],
|
|
["16623800688473606569", "16623800688473606569"],
|
|
["4054493280189090153", "4054493280189090153"],
|
|
["16734853567251406712", "16734853567251406712"],
|
|
["2577289008172547816", "2577289008172547816"],
|
|
["4238203069498394565", "4238203069498394565"],
|
|
["347379656189297481", "347379656189297481"],
|
|
["8041235032821739051", "8041235032821739051"],
|
|
["55269754046825831", "55269754046825831"],
|
|
["13438003492336422472", "13438003492336422472"],
|
|
["2210239819329553611", "2210239819329553611"],
|
|
["9757176112130931660", "9757176112130931660"],
|
|
["15889183057334076086", "15889183057334076086"],
|
|
["20295608275714734", "20295608275714734"],
|
|
["217347032778385668", "217347032778385668"],
|
|
["4579877462382568038", "4579877462382568038"],
|
|
["8628907385864201585", "8628907385864201585"],
|
|
["3454553246826751441", "3454553246826751441"],
|
|
["7835967189800106968", "7835967189800106968"],
|
|
["5948605956079565542", "5948605956079565542"],
|
|
["12357060410761293756", "12357060410761293756"],
|
|
["16883237727867662471", "16883237727867662471"],
|
|
["12466969206891691897", "12466969206891691897"],
|
|
["3934508888876282519", "3934508888876282519"],
|
|
["3931674347899322298", "3931674347899322298"],
|
|
["14727158025441480742", "14727158025441480742"],
|
|
["17505243899642717263", "17505243899642717263"],
|
|
["13558624008725611429", "13558624008725611429"],
|
|
["2346877150545681420", "2346877150545681420"],
|
|
["13776183306282419149", "13776183306282419149"],
|
|
["13325979907364402808", "13325979907364402808"],
|
|
["11634111351864455673", "11634111351864455673"],
|
|
["3652013867755215790", "3652013867755215790"],
|
|
["7290037520646242756", "7290037520646242756"],
|
|
["17321633415121974978", "17321633415121974978"],
|
|
["6283716564575010095", "6283716564575010095"],
|
|
["7739393322830909965", "7739393322830909965"],
|
|
["10397004695834886020", "10397004695834886020"],
|
|
["12914147333526192522", "12914147333526192522"],
|
|
["397485609884554097", "397485609884554097"],
|
|
["5832435516058247690", "5832435516058247690"],
|
|
["2292074507992088412", "2292074507992088412"],
|
|
["6260237776654469784", "6260237776654469784"],
|
|
["6260237776654469787", "6260237776654469787"],
|
|
["7285613343617476887", "7285613343617476887"],
|
|
["7285613343617476884", "7285613343617476884"],
|
|
["8778858182461700611", "8778858182461700611"],
|
|
["8778858182461700608", "8778858182461700608"],
|
|
["9594947159687605848", "9594947159687605848"],
|
|
["9594947159687605851", "9594947159687605851"],
|
|
["18286541209634500581", "18286541209634500581"],
|
|
["616188649082383598", "616188649082383598"],
|
|
["616188649082383597", "616188649082383597"],
|
|
["11872334792980177561", "11872334792980177561"],
|
|
["11872334792980177562", "11872334792980177562"],
|
|
["17483825958722549231", "17483825958722549231"],
|
|
["17483825958722549228", "17483825958722549228"],
|
|
["4861856110399906438", "4861856110399906438"],
|
|
["2450655600630297712", "2450655600630297712"],
|
|
["10492004853150834157", "10492004853150834157"],
|
|
["16607581246227973763", "16607581246227973763"],
|
|
["14135279401825211749", "14135279401825211749"],
|
|
["10932138729579795918", "10932138729579795918"],
|
|
["16722626350073978114", "16722626350073978114"],
|
|
["11853598485693470782", "11853598485693470782"],
|
|
["3714560044465894035", "3714560044465894035"],
|
|
["7996678337285581633", "7996678337285581633"],
|
|
["12405271396980572450", "12405271396980572450"],
|
|
["17343720422792967271", "17343720422792967271"],
|
|
["10316532439937818706", "10316532439937818706"],
|
|
["3821191311977136838", "3821191311977136838"],
|
|
["1177488269831737312", "1177488269831737312"],
|
|
["10130264073292216907", "10130264073292216907"],
|
|
["12178268501500987417", "12178268501500987417"],
|
|
["12438011604865960768", "12438011604865960768"],
|
|
["57159430529787361", "57159430529787361"],
|
|
["6811213272401984821", "6811213272401984821"],
|
|
["4375294867090788588", "4375294867090788588"],
|
|
["3247589622278531515", "3247589622278531515"],
|
|
["12462227796666818972", "12462227796666818972"],
|
|
["2073336789034438023", "2073336789034438023"],
|
|
["7917298044276721918", "7917298044276721918"],
|
|
["13094912212749911979", "13094912212749911979"],
|
|
["13094912212749911976", "13094912212749911976"],
|
|
["13068109067590815715", "13068109067590815715"],
|
|
["18004706574632631944", "18004706574632631944"],
|
|
["18004706574632631947", "18004706574632631947"],
|
|
["18004706574632631946", "18004706574632631946"],
|
|
["8729852093912559340", "8729852093912559340"],
|
|
["4147448264351312578", "4147448264351312578"],
|
|
["4529989323387773452", "4529989323387773452"],
|
|
["16986762871902887977", "16986762871902887977"],
|
|
["10313906418171256119", "10313906418171256119"],
|
|
["10313906418171256116", "10313906418171256116"],
|
|
["10313906418171256117", "10313906418171256117"],
|
|
["15393509774613123528", "15393509774613123528"],
|
|
["12870671038048701081", "12870671038048701081"],
|
|
["10586668357068928136", "10586668357068928136"],
|
|
["13044095798616637017", "13044095798616637017"],
|
|
["4575834668620240517", "4575834668620240517"],
|
|
["15626484639446071476", "15626484639446071476"],
|
|
["8992924591831351961", "8992924591831351961"],
|
|
["18194279396618944821", "18194279396618944821"],
|
|
["9925262196944571947", "9925262196944571947"],
|
|
["1026353915027201915", "1026353915027201915"],
|
|
["13831811649451230464", "13831811649451230464"],
|
|
["7170061001354055460", "7170061001354055460"],
|
|
["1551804090088397249", "1551804090088397249"],
|
|
["7291759702022001261", "7291759702022001261"],
|
|
["8333054699705809760", "8333054699705809760"],
|
|
["14956913293616264111", "14956913293616264111"],
|
|
["1536351999099987729", "1536351999099987729"],
|
|
["1536351999099987730", "1536351999099987730"],
|
|
["1536351999099987731", "1536351999099987731"],
|
|
["17572544793829473538", "17572544793829473538"],
|
|
["10038946071570501913", "10038946071570501913"],
|
|
["8320120982502207206", "8320120982502207206"],
|
|
["3380409449426378840", "3380409449426378840"],
|
|
["16399775801885749153", "16399775801885749153"],
|
|
["16399775801885749154", "16399775801885749154"],
|
|
["12219836998225073088", "12219836998225073088"],
|
|
["12219836998225073091", "12219836998225073091"],
|
|
["12219836998225073090", "12219836998225073090"],
|
|
["13209257413612274039", "13209257413612274039"],
|
|
["11480293676725852481", "11480293676725852481"],
|
|
["379104698356248028", "379104698356248028"],
|
|
["16566150987116802956", "16566150987116802956"],
|
|
["8534006029189195657", "8534006029189195657"],
|
|
["8048090371117565716", "8048090371117565716"],
|
|
["10724191045704356100", "10724191045704356100"],
|
|
["17833530803898270366", "17833530803898270366"],
|
|
["16937983534905363139", "16937983534905363139"],
|
|
["5188352381928962727", "5188352381928962727"],
|
|
["1315222061370619157", "1315222061370619157"],
|
|
["1081578387319457275", "1081578387319457275"],
|
|
["11961030260496936628", "11961030260496936628"],
|
|
["16815984095211541561", "16815984095211541561"],
|
|
["4085618162369155018", "4085618162369155018"],
|
|
["239258193276473043", "239258193276473043"],
|
|
["11929002120441873680", "11929002120441873680"],
|
|
["2207756004386005663", "2207756004386005663"],
|
|
["14671041135041111488", "14671041135041111488"],
|
|
["15921221240877561923", "15921221240877561923"],
|
|
["13637741321785036271", "13637741321785036271"],
|
|
["12666953144648481512", "12666953144648481512"],
|
|
["Naked Woman", "16736525901666633944"],
|
|
["1022096708193737703", "1022096708193737703"],
|
|
["7667738719900356994", "7667738719900356994"],
|
|
["566461733170664661", "566461733170664661"],
|
|
["17319108942203414088", "17319108942203414088"],
|
|
["10090666253179731817", "10090666253179731817"],
|
|
["5774027757749514320", "5774027757749514320"],
|
|
["6339348003549305624", "6339348003549305624"],
|
|
["Alien Business Casual", "8388971871974595851"],
|
|
["9007986855659215603", "9007986855659215603"],
|
|
["Alien Casual", "18005037647871499661"],
|
|
["826837806766767337", "826837806766767337"],
|
|
["5283955983925256904", "5283955983925256904"],
|
|
["16921899030793285734", "16921899030793285734"],
|
|
["15016821738809590871", "15016821738809590871"],
|
|
["16533218504132540758", "16533218504132540758"],
|
|
["15696405018747190185", "15696405018747190185"],
|
|
["15696405018747190186", "15696405018747190186"],
|
|
["16976381919214741576", "16976381919214741576"],
|
|
["3156907076928507290", "3156907076928507290"],
|
|
["8979228762247653563", "8979228762247653563"],
|
|
["5724839632220394933", "5724839632220394933"],
|
|
["16822725970133295136", "16822725970133295136"],
|
|
["11561464596493593282", "11561464596493593282"],
|
|
["6568471822349616645", "6568471822349616645"],
|
|
["18127344070905746883", "18127344070905746883"],
|
|
["16544300706664677501", "16544300706664677501"],
|
|
["12898518403974929556", "12898518403974929556"],
|
|
["8959302956539513017", "8959302956539513017"],
|
|
["11393483504223640100", "11393483504223640100"],
|
|
["2887528894563695287", "2887528894563695287"],
|
|
["5779021366944226720", "5779021366944226720"],
|
|
["4335852010440074285", "4335852010440074285"],
|
|
["12452025657784573515", "12452025657784573515"],
|
|
["3505027072273395613", "3505027072273395613"],
|
|
["10020247640556250001", "10020247640556250001"],
|
|
["18052508915464550190", "18052508915464550190"],
|
|
["9122822587309408990", "9122822587309408990"],
|
|
["16481710640443320815", "16481710640443320815"],
|
|
["11988485590947872585", "11988485590947872585"],
|
|
["12431048959770553915", "12431048959770553915"],
|
|
["10909275294017889274", "10909275294017889274"],
|
|
["5619714723804035143", "5619714723804035143"],
|
|
["5813009724603496876", "5813009724603496876"],
|
|
["17424862553348406203", "17424862553348406203"],
|
|
["13169477389319427425", "13169477389319427425"],
|
|
["3381895996960714366", "3381895996960714366"],
|
|
["8744173633588895903", "8744173633588895903"],
|
|
["162045152965457469", "162045152965457469"],
|
|
["5411887678996507927", "5411887678996507927"],
|
|
["18438405710224167545", "18438405710224167545"],
|
|
["9061658167122474163", "9061658167122474163"],
|
|
["14955060646769042026", "14955060646769042026"],
|
|
["3054842345513810147", "3054842345513810147"],
|
|
["13836174719938865747", "13836174719938865747"],
|
|
["14629604993471516469", "14629604993471516469"],
|
|
["15884374663729142091", "15884374663729142091"],
|
|
["2387612145544640669", "2387612145544640669"],
|
|
["8616840809290409589", "8616840809290409589"],
|
|
["1088293565810577084", "1088293565810577084"],
|
|
["3616190151658564753", "3616190151658564753"],
|
|
["1990951391909351711", "1990951391909351711"],
|
|
["2134718085290862304", "2134718085290862304"],
|
|
["366731289147638724", "366731289147638724"],
|
|
["10837693472770844718", "10837693472770844718"],
|
|
["9865743429135228382", "9865743429135228382"],
|
|
["263840739910519010", "263840739910519010"],
|
|
["9266895197749615343", "9266895197749615343"],
|
|
["15910132167598096203", "15910132167598096203"],
|
|
["12731406432773691977", "12731406432773691977"],
|
|
["2559897658689081768", "2559897658689081768"],
|
|
["17735312823319945572", "17735312823319945572"],
|
|
["17735312823319945573", "17735312823319945573"],
|
|
["15881029382006486252", "15881029382006486252"],
|
|
["3807332613717989847", "3807332613717989847"],
|
|
["4127572507620672955", "4127572507620672955"],
|
|
["459720584210653302", "459720584210653302"],
|
|
["17601177431719809668", "17601177431719809668"],
|
|
["3678886835408494067", "3678886835408494067"],
|
|
["10035968823387678699", "10035968823387678699"],
|
|
["9419291286336730264", "9419291286336730264"],
|
|
["18192967712081900416", "18192967712081900416"],
|
|
["9899437465143760102", "9899437465143760102"],
|
|
["6099428270473016389", "6099428270473016389"],
|
|
["6485858301902395827", "6485858301902395827"],
|
|
["15301841333075480366", "15301841333075480366"],
|
|
["15301841333075480365", "15301841333075480365"],
|
|
["15301841333075480364", "15301841333075480364"],
|
|
["15301841333075480363", "15301841333075480363"],
|
|
["15301841333075480362", "15301841333075480362"],
|
|
["7281928829844230127", "7281928829844230127"],
|
|
["7281928829844230126", "7281928829844230126"],
|
|
["7281928829844230125", "7281928829844230125"],
|
|
["7281928829844230124", "7281928829844230124"],
|
|
["7281928829844230115", "7281928829844230115"],
|
|
["Morpheus 2", "6303312747874636788"],
|
|
["10765076461170306051", "10765076461170306051"],
|
|
["6123341507605808187", "6123341507605808187"],
|
|
["5736334127114032067", "5736334127114032067"],
|
|
["3137266248813124920", "3137266248813124920"],
|
|
["9160102650350606806", "9160102650350606806"],
|
|
["2363938044784167146", "2363938044784167146"],
|
|
["12338535043757158631", "12338535043757158631"],
|
|
["5968744486136197976", "5968744486136197976"],
|
|
["13000312349095225370", "13000312349095225370"],
|
|
["16386064670794509699", "16386064670794509699"],
|
|
["3760989380864404893", "3760989380864404893"],
|
|
["18206787935965019486", "18206787935965019486"],
|
|
["16392550457391172727", "16392550457391172727"],
|
|
["8350658026273228473", "8350658026273228473"],
|
|
["2149085164051459734", "2149085164051459734"],
|
|
["10279424241913748903", "10279424241913748903"],
|
|
["14358151157626417068", "14358151157626417068"],
|
|
["8964378562541063571", "8964378562541063571"],
|
|
["3786350083946386094", "3786350083946386094"],
|
|
["3659576093535358223", "3659576093535358223"],
|
|
["2215551808925156719", "2215551808925156719"],
|
|
["Alien Suspenders", "6312822482128051415"],
|
|
["Tommy Suit Black Pinstripe", "11752997676427210383"],
|
|
["Tommy Suit Black", "3480140893589570539"],
|
|
["Tommy Loose Tie", "16070732163520294489"],
|
|
["Tommy Waiscoast Bandage", "6742594128522071705"],
|
|
["Tommy Coat Mask", "3917383617036511552"],
|
|
["Tommy Coat Mask", "4058173760536877076"],
|
|
["Tommy Coat", "8716886830962681683"],
|
|
["Tommy Jacket Black Cats", "13748444378372862804"],
|
|
["Tommy Injured", "14368462942554149644"],
|
|
["Tommy Injured", "9194200439145702445"],
|
|
["Tommy Cabby Cap", "335218123840277515"],
|
|
["Tommy Cabby Cap", "17815221523794770632"],
|
|
["Tommy Cabby Tousled Hair", "8827299925644236209"],
|
|
["Tommy Cabby", "4094849528693213019"],
|
|
["Tommy Suit White", "12016253415423939558"],
|
|
["Tommy After Race", "11254217090474872233"],
|
|
["Tommy Jacket Leather", "17731542356960612003"],
|
|
["Tommy Jacket Leather Tousled Hair", "878415554652844984"],
|
|
["Tommy Jacket Leather", "2804352022491567379"],
|
|
["Tommy Toulsed Hair", "18305951604324464004"],
|
|
["Tommy Funeral", "11851924148550862715"],
|
|
["Tommy Tousled Hair", "6853687263977593992"],
|
|
["Tommy Suit Black Pinstripe Hat", "16117163914401974235"],
|
|
["Tommy Suit Black Pinstripe", "11430179736319373963"],
|
|
["Tommy Sarah's Coat", "7641433750537482214"],
|
|
["Tommy Suit Black Hat", "3850282151875230876"],
|
|
["Tommy Suit Black", "3515821436918759774"],
|
|
["Tommy Waistcoat", "4015527072900816379"],
|
|
["Tommy Coat", "4280710535630713749"],
|
|
["Tommy Coat", "8682542360217944873"],
|
|
["Tommy Coat Dirty Hat", "12217062403504643632"],
|
|
["Tommy Prison", "14468496324215580034"],
|
|
["Tommy Jacket Lincoln", "14856360233035791383"],
|
|
["Tommy Old", "723816091092673272"],
|
|
["Tommy Dead", "3233103303920457197"],
|
|
["Tommy Wedding", "5989957506263014808"],
|
|
["Tommy Racer", "11741887456410088682"],
|
|
["Tommy Mechanic", "9670944471504006139"],
|
|
["Tommy Cowboy", "10671293300964375473"],
|
|
["Tommy Clown", "9670944471504006136"],
|
|
["Tommy Pyjamas", "9670944471504006137"],
|
|
["Tommy Boxer", "9670944471504006142"],
|
|
["Tommy Policeman", "9670944471504006143"],
|
|
["Tommy Hobo", "9670944471504006140"],
|
|
["Tommy Sheriff", "9670944471504006141"],
|
|
["Tommy Kitchen Worker", "9670944471504006130"],
|
|
["Tommy Elevator Operator", "9670944471504006131"],
|
|
["Tommy Sailor", "16967152599435507262"],
|
|
["Tommy Mask", "13924112833570469373"],
|
|
["Tommy After Race Dirty", "167753269368481471"],
|
|
["Tommy Coat Tousled Hair", "6813979458946019636"],
|
|
["Tommy Jacket Vito", "13505967354892301766"],
|
|
["Frank Colletti Gray Suit", "7746556505208651988"],
|
|
|
|
["Frank Colletti Tuxedo", "18148755681906044732"],
|
|
["Don Morello Dead", "289071390020109188"],
|
|
["Morello Black Suit", "9160279205334641930"],
|
|
["Morello Suit Fedora", "2058468319336403026"],
|
|
["Morello Vest", "947202474473687425"],
|
|
["Morello Suit", "6636500423116836797"],
|
|
["Morello Trenchcoat", "15832791386910467620"],
|
|
["Paulie Suit Grey", "13642706039568918776"],
|
|
["Paulie Mask", "16022918831623042941"],
|
|
["Paulie Worker", "9386106012530718334"],
|
|
["Paulie Drunk", "10642401698854158763"],
|
|
["Paulie Funeral", "15207496646078166976"],
|
|
["Paulie Suit Grey Hat", "590244199216663940"],
|
|
["Paulie Suit Grey", "14108657789362803942"],
|
|
["Paulie Injured", "6269043539636191697"],
|
|
["Paulie Suit Purple", "16002116250561961955"],
|
|
["Paulie Suit Purple", "8396309354946974547"],
|
|
["Paulie Dead", "11492461468697419297"],
|
|
["Paulie Coat", "7202570157490898368"],
|
|
["Paulie Coat Dirty", "3271063050486569409"],
|
|
["Paulie Coat", "10376622072443333557"],
|
|
["Paulie Gloves", "13009826472590803092"],
|
|
["Salieri Dirty", "4782123645117034125"],
|
|
["Salieri Dirty 2", "10007325207489113729"],
|
|
["Salieri Blue Suit", "4434705164943065973"],
|
|
["Salieri Black Suit", "9131991864791239005"],
|
|
["Salieri Prison", "12052891179171711687"],
|
|
["Salieri Vest with Hat", "15245828195973029287"],
|
|
["Salieri Brown Suit", "14287119254782269130"],
|
|
["Salieri Brown Suit with Hat", "6229109091840387801"],
|
|
["Salieri Vest", "17047363682458951493"],
|
|
["Young Salieri", "3076864278674386476"],
|
|
["Salieri", "10633531182578723857"],
|
|
["Salieri Casual", "10485949222589090317"],
|
|
["Sam Coat", "1831714656206582093"],
|
|
["Sam Suit Black", "13001557516327163697"],
|
|
["Sam Suit Black Nose Blood", "3709751892827178341"],
|
|
["Sam Suit Black Nose Blood", "11200479255713381665"],
|
|
["Sam Worker", "8047835568679831565"],
|
|
["Sam Bowtie", "17385650450556484618"],
|
|
["Sam Suit Black", "10412900946287850973"],
|
|
["Sam Suit Black", "17284863379429077445"],
|
|
["Sam Suit Black Tie", "3862626285915149378"],
|
|
["Sam Suit Black Tie", "3103293048525087796"],
|
|
["Sam Suit Grey Hat", "10072892292635193199"],
|
|
["Sam Suit Grey", "9295979687507577551"],
|
|
["Sam Suit Grey Tie", "13761564606778186329"],
|
|
["Sam Shot", "2386061358181370162"],
|
|
["Sam Shot Before Death", "7284307295514790937"],
|
|
["Sam Dead", "2499246060896034493"],
|
|
["Sam Dead Last Shot", "2499246060896034494"],
|
|
["Sam Coat", "15319718401459967539"],
|
|
["Sam Coat Hat", "17109896493656624569"],
|
|
["Sam Coat Injured", "9792163288310466589"],
|
|
["Sam Coat", "5235057805407791738"],
|
|
["Sarah", "18019093321267921069"],
|
|
["16420551577790526809", "16420551577790526809"],
|
|
["Sarah Funeral", "15418888693963429"],
|
|
["Sarah", "5027479172209091356"],
|
|
["Sarah Old", "14762237699346779514"],
|
|
["Sarah Wedding", "5657876548137270906"],
|
|
["Sergio Morello", "6083148427515125177"],
|
|
["Sergio Morello 2", "9343702317784824893"],
|
|
["Sergio Morello 3", "8594503204189255411"],
|
|
["Alice Colletti", "7528446853309340932"],
|
|
["3167701643874425891", "3167701643874425891"],
|
|
["10111907876051799563", "10111907876051799563"],
|
|
["11119211938142555845", "11119211938142555845"],
|
|
["18347203710444055648", "18347203710444055648"],
|
|
["3019234388490896949", "3019234388490896949"],
|
|
["15535985153609353396", "15535985153609353396"],
|
|
["12451120763794033355", "12451120763794033355"],
|
|
["1211935116290280070", "1211935116290280070"],
|
|
["Sarah Wedding", "5659048740130284306"],
|
|
["Marco Black Suit", "15093412451486580152"],
|
|
["Marco Brown Suit", "10436520633216775205"],
|
|
["14441923554648457671", "14441923554648457671"],
|
|
["2564492254628197927", "2564492254628197927"],
|
|
["11115724447399114780", "11115724447399114780"],
|
|
["10404369748591264874", "10404369748591264874"],
|
|
["16370706788370657832", "16370706788370657832"],
|
|
["16370706788370657835", "16370706788370657835"],
|
|
["6244408710180428696", "6244408710180428696"],
|
|
["Dino Black Suit", "6286021586556089444"],
|
|
["10161549528788364195", "10161549528788364195"],
|
|
["609562290606716424", "609562290606716424"],
|
|
["4002332748514316698", "4002332748514316698"],
|
|
["Joe", "6818198200944188962"],
|
|
["9430197481212574172", "9430197481212574172"],
|
|
["13223037813791540888", "13223037813791540888"],
|
|
["Johnny with Sling", "3149978563172650701"],
|
|
["9552471828236470864", "9552471828236470864"],
|
|
["6216538821197631095", "6216538821197631095"],
|
|
["Julia Angelo", "12649441885922157618"],
|
|
["Julia Angelo Wedding", "5862592766723063266"],
|
|
["6479323716274092897", "6479323716274092897"],
|
|
["6782438337027919308", "6782438337027919308"],
|
|
["11438170789441371615", "11438170789441371615"],
|
|
["6812533517036781224", "6812533517036781224"],
|
|
["10933707408469415572", "10933707408469415572"],
|
|
["15960116178036867686", "15960116178036867686"],
|
|
["6521488485601938522", "6521488485601938522"],
|
|
["10694427477994243989", "10694427477994243989"],
|
|
["1229182968149137813", "1229182968149137813"],
|
|
["Michelle Prostitute", "8947243216859558676"],
|
|
["Michelle Prostitute Crying", "2108602865481712151"],
|
|
["Michelle", "6603278047043370615"],
|
|
["Detective Norman", "15573030686420367319"],
|
|
["Detective Norman Trenchcoat", "4414880371196099855"],
|
|
["Pepe", "284802801607137356"],
|
|
["3678401349034986978", "3678401349034986978"],
|
|
["1832069038562990125", "1832069038562990125"],
|
|
["9973378863964952597", "9973378863964952597"],
|
|
["15562169717652752041", "15562169717652752041"],
|
|
["1673255918872327101", "1673255918872327101"],
|
|
["16570487051922508163", "16570487051922508163"],
|
|
["12892483054415221661", "12892483054415221661"],
|
|
["1631135709959395454", "1631135709959395454"],
|
|
["4397856946762989447", "4397856946762989447"],
|
|
["2454841561763346372", "2454841561763346372"],
|
|
["11720296844729285634", "11720296844729285634"],
|
|
["Vincenzo Black Suit", "3890657591489938230"],
|
|
["Vito", "17418094473853767692"],
|
|
["William Gates", "14802118242415619742"],
|
|
["William Gates 2", "8236499718840061448"],
|
|
["William Gates Bloody Nose", "15895660326415024814"],
|
|
["William Gates Shot", "4432538024732571991"],
|
|
["11767045817820392431", "11767045817820392431"],
|
|
["16534109181117189385", "16534109181117189385"],
|
|
["1563547300189780106", "1563547300189780106"],
|
|
["5692746007499922028", "5692746007499922028"],
|
|
["17391686895717135960", "17391686895717135960"],
|
|
["17298343995054525870", "17298343995054525870"],
|
|
["10388478790157881185", "10388478790157881185"],
|
|
["8575311684748139020", "8575311684748139020"],
|
|
["210393155620302670", "210393155620302670"],
|
|
["11789441715757039209", "11789441715757039209"],
|
|
["3041295145653909707", "3041295145653909707"],
|
|
["12861631077148634522", "12861631077148634522"],
|
|
["9684582114981164596", "9684582114981164596"],
|
|
["9948830492135053429", "9948830492135053429"],
|
|
["4535245574278008669", "4535245574278008669"],
|
|
["15834877732272686933", "15834877732272686933"],
|
|
["13551067983719635408", "13551067983719635408"],
|
|
["6103196117368888385", "6103196117368888385"],
|
|
["6103196117368888387", "6103196117368888387"],
|
|
["13295442689747831551", "13295442689747831551"],
|
|
["9383525319788064636", "9383525319788064636"],
|
|
["9383525319788064639", "9383525319788064639"],
|
|
["15339225915368792693", "15339225915368792693"],
|
|
["2276102693698700566", "2276102693698700566"],
|
|
["4605798649167191545", "4605798649167191545"],
|
|
["2592872255687024025", "2592872255687024025"],
|
|
["17614611704014227392", "17614611704014227392"],
|
|
["15521537500979509047", "15521537500979509047"],
|
|
["9698585273688872059", "9698585273688872059"],
|
|
["17014253534660874659", "17014253534660874659"],
|
|
["16768269299473984111", "16768269299473984111"],
|
|
["15064153022119092017", "15064153022119092017"],
|
|
["2905445308008368991", "2905445308008368991"],
|
|
["3866339953200721897", "3866339953200721897"],
|
|
["9145937569420160112", "9145937569420160112"],
|
|
["12103957662993937740", "12103957662993937740"],
|
|
["18123544694593650721", "18123544694593650721"],
|
|
["1178186436890964745", "1178186436890964745"],
|
|
["3108863559417950544", "3108863559417950544"],
|
|
["7522919118116352284", "7522919118116352284"],
|
|
["386040994318775649", "386040994318775649"],
|
|
["3921758926227502050", "3921758926227502050"],
|
|
["14705137249502706872", "14705137249502706872"],
|
|
["4191941771059189191", "4191941771059189191"],
|
|
["14992959217740119716", "14992959217740119716"],
|
|
["12403526107247250387", "12403526107247250387"],
|
|
["734975455587457944", "734975455587457944"],
|
|
["7484955300523340352", "7484955300523340352"],
|
|
["6222711793476726737", "6222711793476726737"],
|
|
["9050397686932401702", "9050397686932401702"],
|
|
["6966183689716098165", "6966183689716098165"],
|
|
["16200968898906898604", "16200968898906898604"],
|
|
["11207439073385920869", "11207439073385920869"],
|
|
["7809158438908201118", "7809158438908201118"],
|
|
["7809158438908201117", "7809158438908201117"],
|
|
["6324853246965552765", "6324853246965552765"],
|
|
["6324853246965552766", "6324853246965552766"],
|
|
["1551543846526095303", "1551543846526095303"],
|
|
["7505600169811303721", "7505600169811303721"],
|
|
["1565063574719050566", "1565063574719050566"],
|
|
["14220825477025138095", "14220825477025138095"],
|
|
["8004201732972722085", "8004201732972722085"],
|
|
["12931121226612715376", "12931121226612715376"],
|
|
["8049034395642254022", "8049034395642254022"],
|
|
["4760865473742717682", "4760865473742717682"],
|
|
["12187153570986091183", "12187153570986091183"],
|
|
["18340888743431745068", "18340888743431745068"],
|
|
["6110808587019176512", "6110808587019176512"],
|
|
["2660523820107087161", "2660523820107087161"],
|
|
["2967440805356525441", "2967440805356525441"],
|
|
["3473945503943192550", "3473945503943192550"],
|
|
["185922642960386111", "185922642960386111"],
|
|
["17671032387245493711", "17671032387245493711"],
|
|
["17671032387245493708", "17671032387245493708"],
|
|
["5386693899702376168", "5386693899702376168"],
|
|
["5386693899702376171", "5386693899702376171"],
|
|
["5386693899702376170", "5386693899702376170"],
|
|
["5386693899702376173", "5386693899702376173"],
|
|
["5386693899702376172", "5386693899702376172"],
|
|
["5386693899702376175", "5386693899702376175"],
|
|
["5386693899702376174", "5386693899702376174"],
|
|
["5386693899702376161", "5386693899702376161"],
|
|
["12099040643707291891", "12099040643707291891"],
|
|
["15713168021365185121", "15713168021365185121"],
|
|
["10732328210751690096", "10732328210751690096"],
|
|
["227600468610179874", "227600468610179874"],
|
|
["227600468610179873", "227600468610179873"],
|
|
["16359707536247737460", "16359707536247737460"],
|
|
["12620880431598227217", "12620880431598227217"],
|
|
["5549492986246402644", "5549492986246402644"],
|
|
["16115098207703556328", "16115098207703556328"],
|
|
["16115098207703556331", "16115098207703556331"],
|
|
["16115098207703556330", "16115098207703556330"],
|
|
["10233337438122932515", "10233337438122932515"],
|
|
["1334470894131322563", "1334470894131322563"],
|
|
["7061978129011174209", "7061978129011174209"],
|
|
["10015079435516402972", "10015079435516402972"],
|
|
["10015079435516402975", "10015079435516402975"],
|
|
["7593509736352141232", "7593509736352141232"],
|
|
["17634821422008381602", "17634821422008381602"],
|
|
["15144046279884489930", "15144046279884489930"],
|
|
["3047216969607868754", "3047216969607868754"],
|
|
["18326430877497727379", "18326430877497727379"],
|
|
["16749594062933681232", "16749594062933681232"],
|
|
["18113272022531861981", "18113272022531861981"],
|
|
["17426548647288955701", "17426548647288955701"],
|
|
["16560265267563563209", "16560265267563563209"],
|
|
["1334992908165464963", "1334992908165464963"],
|
|
["4877271064211004074", "4877271064211004074"],
|
|
["5103121562645992837", "5103121562645992837"],
|
|
["5652264584781332372", "5652264584781332372"],
|
|
["13814971719532876713", "13814971719532876713"],
|
|
["2628388612032444030", "2628388612032444030"],
|
|
["1799717154991878964", "1799717154991878964"],
|
|
["15381629103558176514", "15381629103558176514"],
|
|
["13048648733610809944", "13048648733610809944"],
|
|
["13626532004234445", "13626532004234445"],
|
|
["13626532004234446", "13626532004234446"],
|
|
["9456023298412524691", "9456023298412524691"],
|
|
["4595539045865046588", "4595539045865046588"],
|
|
["4595539045865046591", "4595539045865046591"],
|
|
["4595539045865046590", "4595539045865046590"],
|
|
["4595539045865046585", "4595539045865046585"],
|
|
["5448677295038457800", "5448677295038457800"],
|
|
["17640888734777619586", "17640888734777619586"],
|
|
["17640888734777619585", "17640888734777619585"],
|
|
["17640888734777619584", "17640888734777619584"],
|
|
["17640888734777619591", "17640888734777619591"],
|
|
["17640888734777619590", "17640888734777619590"],
|
|
["17640888734777619589", "17640888734777619589"],
|
|
["17640888734777619588", "17640888734777619588"],
|
|
["222978487924562597", "222978487924562597"],
|
|
["222978487924562598", "222978487924562598"],
|
|
["222978487924562599", "222978487924562599"],
|
|
["18036677040276452163", "18036677040276452163"],
|
|
["9683198568656905409", "9683198568656905409"],
|
|
["14631315189952948157", "14631315189952948157"],
|
|
["107357144275580313", "107357144275580313"],
|
|
["107357144275580314", "107357144275580314"],
|
|
["107357144275580315", "107357144275580315"],
|
|
["107357144275580316", "107357144275580316"],
|
|
["107357144275580317", "107357144275580317"],
|
|
["107357144275580318", "107357144275580318"],
|
|
["107357144275580319", "107357144275580319"],
|
|
["15098901516285628681", "15098901516285628681"],
|
|
["3476827202283082505", "3476827202283082505"],
|
|
["15277609899932680839", "15277609899932680839"],
|
|
["14309856709506693296", "14309856709506693296"],
|
|
["4366983073994952728", "4366983073994952728"],
|
|
["7644484026649029176", "7644484026649029176"],
|
|
["1172041814967950411", "1172041814967950411"],
|
|
["13877914290284812375", "13877914290284812375"],
|
|
["6279168547364297877", "6279168547364297877"],
|
|
["9410860084696988451", "9410860084696988451"],
|
|
["7040962371837555086", "7040962371837555086"],
|
|
["2240865829055740790", "2240865829055740790"],
|
|
["5554396267543201235", "5554396267543201235"],
|
|
["15561018536737453713", "15561018536737453713"],
|
|
["11353255805840302986", "11353255805840302986"],
|
|
["9641659157850182404", "9641659157850182404"],
|
|
["4241441455458592086", "4241441455458592086"],
|
|
["8446868857774881085", "8446868857774881085"],
|
|
["8446868857774881086", "8446868857774881086"],
|
|
["226142502615651550", "226142502615651550"],
|
|
["8003479118897659390", "8003479118897659390"],
|
|
["17318180649343473074", "17318180649343473074"],
|
|
["17318180649343473073", "17318180649343473073"],
|
|
["17318180649343473072", "17318180649343473072"],
|
|
["17318180649343473079", "17318180649343473079"],
|
|
["14938420733707291666", "14938420733707291666"],
|
|
["16221684840086593626", "16221684840086593626"],
|
|
["10366534579512292490", "10366534579512292490"],
|
|
["11415244871099856214", "11415244871099856214"],
|
|
["11415244871099856213", "11415244871099856213"],
|
|
["16917152006251047224", "16917152006251047224"],
|
|
["10556259517402001637", "10556259517402001637"],
|
|
["15020748027285402255", "15020748027285402255"],
|
|
["4160648093045378633", "4160648093045378633"],
|
|
["4160648093045378634", "4160648093045378634"],
|
|
["4160648093045378635", "4160648093045378635"],
|
|
["15567908050277011170", "15567908050277011170"],
|
|
["15567908050277011169", "15567908050277011169"],
|
|
["15567908050277011168", "15567908050277011168"],
|
|
["16568429081099771767", "16568429081099771767"],
|
|
["4238553824820969118", "4238553824820969118"],
|
|
["4238553824820969117", "4238553824820969117"],
|
|
["4238553824820969116", "4238553824820969116"],
|
|
["12550534475600688235", "12550534475600688235"],
|
|
["12550534475600688232", "12550534475600688232"],
|
|
["14702581796371774257", "14702581796371774257"],
|
|
["14702581796371774258", "14702581796371774258"],
|
|
["14702581796371774259", "14702581796371774259"],
|
|
["3545478546806092611", "3545478546806092611"],
|
|
["3545478546806092608", "3545478546806092608"],
|
|
["630587174601102574", "630587174601102574"],
|
|
["630587174601102573", "630587174601102573"],
|
|
["630587174601102572", "630587174601102572"],
|
|
["3749212954917158428", "3749212954917158428"],
|
|
["16762358444674667418", "16762358444674667418"],
|
|
["1594897144774391248", "1594897144774391248"],
|
|
["14313472111344495084", "14313472111344495084"],
|
|
["14313472111344495087", "14313472111344495087"],
|
|
["14313472111344495086", "14313472111344495086"],
|
|
["15460295758849424485", "15460295758849424485"],
|
|
["Priest 2", "9603742757265159932"],
|
|
["6423528648309756359", "6423528648309756359"],
|
|
["12459110469059028578", "12459110469059028578"],
|
|
["10938637035158468250", "10938637035158468250"],
|
|
["7308494941980219340", "7308494941980219340"],
|
|
["12611645482076996340", "12611645482076996340"],
|
|
["13699996180017603080", "13699996180017603080"],
|
|
["5825005109406326682", "5825005109406326682"],
|
|
["5825005109406326681", "5825005109406326681"],
|
|
["5825005109406326680", "5825005109406326680"],
|
|
["9353980881817376062", "9353980881817376062"],
|
|
["9353980881817376061", "9353980881817376061"],
|
|
["9353980881817376060", "9353980881817376060"],
|
|
["7186852441858675265", "7186852441858675265"],
|
|
["14816636857617335595", "14816636857617335595"],
|
|
["14816636857617335592", "14816636857617335592"],
|
|
["14816636857617335593", "14816636857617335593"],
|
|
["14816636857617335598", "14816636857617335598"],
|
|
["10574177695437126405", "10574177695437126405"],
|
|
["17900177151975050309", "17900177151975050309"],
|
|
["17900177151975050308", "17900177151975050308"],
|
|
["17900177151975050311", "17900177151975050311"],
|
|
["12869696859187491985", "12869696859187491985"],
|
|
["12869696859187491986", "12869696859187491986"],
|
|
["12869696859187491987", "12869696859187491987"],
|
|
["12869696859187491988", "12869696859187491988"],
|
|
["5079670248440550397", "5079670248440550397"],
|
|
["1435049009713762023", "1435049009713762023"],
|
|
["357924421929156854", "357924421929156854"],
|
|
["17429119577532980309", "17429119577532980309"],
|
|
["9319984713058290479", "9319984713058290479"],
|
|
["477070870730575413", "477070870730575413"],
|
|
["477070870730575414", "477070870730575414"],
|
|
["477070870730575415", "477070870730575415"],
|
|
["477070870730575408", "477070870730575408"],
|
|
["477070870730575409", "477070870730575409"],
|
|
["477070870730575410", "477070870730575410"],
|
|
["477070870730575411", "477070870730575411"],
|
|
["477070870730575420", "477070870730575420"],
|
|
["13048158994957280983", "13048158994957280983"],
|
|
["13048158994957280980", "13048158994957280980"],
|
|
["13048158994957280981", "13048158994957280981"],
|
|
["3191917414867125103", "3191917414867125103"],
|
|
["3191917414867125100", "3191917414867125100"],
|
|
["3191917414867125101", "3191917414867125101"],
|
|
["3191917414867125098", "3191917414867125098"],
|
|
["3191917414867125099", "3191917414867125099"],
|
|
["3191917414867125096", "3191917414867125096"],
|
|
["15724784470785531538", "15724784470785531538"],
|
|
["15724784470785531537", "15724784470785531537"],
|
|
["15724784470785531536", "15724784470785531536"],
|
|
["20960928504767427", "20960928504767427"],
|
|
["7820723148381288699", "7820723148381288699"],
|
|
["7820723148381288698", "7820723148381288698"],
|
|
["7820723148381288701", "7820723148381288701"],
|
|
["7820723148381288700", "7820723148381288700"],
|
|
["3676430223609071039", "3676430223609071039"],
|
|
["9838805743459953391", "9838805743459953391"],
|
|
["17043942283430165654", "17043942283430165654"],
|
|
["17043942283430165653", "17043942283430165653"],
|
|
["18213787835439583687", "18213787835439583687"],
|
|
["5499640086201453207", "5499640086201453207"],
|
|
["16810142466036126868", "16810142466036126868"],
|
|
["13283312643330629065", "13283312643330629065"],
|
|
["7311876987057401303", "7311876987057401303"],
|
|
["18064389970666292982", "18064389970666292982"],
|
|
["5122248003519108314", "5122248003519108314"],
|
|
["95634511436922315", "95634511436922315"],
|
|
["11136850535933637547", "11136850535933637547"],
|
|
["10233826273693999065", "10233826273693999065"],
|
|
["17826821158160128260", "17826821158160128260"],
|
|
["17826821158160128263", "17826821158160128263"],
|
|
["17826821158160128262", "17826821158160128262"],
|
|
["123296484318058228", "123296484318058228"],
|
|
["13648466717630136492", "13648466717630136492"],
|
|
["123296484318058231", "123296484318058231"],
|
|
["123296484318058230", "123296484318058230"],
|
|
["123296484318058225", "123296484318058225"],
|
|
["123296484318058224", "123296484318058224"],
|
|
["123296484318058227", "123296484318058227"],
|
|
["123296484318058226", "123296484318058226"],
|
|
["123296484318058237", "123296484318058237"],
|
|
["123296484318058236", "123296484318058236"],
|
|
["185161503943101145", "185161503943101145"],
|
|
["185161503943101146", "185161503943101146"],
|
|
["869188671771466536", "869188671771466536"],
|
|
["12755531249388446412", "12755531249388446412"],
|
|
["2881977725602904185", "2881977725602904185"],
|
|
["11192701385900524626", "11192701385900524626"],
|
|
["3816076187325368812", "3816076187325368812"],
|
|
["3835509868931944974", "3835509868931944974"],
|
|
["3835509868931944973", "3835509868931944973"],
|
|
["5481631018100022440", "5481631018100022440"],
|
|
["12371798138794821805", "12371798138794821805"],
|
|
["12371798138794821806", "12371798138794821806"],
|
|
["4143224386189765596", "4143224386189765596"],
|
|
["7356641782093332976", "7356641782093332976"],
|
|
["5835307578105282019", "5835307578105282019"],
|
|
["6665326112424016731", "6665326112424016731"],
|
|
["6665326112424016728", "6665326112424016728"],
|
|
["6665326112424016729", "6665326112424016729"],
|
|
["6665326112424016734", "6665326112424016734"],
|
|
["6665326112424016735", "6665326112424016735"],
|
|
["14567489439178775346", "14567489439178775346"],
|
|
["14567489439178775345", "14567489439178775345"],
|
|
["10698962169803080686", "10698962169803080686"],
|
|
["10698962169803080685", "10698962169803080685"],
|
|
["9230498300862461109", "9230498300862461109"],
|
|
["375034715040822945", "375034715040822945"],
|
|
["12840274789423949003", "12840274789423949003"],
|
|
["12840274789423949000", "12840274789423949000"],
|
|
["12840274789423949001", "12840274789423949001"],
|
|
["12840274789423949006", "12840274789423949006"],
|
|
["12359625545342750013", "12359625545342750013"],
|
|
["12359625545342750014", "12359625545342750014"],
|
|
["14737249452058181514", "14737249452058181514"],
|
|
["4982779713564512397", "4982779713564512397"],
|
|
["17970459785490038880", "17970459785490038880"],
|
|
["15383507700873654252", "15383507700873654252"],
|
|
["545791016542274257", "545791016542274257"],
|
|
["12746818549693146744", "12746818549693146744"],
|
|
["15998416338748285089", "15998416338748285089"],
|
|
["13628139509387947677", "13628139509387947677"],
|
|
["12853328109203713716", "12853328109203713716"],
|
|
["5569105792693545040", "5569105792693545040"],
|
|
["3130205768571803450", "3130205768571803450"],
|
|
["6608522928348350757", "6608522928348350757"],
|
|
["9783946562879807772", "9783946562879807772"],
|
|
["7563073682365257691", "7563073682365257691"],
|
|
["18422070534006488121", "18422070534006488121"],
|
|
["10100059421044080283", "10100059421044080283"],
|
|
["10806894146895824955", "10806894146895824955"],
|
|
["10806894146895824952", "10806894146895824952"],
|
|
["1688586690817816161", "1688586690817816161"],
|
|
["12246962315484408912", "12246962315484408912"],
|
|
["13295477769382001149", "13295477769382001149"],
|
|
["12808960631681073757", "12808960631681073757"],
|
|
["2576351077656492463", "2576351077656492463"],
|
|
["7636285893813598276", "7636285893813598276"],
|
|
["5763362442925535946", "5763362442925535946"],
|
|
["14760565138731892330", "14760565138731892330"],
|
|
["8212778771191351144", "8212778771191351144"],
|
|
["14277553624584292204", "14277553624584292204"],
|
|
["14277553624584292207", "14277553624584292207"],
|
|
["17696084696191050583", "17696084696191050583"],
|
|
["17696084696191050580", "17696084696191050580"],
|
|
["7537907729568991785", "7537907729568991785"],
|
|
["4915188731460876601", "4915188731460876601"],
|
|
["16558092700518176999", "16558092700518176999"],
|
|
["16558092700518176996", "16558092700518176996"],
|
|
["16558092700518176997", "16558092700518176997"],
|
|
["16558092700518176994", "16558092700518176994"],
|
|
["16558092700518176995", "16558092700518176995"],
|
|
["16558092700518176992", "16558092700518176992"],
|
|
["2371461776634710187", "2371461776634710187"],
|
|
["9668037895637098656", "9668037895637098656"],
|
|
["4925251608292468805", "4925251608292468805"],
|
|
["6497702182038964853", "6497702182038964853"],
|
|
["13662579952757470126", "13662579952757470126"],
|
|
["15841852769508427314", "15841852769508427314"],
|
|
["12078786069552798031", "12078786069552798031"],
|
|
["11551890483630719461", "11551890483630719461"],
|
|
["12292530724320858888", "12292530724320858888"],
|
|
["4935918310489664757", "4935918310489664757"],
|
|
["13231361425215532273", "13231361425215532273"],
|
|
["9635432611634172805", "9635432611634172805"],
|
|
["17198133241214432897", "17198133241214432897"],
|
|
["984017835469118372", "984017835469118372"],
|
|
["16193974338006185616", "16193974338006185616"],
|
|
["2944403150277117474", "2944403150277117474"],
|
|
["17226383745694605377", "17226383745694605377"],
|
|
["11401996025155346627", "11401996025155346627"],
|
|
["15803919470584091697", "15803919470584091697"],
|
|
["6657800977589857748", "6657800977589857748"],
|
|
["14980516365676479147", "14980516365676479147"],
|
|
["2808971698475922818", "2808971698475922818"],
|
|
["11354824878713257622", "11354824878713257622"],
|
|
["10361422688540766835", "10361422688540766835"],
|
|
["8629521145128165403", "8629521145128165403"],
|
|
["8706208074456279766", "8706208074456279766"],
|
|
["5189891036225517118", "5189891036225517118"],
|
|
["1316013396831248307", "1316013396831248307"],
|
|
["14783118081835575796", "14783118081835575796"],
|
|
["735347833852747549", "735347833852747549"],
|
|
["2562708806890039534", "2562708806890039534"],
|
|
["16370111416469089066", "16370111416469089066"],
|
|
["968397941863514959", "968397941863514959"],
|
|
["14265677469314849907", "14265677469314849907"],
|
|
["14421113784311476893", "14421113784311476893"],
|
|
["3102955845165207712", "3102955845165207712"],
|
|
["15112162961635649843", "15112162961635649843"],
|
|
["15112162961635649840", "15112162961635649840"],
|
|
["10641991745029146180", "10641991745029146180"],
|
|
["14886882723949246290", "14886882723949246290"],
|
|
["8367537388261535232", "8367537388261535232"],
|
|
["17285776802413299641", "17285776802413299641"],
|
|
["8828160688634505675", "8828160688634505675"],
|
|
["4322261130573463287", "4322261130573463287"],
|
|
["63380914722389570", "63380914722389570"],
|
|
["6327701555310172854", "6327701555310172854"],
|
|
["9865796920221164689", "9865796920221164689"],
|
|
["Paulie Coat Dirty", "12836423456628955394"],
|
|
["9085209860053496611", "9085209860053496611"],
|
|
["9085209860053496608", "9085209860053496608"],
|
|
["11116127148050971965", "11116127148050971965"],
|
|
["4597745655106169048", "4597745655106169048"],
|
|
["Young Morello", "16309427186668986615"],
|
|
["5531710592685469505", "5531710592685469505"],
|
|
["2317853246705193498", "2317853246705193498"],
|
|
],
|
|
},
|
|
vehicles: {
|
|
[V_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"],
|
|
],
|
|
[V_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"],
|
|
],
|
|
[V_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"],
|
|
],
|
|
[V_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"],
|
|
],
|
|
[V_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"],
|
|
],
|
|
[V_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],
|
|
],
|
|
[V_GAME_MAFIA_ONE_DE]: [
|
|
["berkley_810", "Berkley 810"],
|
|
["betting_office", "Betting Office Truck"],
|
|
["bolt_ace", "Bolt Ace"],
|
|
["bolt_ace_pickup", "Bolt Ace Pickup"],
|
|
["bolt_cooler", "Bolt Cooler Truck"],
|
|
["bolt_delivery", "Bolt Delivery Van"],
|
|
["bolt_delivery_amb", "Bolt Ambulance"],
|
|
["bolt_hearse", "Bolt Hearse"],
|
|
["bolt_mail", "Bolt Mail Truck"],
|
|
["bolt_model_b", "Bolt Model B"],
|
|
["bolt_pickup", "Bolt Pickup"],
|
|
["bolt_truck", "Bolt Truck"],
|
|
//["bolt_truck_scripted_farm", "bolt_truck_scripted_farm"],
|
|
["bolt_v8", "Bolt V8"],
|
|
["brubaker_forte", "Brubaker Forte"],
|
|
["bulworth_packhard", "Bulworth Packhard"],
|
|
["bulworth_sentry", "Bulworth Sentry"],
|
|
["carrozella_c_series", "Carrozella C Series"],
|
|
["celeste_mark_5", "Celeste Mark 5"],
|
|
["crazy_horse", "Crazy Horse"],
|
|
["culver_airmaster", "Culver Airmaster"],
|
|
["disorder", "Disorder"],
|
|
["eckhart_crusader", "Eckhart Crusader"],
|
|
["eckhart_elite", "Eckhart Elite"],
|
|
["eckhart_fletcher", "Eckhart Fletcher"],
|
|
["falconer_classic", "Falconer Classic"],
|
|
["flame_spear", "Flame Spear"],
|
|
["hank_a", "Hank A"],
|
|
["haverley_tomahawk_p", "Haverley Tomahawk Police"],
|
|
["houston_coupe", "Houston Coupe"],
|
|
["lassiter_v16", "Lassiter V16"],
|
|
["lassiter_v16_appolyon", "Lassiter V16 Appolyon"],
|
|
["lassiter_v16_roadster", "Lassiter V16 Roadster"],
|
|
["manta_prototype", "Manta Prototype"],
|
|
["moto_blackcats", "Moto Blackcats"],
|
|
["motorcycle_1935", "Motorcycle 1935"],
|
|
["mutagen", "Mutagen"],
|
|
["parry_bus", "Parry Bus"],
|
|
["samson_drifter", "Samson Drifter"],
|
|
["samson_tanker", "Samson Tanker"],
|
|
["shubert_e_six_det", "Shubert Extra Six (Detective)"],
|
|
["shubert_e_six_p", "Shubert Extra Six (Police)"],
|
|
["shubert_e_six", "Shubert Extra Six"],
|
|
["shubert_e_six_taxi", "Shubert Extra Six Taxi"],
|
|
["shubert_frigate", "Shubert Frigate"],
|
|
["shubert_six", "Shubert Six"],
|
|
["shubert_six_det", "Shubert Six (Detective)"],
|
|
["shubert_six_p", "Shubert Six (Police)"],
|
|
["shubert_six_taxi", "Shubert Six (Taxi)"],
|
|
["smith_moray", "Smith Moray"],
|
|
["smith_thrower", "Smith Thrower"],
|
|
["smith_v12_chicago", "Smith V12 Chicago"],
|
|
["smith_v12", "Smith V12"],
|
|
["trautenberg_sport", "Trautenberg Sport"],
|
|
["waybar_concept", "Waybar Concept"]
|
|
],
|
|
},
|
|
objects: {
|
|
[V_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"],
|
|
[1343, "WoodenBox"],
|
|
[1339, "CardboardBox"],
|
|
[1336, "RustyBarrel"],
|
|
[1348, "TrashDumpster"],
|
|
[1338, "WoodenPallet"],
|
|
[1360, "TrafficCone"],
|
|
[1310, "WashingMachine"],
|
|
[1347, "TrashBin"],
|
|
[1396, "MailBox"],
|
|
[1359, "OrangeRoundRoadBarrier"],
|
|
[1398, "ParkBench"],
|
|
[1344, "RedBarrel"],
|
|
[1349, "StraightRoadBarrier"]
|
|
[1337, "YellowBarrel"],
|
|
],
|
|
[V_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"]
|
|
],
|
|
[V_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"],
|
|
],
|
|
[V_GAME_GTA_IV]: [
|
|
[0, "GenericPackage"],
|
|
],
|
|
[V_GAME_GTA_V]: [
|
|
[0, "GenericPackage"],
|
|
],
|
|
[V_GAME_MAFIA_ONE]: [
|
|
[0, "GenericPackage"],
|
|
],
|
|
[V_GAME_MAFIA_TWO]: [
|
|
[0, "GenericPackage"],
|
|
],
|
|
[V_GAME_MAFIA_THREE]: [
|
|
[0, "GenericPackage"],
|
|
],
|
|
[V_GAME_MAFIA_ONE_DE]: [
|
|
[0, "GenericPackage"],
|
|
],
|
|
},
|
|
weaponModels: {
|
|
[V_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
|
|
],
|
|
[V_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
|
|
],
|
|
[V_GAME_GTA_V]: [
|
|
|
|
]
|
|
},
|
|
locations: {
|
|
[V_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],
|
|
["Francis International Airport Terminal", [-765.94, -548.07, 11.33], 0.0, null],
|
|
],
|
|
|
|
[V_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],
|
|
["Escobar International Airport Runway", [-1681.13, -1029.21, 14.87], 0.0, null],
|
|
["Escobar International Airport Terminal", [-1435.68, -820.55, 14.87], 0.0, null],
|
|
["Military Base", [-1720.70, -266.16, 14.87], 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],
|
|
],
|
|
|
|
[V_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],
|
|
["San Fierro Medical Center", [-2654.14, 635.36, 14.45], 3.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],
|
|
],
|
|
|
|
[V_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!
|
|
],
|
|
[V_GAME_MAFIA_ONE]: [
|
|
// Police Stations
|
|
["Central Island Police Headquarters", [-1257.78, -6.48, -753.12], 0.0, null],
|
|
|
|
// Fire Stations
|
|
["Works Quarter Fire Station", [-1883.96, -4.89, -348.49], 0.0, null],
|
|
|
|
// Hospitals
|
|
["New Ark Hospital", [-759.00, 11.40, 747.31], 0.0, null],
|
|
|
|
// Gas Stations
|
|
["Little Italy Gas Station", [-1781.84, -4.83, -204.96], 0.0, null],
|
|
["Downtown-Hoboken Gas Station", [-108.68, 8.46, -134.26], 0.0, null],
|
|
|
|
// Bars and Clubs
|
|
["Salieri's Bar", [-1774.59, -5.62, 3.29], 0.0, null],
|
|
["Palermo Club", [63.31, 3.97, 281.85], 0.0, null],
|
|
["Pompeii Bar", [346.81, -2.55, 228.43], 0.0, null],
|
|
|
|
// Misc
|
|
["Port of Lost Heaven Main Entrance", [-2039.28, -5.57, -767.31], 0.0, null],
|
|
["Road to Lost Heaven Racing Circuit", [-3049.63, -1.85, -436.09], 0.0, null],
|
|
["Chinatown Square", [-1709.77, 14.36, 583.77], 0.0, null],
|
|
["Downtown Bank", [-175.78, 19.06, -399.13], 0.0, null],
|
|
["Twister", [60.29, 4.73, 109.25], 0.0, null],
|
|
["Rich Mansion Front Gate", [782.06, 110.10, -202.60], 0.0, null],
|
|
["Oakwood Tennis Courts", [456.69, 27.70, -685.82], 0.0, null],
|
|
["Lighthouse", [949.25, 19.97, -821.45], 0.0, null],
|
|
],
|
|
[V_GAME_MAFIA_ONE_DE]: [
|
|
["Salieri's Bar", [-907.6546, -230.69179, 2.8007636], 0.0, null]
|
|
["Little Italy Train Station", [-560.6048, -136.93648, 13.01631], 0.0, null]
|
|
["Airport", [1225.7761, 1174.7006, 29.581974], 0.0, null]
|
|
]
|
|
},
|
|
weaponSlots: {
|
|
[V_GAME_GTA_III]: [
|
|
0,
|
|
1,
|
|
2,
|
|
3,
|
|
4,
|
|
5,
|
|
6,
|
|
7,
|
|
8,
|
|
9,
|
|
10,
|
|
11
|
|
],
|
|
[V_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,
|
|
],
|
|
[V_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: {
|
|
[V_GAME_GTA_SA]: [ // GTA SA
|
|
["Default", [4, 6]],
|
|
["Boxing", [5, 6]],
|
|
["Kung Fu", [6, 6]],
|
|
["Kick Boxing", [7, 6]],
|
|
["Unnamed", [8, 6]],
|
|
],
|
|
},
|
|
walkStyles: {
|
|
[V_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],
|
|
[V_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, duration: 2000 }),
|
|
new AnimationData("wave", { groupId: 0, animId: 12, duration: 5250 }),
|
|
|
|
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: V_ANIMTYPE_SURRENDER }),
|
|
new AnimationData("sit", { groupId: 0, animId: 111 }),
|
|
new AnimationData("sitleft", { groupId: 0, animId: 111, moveType: V_ANIMMOVE_LEFT }),
|
|
new AnimationData("sitback", { groupId: 0, animId: 111, moveType: V_ANIMMOVE_BACK }),
|
|
new AnimationData("sitright", { groupId: 0, animId: 111, moveType: V_ANIMMOVE_RIGHT }),
|
|
new AnimationData("sitforward", { groupId: 0, animId: 111, moveType: V_ANIMMOVE_FORWARD }),
|
|
new AnimationData("sitarmright", { groupId: 0, animId: 120, moveType: V_ANIMMOVE_BACK }),
|
|
new AnimationData("tazed", { groupId: 0, animId: 13, animType: V_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: V_ANIMTYPE_FORCED }),
|
|
],
|
|
[V_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: V_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, duration: 7500, loop: true }),
|
|
new AnimationData("cpr", { groupId: 24, animId: 214, duration: 5000, loop: true }),
|
|
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, duration: 5000, loop: true }),
|
|
new AnimationData("dance2", { groupId: 28, animId: 227, duration: 5000, loop: true }),
|
|
new AnimationData("dance3", { groupId: 28, animId: 228, duration: 5000, loop: true }),
|
|
new AnimationData("dance4", { groupId: 28, animId: 229, duration: 5000, loop: true }),
|
|
new AnimationData("dance5", { groupId: 28, animId: 230, duration: 5000, loop: true }),
|
|
new AnimationData("dance6", { groupId: 28, animId: 231, duration: 5000, loop: true }),
|
|
new AnimationData("dance7", { groupId: 28, animId: 232, duration: 5000, loop: true }),
|
|
new AnimationData("pressbutton", { groupId: 0, animId: 62 }),
|
|
new AnimationData("sitright", { groupId: 0, animId: 169, moveType: V_ANIMMOVE_RIGHT }),
|
|
new AnimationData("sitleft", { groupId: 0, animId: 169, moveType: V_ANIMMOVE_LEFT }),
|
|
new AnimationData("sitforward", { groupId: 0, animId: 169, moveType: V_ANIMMOVE_FORWARD }),
|
|
new AnimationData("sitback", { groupId: 0, animId: 169, moveType: V_ANIMMOVE_BACK }),
|
|
new AnimationData("tazed", { groupId: 0, animId: 13, animType: V_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: V_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 }),
|
|
],
|
|
[V_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: V_ANIMMOVE_RIGHT }),
|
|
new AnimationData("sitleft", { groupId: 0, animId: 150, moveType: V_ANIMMOVE_LEFT }),
|
|
new AnimationData("sitforward", { groupId: 0, animId: 150, moveType: V_ANIMMOVE_FORWARD }),
|
|
new AnimationData("sitback", { groupId: 0, animId: 150, moveType: V_ANIMMOVE_BACK }),
|
|
new AnimationData("tazed", { groupId: 0, animId: 15, moveType: V_ANIMTYPE_FORCED }),
|
|
|
|
/*
|
|
["talk", "PED", "IDLE_CHAT", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["fucku", "PED", "FUCKU", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["taichi", "PARK", "Tai_Chi_Loop", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["slapass", "SWEET", "sweet_ass_slap", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["wave", "ON_LOOKERS", "wave_loop", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["vomit", "EAT_Vomit_P", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["cower", "ped", "cower", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["laugh", "RAPPING", "Laugh_01", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["plant", "BOMBER", "BOM_Plant", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["smoke1", "SMOKING","M_smklean_loop", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["smoke2", "SMOKING","F_smklean_loop", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["smoke3", "SMOKING","M_smkstnd_loop", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["sit1", "ped","SEAT_idle", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["sit2", "BEACH", "ParkSit_M_loop", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["sit3", "BEACH", "ParkSit_W_loop", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["sit4", "BEACH", "SitnWait_loop_W", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["scratch", "MISC","Scratchballs_01", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
["standup", "ped", "SEAT_up", V_ANIMTYPE_NORMAL, 0.0, null, null, null, null],
|
|
//["faceshocked", 0, 150, V_ANIMTYPE_NORMAL, 0.0, null, null, null, null, V_ANIMMOVE_NONE],
|
|
//["facesurprised", 0, 150, V_ANIMTYPE_NORMAL, 0.0, null, null, null, null, V_ANIMMOVE_NONE],
|
|
//["faceconfused", 0, 150, V_ANIMTYPE_NORMAL, 0.0, null, null, null, null, V_ANIMMOVE_NONE],
|
|
//["faceangry", 0, 159, V_ANIMTYPE_NORMAL, 0.0, null, null, null, null, V_ANIMMOVE_NONE],
|
|
//["facetalk1", 0, 160, V_ANIMTYPE_NORMAL, 0.0, null, null, null, null, V_ANIMMOVE_NONE],
|
|
*/
|
|
],
|
|
[V_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 }),
|
|
],
|
|
[V_GAME_MAFIA_ONE]: [ // Mafia: The City of Lost Heaven
|
|
//new AnimationData("wave", { animId: "", infiniteLoop: true }),
|
|
],
|
|
},
|
|
meleeWeapons: {
|
|
[V_GAME_GTA_III]: [1],
|
|
[V_GAME_GTA_VC]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
|
|
[V_GAME_GTA_SA]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
|
|
[V_GAME_GTA_IV]: [1, 2, 3],
|
|
[V_GAME_GTA_IV_EFLC]: [1, 2, 3],
|
|
[V_GAME_MAFIA_ONE]: [2, 3, 4],
|
|
[V_GAME_MAFIA_ONE_DE]: ["wep_knuckle_a_v1", "wep_wooden_plank_a_v1", "wep_crowbar_a_v1", "wep_metal_bar_a_v1", "wep_knife_a_v1", "wep_baseball_bat_a_v1"],
|
|
},
|
|
blipSprites: {
|
|
[V_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,
|
|
PoliceCar: 5,
|
|
Catalina: 3,
|
|
BombShop: 2,
|
|
Asuka: 1,
|
|
Don: 6,
|
|
Eight: 8,
|
|
Joey: 10,
|
|
Kenji: 11,
|
|
Luigi: 13,
|
|
North: 14,
|
|
Ray: 15,
|
|
Salvatore: 16,
|
|
Home: 17,
|
|
Tony: 19,
|
|
Job: 0,
|
|
},
|
|
[V_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,
|
|
Job: 0,
|
|
},
|
|
[V_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,
|
|
Trophy: 33,
|
|
Race: 53,
|
|
Job: 56,
|
|
},
|
|
[V_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: {
|
|
[V_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,
|
|
},
|
|
[V_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,
|
|
},
|
|
[V_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,
|
|
},
|
|
[V_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: {
|
|
[V_GAME_GTA_III]: { // GTA 3
|
|
business: 255,
|
|
house: 255,
|
|
bank: 255,
|
|
clothes: 255,
|
|
info: 255,
|
|
job: 255,
|
|
},
|
|
[V_GAME_GTA_VC]: { // GTA Vice City
|
|
business: 255,
|
|
house: 255,
|
|
bank: 255,
|
|
clothes: 255,
|
|
info: 255,
|
|
job: 255,
|
|
},
|
|
[V_GAME_GTA_SA]: { // GTA San Andreas
|
|
business: 1,
|
|
house: 1,
|
|
bank: 1,
|
|
clothes: 1,
|
|
info: 1,
|
|
job: 1,
|
|
},
|
|
[V_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: {
|
|
[V_GAME_GTA_III]: 85,
|
|
[V_GAME_GTA_VC]: 85,
|
|
[V_GAME_GTA_SA]: 85,
|
|
[V_GAME_GTA_IV]: 85,
|
|
[V_GAME_GTA_IV_EFLC]: 85,
|
|
[V_GAME_MAFIA_ONE]: 85,
|
|
[V_GAME_MAFIA_TWO]: 85,
|
|
[V_GAME_MAFIA_THREE]: 85,
|
|
},
|
|
defaultBusinessItems: {
|
|
[V_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],
|
|
],
|
|
},
|
|
[V_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],
|
|
],
|
|
},
|
|
[V_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],
|
|
],
|
|
},
|
|
[V_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],
|
|
],
|
|
},
|
|
[V_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: {
|
|
[V_GAME_GTA_III]: {
|
|
Apartment1: [toVector3(891.87, -308.28, 8.72), 0, false, ""],
|
|
JailCell: [toVector3(328.40, -1093.31, 25.98), 0, false, ""],
|
|
Church: [toVector3(13.87, -1122.43, 26.12), 0, false, ""],
|
|
Mansion: [toVector3(1461.00, -173.87, 55.78), 0, false, ""],
|
|
SmallGarage: [toVector3(-420.69, 289.86, 62.96), 0, false, ""],
|
|
JoeyGarage: [toVector3(1189.40, -867.69, 15.18), 0, false, ""],
|
|
Warehouse1: [toVector3(1497.46, -680.18, 12.14), 0, false, ""],
|
|
Warehouse2: [toVector3(1131.44, -1113.07, 11.86), 0, false, ""],
|
|
},
|
|
[V_GAME_GTA_VC]: { // GTA VC
|
|
Mall: [toVector3(379.62, 1007.00, 19.22), 4, false, ""],
|
|
MalibuClub: [toVector3(489.83, -76.49, 11.48), 17, false, ""],
|
|
PoliceStation: [toVector3(396.38, -472.96, 12.34), 12, false, ""],
|
|
Apartment: [toVector3(26.67, -1328.89, 13.00), 11, false, ""],
|
|
HotelLobby: [toVector3(228.53, -1277.12, 12.07), 1, false, ""],
|
|
BikerBar: [toVector3(-597.41, 651.84, 11.30), 11, false, ""],
|
|
Mansion: [toVector3(-379.14, -551.65, 19.32), 2, false, ""],
|
|
GunRange: [toVector3(-667.79, 1217.51, 11.10), 10, false, ""],
|
|
Bank: [toVector3(-894.52, -341.16, 13.45), 3, false, ""],
|
|
StripClub: [toVector3(97.53, -1472.06, 10.43), 5, false, ""],
|
|
RosenbergOffice: [toVector3(137.29, -1370.20, 13.18), 6, false, ""],
|
|
Arena: [toVector3(-1080.49, 1331.16, 13.91), 15, false, ""],
|
|
GhettoShack: [toVector3(-962.74, 146.96, 9.40), 12, false, ""],
|
|
HotelRoom: [toVector3(226.47, -1274.98, 19.271), 2, false, ""],
|
|
ConcertHall: [toVector3(-925.417, 1053.4, 13.2005), 8, false, ""],
|
|
RecordingStudio: [toVector3(-879.767, 1156.88, 17.8115), 9, false, ""],
|
|
PrintWorks: [toVector3(-1064.98, -279.093, 12.0882), 18, false, ""],
|
|
GasStation: [toVector3(447.26, 789.09, 12.95), 0, false, ""],
|
|
BusinessOffices: [toVector3(-551.70, 788.04, 97.51), 0, false, ""],
|
|
BusinessOfficeLobby: [toVector3(-573.64, 794.53, 22.88), 0, false, ""],
|
|
},
|
|
|
|
[V_GAME_GTA_SA]: { // GTA SA
|
|
LSPD: [toVector3(247.113, 62.929, 1003.64), 2, false, ""],
|
|
LVPD: [toVector3(288.82, 167.39, 1007.17), 3, false, ""],
|
|
SFPD: [toVector3(246.40, 110.84, 1003.22), 10, false, ""],
|
|
ReeceBarberShop: [toVector3(411.62, -21.43, 1001.80), 2, false, ""],
|
|
FourDragons: [toVector3(2016.26, 1017.77, 996.87), 10, false, ""],
|
|
Caligula: [toVector3(2233.8, 1712.23, 1011.76), 1, false, ""],
|
|
GenericCasino: [toVector3(1118.88, -10.27, 1002.08), 12, false, ""],
|
|
CluckinBell: [toVector3(365.71, -9.88, 1001.85), 9, false, ""],
|
|
PizzaStack: [toVector3(372.35, -131.65, 1001.49), 5, false, ""],
|
|
BurgerShot: [toVector3(375.96, -65.81, 1001.50), 10, false, ""],
|
|
TattooParlor: [toVector3(-203.07, -24.16, 1002.27), 16, false, ""],
|
|
Bank: [toVector3(2305.14, -16.274, 26.74), 1, false, ""],
|
|
Gas1: [toVector3(-25.96, -187.67, 1003.54), 17, false, ""],
|
|
Gas2: [toVector3(6.09, -29.27, 1003.54), 10, false, ""],
|
|
Gas3: [toVector3(-30.94, -89.60, 1003.54), 18, false, ""],
|
|
Gas4: [toVector3(-25.13, -139.06, 1003.54), 16, false, ""],
|
|
Gas5: [toVector3(-27.31, -29.27, 1003.54), 4, false, ""],
|
|
Gas6: [toVector3(-26.69, -55.71, 1003.54), 6, false, ""],
|
|
Shamal: [toVector3(2.38, 33.10, 1199.84), 1, false, ""],
|
|
Andromeda: [toVector3(315.85, 1024.49, 1949.79), 9, false, ""],
|
|
AirportTickets: [toVector3(-1827.14, 7.20, 1061.14), 14, false, ""],
|
|
AirportBaggage: [toVector3(-1855.56, 41.26, 1061.14), 14, false, ""],
|
|
Ammu1: [toVector3(286.14, -40.64, 1001.56), 1, false, ""],
|
|
Ammu2: [toVector3(286.80, -82.54, 1001.53), 4, false, ""],
|
|
Ammu3: [toVector3(296.91, -108.07, 1001.56), 6, false, ""],
|
|
Ammu4: [toVector3(314.82, -141.43, 999.66), 7, false, ""],
|
|
Ammu5: [toVector3(316.52, -167.70, 999.66), 6, false, ""],
|
|
AmmuBooth: [toVector3(302.29, -143.13, 1004.06), 7, false, ""],
|
|
AmmuRange: [toVector3(280.79, -135.20, 1004.06), 7, false, ""],
|
|
House1: [toVector3(235.51, 1189.17, 1080.34), 3, false, ""],
|
|
House2: [toVector3(225.76, 1240.00, 1082.15), 2, false, ""],
|
|
House3: [toVector3(223.04, 1289.26, 1082.20), 1, false, ""],
|
|
House4: [toVector3(225.63, 1022.48, 1084.07), 7, false, ""],
|
|
House5: [toVector3(295.14, 1474.47, 1080.52), 15, false, ""],
|
|
House6: [toVector3(328.49, 1480.59, 1084.45), 15, false, ""],
|
|
House7: [toVector3(385.80, 1471.77, 1080.21), 15, false, ""],
|
|
Atrium: [toVector3(1726.18, -1641.00, 20.23), 18, false, ""],
|
|
CrackPalace: [toVector3(2, 567.52, -1294.59, 1063.25), 2, false, ""],
|
|
BloodbowlStadium: [toVector3(-1394.20, 987.62, 1023.96), 15, false, ""],
|
|
BurningDesireHouse: [toVector3(2338.32, -1180.61, 1027.98), 5, false, ""],
|
|
FurhbergerHouse: [toVector3(2807.63, -1170.15, 1025.57), 8, false, ""],
|
|
DillimoreGas: [toVector3(664.19, -570.73, 16.34), 0, false, ""],
|
|
DonutShop: [toVector3(377.19, -192.90, 1000.64), 17, false, ""],
|
|
Airport: [toVector3(-1830.81, 16.83, 1061.14), 14, false, ""],
|
|
JeffersonMotel: [toVector3(2220.26, -1, 148.01, 1025.80), 15, false, ""],
|
|
KickstartStadium: [toVector3(-1410.72, 1, 591.16, 1052.53), 14, false, ""],
|
|
LibertyCity: [toVector3(-750.80, 491.00, 1371.70), 1, false, ""],
|
|
LSXBaggageReclaim: [toVector3(-1870.80, 59.81, 1056.25), 14, false, ""],
|
|
JizzyClub: [toVector3(-2637.69, 1404.24, 906.46), 3, false, ""],
|
|
RCBattlefield: [toVector3(-1079.99, 1061.58, 1343.04), 10, false, ""],
|
|
RyderHouse: [toVector3(2451.77, -1699.80, 1013.51), 2, false, ""],
|
|
SFGarage: [toVector3(-2042.42, 178.59, 28.84), 1, false, ""],
|
|
SweetHouse: [toVector3(2535.83, -1, 674.32, 1015.50), 1, false, ""],
|
|
KatieHouse: [toVector3(267.22, 304.71, 999.14), 2, false, ""],
|
|
HelenaHouse: [toVector3(292.44, 308.77, 999.14), 3, false, ""],
|
|
WelcomePump: [toVector3(681.66, -453.32, -25.61), 1, false, ""],
|
|
WoozieApartment: [toVector3(-2158.72, 641.29, 1052.38), 1, false, ""],
|
|
EightTrackStadium: [toVector3(-1395.96, -208.20, 1051.17), 7, false, ""],
|
|
DirtBikeStadium: [toVector3(-1424.93, -664.59, 1059.86), 4, false, ""],
|
|
CrackDen: [toVector3(75.0475, 1094.6, 18.7597), 5, false, ""],
|
|
MotelRoom: [toVector3(2251.85, -1138.16, 1050.63), 9, false, ""],
|
|
HashburyHouse: [toVector3(2260.76, -1210.45, 1049.02), 10, false, ""],
|
|
CJHouse: [toVector3(2496.65, -1696.55, 1014.74), 3, false, ""],
|
|
MaddDoggMansion: [toVector3(1299.14, -794.77, 1084.00), 5, false, ""],
|
|
MotelRoom2: [toVector3(2262.83, -1137.71, 1050.63), 10, false, ""],
|
|
SafeHouse1: [toVector3(2365.42, -1131.85, 1050.88), 8, false, ""],
|
|
SafeHouse2: [toVector3(2324.33, -1144.79, 1050.71), 12, false, ""],
|
|
ZeroStore: [toVector3(-2240.00, 131.00, 1035.40), 6, false, ""],
|
|
Brothel1: [toVector3(940.65, -18.48, 1000.93), 3, false, ""],
|
|
Brothel2: [toVector3(967.53, -53.02, 1001.12), 3, false, ""],
|
|
Brothel3: [toVector3(744.27, 1437.25, 1102.70), 6, false, ""],
|
|
ProlapsStore: [toVector3(207.35, -138.00, 1003.31), 3, false, ""],
|
|
VictimStore: [toVector3(221.33, -6.61, 1005.19), 5, false, ""],
|
|
SuburbanStore: [toVector3(203.81, -46.53, 1001.80), 1, false, ""],
|
|
SexShop: [toVector3(-106.72, -19.64, 1000.71), 3, false, ""],
|
|
BincoStore: [toVector3(207.54, -109.00, 1005.13), 15, false, ""],
|
|
Wardrobe: [toVector3(255.71, -41.13, 1002.02), 14, false, ""],
|
|
CityHall: [toVector3(389.538, 173.652, 1008.38), 3, false, ""],
|
|
GantonGym: [toVector3(772.11, -3.89, 1000.72), 5, false, ""],
|
|
KungFuGym: [toVector3(774.21, -48.92, 1000.58), 6, false, ""],
|
|
LVGym: [toVector3(773.57, -77.09, 1000.65), 7, false, ""],
|
|
InsuranceCompany: [toVector3(-2029.76, -119.624, 1035.17), 1, false, ""],
|
|
StripClub1: [toVector3(1204.80, -11.58, 1000.92), 2, false, ""],
|
|
StripClub1Private: [toVector3(1204.80, 13.89, 1000.92), 2, false, ""],
|
|
NightClub: [toVector3(493.39, -22.72, 1000.67), 17, false, ""],
|
|
Warehouse1: [toVector3(1412.63, -1.78, 1000.92), 1, false, ""],
|
|
Warehouse2: [toVector3(1302.51, -1.78, 1001.02), 18, false, ""],
|
|
Warehouse3: [toVector3(76.63, -301.15, 1.57), 0, false, ""],
|
|
Warehouse4: [toVector3(1059.89, 2081.68, 10.82), 0, false, ""],
|
|
BikeSchool: [toVector3(1494.32, 1304.94, 1093.28), 3, false, ""],
|
|
Bar1: [toVector3(501.98, -69.15, 998.75), 11, false, ""],
|
|
Diner1: [toVector3(459.58, -88.60, 999.55), 4, false, ""],
|
|
//Diner2: [toVector3(454.97, -110.10, 1000.07), 4, false, ""],
|
|
//Diner3: [toVector3(435.27, -80.95, 999.55), 5, false, ""],
|
|
SmallPoliceStation: [toVector3(322.19, 302.49, 999.14), 5, false, ""],
|
|
Cinema: [toVector3(2179.95, -1009.75, 1021.68), 0, true, -1],
|
|
Courthouse: [toVector3(1219.51, -1792.69, 2431.34), 0, true, -1],
|
|
},
|
|
|
|
[V_GAME_GTA_IV]: { // GTA IV
|
|
Office2: [toVector3(-1153.30, 417.37, 5.578), 0, false, ""],
|
|
House1: [toVector3(-426.16, 1466.52, 38.971), 0, false, ""],
|
|
House2: [toVector3(-969.77, 883.27, 18.817), 0, false, ""],
|
|
House3: [toVector3(95.75, 851.68, 45.051), 0, false, ""],
|
|
House4: [toVector3(603.04, 1404.06, 17.479), 0, false, ""],
|
|
House5: [toVector3(892.56, -502.13, 19.407), 0, false, ""],
|
|
House6: [toVector3(-524.09, 830.54, 23.627), 0, false, ""],
|
|
House7: [toVector3(806.36, 146.68, 29.243), 0, false, ""],
|
|
House8: [toVector3(356.91, 1511.28, 21.432), 0, false, ""],
|
|
House9: [toVector3(1319.40, -847.02, 8.872), 0, false, ""],
|
|
House10: [toVector3(1331.40, 126.60, 36.558), 0, false, ""],
|
|
House11: [toVector3(1387.81, 622.66, 35.857), 0, false, ""],
|
|
House12: [toVector3(932.74, -189.29, 35.143), 0, false, ""],
|
|
House13: [toVector3(-1397.85, 1473.89, 26.447), 0, false, ""],
|
|
House14: [toVector3(806.36, 146.68, 29.243), 0, false, ""],
|
|
House15: [toVector3(-526.49, 829.41, 23.627), 0, false, ""],
|
|
Gym: [toVector3(403.31, 1480.32, 11.834), 0, false, ""],
|
|
PoliceStation: [toVector3(-406.52, 286.57, 13.682), 0, false, ""],
|
|
FancyRestaurant: [toVector3(-118.24, -259.06, 12.654), 0, false, ""],
|
|
Basement: [toVector3(1304.38, -856.66, 5.490), 0, false, ""],
|
|
Office1: [toVector3(-409.31, 285.49, 18.592), 0, false, ""],
|
|
Office2: [toVector3(-1153.30, 417.37, 5.578), 0, false, ""],
|
|
Office3: [toVector3(817.64, -259.77, 15.343), 0, false, ""],
|
|
Office4: [toVector3(-86.35, 56.70, 75.953), 0, false, ""],
|
|
HospitalRoom: [toVector3(1240.00, 192.44, 33.553), 0, false, ""],
|
|
Church: [toVector3(-286.72, -282.36, 15.632), 0, false, ""],
|
|
Prison: [toVector3(-1082.69, -364.05, 7.404), 0, false, ""],
|
|
Ship: [toVector3(-336.53, -1494.56, 9.945), 0, false, ""],
|
|
},
|
|
[V_GAME_GTA_IV_EFLC]: { // GTA IV EFLC
|
|
},
|
|
[V_GAME_MAFIA_ONE]: { // Mafia 1
|
|
SalieriBar: [toVector3(-1774.74, -3.73, 5.70), 0, false, "MISE02-SALIERY"],
|
|
},
|
|
[V_GAME_MAFIA_TWO]: { // Mafia 2
|
|
},
|
|
[V_GAME_MAFIA_THREE]: { // Mafia 3
|
|
},
|
|
[V_GAME_MAFIA_ONE_DE]: { // Mafia 1 Definitive Edition
|
|
},
|
|
},
|
|
skinChangePosition: {
|
|
[V_GAME_GTA_SA]: [toVector3(258.14, -41.76, 1002.023), 1.322, 14],
|
|
},
|
|
policeStations: {
|
|
[V_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",
|
|
},
|
|
],
|
|
[V_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",
|
|
},
|
|
],
|
|
[V_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",
|
|
},
|
|
],
|
|
[V_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: {
|
|
[V_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",
|
|
},
|
|
],
|
|
[V_GAME_GTA_VC]: [ // GTA VC
|
|
|
|
],
|
|
[V_GAME_GTA_SA]: [ // GTA SA
|
|
|
|
],
|
|
V_GAME_GTA_UG: [ // GTA UG
|
|
|
|
],
|
|
[V_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: {
|
|
[V_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",
|
|
},
|
|
],
|
|
[V_GAME_GTA_VC]: [ // GTA VC
|
|
{
|
|
position: toVector3(-883.56, -469.39, 13.11),
|
|
heading: -1.5,
|
|
blip: false,
|
|
name: "Little Havana Hospital",
|
|
},
|
|
{
|
|
position: toVector3(-135.38, -980.33, 10.46),
|
|
heading: -1.5,
|
|
blip: false,
|
|
name: "Ocean Beach Hospital",
|
|
},
|
|
{
|
|
position: toVector3(-822.60, 1150.78, 12.41),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "Downtown Hospital",
|
|
},
|
|
{
|
|
position: toVector3(493.86, 700.72, 12.10),
|
|
heading: 1.02,
|
|
blip: false,
|
|
name: "Vice Point Hospital",
|
|
},
|
|
],
|
|
[V_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",
|
|
},
|
|
],
|
|
[V_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",
|
|
},
|
|
],
|
|
[V_GAME_MAFIA_ONE]: [
|
|
// Mafia 1
|
|
{
|
|
position: toVector3(-763.32, 13.25, 761.18),
|
|
heading: 0.0,
|
|
blip: false,
|
|
name: "New Ark Hospital",
|
|
},
|
|
],
|
|
},
|
|
payAndSprays: {
|
|
[V_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: {
|
|
[V_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: {
|
|
[V_GAME_GTA_III]: [ // GTA 3
|
|
{
|
|
position: toVector3(1161.9, -76.73, 7.27),
|
|
blip: false,
|
|
name: "Portland",
|
|
},
|
|
],
|
|
},
|
|
taxiModels: {
|
|
[V_GAME_GTA_III]: [ // GTA III
|
|
110,
|
|
128,
|
|
148
|
|
],
|
|
[V_GAME_GTA_VC]: [ // GTA VC
|
|
150,
|
|
160,
|
|
216
|
|
],
|
|
[V_GAME_GTA_SA]: [// GTA SA
|
|
420,
|
|
438
|
|
],
|
|
[V_GAME_GTA_IV]: [ // GTA IV
|
|
-1932515764,
|
|
-956048545,
|
|
1208856469
|
|
],
|
|
[V_GAME_MAFIA_ONE_DE]: [ // Mafia Definitive Edition
|
|
"shubert_six_taxi",
|
|
],
|
|
},
|
|
vehicleComponents: {
|
|
[V_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: {
|
|
[V_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),
|
|
],
|
|
},
|
|
mainWorldDimension: {
|
|
[V_GAME_GTA_III]: 0, // GTA 3
|
|
[V_GAME_GTA_VC]: 0, // GTA VC
|
|
[V_GAME_GTA_SA]: 0, // GTA SA
|
|
[V_GAME_GTA_IV]: 0, // GTA IV
|
|
[V_GAME_GTA_IV_EFLC]: 0, // GTA IV EFLC
|
|
[V_GAME_MAFIA_ONE]: 0, // Mafia 1
|
|
[V_GAME_MAFIA_TWO]: 0, // Mafia 2
|
|
[V_GAME_MAFIA_THREE]: 0, // Mafia 3
|
|
[V_GAME_MAFIA_ONE_DE]: 0, // Mafia Definitive Edition
|
|
},
|
|
mainWorldInterior: {
|
|
[V_GAME_GTA_III]: 0, // GTA 3
|
|
[V_GAME_GTA_VC]: 0, // GTA VC
|
|
[V_GAME_GTA_SA]: 0, // GTA SA
|
|
[V_GAME_GTA_IV]: 0, // GTA IV
|
|
[V_GAME_GTA_IV_EFLC]: 0, // GTA IV EFLC
|
|
[V_GAME_MAFIA_ONE]: 0, // Mafia 1
|
|
[V_GAME_MAFIA_TWO]: 0, // Mafia 2
|
|
[V_GAME_MAFIA_THREE]: 0, // Mafia 3
|
|
[V_GAME_MAFIA_ONE_DE]: 0, // Mafia Definitive Edition
|
|
},
|
|
mainWorldScene: {
|
|
[V_GAME_GTA_III]: "", // GTA 3
|
|
[V_GAME_GTA_VC]: "", // GTA VC
|
|
[V_GAME_GTA_SA]: "", // GTA SA
|
|
[V_GAME_GTA_IV]: "", // GTA IV
|
|
[V_GAME_GTA_IV_EFLC]: "", // GTA IV EFLC
|
|
[V_GAME_MAFIA_ONE]: "FREERIDE", // Mafia 1
|
|
[V_GAME_MAFIA_TWO]: "", // Mafia 2
|
|
[V_GAME_MAFIA_THREE]: "", // Mafia 3
|
|
[V_GAME_MAFIA_ONE_DE]: "", // Mafia Definitive Edition
|
|
},
|
|
properties: {
|
|
[V_GAME_GTA_VC]: {
|
|
ApartmentBuilding1: {
|
|
businesses: [
|
|
["Manager's Office", 0, 0, toVector3(217.12, -1271.71, 12.09), toVector3(115.48, -823.76, 10.463), 6, null],
|
|
],
|
|
houses: [
|
|
["Apartment 101", 0, 200, toVector3(212.33, -1288.79, 19.27), toVector3(26.67, -1328.89, 13.00), 11, null],
|
|
["Apartment 102", 0, 200, toVector3(214.12, -1281.61, 19.27), toVector3(26.67, -1328.89, 13.00), 11, null],
|
|
["Apartment 103", 0, 200, toVector3(218.84, -1275.62, 19.27), toVector3(26.67, -1328.89, 13.00), 11, null],
|
|
["Apartment 104", 0, 200, toVector3(225.40, -1279.77, 19.27), toVector3(26.67, -1328.89, 13.00), 11, null],
|
|
["Apartment 105", 0, 200, toVector3(218.24, -1277.98, 19.27), toVector3(26.67, -1328.89, 13.00), 11, null],
|
|
["Apartment 106", 0, 200, toVector3(209.08, -1275.73, 19.27), toVector3(26.67, -1328.89, 13.00), 11, null],
|
|
["Apartment 107", 0, 200, toVector3(209.76, -1273.40, 19.27), toVector3(26.67, -1328.89, 13.00), 11, null],
|
|
],
|
|
npcs: [
|
|
["Front Desk Clerk", 160, toVector3(215.11, -1272.65, 12.09), 2.95],
|
|
]
|
|
},
|
|
BusinessOffices: {
|
|
businesses: [
|
|
],
|
|
houses: [
|
|
],
|
|
npcs: [
|
|
],
|
|
businessLocations: [
|
|
["Sprunk Vending Machine", toVector3(-552.47, 768.33, 97.51), 0, null],
|
|
["Sprunk Vending Machine", toVector3(-564.14, 768.39, 97.51), 0, null],
|
|
],
|
|
}
|
|
}
|
|
},
|
|
particleEffects: {
|
|
[V_GAME_GTA_III]: {
|
|
RisingSteamSmall: 0,
|
|
RisingSmokeSmall: 4,
|
|
TallSprayingWater: 5,
|
|
LargeSprayingWater: 6,
|
|
MediumSprayingWater: 7,
|
|
WeirdBullseyeTarget: 8,
|
|
Fire: 9,
|
|
FireWithSmallSmoke: 10,
|
|
SmallSteamSpray: 11,
|
|
VentSteam: 12,
|
|
FlickeringFire: 13,
|
|
BlackSmoke: 14,
|
|
FirePoofThenSmoke: 15,
|
|
FirePoofThenSmokeTemp: 16,
|
|
QuickFirePoof: 17,
|
|
GunMuzzleFlashPistol: 18,
|
|
GunMuzzleFlashRifle: 19,
|
|
GunMuzzleFlashStays: 20,
|
|
SingleSparking: 21,
|
|
}
|
|
},
|
|
areas: {
|
|
[V_GAME_GTA_III]: [
|
|
["Callahan Bridge", 1, [[617.442, -958.347, 6.26083], [1065.44, -908.347, 206.261]], 1],
|
|
["Callahan Point", 0, [[751.68, -1178.22, -13.8723], [1065.68, -958.725, 136.128]], 1],
|
|
["Fish Factory", 2, [[944.208, -1149.81, -9.72576], [1016.14, -1076.01, 40.2742]], 1],
|
|
["Atlantic Quays", 0, [[1065.88, -1251.55, -13.5049], [1501.88, -1069.93, 136.495]], 1],
|
|
["Portland Harbor", 0, [[1363.68, -1069.65, -18.8643], [1815.68, -613.646, 131.136]], 1],
|
|
["Trenton", 0, [[1065.88, -1069.85, 1.49868], [1363.38, -742.054, 151.499]], 1],
|
|
["Chinatown", 0, [[745.421, -908.289, -21.203], [1065.42, -463.69, 129.593]], 1],
|
|
["Red Light District", 0, [[745.378, -463.616, -22.6676], [1065.38, -282.616, 147.332]], 1],
|
|
["Hepburn Heights", 0, [[745.421, -282.4, -13.4117], [1065.42, -78.7699, 136.588]], 1],
|
|
["Saint Marks", 0, [[1065.9, -512.324, -14.296], [1388.9, -78.324, 135.704]], 1],
|
|
["Harwood", 0, [[745.979, -78.1778, -48.5832], [1388.98, 322.676, 101.417]], 1],
|
|
["Portland Beach", 0, [[1389.37, -613.467, -29.883], [1797.6, 199.628, 120.117]], 1],
|
|
["Portland View", 0, [[1066.1, -741.806, -34.2068], [1363.6, -512.806, 115.793]], 1],
|
|
["Liberty City", 2, [[1135.8, -695.021, 6.9661], [1182.36, -631.021, 56.9661]], 1],
|
|
["Liberty City", 2, [[1136.09, -609.976, 6.287], [1182.09, -521.167, 56.287]], 1],
|
|
["Portland", 0, [[617.151, -1329.72, -117.535], [1902.66, 434.115, 482.465]], 1],
|
|
["Callahan Bridge", 1, [[444.768, -958.298, 30.7441], [614.878, -908.298, 180.744]], 2],
|
|
["Liberty City", 2, [[1363.77, -613.339, -4.43849], [1389.17, -512.539, 70.4322]], 1],
|
|
["Fort Staunton", 0, [[239.878, -411.617, 7.62939], [614.322, -61.6167, 163.819]], 2],
|
|
["Aspatria", 0, [[-225.764, -412.604, -9.53674], [116.236, 160.496, 120.271]], 2],
|
|
["Torrington", 0, [[199.766, -1672.42, -61.7588], [577.766, -1059.93, 432.688]], 2],
|
|
["Bedford Point", 0, [[-224.438, -1672.05, -61.3183], [99.562, -1004.45, 432.352]], 2],
|
|
["Newport", 0, [[200.107, -1059.19, -0.000144958], [615.107, -412.193, 198.864]], 2],
|
|
["Belleville Park", 0, [[-121.567, -1003.07, -46.7463], [199.271, -413.068, 224.163]], 2],
|
|
["Liberty Campus", 0, [[117.268, -411.622, 0.000190735], [239.268, -61.6218, 166.36]], 2],
|
|
["Rockford", 0, [[117.236, -61.1105, -17.071], [615.236, 268.889, 83.754]], 2],
|
|
["Francis Intl. Airport", 0, [[-1632.97, -1344.71, -45.9404], [-468.629, -268.443, 254.696]], 3],
|
|
["Wichita Gardens", 0, [[-811.835, -268.074, -45.8745], [-371.041, 92.7263, 254.241]], 3],
|
|
["Cedar Grove", 0, [[-867.229, 93.3882, -50.1134], [-266.914, 650.058, 250.426]], 3],
|
|
["Pike Creek", 0, [[-1407.57, -267.966, -49.6792], [-812.306, 92.7559, 250.437]], 3],
|
|
["Cochrane Dam", 0, [[-1394.5, 93.4441, -46.7412], [-867.52, 704.544, 253.344]], 3],
|
|
["Liberty City", 2, [[1037.53, -907.274, 0.0, 1065.16], [-637.689, 30.0069]], 1],
|
|
["Liberty City", 2, [[966.079, -637.366, 0.0, 1064.83], [-609.557, 30.0789]], 1],
|
|
["Liberty City", 2, [[965.795, -608.99, 0.0, 995.306], [-470.23, 30.9302]], 1],
|
|
["Liberty City", 2, [[995.59, -511.092, 0.0, 1065.11], [-470.23, 30.0789]], 1],
|
|
["Liberty City", 2, [[1035.88, -463.56, 0.0, 1064.8], [85, -179.224, 30.6465]], 1],
|
|
["Shoreside Vale", 0, [[-1644.64, -1351.38, -117.0], [-266.895, 1206.35, 483.0]], 3],
|
|
["Staunton Island", 0, [[-265.479, -1719.97, -114.769], [615.52, 367.265, 485.231]], 1],
|
|
["Shoreside Vale", 0, [[-265.444, 161.113, -41.7094], [-121.287, 367.043, 358.291]], 1],
|
|
["Shoreside Vale", 0, [[-265.434, 79.0922, -45.8201], [-226.334, 161.064, 354.18]], 1],
|
|
["Cochrane Dam", 2, [[-1238.59, 306.841, -0.48605], [-910.445, 504.646, 39.514]], 3],
|
|
]
|
|
},
|
|
seats: {
|
|
[V_GAME_GTA_VC]: [
|
|
//new SeatData(new Vec3(480.47, -53.20, 11.48), -1.76, "sit1", 17),
|
|
//new SeatData(new Vec3(480.84, -53.44, 11.48), -1.22, "sit1", 17),
|
|
//new SeatData(new Vec3(480.94, -49.96, 11.48), -1.38, "sit1", 17),
|
|
//new SeatData(new Vec3(478.97, -49.14, 11.48), -2.32, "sit1", 17),
|
|
],
|
|
},
|
|
};
|
|
|
|
// ===========================================================================
|