Configuration Guide
Welcome to the configuration section of Drugs V: Effects! This page will guide you through setting up and customizing the script to fit your server's needs.
Config.staffList = {
["license:abcdef123456"] = true, -- License ID
["steam:110000123456789"] = true, -- Steam Hex ID
["fivem:123456"] = true, -- FiveM ID
}
Config.consumables = {
{
label = "Kush Weed",
itemName = "weed_kush_pack",
drunkClipSet = "move_m@drunk@slightlydrunk", -- Drunk movement clipset
time = 60, -- sec
animTime = 10, -- sec
anim = {
name = "WORLD_HUMAN_SMOKING_POT",
}
},
{
label = "Haze Weed",
itemName = "weed_haze_pack",
drunkClipSet = "move_m@drunk@slightlydrunk", -- Drunk movement clipset
time = 60, -- sec
animTime = 10, -- sec
anim = {
name = "WORLD_HUMAN_SMOKING_POT",
}
},
{
label = "Meth",
itemName = "meth_packed",
drunkClipSet = "move_m@drunk@verydrunk",
time = 60,
animTime = 5,
prop = {
model = "prop_bong_01",
bone = 18905,
offset = vector3(0.10, -0.25, 0.0),
rotation = vector3(95.0,190.0,180.0)
},
anim = {
dict = "anim@safehouse@bong",
name = "bong_stage3"
}
},
{
label = "Coke",
itemName = "coke_packed",
drunkClipSet = "move_m@drunk@verydrunk",
time = 60,
animTime = 10,
anim = {
dict = "anim@mp_player_intcelebrationmale@face_palm",
name = "face_palm"
}
},
{
label = "Heroin",
itemName = "heroin_packed",
drunkClipSet = "move_m@drunk@slightlydrunk",
time = 180,
animTime = 30,
prop = {
model = "prop_syringe_01",
bone = 18905,
offset = vector3(0.12, 0.03, 0.03),
rotation = vector3(143.0, 30.0, 0.0)
},
anim = {
flag = 16,
dict = "rcmpaparazzo1ig_4",
name = "miranda_shooting_up"
}
},
}
Last updated