- Initiateur de la discussion
xNanou13
Geek
- Messages
- 53
- Score réaction
- 4
- Points
- 95
Bonjour, j'ai un problème sur les jobs sur mon serveur Star Wars RP
Je n'arrive pas à mettre les deux codes suivants ensemble (en bleu et rose) :
TEAM_TESTJOB = DarkRP.createJob("Test Job", {
color = Color(75, 75, 75, 255),
model = {
"models/player/sgg/starwars/rebels/r_soldier_forest/male_01.mdl",
},
description = [[The lowest person of crime.
A gangster generally works for the Mobboss who runs the crime family.
The Mob boss sets your agenda and you follow it or you might be punished.]],
weapons = {""},
command = "testjob",
max = 1,
salary = 0,
admin = 1,
vote = false,
hasLicense = false,
PlayerDeath = function(ply, weapon, killer)
ply:teamBan()
ply:changeTeam(GAMEMODE.DefaultTeam, true)
if killer:IsPlayer() then
end
candemote = true,
category = "Neutre",
PlayerLoadout = function(ply) ply:SetArmor( 0 ) end,
PlayerLoadout = function(ply) ply:SetArmor( math.Clamp( ( ply:Armor() or 100 ) + 0, 0, 0 ) ) end,
PlayerSpawn = function(ply)
GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 0.5, GAMEMODE.Config.runspeed * 1.0)
ply:SetHealth(100)
end,
level = 0
})
J'ai essayé de changer leurs place, des lua Errors différents apparaissent (exemple d'error :
[ERROR] addons/darkrpmodification/lua/darkrp_customthings/jobs.lua:3380: unexpected symbol near '='
1. unknown - addons/darkrpmodification/lua/darkrp_customthings/jobs.lua:0).
Sachant que si je met un des deux codes et que j’enlève l'autre , le code qui reste marche sur le serveur mais
on dirai que les deux codes ne marchent pas quand ils sont ensemble.
Pouvez-vous m'aider à résoudre ce bug.
Merci, A+
Je n'arrive pas à mettre les deux codes suivants ensemble (en bleu et rose) :
TEAM_TESTJOB = DarkRP.createJob("Test Job", {
color = Color(75, 75, 75, 255),
model = {
"models/player/sgg/starwars/rebels/r_soldier_forest/male_01.mdl",
},
description = [[The lowest person of crime.
A gangster generally works for the Mobboss who runs the crime family.
The Mob boss sets your agenda and you follow it or you might be punished.]],
weapons = {""},
command = "testjob",
max = 1,
salary = 0,
admin = 1,
vote = false,
hasLicense = false,
PlayerDeath = function(ply, weapon, killer)
ply:teamBan()
ply:changeTeam(GAMEMODE.DefaultTeam, true)
if killer:IsPlayer() then
end
candemote = true,
category = "Neutre",
PlayerLoadout = function(ply) ply:SetArmor( 0 ) end,
PlayerLoadout = function(ply) ply:SetArmor( math.Clamp( ( ply:Armor() or 100 ) + 0, 0, 0 ) ) end,
PlayerSpawn = function(ply)
GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 0.5, GAMEMODE.Config.runspeed * 1.0)
ply:SetHealth(100)
end,
level = 0
})
J'ai essayé de changer leurs place, des lua Errors différents apparaissent (exemple d'error :
[ERROR] addons/darkrpmodification/lua/darkrp_customthings/jobs.lua:3380: unexpected symbol near '='
1. unknown - addons/darkrpmodification/lua/darkrp_customthings/jobs.lua:0).
Sachant que si je met un des deux codes et que j’enlève l'autre , le code qui reste marche sur le serveur mais
on dirai que les deux codes ne marchent pas quand ils sont ensemble.
Pouvez-vous m'aider à résoudre ce bug.
Merci, A+