- Initiateur de la discussion
sony65
Geek
- Messages
- 51
- Score réaction
- 2
- Points
- 95
Bonjour je vous contact car j'ai un problème avec entities sur mon serveur DARK RP,
Je vous explique,
Dès que je met des entités dans le entities.lua tout mon serveur ce met a planté (exemple : Les spawns de jobs change, on ne vois plus aucun métier, catégorie, Arme, munition).
le entities :
Le categories :
Normalement y'a pas de bug dans les script mais peut être que le problème viens d'autre part ? mais je ne vois pas d'ou..
Pour ce qui est des autre entités j'ai du les redirigé sur les weapon (même pour les outils de garagiste -_-).
Mais pour les entités de meth je suis obligé de les mettres dans entities sinon l'addon bug et le congélateur ne marche pas...
Merci de votre aide !
Je vous explique,
Dès que je met des entités dans le entities.lua tout mon serveur ce met a planté (exemple : Les spawns de jobs change, on ne vois plus aucun métier, catégorie, Arme, munition).
le entities :
Code:
--[[---------------------------------------------------------------------------
DarkRP custom entities
---------------------------------------------------------------------------
This file contains your custom entities.
This file should also contain entities from DarkRP that you edited.
Note: If you want to edit a default DarkRP entity, first disable it in darkrp_config/disabled_defaults.lua Once you've done that, copy and paste the entity to this file and edit it.
The default entities can be found here:
https://github.com/FPtje/DarkRP/blob/master/gamemode/config/addentities.lua#L111
For examples and explanation please visit this wiki page:
http://wiki.darkrp.com/index.php/DarkRP:CustomEntityFields
Add entities under the following line:
---------------------------------------------------------------------------]] AddEntity("Combinateur", { ent = "zmlab_combiner", model = "models/zerochain/zmlab/zmlab_combiner.mdl", price = 6000, max = 1, cmd = "buycombiner_zmlab", allowed = TEAM_FABRIQUANT, category = "Matos Meth", }) AddEntity("Filtre a gaz", { ent = "zmlab_filter", model = "models/zerochain/zmlab/zmlab_filter.mdl", price = 1000, max = 1, cmd = "buyfilter_zmlab", allowed = TEAM_FABRIQUANT, category = "Matos Meth", }) AddEntity("Congelateur", { ent = "zmlab_frezzer", model = "models/zerochain/zmlab/zmlab_frezzer.mdl", price = 2000, max = 2, cmd = "buyfrezzer_zmlab", allowed = TEAM_FABRIQUANT, category = "Matos Meth", }) AddEntity("Caisse de transport", { ent = "zmlab_collectcrate", model = "models/zerochain/zmlab/zmlab_transportcrate.mdl", price = 250, max = 5, cmd = "buycollectcrate_zmlab", allowed = TEAM_FABRIQUANT, category = "Matos Meth", }) AddEntity("Methylamin", { ent = "zmlab_methylamin", model = "models/zerochain/zmlab/zmlab_methylamin.mdl", price = 1000, max = 6, cmd = "buymethylamin_zmlab", allowed = TEAM_FABRIQUANT, category = "Matos Meth", }) AddEntity("Aluminium", { ent = "zmlab_aluminium", model = "models/zerochain/zmlab/zmlab_aluminiumbox.mdl", price = 100, max = 6, cmd = "buyaluminium_zmlab", allowed = TEAM_FABRIQUANT, category = "Matos Meth", })
Code:
--[[ Generated using: DarkRP | Category Generator https://csite.io/tools/gmod-darkrp-category
--]]
DarkRP.createCategory{ name = "Matos Meth", categorises = "entities", startExpanded = true, color = Color(0, 0, 0, 255), canSee = function(ply) return table.HasValue({TEAM_FABRIQUANT}, ply:Team()) end, sortOrder = 0
}
Pour ce qui est des autre entités j'ai du les redirigé sur les weapon (même pour les outils de garagiste -_-).
Mais pour les entités de meth je suis obligé de les mettres dans entities sinon l'addon bug et le congélateur ne marche pas...
Merci de votre aide !