- Initiateur de la discussion
ytmarty
Nouveau né
- Messages
- 21
- Score réaction
- 0
- Points
- 20
Bonjour, déjà je remerlcie d'avance ceux qui me répondront !
J'ai codé le job fabriquant de meth et dans addons j'ai mis le pack lab meth je suis rentré dans ce fichier et j'ai copié collé les entités pour les mettre dans le darkpmodificationmaster (entity) en bien paramétrant qui doit avoir les entités pour ma part TEAM_FABRIQUANTDEMETH et quand je vais ingame sur ce job et que je veux acheter ca meth la commande que j'ai attribué a l'entité dans le chat et il ne se passe rien .Je vous met les entités que j'ai mis dans mon darkrpmodification pour que vous m'aidiez plus dans mon problème :
DarkRP.createEntity("Gaz", {
ent = "eml_gas",
model = "models/props_c17/canister01a.mdl",
price = 500,
max = 20,
cmd = "buygascanister",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Liquid Iodine", {
ent = "eml_iodine",
model = "models/props_lab/jar01b.mdl",
price = 75,
max = 20,
cmd = "buyiodine",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Pot", {
ent = "eml_jar",
model = "models/props_lab/jar01a.mdl",
price = 600,
max = 20,
cmd = "buyjar",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Acide Muralique", {
ent = "eml_macid",
model = "models/props_junk/garbage_plasticbottle001a.mdl",
price = 75,
max = 20,
cmd = "buymacid",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Marmitte", {
ent = "eml_pot",
model = "models/props_c17/metalPot001a.mdl",
price = 0,
max = 20,
cmd = "buypot",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Marmitte spéciale", {
ent = "eml_spot",
model = "models/props_c17/metalPot001a.mdl",
price = 600,
max = 20,
cmd = "buyspot",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Gasinière", {
ent = "eml_stove",
model = "models/props_c17/furnitureStove001a.mdl",
price = 1000,
max = 5,
cmd = "buystove",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Liquide Sulfurique", {
ent = "eml_sulfur",
model = "models/props_lab/jar01b.mdl",
price = 75,
max = 20,
cmd = "buysulfur",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Eau", {
ent = "eml_water",
model = "models/props_junk/garbage_plasticbottle003a.mdl",
price = 50,
max = 20,
cmd = "buywater",
allowed = {TEAM_FABRIQUANTDEMETH}
})
SVP URGENT AIDEZ MOI
J'ai codé le job fabriquant de meth et dans addons j'ai mis le pack lab meth je suis rentré dans ce fichier et j'ai copié collé les entités pour les mettre dans le darkpmodificationmaster (entity) en bien paramétrant qui doit avoir les entités pour ma part TEAM_FABRIQUANTDEMETH et quand je vais ingame sur ce job et que je veux acheter ca meth la commande que j'ai attribué a l'entité dans le chat et il ne se passe rien .Je vous met les entités que j'ai mis dans mon darkrpmodification pour que vous m'aidiez plus dans mon problème :
DarkRP.createEntity("Gaz", {
ent = "eml_gas",
model = "models/props_c17/canister01a.mdl",
price = 500,
max = 20,
cmd = "buygascanister",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Liquid Iodine", {
ent = "eml_iodine",
model = "models/props_lab/jar01b.mdl",
price = 75,
max = 20,
cmd = "buyiodine",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Pot", {
ent = "eml_jar",
model = "models/props_lab/jar01a.mdl",
price = 600,
max = 20,
cmd = "buyjar",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Acide Muralique", {
ent = "eml_macid",
model = "models/props_junk/garbage_plasticbottle001a.mdl",
price = 75,
max = 20,
cmd = "buymacid",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Marmitte", {
ent = "eml_pot",
model = "models/props_c17/metalPot001a.mdl",
price = 0,
max = 20,
cmd = "buypot",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Marmitte spéciale", {
ent = "eml_spot",
model = "models/props_c17/metalPot001a.mdl",
price = 600,
max = 20,
cmd = "buyspot",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Gasinière", {
ent = "eml_stove",
model = "models/props_c17/furnitureStove001a.mdl",
price = 1000,
max = 5,
cmd = "buystove",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Liquide Sulfurique", {
ent = "eml_sulfur",
model = "models/props_lab/jar01b.mdl",
price = 75,
max = 20,
cmd = "buysulfur",
allowed = {TEAM_FABRIQUANTDEMETH}
})
DarkRP.createEntity("Eau", {
ent = "eml_water",
model = "models/props_junk/garbage_plasticbottle003a.mdl",
price = 50,
max = 20,
cmd = "buywater",
allowed = {TEAM_FABRIQUANTDEMETH}
})
SVP URGENT AIDEZ MOI