Neler yeni

Foruma hoş geldin, Ziyaretçi

Forum içeriğine ve tüm hizmetlerimize erişim sağlamak için foruma kayıt olmalı ya da giriş yapmalısınız. Foruma üye olmak tamamen ücretsizdir.

Türkiye'nin İlk ve tek FiveM forum adresi

Forum adresimize hoş geldin FiveMTürk olarak amacımız siz değerli kullanıcılarımıza en aktif fikir ve paylaşım platformu sunmak bir yana en güvenilir şekilde alışveriş yapabileceğiniz bir platform sunmaktır.
DF DF
DF DF
DF DF

Yardım Motel sistemi Hata sorunu

trmacher12

Üye
FT Kullanıcı
Katılım
3 yıl 11 ay 22 gün
Mesajlar
248
Arkadaşlar Yeni motel sistemi indirdim yalnız Dbyi yüklettim acıldı böyle bir hata veriyor. nasıl çözebilirim acaba
 
DF

Ekli dosyalar

  • Adsız.jpg
    Adsız.jpg
    158.4 KB · Görüntüleme: 29
disc_property_owners diye tabloyu bulamıyor tam olarak doğru bir şekilde yüklediğinize eminmisiniz ?
 
DF
Kod:
INSERT INTO `datastore` (name, label, shared) VALUES
  ('property','Property',0)
;

create table if not exists disc_property
(
    id bigint unsigned auto_increment PRIMARY KEY,
    name text not null,
    sold tinyint(1) default 0 null,
    price int default 0 not null,
    locked tinyint(1) default 1 null,
    constraint id
        unique (id)
);

create table if not exists disc_property_garage_vehicles
(
    id bigint unsigned auto_increment PRIMARY KEY,
    name text not null,
    plate text not null,
    props longtext not null,
    constraint id
        unique (id)
);

create table if not exists disc_property_inventory
(
    id bigint unsigned auto_increment PRIMARY KEY,
    inventory_name text null,
    data longtext null,
    constraint id
        unique (id)
);

create table if not exists disc_property_owners
(
    id bigint unsigned auto_increment PRIMARY KEY,
    name text null,
    identifier text null,
    active tinyint(1) default 1 null,
    owner tinyint(1) default 0 null,
    constraint id
        unique (id)
);


disc-propertynin create kodları bunlar yüklediğine emin misin ?
 
DF
Kod:
INSERT INTO `datastore` (name, label, shared) VALUES
  ('property','Property',0)
;

create table if not exists disc_property
(
    id bigint unsigned auto_increment PRIMARY KEY,
    name text not null,
    sold tinyint(1) default 0 null,
    price int default 0 not null,
    locked tinyint(1) default 1 null,
    constraint id
        unique (id)
);

create table if not exists disc_property_garage_vehicles
(
    id bigint unsigned auto_increment PRIMARY KEY,
    name text not null,
    plate text not null,
    props longtext not null,
    constraint id
        unique (id)
);

create table if not exists disc_property_inventory
(
    id bigint unsigned auto_increment PRIMARY KEY,
    inventory_name text null,
    data longtext null,
    constraint id
        unique (id)
);

create table if not exists disc_property_owners
(
    id bigint unsigned auto_increment PRIMARY KEY,
    name text null,
    identifier text null,
    active tinyint(1) default 1 null,
    owner tinyint(1) default 0 null,
    constraint id
        unique (id)
);


disc-propertynin create kodları bunlar yüklediğine emin misin ?


hocam bendekş böyle yalnız
CREATE TABLE `disc_property` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` text COLLATE utf8mb4_turkish_ci NOT NULL,
`sold` tinyint(1) DEFAULT '0',
`price` int(11) NOT NULL DEFAULT '0',
`locked` tinyint(1) DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_turkish_ci;

--
-- Tablo döküm verisi `disc_property`
--

INSERT INTO `disc_property` (`id`, `name`, `sold`, `price`, `locked`) VALUES
(1, 'Motel 1', 0, 50000, 1),
(2, 'Motel 2', 0, 50000, 1),
(3, 'Motel 3', 0, 50000, 1),
(4, 'Motel 4', 0, 50000, 1),
(5, 'Motel 5', 0, 50000, 1),
(6, 'Motel 6', 0, 50000, 1),
(7, 'Motel 7', 0, 50000, 1),
(8, 'Motel 8', 0, 50000, 1),
(9, 'Motel 9', 0, 50000, 1),
(10, 'Motel 10', 0, 50000, 1),
(11, 'Motel 11', 0, 50000, 1),
(12, 'Motel 12', 0, 50000, 1),
(13, 'Motel 13', 0, 50000, 1),
(14, 'Motel 14', 0, 50000, 1),
(15, 'Motel 15', 0, 50000, 1),
(16, 'Motel 16', 0, 50000, 1),
(17, 'Motel 17', 0, 50000, 1),
(18, 'Motel 18', 0, 50000, 1),
(19, 'Motel 19', 0, 50000, 1),
(20, 'Motel 20', 0, 50000, 1),
(21, 'Motel 21', 0, 50000, 1),
(22, 'Motel 22', 0, 50000, 1),
(23, 'Motel 23', 0, 50000, 1),
(24, 'Motel 24', 0, 50000, 1),
(25, 'Motel 25', 0, 50000, 1),
(26, 'Motel 26', 0, 50000, 1),
(27, 'Motel 27', 0, 50000, 1),
(28, 'Motel 28', 0, 50000, 1),
(29, 'Motel 29', 0, 50000, 1),
(30, 'Motel 30', 0, 50000, 1),
(31, 'Motel 31', 0, 50000, 1),
(32, 'Motel 32', 0, 50000, 1),
(33, 'Motel 33', 0, 50000, 1),
(34, 'Motel 34', 0, 50000, 1),
(35, 'Motel 35', 0, 50000, 1),
(36, 'Motel 36', 0, 50000, 1),
(37, 'Motel 37', 0, 50000, 1),
(38, 'Motel 38', 0, 50000, 1),
(39, 'Motel 39', 0, 50000, 1),
(40, 'Motel 40', 0, 50000, 1),
(41, 'Motel 41', 0, 50000, 1),
(42, 'Motel 42', 0, 50000, 1),
(43, 'Motel 43', 0, 50000, 1),
(44, 'Motel 44', 0, 50000, 1),
(45, 'Motel 45', 0, 50000, 1),
(46, 'Motel 46', 0, 50000, 1),
(47, 'Motel 47', 0, 50000, 1),
(48, 'Motel 48', 0, 50000, 1),
(49, 'Motel 49', 0, 50000, 1),
(50, 'Motel 50', 0, 50000, 1);

--
-- Dökümü yapılmış tablolar için indeksler
--

--
-- Tablo için indeksler `disc_property`
--
ALTER TABLE `disc_property`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `id` (`id`);

--
-- Dökümü yapılmış tablolar için AUTO_INCREMENT değeri
--

--
-- Tablo için AUTO_INCREMENT değeri `disc_property`
--
ALTER TABLE `disc_property`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
 
DF
sorunu çözdüm arkadaşlar yapan arkadaş sql dosyasını hatalı yapmış düzelttim hata gitti
 
DF
sorunu çözdümde ben bu seferde motele anahtar sistemi eklemem lazım disc envanter üstüne bende esx
Anladım. Ben kuramadım o motel sistemini yeni disx-property kurdum fakat bu seferde motel gitti o yüzden başka klasik motel sistemine geçtim.
 
DF

Forumdan daha fazla yararlanmak için giriş yapın yada üye olun!

Forumdan daha fazla yararlanmak için giriş yapın veya kayıt olun!

Kayıt ol

Forumda bir hesap oluşturmak tamamen ücretsizdir.

Şimdi kayıt ol
Giriş yap

Eğer bir hesabınız var ise lütfen giriş yapın

Giriş yap

Bu konuyu görüntüleyen kullanıcılar

Tema düzenleyici

Tema özelletirmeleri

Granit arka planlar

Lütfen Javascript'i etkinleştirin!Javascript'i etkinleştirin!