π Installation
These steps cover the basic installation of Renewed-Atmrobbery
Step 1
Put Renewed-Atmrobbery and ep_atmprops inside your server and add them to your server.cfg
Step 2
Headover to your ox_inventory/data/items.lua
and paste in the following items.
ox_inventory/data/items.lua
['rope'] = {
label = 'Rope',
weight = 160,
client = {
event = 'Renewed-Atmrobbery:useRope'
}
},
['atm1'] = {
label = 'ATM',
weight = 10000,
stack = false,
client = {
event = 'Renewed-Atmrobbery:useAtm'
}
},
['atm2'] = {
label = 'ATM',
weight = 10000,
stack = false,
client = {
event = 'Renewed-Atmrobbery:useAtm'
}
},
['atm3'] = {
label = 'ATM',
weight = 10000,
stack = false,
client = {
event = 'Renewed-Atmrobbery:useAtm'
}
},
Step 3
Headover to ox_inventory/web/images
and paste in the images from Renewed-Atmrobbery
Step 4 (Optional)
Headover to Renewed-Weaponscarry/data/carry.lua and paste in the following
Renewed-Weaponscarry/data/carry.lua
atm1 = {
model = `ep_atm_03`,
pos = vec3(0.0, -0.25, -0.51),
rot = vec3(3.0, 0.0, 0.0),
bone = 28422,
dict = 'anim@heists@box_carry@',
anim = 'idle',
disableKeys = {
disableSprint = true,
disableJump = true,
disableAttack = true,
disableVehicle = true
}
},
atm2 = {
model = `ep_atm_02`,
pos = vec3(0.0, -0.25, -0.61),
rot = vec3(3.0, 0.0, 0.0),
bone = 28422,
dict = 'anim@heists@box_carry@',
anim = 'idle',
disableKeys = {
disableSprint = true,
disableJump = true,
disableAttack = true,
disableVehicle = true
}
},
atm3 = {
model = `ep_fleeca_atm`,
pos = vec3(0.0, -0.25, -0.51),
rot = vec3(3.0, 0.0, 0.0),
bone = 28422,
dict = 'anim@heists@box_carry@',
anim = 'idle',
disableKeys = {
disableSprint = true,
disableJump = true,
disableAttack = true,
disableVehicle = true
}
},