🛠️Installation
Items Installation
Metadata Installation
} else if (itemData.name == "car_insurance") {
$(".item-info-title").html("<p>" + itemData.label + "</p>");
$(".item-info-description").html(
"<p><strong>Name: </strong><span>" +
itemData.info.name +
"</span></p><p><strong>Plate: </strong><span>" +
itemData.info.plate +
"</span></p><p><strong>Vehicle Model: </strong><span>" +
itemData.info.model +
"</span></p><p><strong>Expires: </strong><span>" +
itemData.info.expire +
"</span></p>"
);
} else if (itemData.name == "car_registration") {
$(".item-info-title").html("<p>" + itemData.label + "</p>");
$(".item-info-description").html(
"<p><strong>Name: </strong><span>" +
itemData.info.name +
"</span></p><p><strong>Plate: </strong><span>" +
itemData.info.plate +
"</span></p><p><strong>Vehicle Model: </strong><span>" +
itemData.info.model +
"</span></p><p><strong>Expires: </strong><span>" +
itemData.info.expire +
"</span></p>"
);
} else if (itemData.name == "health_insurance") {
$(".item-info-title").html("<p>" + itemData.label + "</p>");
$(".item-info-description").html(
"<p><strong>Name: </strong><span>" +
itemData.info.name +
"</span></p><p><strong>Expires: </strong><span>" +
itemData.info.expire +
"</span></p>"
);
} else if (itemData.name == "home_insurance") {
$(".item-info-title").html("<p>" + itemData.label + "</p>");
$(".item-info-description").html(
"<p><strong>Name: </strong><span>" +
itemData.info.name +
"</span></p><p><strong>Expires: </strong><span>" +
itemData.info.expire +
"</span></p>"
);
} else if (itemData.name == "car_camera") {
$(".item-info-title").html("<p>" + itemData.label + "</p>");
$(".item-info-description").html(
"</span></p><p><strong>Plate: </strong><span>" +
itemData.info.plate +
"</span></p>"
);
Emotes Menu Installation
-- Path: rpemotes/Client/AnimationList.lua
-- This code below is inside the RP.Emotes = {
["health_insurance"] = {"anim@heists@humane_labs@finale@keycards", "ped_a_enter_loop", "Card", AnimationOptions =
{
Prop = "m-insurance_prop_card_health",
PropBone = 18905,
PropPlacement = {0.17, 0.03, 0.04, 1.0, 184.0, 0.0},
EmoteLoop = true,
EmoteMoving = true,
}},
["car_insurance"] = {"anim@heists@humane_labs@finale@keycards", "ped_a_enter_loop", "Card", AnimationOptions =
{
Prop = "m-insurance_prop_card_vehicle",
PropBone = 18905,
PropPlacement = {0.17, 0.03, 0.04, 1.0, 184.0, 0.0},
EmoteLoop = true,
EmoteMoving = true,
}},
["car_registration"] = {"anim@heists@humane_labs@finale@keycards", "ped_a_enter_loop", "Card", AnimationOptions =
{
Prop = "m-insurance_prop_card_registration",
PropBone = 18905,
PropPlacement = {0.17, 0.03, 0.04, 1.0, 184.0, 0.0},
EmoteLoop = true,
EmoteMoving = true,
}},
["home_insurance"] = {"anim@heists@humane_labs@finale@keycards", "ped_a_enter_loop", "Card", AnimationOptions =
{
Prop = "m-insurance_prop_card_house",
PropBone = 18905,
PropPlacement = {0.17, 0.03, 0.04, 1.0, 184.0, 0.0},
EmoteLoop = true,
EmoteMoving = true,
}},
Jobs Installation
Last updated