Config file

Config = {}

Config.Seller = { --- Seller with ID card
	{
		Ped = `a_m_y_business_01`,
		Coords = vector4(-622.3029, 320.5172, 82.2636, 304.4665),
	}
}

Config.Printer = { --- Printer who marks your ID card
	{
		Ped = `a_m_y_business_01`,
		Coords = vector4(-799.1482, -894.5373, 18.8860, 178.6305),
	}
}

Config.Price = 10000 --- Price for unmarked ID
Config.MoneyItem = 'money' --- Item needed to buy FakeID 

Config.Language = { --- Translation
    ["seller"] = "Seller",
    ["seller_title"] = "Fake ID",
    ["seller_description"] = "Requirement: $10,000 | Receive: 1x Unmarked ID card",
    ["seller_talking"] = "You're talking...",
    ["target_peds"] = "Talk",
    ["notify_title"] = "Error",
    ["notify_description"] = "You don't have enough money!",
    ["notify_description1"] = "You don't have the required items!",
    ["dialog_title"] = "Unmarked ID card",
    ["dialog_firstname"] = "First name",
    ["dialog_middlename"] = "Middle name",
    ["dialog_surname"] = "Surname",
    ["dialog_birthdate"] = "Date of birth",
    ["dialog_date_description"] = "In the format MM/DD/YYYY",
    ["dialog_date_placeholder"] = "01/01/1985",
    ["writing_on_idcard"] = "Printer is adjusting the ID card...",
    ["laminating_idcard"] = "Printer is laminating the ID card...",
    ["printer"] = "Printer",
    ["printer_title"] = "Mark ID card",
    ["printer_description"] = "Requirement: 1x Unmarked ID card | Receive: 1x ID card",
    ["name"] = "Name",
    ["dateofbirth"] = "Date of birth",
}

Config.Duration = { --- Duration for progress bars
    ["duration_talking"] = 5000,
    ["duration_writing"] = 5000,
    ["duration_laminating"] = 5000,
}

Last updated