Mes entités ne s'accorde pas avec mon job (bonne TEAM)

  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
bonjour, j'ai un problème: tout mes jobs ont accès à ces entités alors que pourtant elles sont assignées à la team DISTIL. J'ai fais une erreur?
Merci d'avance voici les scripts.

Script entités:

DarkRP.createEntity( "Raisin", {
ent = "wm_grapes",
model = "models/grapes/grapes.mdl",
price = 5,
max = 5,
cmd = "buyrai",
allowed = {TEAM_DISTIL},
})

DarkRP.createEntity( "Concasseur de raisin", {
ent = "wm_crusher",
model = "models/props_wasteland/laundry_basket001.mdl",
price = 100,
max = 1,
cmd = "buyconca",
allowed = {TEAM_DISTIL},
})

DarkRP.createEntity( "Orge", {
ent = "am_barley",
model = "models/alcoholmod/barley.mdl",
price = 3,
max = 10,
cmd = "buyorg",
allowed = {TEAM_DISTIL},
})

DarkRP.createEntity( "Processeur d'orge", {
ent = "am_barleyproc",
model = "models/alcoholmod/barleyproc.mdl",
price = 200,
max = 1,
cmd = "buyorgproc",
allowed = {TEAM_DISTIL},
})

DarkRP.createEntity( "Chaudiere", {
ent = "am_boiler",
model = "models/props_c17/TrapPropeller_Engine.mdl",
price = 300,
max = 1,
cmd = "buychaud",
allowed = {TEAM_DISTIL},
})

DarkRP.createEntity( "Houblon", {
ent = "am_hops",
model = "models/props_lab/cactus.mdl",
price = 5,
max = 3,
cmd = "buyhoubl",
allowed = {TEAM_DISTIL},
})

DarkRP.createEntity( "Botanique", {
ent = "am_botanical",
model = "models/props/de_inferno/flower_barrel.mdl",
price = 5,
max = 3,
cmd = "buybot",
allowed = {TEAM_DISTIL},
})

DarkRP.createEntity( "Spirit neutre", {
ent = "am_neutralspirit",
model = "models/props_wasteland/laundry_basket001.mdl",
price = 20,
max = 1,
cmd = "buyspirt",
allowed = {TEAM_DISTIL},
})

DarkRP.createEntity( "Pot", {
ent = "am_potstill",
model = "models/gibs/airboat_broken_engine.mdl",
price = 250,
max = 1,
cmd = "buypot",
allowed = {TEAM_DISTIL},
})

DarkRP.createEntity( "Livre d'instruction", {
ent = "am_book",
model = "models/alcoholmod/book.mdl",
price = 10,
max = 1,
cmd = "buylivre",
allowed = {TEAM_DISTIL},
})

et le script du job

TEAM_DISTIL = DarkRP.createJob("Distillateur d'alcool", {
color = Color(209, 166, 166, 255),
model = "models/sirgibs/ragdolls/hl2/fisherman_player.mdl",
description = [[Vous etes un fabriquant d'alcool. Vous ne devez pas printer mais vous avez le droit a un fusil (categorie 3) uniquement pour vous defendre si quelqu'un tente de s'introduire dans votre infrastructure.]],
weapons = {"weapon_fists", "weapon_arc_atmcard", "pocket", "keys"},
command = "disti",
max = 2,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false,
candemote = false,
category = "Citoyens actifs",
PlayerDeath = function(ply, weapon, killer)
ply:teamBan()
ply:changeTeam(GAMEMODE.DefaultTeam, true)
if killer:IsPlayer() then
DarkRP.notifyAll(0, 4, "Le distillateur a ete tue et est demote.")
else
DarkRP.notifyAll(0, 4, "Le distillateur est mort et a ete demote.")
end
end
})

comme on voit la team s'accorde bien
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
Dans le fichier de base de l'addon il y a ce "sh" :

DarkRP.createEntity( "Grapes", {
ent = "wm_grapes",
model = "models/grapes/grapes.mdl",
price = 5,
max = 5,
cmd = "buygrapes"
} )

DarkRP.createEntity( "Grape Crusher", {
ent = "wm_crusher",
model = "models/props_wasteland/laundry_basket001.mdl",
price = 100,
max = 1,
cmd = "buygrapecrusher"
} )

DarkRP.createEntity( "Barley", {
ent = "am_barley",
model = "models/alcoholmod/barley.mdl",
price = 3,
max = 10,
cmd = "buybarley"
} )

DarkRP.createEntity( "Barley Processor", {
ent = "am_barleyproc",
model = "models/alcoholmod/barleyproc.mdl",
price = 200,
max = 1,
cmd = "buybarleyproc"
} )

DarkRP.createEntity( "Boiler", {
ent = "am_boiler",
model = "models/props_c17/TrapPropeller_Engine.mdl",
price = 300,
max = 1,
cmd = "buyboiler"
} )

DarkRP.createEntity( "Hops", {
ent = "am_hops",
model = "models/props_lab/cactus.mdl",
price = 5,
max = 10,
cmd = "buyhops"
} )

DarkRP.createEntity( "Botanical", {
ent = "am_botanical",
model = "models/props/de_inferno/flower_barrel.mdl",
price = 5,
max = 10,
cmd = "buybotanical"
} )

DarkRP.createEntity( "Neutral Spirit", {
ent = "am_neutralspirit",
model = "models/props_wasteland/laundry_basket001.mdl",
price = 20,
max = 10,
cmd = "buyneutralspirit"
} )

DarkRP.createEntity( "Pot Still", {
ent = "am_potstill",
model = "models/gibs/airboat_broken_engine.mdl",
price = 250,
max = 10,
cmd = "buypotstill"
} )

DarkRP.createEntity( "Instructions Book", {
ent = "am_book",
model = "models/alcoholmod/book.mdl",
price = 10,
max = 5,
cmd = "buyaminstructionsbook"
} )

je l'ai supprimé pour éviter les conflits
 
ThePierard7

ThePierard7

Geek suprême
Messages
246
Score réaction
32
Points
130
J'ai essayé moi même ,
essaye avec celui :

Code:
DarkRP.createEntity("Spirit neutre", { ent = "am_neutralspirit", model = "models/props_wasteland/laundry_basket001.mdl", price = 20, max = 1, cmd = "buyspirt", allowed = {TEAM_DISTIL}
})
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
je viens de supprimer l'addon est il se passe une chose surprenante: les entités sont encore la ! :eek:
 
ThePierard7

ThePierard7

Geek suprême
Messages
246
Score réaction
32
Points
130
Quel addons ?
Farm System ?
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
non c'est eux:
https://github.com/BLEEPBLOOPforLife/Alcohol-Mod
pourtant j'ai bien tout supprimé le dossier dans mes addons c'est suspect
 
ThePierard7

ThePierard7

Geek suprême
Messages
246
Score réaction
32
Points
130
Selon le README :
- The entities are already added, but you may need to change the price. Go to lua/darkrp_modules/alcoholmod/sh_alcoholmod.lua to configure prices.
Tu n'avais donc pas à faire ce que tu as fait.
Réessaye en allant configurer dans le dossier de l'addon
 
ThePierard7

ThePierard7

Geek suprême
Messages
246
Score réaction
32
Points
130
Alors ,
tu vas dans :
lua/darkrp_modules/acolohmod/sh_acolohmod et tu ajoute le allowed.
Ensuite tu redem ton serveur et tu m'en dis plus ;-)
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
non ca ne marche pas, les citoyens se retrouvent toujours avec les entités du distillateur, pareil pour le maire etc...
 
ThePierard7

ThePierard7

Geek suprême
Messages
246
Score réaction
32
Points
130
Bon ,
copie colle le contenu du fichier sh_acolohmod dans tes entités.
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
toujours pareil et je me retrouve avec le double d'entités pour le job concerné
 
ThePierard7

ThePierard7

Geek suprême
Messages
246
Score réaction
32
Points
130
Bon , bah retire dans entités.
Et je ne voie pas le problème.
J'analyse ton addon un peu plus en profondeur et je t'en redis d'avantage
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
j'ai supprimé le contenue du fichier sh et je copie le contenue dans le fichier entities voir ce que ca donne
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
toujours rien
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
Apres avoir tout supprimé les addons j'ai toujours et encore ces objets dans mes entités...
 
Yoh Sambre ♪

Yoh Sambre ♪

Shaman Fou
Messages
16 288
Score réaction
9 687
Points
1 845
KMS [FR] à dit:
Apres avoir tout supprimé les addons j'ai toujours et encore ces objets dans mes entités...
Mhum..vérifie dans le dossier DATA on sait jamais
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
rien non plus dans le data
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
s'il vous plait aidez moi, les entities sont toujours la alors que je les ai supprimées :(
 
  • Initiateur de la discussion
KMS [FR]

KMS [FR]

Geek
Messages
154
Score réaction
13
Points
65
il fallait se désabonner et les supprimer de sa collection steam pour supprimer le dossier entièrement.
un addon foireux...
 
Discord d'entraide
Rejoignz-nous sur Discord