Soucis

  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
Bonjour, que signifie :

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

Right before the 'end', Lua expected to read a 'end of the file', but it didn't.

Hints:
- Did you forget a keyword?
- Did you forget a comma?


Alors que dans mon fichier il y a :

jobType = "vip",
candemote = true,
customCheck = function(ply) return table.HasValue({"vip", "admin", "superadmin", "chef-admin", "moderateur"}, ply:GetNWString("usergroup")) end,
CustomCheckFailMsg = "Cette Emploi Est VIP"
})

end
et la ligne entre {( et le end
je suis parti test
 
SGCAtlantis

SGCAtlantis

Psychopathe
Messages
2 408
Score réaction
443
Points
300
même dans la dernière version il n’y est pas il est juste la pour modules hungermod pas pour les jobs https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua

Code:
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 })
end
le end ferme le if not DarkRP.disabledDefaults["modules"]["hungermod"] then
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
SGCAtlantis

SGCAtlantis

Psychopathe
Messages
2 408
Score réaction
443
Points
300
Joe Leroi à dit:
tu veux attendre la solution de @FalkioGMR ? ou tu veux bien m'en dire plus et me dire quel version du dark tu utilise ?
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
la dernière installation depuis le panel
 
Feytone

Feytone

Chuck Norris
Messages
4 741
Score réaction
1 301
Points
600
Dans ce cas enlève ton END ^^
 
SGCAtlantis

SGCAtlantis

Psychopathe
Messages
2 408
Score réaction
443
Points
300
Joe Leroi à dit:
la dernière installation depuis le panel
xD moi ça me dit rien ça dit moi ce que tu voix dans darkrp.txt
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
"version" "2.7.0"
 
SGCAtlantis

SGCAtlantis

Psychopathe
Messages
2 408
Score réaction
443
Points
300
Joe Leroi à dit:
"version" "2.7.0"
ok on avence tu as creer ton job dans darkrpmodification\lua\darkrp_customthings\jobs.lua ?
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
oui
 
SGCAtlantis

SGCAtlantis

Psychopathe
Messages
2 408
Score réaction
443
Points
300
alors écoute moi le end na rien a foutre la je le dit plus haut ce end est juste pour le modul

ton job doit être comme ça

Code:
TEAM_BABY = DarkRP.createJob("Bébé Innocent", {
color = Color(0, 86, 13, 255),
model = {""},
description = [[Faite vous adoptez, et devez un méchant petit bébé, contrôlez votre famille, faite leur faire des choses méchantes...]],
weapons = {""},
command = "baby",
max = 1,
salary = 0,
admin = 0,
vote = false,
hasLicense = false,
jobType = "vip",
candemote = true,
customCheck = function(ply) return table.HasValue({"vip", "admin", "superadmin", "chef-admin", "moderateur"}, ply:GetNWString("usergroup")) end,
CustomCheckFailMsg = "Cette Emploi Est VIP", <<= la virgule
category = "", <<== la category que tu creer dans categories.lua
})
 
SGCAtlantis

SGCAtlantis

Psychopathe
Messages
2 408
Score réaction
443
Points
300
exemple de categories

Code:
DarkRP.createCategory{ name = "Custom", categorises = "jobs", startExpanded = true, color = Color(0, 107, 0, 255), canSee = fp{fn.Id, true}, sortOrder = 100,
}
donc tu maitras dans ton job

category = "Custom",
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
/*
Ce signe je le laisse ?
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
[ERROR] Lua is unable to understand file "darkrp_customthings/jobs.lua" because its author made a mistake around line number 1017.
The best help I can give you is this:

Right before the 'TO', 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 -------
 
SGCAtlantis

SGCAtlantis

Psychopathe
Messages
2 408
Score réaction
443
Points
300
Joe Leroi à dit:
[ERROR] Lua is unable to understand file "darkrp_customthings/jobs.lua" because its author made a mistake around line number 1017.
The best help I can give you is this:

Right before the 'TO', 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 -------
lol dans
category = "" tu as ajouter le non de ta categorie hein ?
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
oui ^^
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
att je te dis sa dans 5sec
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
L'erreur :
Code:
[ERROR] Lua is unable to understand file "darkrp_customthings/jobs.lua" because its author made a mistake around line number 1020.
The best help I can give you is this:
Right before the 'TO', 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 -------
et la ligne ::

Code:
HOW TO MAKE A DOOR GROUP
 
Ð

ÐÂ$

Geek
Messages
271
Score réaction
41
Points
75
Olala sa fait un serveur et sa ne sais même pas faire un jobs alors Bonne chance ;)
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
ÐÂ$ à dit:
Olala sa fait un serveur et sa ne sais même pas faire un jobs alors Bonne chance ;)
J'ai déjà ouvert un serveur, sans bugs, juste la je sais pas pourquoi sa marche pas après j'utilisais une ancienne version
 
  • Initiateur de la discussion
Joe Leroi

Joe Leroi

Chuck Norris
Messages
4 368
Score réaction
933
Points
605
FalkioGMR à dit:
Ta quoi ligne 1017 et ligne 1020
Code:
TEAM_BABY = DarkRP.createJob("Bébé Innocent", { color = Color(0, 86, 13, 255), model = {""}, description = [[Faite vous adoptez, et devez un méchant petit bébé, contrôlez votre famille, faite leur faire des choses méchantes...]], weapons = {""}, command = "baby", max = 1, salary = 0, admin = 0, vote = false, category = "Hero", hasLicense = false, jobType = "vip", candemote = true, customCheck = function(ply) return table.HasValue({"vip", "admin", "superadmin", "chef-admin", "moderateur"}, ply:GetNWString("usergroup")) end, CustomCheckFailMsg = "Cette Emploi Est VIP"
})
-------------------------------------------------------
HOW TO MAKE A DOOR GROUP
--------------------------------------------------------
Le HOW TO MAKE A DOOR GROUP = Ligne 1020
}) = Ligne 1017
 
SGCAtlantis

SGCAtlantis

Psychopathe
Messages
2 408
Score réaction
443
Points
300
Joe Leroi à dit:
Code:
TEAM_BABY = DarkRP.createJob("Bébé Innocent", { color = Color(0, 86, 13, 255), model = {""}, description = [[Faite vous adoptez, et devez un méchant petit bébé, contrôlez votre famille, faite leur faire des choses méchantes...]], weapons = {""}, command = "baby", max = 1, salary = 0, admin = 0, vote = false, category = "Hero", hasLicense = false, jobType = "vip", candemote = true, customCheck = function(ply) return table.HasValue({"vip", "admin", "superadmin", "chef-admin", "moderateur"}, ply:GetNWString("usergroup")) end, CustomCheckFailMsg = "Cette Emploi Est VIP"
})
-------------------------------------------------------
HOW TO MAKE A DOOR GROUP
--------------------------------------------------------
Le HOW TO MAKE A DOOR GROUP = Ligne 1020
}) = Ligne 1017
putain je t es mis ton job nikel plus haut t avais ka copier

la tu as encore
CustomCheckFailMsg = "Cette Emploi Est VIP" sans la ,
 
Discord d'entraide
Rejoignz-nous sur Discord