Exports
Last updated
exports('addLocalEntity', addLocalEntity)addLocalEntity({
entity = 12345,
distance = 3.0,
options = {
{
label = 'Inspect',
onSelect = function() print('Inspecting entity') end
}
}
})exports('addEntity', addEntity)addEntity({
netId = 67890,
distance = 4.0,
options = {
{
label = 'Check',
onSelect = function() print('Checking entity') end
}
}
})exports('addGlobalPed', addGlobalPed)addGlobalPed({
distance = 5.0,
options = {
{
label = 'Talk',
onSelect = function() print('Talking to ped') end
}
}
})exports('addGlobalVehicle', addGlobalVehicle)addGlobalVehicle({
distance = 3.0,
options = {
{
label = 'Enter Vehicle',
nSelect = function() print('Entering vehicle') end
}
}
})exports('addModel', addModel)addModel({
model = 'elegy',
distance = 4.0,
options = {
{
label = 'Drive Car',
onSelect = function() print('Driving car') end
}
}
})exports('removeInteract', removeInteract)removeInteract(1)