Config File
Config = {}
Config.Framework = "newesx" -- oldesx = OLD Version | newesx = NEW Version
Config.Webhook = 'YOUR WEBHOOK' -- place your webhook discord here
Config.Positions = {
{ Ped = "s_m_m_doctor_01", -- ped, you can change it with the one you want
Coords = vector4(296.5526, -591.2567, 43.27486, 73.79852), -- treatment position
Text = '~r~[E] ~w~Legal Medical Treatment', -- drawtext in front of the npc
Price = 1, PaymentType = "money", -- The payment method and the price for the treatment
UseBlip = true, -- set to false if you don't want to use blips
Blip = {
Sprite = 51,
Color = 3,
Scale = 1.0,
Name = "Legal Doctor",
}
},
{ Ped = "s_m_m_doctor_01",
Coords = vector4(300.4216, -579.7741, 43.26084, 71.50063),
Text = '~r~[E] ~w~Legal Medical Treatment 2',
Price = 2, PaymentType = "bank",
UseBlip = true,
Blip = {
Sprite = 51,
Color = 3,
Scale = 1.0,
Name = "Legal Doctor",
}
},
{ Ped = "s_m_m_doctor_01",
Coords = vector4(2436.344, 4968.015, 42.34761, 135.5272),
Text = '~r~[E] ~w~Illegal Medical Treatment',
Price = 3, PaymentType = "black_money",
UseBlip = true,
Blip = {
Sprite = 51,
Color = 1,
Scale = 1.0,
Name = "Illegal Doctor",
}
},
-- Add other positions here if you want :)
}
Config.Notifications = {
InsufficientMoney = "You don't have enough money on you",
InsufficientBankMoney = "You don't have enough money in the bank",
InsufficientBlackMoney = "You don't have enough black money",
DoctorExamination = "The doctor examines you",
YouAreReanimated = "You've been revived",
YouAreReached = "You've been treated",
PayBank = "You paid 1$ in the bank",
PayMoney = "You paid 1$ in the cash",
PayBlackmoney = "You paid 1$ in the black money"
}
Config = {}
Config.Framework = "newqbcore" -- oldqbcore = OLD Version | newqbcore = NEW Version
Config.Webhook = 'YOUR WEBHOOK' -- place your webhook discord here
Config.Job = 'ambulance' -- name of your job
Config.GoMoney = true -- if you set to true the money go to ambulance job
Config.Progressbar = 10000 -- time progress bar
Config.Positions = {
{ Ped = "s_m_m_doctor_01", -- ped, you can change it with the one you want
Coords = vector4(296.5526, -591.2567, 43.27486, 73.79852), -- treatment position
Text = '[E] for Getting treatment', -- drawtext in front of the npc
Price = 1, PaymentType = "money", -- The payment method and the price for the treatment
Access = "DrawText", -- "DrawText" or "OXTarget" or "TextUi"
UseBlip = true, -- set to false if you don't want to use blips
Blip = {
Sprite = 51,
Color = 3,
Scale = 1.0,
Name = "Legal Doctor",
}
},
{ Ped = "s_m_m_doctor_01",
Coords = vector4(300.4216, -579.7741, 43.26084, 71.50063),
Text = 'Getting treatment',
Price = 2, PaymentType = "bank",
Access = "OXTarget",
UseBlip = true,
Blip = {
Sprite = 51,
Color = 3,
Scale = 1.0,
Name = "Legal Doctor",
}
},
{ Ped = "s_m_m_doctor_01",
Coords = vector4(2436.344, 4968.015, 42.34761, 135.5272),
Text = '[E] for Getting treatment',
Price = 3, PaymentType = "black_money",
Access = "TextUi",
UseBlip = true,
Blip = {
Sprite = 51,
Color = 1,
Scale = 1.0,
Name = "Illegal Doctor",
}
},
-- Add other positions here if you want :)
}
Config.Notifications = {
InsufficientMoney = "You don't have enough money on you",
InsufficientBankMoney = "You don't have enough money in the bank",
InsufficientBlackMoney = "You don't have enough black money",
DoctorExamination = "The doctor examines you",
YouAreReanimated = "You've been revived",
YouAreReached = "You've been treated",
PayBank = "You paid 1$ in the bank",
PayMoney = "You paid 1$ in the cash",
PayBlackmoney = "You paid 1$ in the black money"
}
Last updated