- Katılım
- 4 yıl 8 gün
- Mesajlar
- 1,915
- Discord
- Kibra#9999
KIBRA MOTELS
Metadata destekli MLO ile uyarlayanabilir Motel sistemidir.
Özellikler:
- Her odanın kendine özel anahtarı vardır. Odalara erişebilmek için, o odanın anahtarına sahip olmanız gerekir.
- Çoklu dil desteği mevcuttur.
- oxmysql ve mysql-async ile tam uyumludur.
- Çoğu özelliği config.lua üzerinden kapatıp açabilirsiniz.
- Motel ve oda sayısını istediğiniz kadar arttırabilirsiniz.
Satın almak için;
Metadata destekli MLO ile uyarlayanabilir Motel sistemidir.
Özellikler:
- Her odanın kendine özel anahtarı vardır. Odalara erişebilmek için, o odanın anahtarına sahip olmanız gerekir.
- Çoklu dil desteği mevcuttur.
- oxmysql ve mysql-async ile tam uyumludur.
- Çoğu özelliği config.lua üzerinden kapatıp açabilirsiniz.
- Motel ve oda sayısını istediğiniz kadar arttırabilirsiniz.
Satın almak için;
Linkleri,görmek için
Giriş yap veya üye ol.
veya Discord: Kibra#9999
Linkleri,görmek için
Giriş yap veya üye ol.
Kod:
-- Author Kibra#9999
-- My Discord **dc.kibra.online**
Config = {}
Config.Locale = "en"
Config.SaveInventoryStashName = "MotelStash" -- Buraya yazdığınız isim otel depolarının başlığıdır.
Config.MultiMotel = true -- Oyuncuların birden fazla otel odası kiralamasına izin verir.
Config.MotelBillAmount = 100 -- Motel Oda Kiralama Ücreti
Config.QBPhone = true -- QB Phone eklentisini kullanıyorsanız, doğru olarak işaretleyin. Faturalandırma için.
Config.MotelsBlipAlwaysOpen = true -- Motel bliplerini daim açık tutar.
Config.MetaData = true -- (Yalnızca qbcore için geçerlidir.) Bir motel odası kiralandığında, o motel odasına özel bir anahtar verilir. Ve bu anahtarı kullanan kişiler kiraladıkları odaya girip depoya giriş yapabilirler. Yanlış olarak işaretlerseniz, her oyuncu yalnızca kiraladığı odaya girebilir.
Config.UIDrawText = true
-- Doğru olarak işaretlerseniz DrawText işlevi kullanılır. Yanlış olarak işaretlerseniz, Kullanıcı Arayüzü DrawText kullanılacak ve optimize edilecektir.
Config.MotelKeyItemName = "motelkey" -- Metadata özelliği açıksa, kullanabilirsiniz.
Config.RoomNoDrawTextCommand = "showroomno"
-- When this command is used, the number of hotel rooms becomes visible to all players from the specified distance level.
Config.NewRoomAddCommand = "newaddmotelroom"
-- Command that allows you to add a new motel room to the database.
Config.StashAccessEveryone = false
-- This property will work if the metadata property is set to false. In this case, if marked as true, anyone can do the Storage Check of the Room. However, if false, only the room owner can do this.
Config.MotelRoomRentBuyType = "cash" -- "cash" or "bank"
Config.CopyRoomKeyPrice = 50
-- A fee to issue a new key if you lose your motel room key.
Config.Wardrobe = {
EventType = "client", -- client or server
EventName = "qb-clothing:client:openOutfitMenu", -- Clothing Menu Event Name
}
-- UI Controls
Config.UIControls = {
StashLockControl = "[E]",
DoorLockOpenControl = "[E]",
StashOpenControl = "[G]",
OpenReceptionControl = "[E]",
WardrobeOpenControl = "[E]"
}
-- Controls
Config.StashLockControl = 38 -- Motel Stash Lock Control
Config.DoorLockControl = 38 -- Motel Door Lock Kontrol
Config.StashOpenControl = 47 -- Motel Stash Open Control
Config.OpenReceptionControl = 38 -- Reception Menu Open Control
Config.WardrobeOpenControl = 38
Config.Motels = {
{
MotelName = "Pinkcage Motel", -- Motel Name
MotelSocietyName = "PNKCGMTL", -- Motel Name
Background = "img/motel.png", -- Reception background image.
MotelMainCoord = vector4(324.49, -211.29, 54.09, 324.03), -- Motel Blip Coord
MotelBlip = {Id = 475, Color = 1, Scale = 0.6},
MotelBlipOpen = true, -- If true, Motel Blip is activated.
MotelDistance = 10.0,
MotelDoorDistance = 1.5, -- The distance value of the players to the door
ReceptionCoord = vector4(324.84, -230.11, 54.22, 328.19), -- Reception Location Vector4()
Payment = true, -- If it is true, an invoice will be issued for the room rented by the players at certain time intervals.
MarkerColor = {r = 57, g = 125, b = 199, a = 0.9}, -- Marker color adjustment available at the reception.
RoomPrice = 100, -- Motel Room Rent Price,
InvoiceAmount = 50,
Wardrobe = true, -- If true, motel rooms have wardrobes.
MotelDoors = {
-- Motel Rooms Available. You can add a new hotel room to this list.
-- (Note: For a new hotel room you add here, you need to add a new column to the kibra_motels table in the database.
{
Owner = nil,
KeyData = nil,
Model = -1156992775, -- Model Number of the Door
AutoLock = true, -- Auto Door Lock
Coord = vector4(307.06, -212.96, 54.25, 89.29), -- Coordinate of the door in the room
StashCoord = vector4(307.18, -208.02, 53.77, 61.15), -- Coordinate of the warehouse in the room
StashLock = true,
Wardrobe = vector4(302.68, -206.8, 54.23, 328.76) -- Clothe / Wardrobe
},