Trunk Lid: Difference between revisions

From PZwiki
m (Automated CodeBox update)
m (Automated Formatting)
 
Line 16: Line 16:
|item_id_more=Item IDs
|item_id_more=Item IDs
}}
}}
{{Quote|text=A damaged trunk lid may result in objects falling from your vehicle.|author=In-game description}}
{{Quote|text=A damaged trunk lid may result in objects falling from your vehicle.|author=In-game description}}
A '''trunk lid''' is an [[Items|item]] forming part of most [[vehicles]]. If a trunk lid is missing, heavily damaged, or broken, items can fall out of the trunk.
A '''trunk lid''' is an [[Items|item]] forming part of most [[vehicles]]. If a trunk lid is missing, heavily damaged, or broken, items can fall out of the trunk.
Line 22: Line 21:
==Usage==
==Usage==
===Installing/Uninstalling===
===Installing/Uninstalling===
A trunk lid can be installed or uninstalled from a vehicle using a [[wrench]] so long as the recipe has been [[Laines Auto Manual|learned]] for that [[Vehicles#Types|vehicle type]]. Each level of [[mechanics]] will decrease the chance of causing damage and increase the chance of success, with level 3 resulting in no damage and 100% chance of success.  
A trunk lid can be installed or uninstalled from a vehicle using a [[wrench]] so long as the recipe has been [[Laines Auto Manual|learned]] for that [[Vehicles#Types|vehicle type]]. Each level of [[mechanics]] will decrease the chance of causing damage and increase the chance of success, with level 3 resulting in no damage and 100% chance of success.


It is not possible to mix different classes of car parts. For example, a '''heavy duty''' class trunk lid cannot be fitted onto a '''sport''' class vehicle.
It is not possible to mix different classes of car parts. For example, a '''heavy duty''' class trunk lid cannot be fitted onto a '''sport''' class vehicle.
===Securing items===
===Securing items===
A trunk lid is used to prevent items in the [[trunk]] from falling out. Having a trunk lid fitted in a [[multiplayer]] game allows it to be locked using the [[Car Key|car key]], preventing other players from stealing items. However, other players can smash the [[Car Window|windows]] and gain access, so it is highly recommended to park [[vehicles]] inside a secure safehouse if possible.
A trunk lid is used to prevent items in the [[trunk]] from falling out. Having a trunk lid fitted in a [[multiplayer]] game allows it to be locked using the [[Car Key|car key]], preventing other players from stealing items. However, other players can smash the [[Car Window|windows]] and gain access, so it is highly recommended to park [[vehicles]] inside a secure safehouse if possible.
Line 73: Line 73:
         MechanicsItem = TRUE,
         MechanicsItem = TRUE,
         WorldStaticModel = CarTrunkLid,
         WorldStaticModel = CarTrunkLid,
     }  
     }
}}
}}


Line 97: Line 97:
         MechanicsItem = TRUE,
         MechanicsItem = TRUE,
         WorldStaticModel = CarTrunkLid,
         WorldStaticModel = CarTrunkLid,
     }  
     }
}}
}}


Line 121: Line 121:
         MechanicsItem = TRUE,
         MechanicsItem = TRUE,
         WorldStaticModel = CarTrunkLid,
         WorldStaticModel = CarTrunkLid,
     }  
     }
}}
}}
}}
}}

Latest revision as of 13:01, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Trunk Lid
CarTrunkLid Model.png
General
Category
Vehicle Maintenance
Encumbrance
Moodle Icon HeavyLoad.png
15.0
Function
Prevents items from falling out of the trunk.
Properties
Chance damaged
25%
Install/Uninstall
Tool(s)
Recommended level
Technical
Item ID
Base.TrunkDoor1
Base.TrunkDoor2
Base.TrunkDoor3

[See all]
A damaged trunk lid may result in objects falling from your vehicle.
— In-game description

A trunk lid is an item forming part of most vehicles. If a trunk lid is missing, heavily damaged, or broken, items can fall out of the trunk.

Usage

Installing/Uninstalling

A trunk lid can be installed or uninstalled from a vehicle using a wrench so long as the recipe has been learned for that vehicle type. Each level of mechanics will decrease the chance of causing damage and increase the chance of success, with level 3 resulting in no damage and 100% chance of success.

It is not possible to mix different classes of car parts. For example, a heavy duty class trunk lid cannot be fitted onto a sport class vehicle.

Securing items

A trunk lid is used to prevent items in the trunk from falling out. Having a trunk lid fitted in a multiplayer game allows it to be locked using the car key, preventing other players from stealing items. However, other players can smash the windows and gain access, so it is highly recommended to park vehicles inside a secure safehouse if possible.

Condition

The trunk lid's condition will decrease if the rear of the vehicle hits either a zombie or any solid object. A trunk lid with low condition will allow items to fall out of the vehicle's trunk, which can be heard as a clunk sound.

A trunk lid can be repaired with metal sheets or small metal sheets and a propane torch at metalworking level 1 and mechanics level 2. Alternatively, it can be repaired with screws instead of using a torch, however this will repair significantly less durability and take far more resources to do.

Notes

  • There have been several reports of items falling from vehicles and subsequently disappearing. This is likely a bug.

Item IDs

Vehicle type Item ID
Standard Base.TrunkDoor1
Heavy-Duty Base.TrunkDoor2
Sport Base.TrunkDoor3

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Base.TrunkDoor1
Source: ProjectZomboid\media\scripts\vehicles\vehiclesitems.txt

Retrieved: Build 41.78.16
item TrunkDoor1
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	15.0,
        Type	=	Normal,
        DisplayName	=	Trunk Lid,
        Icon	=	EngineDoor,
        VehicleType =   1,
        ChanceToSpawnDamaged = 25,
        ConditionMax = 100,
        MechanicsItem = TRUE,
        WorldStaticModel = CarTrunkLid,
    }

Base.TrunkDoor2
Source: ProjectZomboid\media\scripts\vehicles\vehiclesitems.txt

Retrieved: Build 41.78.16
item TrunkDoor2
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	15.0,
        Type	=	Normal,
        DisplayName	=	Trunk Lid,
        Icon	=	EngineDoor,
        VehicleType =   2,
        ChanceToSpawnDamaged = 25,
        ConditionMax = 100,
        MechanicsItem = TRUE,
        WorldStaticModel = CarTrunkLid,
    }

Base.TrunkDoor3
Source: ProjectZomboid\media\scripts\vehicles\vehiclesitems.txt

Retrieved: Build 41.78.16
item TrunkDoor3
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	15.0,
        Type	=	Normal,
        DisplayName	=	Trunk Lid,
        Icon	=	EngineDoor,
        VehicleType =   3,
        ChanceToSpawnDamaged = 25,
        ConditionMax = 100,
        MechanicsItem = TRUE,
        WorldStaticModel = CarTrunkLid,
    }

See also