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

Script ESX Taco Scriptini QBCORE Çevirecek Varmı?

  • Konbuyu başlatan 59de4ef
  • Başlangıç tarihi
  • Cevaplar 12
  • Görüntüleme 783
qb taco scriptleri var githubda onları kullan onlar daha iyi
 
Merhaba,

Konu Katagorisi Tarafımca Değiştirilmiştir.

İyi Forumlar Dilerim , Saygılarımla..
 
Buyur hocom
----Gerekli dosyalar----
QBCore Framework -

PolyZone -

qb-target -

qb-menu -

nh-keyboard -

mlo -
----------Yapılması gerekenler--------------

add job taco to shared​

["taco"] = {
label = "Taco",
defaultDuty = true,
grades = {
['0'] = {
name = "Trainee",
payment = 50
},
['1'] = {
name = "Employee",
payment = 75
},
['2'] = {
name = "Flipper",
payment = 100
},
['3'] = {
name = "Manager",
payment = 125
},
['4'] = {
name = "CEO",
isboss = true,
payment = 150
},
},
},

add to qb-bossmenu​

['taco'] = vector3(20.45, -1602.09, 29.38),

add to qb-target / targetmodels​

["tacogarage"] = {
models = {
"a_f_y_hipster_02"
},
options = {
{
type = "client",
event = "garage:TacoGarage",
icon = "fas fa-car",
label = "Taco Garage",
job = "taco",
}
},
distance = 2.5,
},

add item taco to shared​

["taco"] = {["name"] = "taco", ["label"] = "Taco", ["weight"] = 100, ["type"] = "item", ["image"] = "taco.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["lettuce"] = {["name"] = "lettuce", ["label"] = "lettuce", ["weight"] = 100, ["type"] = "item", ["image"] = "lettuce.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["bun"] = {["name"] = "bun", ["label"] = "bun", ["weight"] = 100, ["type"] = "item", ["image"] = "bun.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["oil"] = {["name"] = "oil", ["label"] = "oil", ["weight"] = 100, ["type"] = "item", ["image"] = "oil.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
['meat'] = {['name'] = 'meat', ['label'] = 'meat', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'meat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},

add taco to qb-smallresources​

config / Consumeables​

["taco"] = math.random(25, 34),

server/consumables.lua​

QBCore.Functions.CreateUseableItem("taco", function(source, item)
local Player = QBCore.Functions.GetPlayer(source)
if Player.Functions.RemoveItem(item.name, 1, item.slot) then
TriggerClientEvent("consumables:client:Eat", source, item.name)
end
end)
 
Buyur hocom
----Gerekli dosyalar----
QBCore Framework -

PolyZone -

qb-target -

qb-menu -

nh-keyboard -

mlo -
----------Yapılması gerekenler--------------

add job taco to shared​

["taco"] = {
label = "Taco",
defaultDuty = true,
grades = {
['0'] = {
name = "Trainee",
payment = 50
},
['1'] = {
name = "Employee",
payment = 75
},
['2'] = {
name = "Flipper",
payment = 100
},
['3'] = {
name = "Manager",
payment = 125
},
['4'] = {
name = "CEO",
isboss = true,
payment = 150
},
},
},

add to qb-bossmenu​

['taco'] = vector3(20.45, -1602.09, 29.38),

add to qb-target / targetmodels​

["tacogarage"] = {
models = {
"a_f_y_hipster_02"
},
options = {
{
type = "client",
event = "garage:TacoGarage",
icon = "fas fa-car",
label = "Taco Garage",
job = "taco",
}
},
distance = 2.5,
},

add item taco to shared​

["taco"] = {["name"] = "taco", ["label"] = "Taco", ["weight"] = 100, ["type"] = "item", ["image"] = "taco.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["lettuce"] = {["name"] = "lettuce", ["label"] = "lettuce", ["weight"] = 100, ["type"] = "item", ["image"] = "lettuce.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["bun"] = {["name"] = "bun", ["label"] = "bun", ["weight"] = 100, ["type"] = "item", ["image"] = "bun.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
["oil"] = {["name"] = "oil", ["label"] = "oil", ["weight"] = 100, ["type"] = "item", ["image"] = "oil.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
['meat'] = {['name'] = 'meat', ['label'] = 'meat', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'meat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},

add taco to qb-smallresources​

config / Consumeables​

["taco"] = math.random(25, 34),

server/consumables.lua​

QBCore.Functions.CreateUseableItem("taco", function(source, item)
local Player = QBCore.Functions.GetPlayer(source)
if Player.Functions.RemoveItem(item.name, 1, item.slot) then
TriggerClientEvent("consumables:client:Eat", source, item.name)
end
end)
Teşekkürler kankam deniyim hemen
 
bu scriptler çok değişik ben sadece yukarda attığım gibi istiyorum görevli satmalı olmucak sadece taco yapıcak. taco yapımı için taco ekmeği, eti, malzemesi'ni istiyecek ve minigame ile yapılcak
 
bu scriptler çok değişik ben sadece yukarda attığım gibi istiyorum görevli satmalı olmucak sadece taco yapıcak. taco yapımı için taco ekmeği, eti, malzemesi'ni istiyecek ve minigame ile yapılcak
Acileti yoksa discordan ekle uygun zamanda cevirelim
 
Güncel, sorunum devam ediyor çevirecek yardımcı olacak varmı?
 
Sorun devam ediyor...
 
Sorun devam ediyor
 
+ güncel çözüme ulaştıracak bir babayiğit yokmu?
 

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!