- Initiateur de la discussion
I
isco245
Bambi
- Messages
- 5
- Score réaction
- 0
- Points
- 35
Bonjour j'ai un problème avec mais entité rien ne se passe dans le jeux appare le script ci dessous. Le code :
--[[---------------------------------------------------------------------------
Fabriquand d'or
---------------------------------------------------------------------------]]
DarkRP.createEntity("Trieur", {
ent = "zgw_goldwasher",
model = "models/zerochain/props_goldwash/zgw_goldwasher01.mdl",
price = 15000,
max = 2,
cmd = "machineor",
category = "entities",
allowed = {TEAM_CHERCHEURDOR}
end
})
DarkRP.createEntity("Seau", {
ent = "zgw_bucket",
model = "models/zerochain/props_goldwash/zgw_bucket.mdl",
price = 250,
max = 4,
cmd = "seau",
category = "entities",
allowed = {TEAM_CHERCHEURDOR}
end
})
DarkRP.createEntity("Seau suiveur", {
ent = "zgw_bucket_follow",
model = "models/zerochain/props_goldwash/zgw_bucket.mdl",
price = 3500,
max = 4,
cmd = "seausuiveur",
category = "entities",
allowed = {TEAM_CHERCHEURDOR}
end
})
DarkRP.createEntity("Tapis", {
ent = "zgw_mat",
model = "models/zerochain/props_goldwash/zgw_mat.mdl",
price = 255,
max = 18,
cmd = "tapis",
category = "entities",
allowed = {TEAM_CHERCHEURDOR}
end
})
DarkRP.createEntity("Lanterne", {
ent = "zgw_lantern",
model = "models/zerochain/props_goldwash/zgw_lantern.mdl",
price = 100,
max = 2,
cmd = "lanterne",
category = "entities",
allowed = {TEAM_CHERCHEURDOR}
end
})
--[[---------------------------------------------------------------------------
Fabriquand d'artifise
---------------------------------------------------------------------------]]
DarkRP.createEntity("Machine à feux d'artifice", {
ent = "zcm_crackermachine",
model = "models/zerochain/props_crackermaker/zcm_base.mdl",
price = 5000,
max = 2,
cmd = "machineafeuxdartifice",
category = "entities",
allowed = {TEAM_FDA}
end
})
DarkRP.createEntity("Poudre", {
ent = "zcm_blackpowder",
model = "models/zerochain/props_crackermaker/zcm_base.mdl",
price = 1500,
max = 2,
cmd = "poudre",
category = "entities",
allowed = {TEAM_FDA}
end
})
DarkRP.createEntity("Papier", {
ent = "zcm_paperroll",
model = "models/zerochain/props_crackermaker/zcm_paper.mdl",
price = 150,
max = 2,
cmd = "papier",
category = "entities",
allowed = {TEAM_FDA}
end
})
DarkRP.createEntity("Boite", {
ent = "zcm_box",
model = "models/zerochain/props_crackermaker/zcm_box.mdl",
price = 125,
max = 4,
cmd = "boite",
category = "entities",
allowed = {TEAM_FDA}
end
})
DarkRP.createEntity("Palette ", {
ent = "zcm_palette",
model = "models/props_junk/wood_pallet001a.mdl",
price = 200,
max = 3,
cmd = "palette",
category = "entities",
allowed = {TEAM_FDA}
end
})
--[[---------------------------------------------------------------------------
Fabriquand de weed
---------------------------------------------------------------------------]]
DarkRP.createEntity("Mixeur", {
ent = "zwf_mixer",
model = "models/zerochain/props_weedfarm/zwf_mixer.mdl",
price = 550,
max = 2,
cmd = "mixeur",
allowed = {TEAM_FABRICANTDEWEED}
end
})
DarkRP.createEntity("Micro Onde", {
ent = "zwf_oven",
model = "models/zerochain/props_weedfarm/zwf_oven.mdl",
price = 500,
max = 2,
cmd = "microonde",
allowed = {TEAM_FABRICANTDEWEED}
end
})
--[[---------------------------------------------------------------------------
Fabriquand d'or
---------------------------------------------------------------------------]]
DarkRP.createEntity("Trieur", {
ent = "zgw_goldwasher",
model = "models/zerochain/props_goldwash/zgw_goldwasher01.mdl",
price = 15000,
max = 2,
cmd = "machineor",
category = "entities",
allowed = {TEAM_CHERCHEURDOR}
end
})
DarkRP.createEntity("Seau", {
ent = "zgw_bucket",
model = "models/zerochain/props_goldwash/zgw_bucket.mdl",
price = 250,
max = 4,
cmd = "seau",
category = "entities",
allowed = {TEAM_CHERCHEURDOR}
end
})
DarkRP.createEntity("Seau suiveur", {
ent = "zgw_bucket_follow",
model = "models/zerochain/props_goldwash/zgw_bucket.mdl",
price = 3500,
max = 4,
cmd = "seausuiveur",
category = "entities",
allowed = {TEAM_CHERCHEURDOR}
end
})
DarkRP.createEntity("Tapis", {
ent = "zgw_mat",
model = "models/zerochain/props_goldwash/zgw_mat.mdl",
price = 255,
max = 18,
cmd = "tapis",
category = "entities",
allowed = {TEAM_CHERCHEURDOR}
end
})
DarkRP.createEntity("Lanterne", {
ent = "zgw_lantern",
model = "models/zerochain/props_goldwash/zgw_lantern.mdl",
price = 100,
max = 2,
cmd = "lanterne",
category = "entities",
allowed = {TEAM_CHERCHEURDOR}
end
})
--[[---------------------------------------------------------------------------
Fabriquand d'artifise
---------------------------------------------------------------------------]]
DarkRP.createEntity("Machine à feux d'artifice", {
ent = "zcm_crackermachine",
model = "models/zerochain/props_crackermaker/zcm_base.mdl",
price = 5000,
max = 2,
cmd = "machineafeuxdartifice",
category = "entities",
allowed = {TEAM_FDA}
end
})
DarkRP.createEntity("Poudre", {
ent = "zcm_blackpowder",
model = "models/zerochain/props_crackermaker/zcm_base.mdl",
price = 1500,
max = 2,
cmd = "poudre",
category = "entities",
allowed = {TEAM_FDA}
end
})
DarkRP.createEntity("Papier", {
ent = "zcm_paperroll",
model = "models/zerochain/props_crackermaker/zcm_paper.mdl",
price = 150,
max = 2,
cmd = "papier",
category = "entities",
allowed = {TEAM_FDA}
end
})
DarkRP.createEntity("Boite", {
ent = "zcm_box",
model = "models/zerochain/props_crackermaker/zcm_box.mdl",
price = 125,
max = 4,
cmd = "boite",
category = "entities",
allowed = {TEAM_FDA}
end
})
DarkRP.createEntity("Palette ", {
ent = "zcm_palette",
model = "models/props_junk/wood_pallet001a.mdl",
price = 200,
max = 3,
cmd = "palette",
category = "entities",
allowed = {TEAM_FDA}
end
})
--[[---------------------------------------------------------------------------
Fabriquand de weed
---------------------------------------------------------------------------]]
DarkRP.createEntity("Mixeur", {
ent = "zwf_mixer",
model = "models/zerochain/props_weedfarm/zwf_mixer.mdl",
price = 550,
max = 2,
cmd = "mixeur",
allowed = {TEAM_FABRICANTDEWEED}
end
})
DarkRP.createEntity("Micro Onde", {
ent = "zwf_oven",
model = "models/zerochain/props_weedfarm/zwf_oven.mdl",
price = 500,
max = 2,
cmd = "microonde",
allowed = {TEAM_FABRICANTDEWEED}
end
})