Beug garry's mod serveur

  • Initiateur de la discussion
  • Banni
StrampeGG

StrampeGG

Geek suprême
Messages
181
Score réaction
20
Points
130
Bonjour, quand je suis sur mon serveur et que j'ai fini de configurer mes jobs dans le jobs.lua (darkrpmodification) je reboot mon serv je vien dessus je tombe en dessous de la map et sa me met sa (1error lua allowed) quelque chose comme ca quelqun pourais m'aider ?
 
Zozo147

Zozo147

Helpeur Divin
Messages
1 814
Score réaction
848
Points
430
StrampeGG à dit:
Bonjour, quand je suis sur mon serveur et que j'ai fini de configurer mes jobs dans le jobs.lua (darkrpmodification) je reboot mon serv je vien dessus je tombe en dessous de la map et sa me met sa (1error lua allowed) quelque chose comme ca quelqun pourais m'aider ?
Ce serait possible d'avoir l'erreur marqué dans la console ? ^^
 
AyZenSantos

AyZenSantos

Psychopathe
Messages
3 361
Score réaction
753
Points
300
Sa serait mieux d'avoir l'erreur^^
 
  • Initiateur de la discussion
  • Banni
StrampeGG

StrampeGG

Geek suprême
Messages
181
Score réaction
20
Points
130
Sa me met (There is 1Lua Problem! Please check our console)
 
AyZenSantos

AyZenSantos

Psychopathe
Messages
3 361
Score réaction
753
Points
300
StrampeGG à dit:
Sa me met (There is 1Lua Problem! Please check our console)
Vas dans la console et dit nous qu'est qu'il y est marqué en jaune normalement c'est ecrit du genre comme sa
[ERROR]...
 
  • Initiateur de la discussion
  • Banni
StrampeGG

StrampeGG

Geek suprême
Messages
181
Score réaction
20
Points
130
Please check your console for more information!
[ERROR] Lua is unable to understand file "darkrp_customthings/jobs.lua" because its author made a mistake around line number 37.
The best help I can give you is this:
 
Zozo147

Zozo147

Helpeur Divin
Messages
1 814
Score réaction
848
Points
430
StrampeGG à dit:
Please check your console for more information!
[ERROR] Lua is unable to understand file "darkrp_customthings/jobs.lua" because its author made a mistake around line number 37.
The best help I can give you is this:
Essayez de trouver le job à la ligne 37 dans jobs.lua et nous le passer pour voir l'erreur
 
  • Initiateur de la discussion
  • Banni
StrampeGG

StrampeGG

Geek suprême
Messages
181
Score réaction
20
Points
130
GAMEMODE.DefaultTeam = TEAM_CITIZEN
 
Zozo147

Zozo147

Helpeur Divin
Messages
1 814
Score réaction
848
Points
430
StrampeGG à dit:
GAMEMODE.DefaultTeam = TEAM_CITIZEN
A la limite il serait possible d'avoir tout le code dans le fichier ça sera plus simple même si je pense savoir d'où vient le problème
 
  • Initiateur de la discussion
  • Banni
StrampeGG

StrampeGG

Geek suprême
Messages
181
Score réaction
20
Points
130
--[[---------------------------------------------------------------------------
DarkRP custom jobs
---------------------------------------------------------------------------

This file contains your custom jobs.
This file should also contain jobs from DarkRP that you edited.

Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
Once you've done that, copy and paste the job to this file and edit it.

The default jobs can be found here:
https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua

For examples and explanation please visit this wiki page:
http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields


Add jobs under the following line:
---------------------------------------------------------------------------]]

TEAM_POLICE = DarkRP.createJob("Policier", {
color = Color(25, 25, 170, 255),
model = {"models/player/portal/f_police.mdl", "models/player/portal/f_police2.mdl", "models/player/portal/f_police5_armor.mdl", "models/player/portal/f_police4.mdl"},
description = [[Vous devez protegez les Citoyen de cette ville]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "weapon_arc_atmcard", "weapon_cuff_police", "cw_mp5", "weapon_fists"},
command = "police",
max = 5,
salary = 100,
admin = 0,
vote = true,
hasLicense = true,
category = "Police",

--[[---------------------------------------------------------------------------
Define which team joining players spawn into and what team you change to if demoted
---------------------------------------------------------------------------]]
GAMEMODE.DefaultTeam = TEAM_CITIZEN


--[[---------------------------------------------------------------------------
Define which teams belong to civil protection
Civil protection can set warrants, make people wanted and do some other police related things
---------------------------------------------------------------------------]]
GAMEMODE.CivilProtection = {
[TEAM_POLICE] = true,
[TEAM_CHIEF] = true,
[TEAM_MAYOR] = true,
}

--[[---------------------------------------------------------------------------
Jobs that are hitmen (enables the hitman menu)
---------------------------------------------------------------------------]]
DarkRP.addHitmanTeam(TEAM_MOB)
 
Zozo147

Zozo147

Helpeur Divin
Messages
1 814
Score réaction
848
Points
430
StrampeGG à dit:
--[[---------------------------------------------------------------------------
DarkRP custom jobs
---------------------------------------------------------------------------

This file contains your custom jobs.
This file should also contain jobs from DarkRP that you edited.

Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
Once you've done that, copy and paste the job to this file and edit it.

The default jobs can be found here:
https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua

For examples and explanation please visit this wiki page:
http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields


Add jobs under the following line:
---------------------------------------------------------------------------]]

TEAM_POLICE = DarkRP.createJob("Policier", {
color = Color(25, 25, 170, 255),
model = {"models/player/portal/f_police.mdl", "models/player/portal/f_police2.mdl", "models/player/portal/f_police5_armor.mdl", "models/player/portal/f_police4.mdl"},
description = [[Vous devez protegez les Citoyen de cette ville]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "weapon_arc_atmcard", "weapon_cuff_police", "cw_mp5", "weapon_fists"},
command = "police",
max = 5,
salary = 100,
admin = 0,
vote = true,
hasLicense = true,
category = "Police",

--[[---------------------------------------------------------------------------
Define which team joining players spawn into and what team you change to if demoted
---------------------------------------------------------------------------]]
GAMEMODE.DefaultTeam = TEAM_CITIZEN


--[[---------------------------------------------------------------------------
Define which teams belong to civil protection
Civil protection can set warrants, make people wanted and do some other police related things
---------------------------------------------------------------------------]]
GAMEMODE.CivilProtection = {
[TEAM_POLICE] = true,
[TEAM_CHIEF] = true,
[TEAM_MAYOR] = true,
}

--[[---------------------------------------------------------------------------
Jobs that are hitmen (enables the hitman menu)
---------------------------------------------------------------------------]]
DarkRP.addHitmanTeam(TEAM_MOB)
En gros vous avez surement désactivé le job Citoyen et vous ne l'avez pas créé dans ce fichier donc essayez de mettre ceci dans votre fichier et de redémarrer :

Code:
TEAM_CITIZEN = DarkRP.createJob("Citizen", { color = Color(20, 150, 20, 255), model = { "models/player/Group01/Female_01.mdl", "models/player/Group01/Female_02.mdl", "models/player/Group01/Female_03.mdl", "models/player/Group01/Female_04.mdl", "models/player/Group01/Female_06.mdl", "models/player/group01/male_01.mdl", "models/player/Group01/Male_02.mdl", "models/player/Group01/male_03.mdl", "models/player/Group01/Male_04.mdl", "models/player/Group01/Male_05.mdl", "models/player/Group01/Male_06.mdl", "models/player/Group01/Male_07.mdl", "models/player/Group01/Male_08.mdl", "models/player/Group01/Male_09.mdl" }, description = [[The Citizen is the most basic level of society you can hold besides being a hobo. You have no specific role in city life.]], weapons = {}, command = "citizen", max = 0, salary = GAMEMODE.Config.normalsalary, admin = 0, vote = false, hasLicense = false, candemote = false, category = "Citizens",
})
 
  • Initiateur de la discussion
  • Banni
StrampeGG

StrampeGG

Geek suprême
Messages
181
Score réaction
20
Points
130
merci beaucoup mes quand j'ajoute des jobs sa me fes sa
 
  • Initiateur de la discussion
  • Banni
StrampeGG

StrampeGG

Geek suprême
Messages
181
Score réaction
20
Points
130
je fait comment pour en ajouter ? sans erreur
 
Zozo147

Zozo147

Helpeur Divin
Messages
1 814
Score réaction
848
Points
430
StrampeGG à dit:
je fait comment pour en ajouter ? sans erreur
Avant de faire ceci il faut désactiver les métiers de base et c'est dans -> addons\darkrpmodification\lua\darkrp_config et c'est le fichier disabled_defaults.lua

Et donc par exemple si vous voulez mettre le citizen dans le fichier jobs.lua il suffit de passer

Code:
["citizen"] = false,
en

Code:
["citizen"] = true,
afin de le désactiver du DarkRP basique et de pouvoir le mettre dans jobs.lua et le modifier sans problème
 
  • Initiateur de la discussion
  • Banni
StrampeGG

StrampeGG

Geek suprême
Messages
181
Score réaction
20
Points
130
le "DARKRP basique c'est a dire aller dans le gamemode ou supprimer tout simplement dans le gestionnaire de plugins?
 
  • Initiateur de la discussion
  • Banni
StrampeGG

StrampeGG

Geek suprême
Messages
181
Score réaction
20
Points
130
merci c bon
 
¤

¤FiFou¤

Geek
Messages
459
Score réaction
89
Points
95
Recrée un job citoyen
 
Discord d'entraide
Rejoignz-nous sur Discord