problème job

  • Initiateur de la discussion
Y

Yoni Hawkes

Geek
Messages
148
Score réaction
4
Points
80
Bonsoir, cela fait quelque heures que je recherche pourquoi ce job ne marche pas :
TEAM_ASHOKATANO = DarkRP.createJob("Ashoka Tano VIP", {
color = Color(34, 85, 85, 255),
model = {"models/jazzmcfly/jka/ashoka/jka_ashoka.mdl"},
description = [[Vous êtes Ashoka Tano]],
weapons = {"weapon_lightsaber", "keys", "pocket"},
command = "ashokatano",
max = -1,
salary = 85,
admin = 0,
vote = false,
hasLicense = false,
candemote = false,
PlayerSpawn = function(ply)
PlayerLoadout = function(ply) ply:SetHealth(700)
end,
customCheck = function(ply) return CLIENT or
table.HasValue({"superadmin", "admin", "VIP_Esclave", "VIP_InitiéSith", "VIP_Acolyte", "VIP_Guerrier", "VIP_Inquisiteur", "VIP_MaitreGuerrier", "VIP_MaitreInquisiteur", "VIP_Assassin", "VIP_Sorcier", "VIP_MaitreAssassin", "VIP_MaitreSorcier", "VIP_Seigneur", "VIP_SeigneurNoir", "VIP_MaitredesSeigneurs", "VIP_MembreduConseilNoir", "VIP_Apprenti", "VIP_InitiéJedi", "VIP_Padawan", "VIP_Chevalier", "VIP_Consulaire", "VIP_MaitreChevalier", "VIP_MaitreConsulaire", "VIP_Gardien", "VIP_Ombre", "VIP_MaitreGardien", "VIP_MaitreOmbre", "VIP_MaitreJedi", "VIP_GrandMaitreJedi", "VIP_MembreduConseilJedi", "VIP_DirigeantdelOrdreJedi"}, ply:GetNWString("usergroup"))
CustomCheckFailMsg = "Vous n'êtes pas VIP",
})
ça me dis qu'il y à un problème juste avant le "=" de "customCheck = function(ply) return CLIENT or" mais je ne vois pas où alors si quelqu'un serai où ça m'arrangerai énormément merci beaucoup
 
NOX3R

NOX3R

Geek suprême
Messages
436
Score réaction
148
Points
130
Ton customcheck n'a pas de end
 
  • Initiateur de la discussion
Y

Yoni Hawkes

Geek
Messages
148
Score réaction
4
Points
80
NOX3R à dit:
Ton customcheck n'a pas de end
je te remercie énormément et pour celui là stp
TEAM_INITIESITH = DarkRP.createJob("Initié Sith", {
color = Color(255, 0, 0, 255),
model = {"models/jazzmcfly/jka/dv/dv.mdl"},
description = [[Vous êtes au grade d'Initié Sith vous avez un grade supérieur au sein de cette ordre, poursuivez comme ça]],
weapons = {"weapon_lightsaber", "keys", "pocket"},
command = "initiésith",
max = 0,
salary = 45,
admin = 0,
vote = false,
hasLicense = false,
candemote = false,
PlayerSpawn = function(ply)
PlayerSpawn = function(ply)
ply:SetMaxHealth(225)
ply:SetHealth(225)
end,
customCheck = function(ply) return CLIENT or
table.HasValue({"superadmin", "admin", "initiésith", "VIP_InitiéSith"}, ply:GetNWString("usergroup"))
end,
CustomCheckFailMsg = "Vous ne pouvez pas accéder à ce grade",
})
 
♛ KING ♛

♛ KING ♛

Geek
Messages
144
Score réaction
17
Points
65
Cela est la même erreur ?

EDIT : Tu as deux fois la même ligne :

PlayerSpawn = function(ply)
PlayerSpawn = function(ply)
 
  • J'aime
Réactions: NOX3R
  • Initiateur de la discussion
Y

Yoni Hawkes

Geek
Messages
148
Score réaction
4
Points
80
♛ KING ♛ à dit:
Cela est la même erreur ?
oui tjrs la même avant le "=" de "customCheck = function(ply) return CLIENT or"
 
NOX3R

NOX3R

Geek suprême
Messages
436
Score réaction
148
Points
130
♛ KING ♛ à dit:
Cela est la même erreur ?

EDIT : Tu as deux fois la même ligne :

PlayerSpawn = function(ply)
PlayerSpawn = function(ply)
Yep tu as deux fonctions la même fonction et tu n'en a qu'une de fermé d'où le bug ^^
 
  • J'aime
Réactions: ♛ KING ♛
Treadstonepbs

Treadstonepbs

Psychopathe
Messages
657
Score réaction
217
Points
230
Yoni Hawkes à dit:
Bonsoir, cela fait quelque heures que je recherche pourquoi ce job ne marche pas :
TEAM_ASHOKATANO = DarkRP.createJob("Ashoka Tano VIP", {
color = Color(34, 85, 85, 255),
model = {"models/jazzmcfly/jka/ashoka/jka_ashoka.mdl"},
description = [[Vous êtes Ashoka Tano]],
weapons = {"weapon_lightsaber", "keys", "pocket"},
command = "ashokatano",
max = -1,
salary = 85,
admin = 0,
vote = false,
hasLicense = false,
candemote = false,
PlayerSpawn = function(ply)
PlayerLoadout = function(ply) ply:SetHealth(700)
end,
customCheck = function(ply) return CLIENT or
table.HasValue({"superadmin", "admin", "VIP_Esclave", "VIP_InitiéSith", "VIP_Acolyte", "VIP_Guerrier", "VIP_Inquisiteur", "VIP_MaitreGuerrier", "VIP_MaitreInquisiteur", "VIP_Assassin", "VIP_Sorcier", "VIP_MaitreAssassin", "VIP_MaitreSorcier", "VIP_Seigneur", "VIP_SeigneurNoir", "VIP_MaitredesSeigneurs", "VIP_MembreduConseilNoir", "VIP_Apprenti", "VIP_InitiéJedi", "VIP_Padawan", "VIP_Chevalier", "VIP_Consulaire", "VIP_MaitreChevalier", "VIP_MaitreConsulaire", "VIP_Gardien", "VIP_Ombre", "VIP_MaitreGardien", "VIP_MaitreOmbre", "VIP_MaitreJedi", "VIP_GrandMaitreJedi", "VIP_MembreduConseilJedi", "VIP_DirigeantdelOrdreJedi"}, ply:GetNWString("usergroup"))
CustomCheckFailMsg = "Vous n'êtes pas VIP",
})
ça me dis qu'il y à un problème juste avant le "=" de "customCheck = function(ply) return CLIENT or" mais je ne vois pas où alors si quelqu'un serai où ça m'arrangerai énormément merci beaucoup
candemote = false,
PlayerSpawn = function(ply)
PlayerLoadout = function(ply) ply:SetHealth(700)
end,
 
  • Initiateur de la discussion
Y

Yoni Hawkes

Geek
Messages
148
Score réaction
4
Points
80
♛ KING ♛ à dit:
Cela est la même erreur ?

EDIT : Tu as deux fois la même ligne :

PlayerSpawn = function(ply)
PlayerSpawn = function(ply)
merci beaucoup ;)
 
♛ KING ♛

♛ KING ♛

Geek
Messages
144
Score réaction
17
Points
65
Aucun soucis :)
 
JavaDa

JavaDa

Geek
Messages
414
Score réaction
47
Points
80
Résolut ?
 
♛ KING ♛

♛ KING ♛

Geek
Messages
144
Score réaction
17
Points
65
Oui JavaDa
 
Discord d'entraide
Rejoignz-nous sur Discord