PROBLEME LUA ERROR

  • Initiateur de la discussion
Predatz

Predatz

Geek
Messages
58
Score réaction
2
Points
45
J'ajouter des armes dans le shipments.lua et des munitions dans le ammo.lua et quand je reboot le serveur je spawn en dessous de la map , il n'y a aucun job/metiers/armes/munitions ou autres ( même le HUD a changer )
Voila l'error qui m'affiche dans la console :

[ERROR] Lua is unable to understand file "darkrp_config/settings.lua" because its author made a mistake around line number 1.
The best help I can give you is this:

Right before the 'is', Lua expected to read an '='-sign, but it didn't.

Hints:
- Did you simply forget the '='-sign?
- Did you forget a comma?
- Is this supposed to be a local variable?

------- End of Simplerr error -------


J'espere que quelqu'un pourra m'aider ! Merci :/
 
kirikoumalou

kirikoumalou

Lucas Pastel
Messages
1 057
Score réaction
200
Points
260
Hum.... envoie ton "settings.lua"
(Juste ligne 1 à 10)
 
  • Initiateur de la discussion
Predatz

Predatz

Geek
Messages
58
Score réaction
2
Points
45
Ligne 1 à 10 :

This is the settings file of DarkRP. Every DarkRP setting is listed here.

Warning:
If this file is missing settings (because of e.g. an update), DarkRP will assume default values for these settings.
You need not worry about updating this file. If a new setting is added you can manually add them to this file.
---------------------------------------------------------------------------]]


--[[
Toggle settings.
 
kirikoumalou

kirikoumalou

Lucas Pastel
Messages
1 057
Score réaction
200
Points
260
Rajoute
Code:
 --[[
au début de ton fichier
 
  • J'aime
Réactions: Predatz
  • Initiateur de la discussion
Predatz

Predatz

Geek
Messages
58
Score réaction
2
Points
45
Merci t'es le meilleur !
 
kirikoumalou

kirikoumalou

Lucas Pastel
Messages
1 057
Score réaction
200
Points
260
>w<
 
  • Initiateur de la discussion
Predatz

Predatz

Geek
Messages
58
Score réaction
2
Points
45
Et aussi j'ai encore un petit problème c'est quand j'ajoute un job il n'apparait pas dans le menu F4 tu pourrais m'aider stp ?
 
Mmomo

Mmomo

Geek
Messages
34
Score réaction
0
Points
95
c'est par ce que tu as fait une erreur dans ton job
 
G

Gaspardwllqt

Bambi
Messages
46
Score réaction
1
Points
40
Envoi moi le script de ton job qui ne fonctionne pas
 
  • Initiateur de la discussion
Predatz

Predatz

Geek
Messages
58
Score réaction
2
Points
45
-- People often copy jobs. When they do, the GM table does not exist anymore.
-- This line makes the job code work both inside and outside of gamemode files.
-- You should not copy this line into your code.
local GAMEMODE = GAMEMODE or GM
--[[--------------------------------------------------------
Default teams. Please do not edit this file. Please use the darkrpmod addon instead.
--------------------------------------------------------]]
TEAM_CITIZEN = DarkRP.createJob("Citoyen", {
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 = [[Vous êtes un simple citoyen de cette ville .]],
weapons = {},
command = "citizen",
max = 0,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false,
candemote = false,
category = "Citizens",
})

TEAM_POLICE = DarkRP.createJob("Police", {
color = Color(25, 25, 170, 255),
model = {"models/player/portal/f_police.mdl", "models/player/portal/f_police5.mdl"},
description = [[Vous représentez les forces de l'ordre .]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker"},
command = "cp",
max = 4,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
},
category = "Civil Protection",
})

TEAM_Mafieu = DarkRP.createJob("Mafieu", {
color = Color(75, 75, 75, 255),
model = {
"models/player/Group03/Female_01.mdl",
"models/player/Group03/Female_02.mdl",
"models/player/Group03/Female_03.mdl",
"models/player/Group03/Female_04.mdl",
"models/player/Group03/Female_06.mdl",
"models/player/group03/male_01.mdl",
"models/player/Group03/Male_02.mdl",
"models/player/Group03/male_03.mdl",
"models/player/Group03/Male_04.mdl",
"models/player/Group03/Male_05.mdl",
"models/player/Group03/Male_06.mdl",
"models/player/Group03/Male_07.mdl",
"models/player/Group03/Male_08.mdl",
"models/player/Group03/Male_09.mdl"},
description = [[Vous faites parti de la mafia]],
weapons = {},
command = "gangster",
max = 3,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false,
category = "Gangsters",
})

TEAM_Parrain = DarkRP.createJob("Parrain", {
color = Color(25, 25, 25, 255),
model = "models/vito.mdl",
description = [[Vous êtes le chef de la mafia]],
weapons = {"", ""},
command = "mobboss",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.34,
admin = 0,
vote = false,
hasLicense = false,
category = "Gangsters",
})

TEAM_VENDEUR = DarkRP.createJob("Vendeur d'armes", {
color = Color(255, 140, 0, 255),
model = "models/player/monk.mdl",
description = [[Vous vendez des armes légales à des personnes ]],
weapons = {},
command = "gundealer",
max = 2,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false,
category = "Citizens",
})

TEAM_MEDECIN = DarkRP.createJob("Medecin", {
color = Color(47, 79, 79, 255),
model = "models/player/kleiner.mdl",
description = [[Vous êtes médecin de cette ville !]],
weapons = {"med_kit"},
command = "medic",
max = 3,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false,
medic = true,
category = "Citizens",
})

TEAM_MAIRE = DarkRP.createJob("Maire", {
color = Color(150, 20, 20, 255),
model = "models/obama/obama.mdl",
description = [[Vous êtes le maire de cette ville ]],
weapons = {},
command = "mayor",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.89,
admin = 0,
vote = true,
hasLicense = false,
mayor = true,
category = "Civil Protection",
})

TEAM_SDF = DarkRP.createJob("SDF", {
color = Color(80, 45, 0, 255),
model = "models/player/corpse1.mdl",
description = [[Vous êtes un clochard et vous mendiez en ville]],
weapons = {"weapon_bugbait"},
command = "hobo",
max = 5,
salary = 0,
admin = 0,
vote = false,
hasLicense = false,
candemote = false,
hobo = true,
category = "Citizens",
})

TEAM_TAXI = DarkRP.createJob("Chauffeur de Taxi", {
color = Color(235, 255, 0, 255),
model = {
"models/player/hostage/hostage_02.mdl",
"models/player/hostage/hostage_03.mdl"
},
description = [[Vous êtes chauffeur de Taxi et conduisez des personnes ou elles souhaitent aller !]],
weapons = {"weapon_arc_atmcard"},
command = "Taxi",
max = 4,
salary = 120,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_CHEFDESGANGSTERS = DarkRP.createJob("Chef des Gangsters", {
color = Color(255, 0, 0, 255),
model = {"models/player/leet.mdl"},
description = [[Vous êtes le chef d'un gang !]],
weapons = {"weapon_arc_atmcard"},
command = "ChefDesGangsters",
max = 1,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_GANGSTER = DarkRP.createJob("Gangster", {
color = Color(255, 0, 0, 255),
model = {"models/player/arctic.mdl"},
description = [[Vous faites parti d'un gang !]],
weapons = {"weapon_arc_atmcard"},
command = "Gangsters",
max = 5,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_PSYCHOPATE = DarkRP.createJob("Psychopate", {
color = Color(66, 255, 0, 255),
model = {"models/player/korka007/wick.mdl"},
description = [[Vous êtes un psychopathe et vous êtes dans un état psychiatrique !]],
weapons = {"weapon_arc_atmcard"},
command = "Psychopate",
max = 3,
salary = 50,
admin = 0,
vote = true,
hasLicense = false,
candemote = true

})

TEAM_BANQUIER = DarkRP.createJob("Banquier", {
color = Color(66, 255, 0, 255),
model = {"models/player/magnusson.mdl"},
description = [[Vous êtes un banquier et vous gérer l’économie de la ville , les printers et veillez à ce que la banque ne se fait pas braquer !]],
weapons = {"weapon_arc_atmcard"},
command = "Banquier",
max = 3,
salary = 200,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

if not DarkRP.disabledDefaults["modules"]["hungermod"] then
TEAM_COOK = DarkRP.createJob("Cook", {
color = Color(238, 99, 99, 255),
model = "models/player/mossman.mdl",
description = [[As a cook, it is your responsibility to feed the other members of your city.
You can spawn a microwave and sell the food you make:
/buymicrowave]],
weapons = {},
command = "cook",
max = 2,
salary = 45,
admin = 0,
vote = false,
hasLicense = false,
cook = true
})

TEAM_BLOODZ = DarkRP.createJob("Bloodz", {
color = Color(255, 0, 0, 255),
model = {
"models/player/bloodz/slow_1.mdl",
"models/player/bloodz/slow_2.mdl",
"models/player/bloodz/slow_3.mdl"
},
description = [[Vous faites parti des bloodz !]],
weapons = {"weapon_arc_atmcard"},
command = "Bloodz",
max = 4,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_CRIPZ = DarkRP.createJob("Cripz", {
color = Color(51, 0, 255, 255),
model = {
"models/player/cripz/slow_1.mdl",
"models/player/cripz/slow_2.mdl",
"models/player/cripz/slow_3.mdl"
},
description = [[Vous faites parti des cripz !]],
weapons = {"weapon_arc_atmcard"},
command = "Cripz",
max = 4,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_BRAQUEUR = DarkRP.createJob("Braqueur", {
color = Color(235, 0, 255, 255),
model = {
"models/shaklin/payday2/pd2_dallas.mdl",
"models/player/pd2_chains_p.mdl",
"models/player/pd2_hoxton_p.mdl"
},
description = [[Vous faites parti des braqueurs , vous braquez des banques , des personnes .. !]],
weapons = {"weapon_arc_atmcard"},
command = "Braqueur",
max = 3,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_COMISSAIRE = DarkRP.createJob("Comissaire", {
color = Color(25, 25, 170, 255),
model = {"models/player/politi_1/male_08.mdl"},
description = [[Vous dirigez les forces de l'ordre .]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "models/freeman/policebadge.mdl"},
command = "cp",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
},
category = "Civil Protection",
})

TEAM_CHEFDESGIGN = DarkRP.createJob("CHEF DES GIGN", {
color = Color(25, 25, 170, 255),
model = {"models/fearless/sru01.mdl"},
description = [[Vous dirigez les GIGN .]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "models/freeman/policebadge.mdl"},
command = "cp",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
},
category = "Civil Protection",
})

TEAM_GIGN = DarkRP.createJob("GIGN", {
color = Color(25, 25, 170, 255),
model = {"models/fearless/sru02.mdl"},
description = [[Vous êtes un GIGN et representez les forces de l'ordres .]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "models/freeman/policebadge.mdl"},
command = "cp",
max = 4,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
},
category = "Civil Protection",
})

end

-- Compatibility for when default teams are disabled
TEAM_CITIZEN = TEAM_CITIZEN or -1
TEAM_POLICE = TEAM_POLICE or -1
TEAM_GANG = TEAM_GANG or -1
TEAM_MOB = TEAM_MOB or -1
TEAM_GUN = TEAM_GUN or -1
TEAM_MEDIC = TEAM_MEDIC or -1
TEAM_CHIEF = TEAM_CHIEF or -1
TEAM_MAYOR = TEAM_MAYOR or -1
TEAM_HOBO = TEAM_HOBO or -1
TEAM_COOK = TEAM_COOK or -1

-- Door groups
AddDoorGroup("Cops and Mayor only", TEAM_CHIEF, TEAM_POLICE, TEAM_MAYOR)
AddDoorGroup("Gundealer only", TEAM_GUN)


-- Agendas
DarkRP.createAgenda("Gangster's agenda", TEAM_MOB, {TEAM_GANG})
DarkRP.createAgenda("Police agenda", {TEAM_MAYOR, TEAM_CHIEF}, {TEAM_POLICE})

-- Group chats
DarkRP.createGroupChat(function(ply) return ply:isCP() end)
DarkRP.createGroupChat(TEAM_MOB, TEAM_GANG)
DarkRP.createGroupChat(function(listener, ply) return not ply or ply:Team() == listener:Team() end)

-- Initial team when first spawning
GAMEMODE.DefaultTeam = TEAM_CITIZEN

-- Teams that belong to Civil Protection
GAMEMODE.CivilProtection = {
[TEAM_POLICE] = true,
[TEAM_CHIEF] = true,
[TEAM_MAYOR] = true,
}

-- Hitman team
DarkRP.addHitmanTeam(TEAM_MOB)

-- Demote groups
DarkRP.createDemoteGroup("Cops", {TEAM_POLICE, TEAM_CHIEF})
DarkRP.createDemoteGroup("Gangsters", {TEAM_GANG, TEAM_MOB})

-- Default categories
DarkRP.createCategory{
name = "Citizens",
categorises = "jobs",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 100,
}

DarkRP.createCategory{
name = "Civil Protection",
categorises = "jobs",
startExpanded = true,
color = Color(25, 25, 170, 255),
canSee = fp{fn.Id, true},
sortOrder = 101,
}

DarkRP.createCategory{
name = "Gangsters",
categorises = "jobs",
startExpanded = true,
color = Color(75, 75, 75, 255),
canSee = fp{fn.Id, true},
sortOrder = 101,
}

DarkRP.createCategory{
name = "Other",
categorises = "jobs",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 255,
}
 
  • Initiateur de la discussion
Predatz

Predatz

Geek
Messages
58
Score réaction
2
Points
45
Je t'ai envoyer tout mon jobs.lua mais en voilà un qui ne s'affiche pas par exemple :

TEAM_CRIPZ = DarkRP.createJob("Cripz", {
color = Color(51, 0, 255, 255),
model = {
"models/player/cripz/slow_1.mdl",
"models/player/cripz/slow_2.mdl",
"models/player/cripz/slow_3.mdl"
},
description = [[Vous faites parti des cripz !]],
weapons = {"weapon_arc_atmcard"},
command = "Cripz",
max = 4,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})
 
kirikoumalou

kirikoumalou

Lucas Pastel
Messages
1 057
Score réaction
200
Points
260
Aucune erreur ?
 
  • Initiateur de la discussion
Predatz

Predatz

Geek
Messages
58
Score réaction
2
Points
45
Non aucune
 
kirikoumalou

kirikoumalou

Lucas Pastel
Messages
1 057
Score réaction
200
Points
260
Ah... hum... je vois pas la... bien mit dans jobs.lua ? Les autres marche ? Tu a redémarrer ton serveur ?
 
  • Initiateur de la discussion
Predatz

Predatz

Geek
Messages
58
Score réaction
2
Points
45
Oui les autres marches voilà ceux qui marchent pas et j'ai bien redemarrer mon serveur :

TEAM_BLOODZ = DarkRP.createJob("Bloodz", {
color = Color(255, 0, 0, 255),
model = {
"models/player/bloodz/slow_1.mdl",
"models/player/bloodz/slow_2.mdl",
"models/player/bloodz/slow_3.mdl"
},
description = [[Vous faites parti des bloodz !]],
weapons = {"weapon_arc_atmcard"},
command = "Bloodz",
max = 4,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_CRIPZ = DarkRP.createJob("Cripz", {
color = Color(51, 0, 255, 255),
model = {
"models/player/cripz/slow_1.mdl",
"models/player/cripz/slow_2.mdl",
"models/player/cripz/slow_3.mdl"
},
description = [[Vous faites parti des cripz !]],
weapons = {"weapon_arc_atmcard"},
command = "Cripz",
max = 4,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_BRAQUEUR = DarkRP.createJob("Braqueur", {
color = Color(235, 0, 255, 255),
model = {
"models/shaklin/payday2/pd2_dallas.mdl",
"models/player/pd2_chains_p.mdl",
"models/player/pd2_hoxton_p.mdl"
},
description = [[Vous faites parti des braqueurs , vous braquez des banques , des personnes .. !]],
weapons = {"weapon_arc_atmcard"},
command = "Braqueur",
max = 3,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_COMISSAIRE = DarkRP.createJob("Comissaire", {
color = Color(25, 25, 170, 255),
model = {"models/player/politi_1/male_08.mdl"},
description = [[Vous dirigez les forces de l'ordre .]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "models/freeman/policebadge.mdl"},
command = "cp",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
},
category = "Civil Protection",
})

TEAM_CHEFDESGIGN = DarkRP.createJob("CHEF DES GIGN", {
color = Color(25, 25, 170, 255),
model = {"models/fearless/sru01.mdl"},
description = [[Vous dirigez les GIGN .]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "models/freeman/policebadge.mdl"},
command = "cp",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
},
category = "Civil Protection",
})

TEAM_GIGN = DarkRP.createJob("GIGN", {
color = Color(25, 25, 170, 255),
model = {"models/fearless/sru02.mdl"},
description = [[Vous êtes un GIGN et representez les forces de l'ordres .]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "models/freeman/policebadge.mdl"},
command = "cp",
max = 4,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
},
category = "Civil Protection",
})
 
  • Initiateur de la discussion
Predatz

Predatz

Geek
Messages
58
Score réaction
2
Points
45
ça doit venir du F4 menu non ?
 
M

maxvlam

Nouveau né
Messages
1
Score réaction
0
Points
15
Predatz à dit:
J'ajouter des armes dans le shipments.lua et des munitions dans le ammo.lua et quand je reboot le serveur je spawn en dessous de la map , il n'y a aucun job/metiers/armes/munitions ou autres ( même le HUD a changer )
Voila l'error qui m'affiche dans la console :

[ERROR] Lua is unable to understand file "darkrp_config/settings.lua" because its author made a mistake around line number 1.
The best help I can give you is this:

Right before the 'is', Lua expected to read an '='-sign, but it didn't.

Hints:
- Did you simply forget the '='-sign?
- Did you forget a comma?
- Is this supposed to be a local variable?

------- End of Simplerr error -------


J'espere que quelqu'un pourra m'aider ! Merci :/
Ahah predatz predatz...
 
Ben. ®

Ben. ®

Psychopathe
Messages
2 255
Score réaction
511
Points
340
Kiwii

Kiwii

Geek
Messages
50
Score réaction
10
Points
45
Predatz à dit:
Oui les autres marches voilà ceux qui marchent pas et j'ai bien redemarrer mon serveur :

TEAM_BLOODZ = DarkRP.createJob("Bloodz", {
color = Color(255, 0, 0, 255),
model = {
"models/player/bloodz/slow_1.mdl",
"models/player/bloodz/slow_2.mdl",
"models/player/bloodz/slow_3.mdl"
},
description = [[Vous faites parti des bloodz !]],
weapons = {"weapon_arc_atmcard"},
command = "Bloodz",
max = 4,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_CRIPZ = DarkRP.createJob("Cripz", {
color = Color(51, 0, 255, 255),
model = {
"models/player/cripz/slow_1.mdl",
"models/player/cripz/slow_2.mdl",
"models/player/cripz/slow_3.mdl"
},
description = [[Vous faites parti des cripz !]],
weapons = {"weapon_arc_atmcard"},
command = "Cripz",
max = 4,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_BRAQUEUR = DarkRP.createJob("Braqueur", {
color = Color(235, 0, 255, 255),
model = {
"models/shaklin/payday2/pd2_dallas.mdl",
"models/player/pd2_chains_p.mdl",
"models/player/pd2_hoxton_p.mdl"
},
description = [[Vous faites parti des braqueurs , vous braquez des banques , des personnes .. !]],
weapons = {"weapon_arc_atmcard"},
command = "Braqueur",
max = 3,
salary = 45,
admin = 0,
vote = true,
hasLicense = false,
candemote = true
})

TEAM_COMISSAIRE = DarkRP.createJob("Comissaire", {
color = Color(25, 25, 170, 255),
model = {"models/player/politi_1/male_08.mdl"},
description = [[Vous dirigez les forces de l'ordre .]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "models/freeman/policebadge.mdl"},
command = "cp",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
},
category = "Civil Protection",
})

TEAM_CHEFDESGIGN = DarkRP.createJob("CHEF DES GIGN", {
color = Color(25, 25, 170, 255),
model = {"models/fearless/sru01.mdl"},
description = [[Vous dirigez les GIGN .]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "models/freeman/policebadge.mdl"},
command = "cp",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
},
category = "Civil Protection",
})

TEAM_GIGN = DarkRP.createJob("GIGN", {
color = Color(25, 25, 170, 255),
model = {"models/fearless/sru02.mdl"},
description = [[Vous êtes un GIGN et representez les forces de l'ordres .]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "models/freeman/policebadge.mdl"},
command = "cp",
max = 4,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
},
category = "Civil Protection",
})
pastebin.com
 
Discord d'entraide
Rejoignz-nous sur Discord