Gros Probleme de Glua

  • Initiateur de la discussion
A

AnnibalExHD

Geek
Messages
52
Score réaction
1
Points
90
Code:
local bhop = vgui.Create( "DButton", melon )
bhop:SetParent(prop)
bhop:SetText( "BHOP" )
bhop:SetTextColor( Color(44, 62, 80) )
bhop:SetPos( 115, 270 )
bhop:SetSize( 68, 24 )
bhop.Paint = function()
surface.SetDrawColor( 236, 240, 241 )
surface.DrawRect( 0, 0, bhop:GetWide(), bhop:GetTall() )
end
bhop.DoClick = function() surface.PlaySound("garrysmod/content_downloaded.wav")
CreateClientConVar("bunnyhop", 1, true, false)
function Bunnyhop() if GetConVar("bunnyhop"):GetInt() == 1 then if input.IsKeyDown(KEY_SPACE) then if LocalPlayer():IsOnGround() then RunConsoleCommand("+jump") timer.Create("Bhop", 0, 0.01, function() RunConsoleCommand("-jump") end end end
end
hook.Add("Think", "Bunnyhop", Bunnyhop )
bhop.DoClick = function()
if (isBhop == 0) then -- ACTIVER LE BHOP) isBhop = 1
else --DESACTIVER BHOP isBhop = 0
end
if buttonColored == false then buttonColored = true bhop.Paint = function(self,w,h) draw.RoundedBox(0, 0, 0, w, h, Color( 1, 255, 146, 255 ) ) end else buttonColored = false bhop.Paint = function(self,w,h) draw.RoundedBox(0, 0, 0, w, h, Color( 236, 240, 241, 255 ) ) end end
end
Qui pourrai m'aide et dans la console sa m’écris ça

')' expected (to close '(' at line 498) near 'end'
 
Gladiateur45

Gladiateur45

Geek suprême
Messages
472
Score réaction
39
Points
140
AnnibalExHD à dit:
Code:
local bhop = vgui.Create( "DButton", melon )
bhop:SetParent(prop)
bhop:SetText( "BHOP" )
bhop:SetTextColor( Color(44, 62, 80) )
bhop:SetPos( 115, 270 )
bhop:SetSize( 68, 24 )
bhop.Paint = function()
surface.SetDrawColor( 236, 240, 241 )
surface.DrawRect( 0, 0, bhop:GetWide(), bhop:GetTall() )
end
bhop.DoClick = function() surface.PlaySound("garrysmod/content_downloaded.wav")
CreateClientConVar("bunnyhop", 1, true, false)
function Bunnyhop() if GetConVar("bunnyhop"):GetInt() == 1 then if input.IsKeyDown(KEY_SPACE) then if LocalPlayer():IsOnGround() then RunConsoleCommand("+jump") timer.Create("Bhop", 0, 0.01, function() RunConsoleCommand("-jump") end end end
end
hook.Add("Think", "Bunnyhop", Bunnyhop )
bhop.DoClick = function()
if (isBhop == 0) then -- ACTIVER LE BHOP) isBhop = 1
else --DESACTIVER BHOP isBhop = 0
end
if buttonColored == false then buttonColored = true bhop.Paint = function(self,w,h) draw.RoundedBox(0, 0, 0, w, h, Color( 1, 255, 146, 255 ) ) end else buttonColored = false bhop.Paint = function(self,w,h) draw.RoundedBox(0, 0, 0, w, h, Color( 236, 240, 241, 255 ) ) end end
end
Qui pourrai m'aide et dans la console sa m’écris ça

')' expected (to close '(' at line 498) near 'end'
J'ai modifier ton code et indiqué ou tu avait fait les erreures .Remplace ton code par ca :
PS : Un Bonjours n'est pas de refus pour une aide ;D
Code:
local bhop = vgui.Create( "DButton", melon )
bhop:SetParent(prop)
bhop:SetText( "BHOP" )
bhop:SetTextColor( Color(44, 62, 80) )
bhop:SetPos( 115, 270 )
bhop:SetSize( 68, 24 )
bhop.Paint = function()
surface.SetDrawColor( 236, 240, 241 )
surface.DrawRect( 0, 0, bhop:GetWide(), bhop:GetTall() )
end
bhop.DoClick = function() surface.PlaySound("garrysmod/content_downloaded.wav")
CreateClientConVar("bunnyhop", 1, true, false)
end -- Tu ouvre doclick mais tu le ferme pas 0_o
function Bunnyhop() if GetConVar("bunnyhop"):GetInt() == 1 then if input.IsKeyDown(KEY_SPACE) then if LocalPlayer():IsOnGround() then RunConsoleCommand("+jump") timer.Create("Bhop", 0, 0.01, function() RunConsoleCommand("-jump") end) -- Quand tu fait un timer si tu ouvre une parenthèse , faut la fermer end end
end
end -- Compte il te manque 1 end
hook.Add("Think", "Bunnyhop", Bunnyhop )
bhop.DoClick = function()
if (isBhop == 0) then -- ACTIVER LE BHOP) isBhop = 1
else --DESACTIVER BHOP isBhop = 0
end
if buttonColored == false then buttonColored = true bhop.Paint = function(self,w,h) draw.RoundedBox(0, 0, 0, w, h, Color( 1, 255, 146, 255 ) ) end else buttonColored = false bhop.Paint = function(self,w,h) draw.RoundedBox(0, 0, 0, w, h, Color( 236, 240, 241, 255 ) ) end end
end
 
  • Initiateur de la discussion
A

AnnibalExHD

Geek
Messages
52
Score réaction
1
Points
90
Gladiateur45 à dit:
J'ai modifier ton code et indiqué ou tu avait fait les erreures .Remplace ton code par ca :
PS : Un Bonjours n'est pas de refus pour une aide ;D
Code:
local bhop = vgui.Create( "DButton", melon )
bhop:SetParent(prop)
bhop:SetText( "BHOP" )
bhop:SetTextColor( Color(44, 62, 80) )
bhop:SetPos( 115, 270 )
bhop:SetSize( 68, 24 )
bhop.Paint = function()
surface.SetDrawColor( 236, 240, 241 )
surface.DrawRect( 0, 0, bhop:GetWide(), bhop:GetTall() )
end
bhop.DoClick = function() surface.PlaySound("garrysmod/content_downloaded.wav")
CreateClientConVar("bunnyhop", 1, true, false)
end -- Tu ouvre doclick mais tu le ferme pas 0_o
function Bunnyhop() if GetConVar("bunnyhop"):GetInt() == 1 then if input.IsKeyDown(KEY_SPACE) then if LocalPlayer():IsOnGround() then RunConsoleCommand("+jump") timer.Create("Bhop", 0, 0.01, function() RunConsoleCommand("-jump") end) -- Quand tu fait un timer si tu ouvre une parenthèse , faut la fermer end end
end
end -- Compte il te manque 1 end
hook.Add("Think", "Bunnyhop", Bunnyhop )
bhop.DoClick = function()
if (isBhop == 0) then -- ACTIVER LE BHOP) isBhop = 1
else --DESACTIVER BHOP isBhop = 0
end
if buttonColored == false then buttonColored = true bhop.Paint = function(self,w,h) draw.RoundedBox(0, 0, 0, w, h, Color( 1, 255, 146, 255 ) ) end else buttonColored = false bhop.Paint = function(self,w,h) draw.RoundedBox(0, 0, 0, w, h, Color( 236, 240, 241, 255 ) ) end end
end
desole escuse moi merci et Bonjour
merci vraiment de m'avoir aide pour ca
tu ma apporter une grande aide
merci,merci,merci
 
  • Initiateur de la discussion
A

AnnibalExHD

Geek
Messages
52
Score réaction
1
Points
90
sa me fais une erreur
attempt to index a nil value
 
thepsyca

thepsyca

Psychopathe
Messages
2 164
Score réaction
648
Points
365
Gladiateur45

Gladiateur45

Geek suprême
Messages
472
Score réaction
39
Points
140
AnnibalExHD à dit:
sa me fais une erreur
attempt to index a nil value
Quel ligne ? , et remplace par ca (Innutile de faire 2 Doclip , et si tu fait un paint sur ton button ca enlève ce que tu avait mis comme paint) : ATTENTION Regarde a la première ligme j'ai mis un commentaire tu met en parent melon et props
Code:
local bhop = vgui.Create( "DButton", melon )----| Faut savoir il est parent avec melon ou props ?
bhop:SetParent(prop) ---------------------------|
bhop:SetText( "BHOP" )
bhop:SetTextColor( Color(44, 62, 80) )
bhop:SetPos( 115, 270 )
bhop:SetSize( 68, 24 )
bhop.Paint = function()
surface.SetDrawColor( 236, 240, 241 )
surface.DrawRect( 0, 0, bhop:GetWide(), bhop:GetTall() )
if buttonColored = true then
draw.RoundedBox(0, 0, 0, w, h, Color( 1, 255, 146, 255 ) )
else
draw.RoundedBox(0, 0, 0, w, h, Color( 236, 240, 241, 255 ) )
end
end
bhop.DoClick = function() surface.PlaySound("garrysmod/content_downloaded.wav")
CreateClientConVar("bunnyhop", 1, true, false)
if (isBhop == 0) then -- ACTIVER LE BHOP) isBhop = 1
else --DESACTIVER BHOP isBhop = 0
end
if buttonColored == false then buttonColored = true else buttonColored = false end
end -- Tu ouvre doclick mais tu le ferme pas 0_o
function Bunnyhop() if GetConVar("bunnyhop"):GetInt() == 1 then if input.IsKeyDown(KEY_SPACE) then if LocalPlayer():IsOnGround() then RunConsoleCommand("+jump") timer.Create("Bhop", 0, 0.01, function() RunConsoleCommand("-jump") end) -- Quand tu fait un timer si tu ouvre une parenthèse , faut la fermer end end
end
end -- Compte il te manque 1 end
hook.Add("Tick", "Bunnyhop", Bunnyhop )
 
  • Initiateur de la discussion
A

AnnibalExHD

Geek
Messages
52
Score réaction
1
Points
90
Gladiateur45 à dit:
Quel ligne ? , et remplace par ca (Innutile de faire 2 Doclip , et si tu fait un paint sur ton button ca enlève ce que tu avait mis comme paint) : ATTENTION Regarde a la première ligme j'ai mis un commentaire tu met en parent melon et props
Code:
local bhop = vgui.Create( "DButton", melon )----| Faut savoir il est parent avec melon ou props ?
bhop:SetParent(prop) ---------------------------|
bhop:SetText( "BHOP" )
bhop:SetTextColor( Color(44, 62, 80) )
bhop:SetPos( 115, 270 )
bhop:SetSize( 68, 24 )
bhop.Paint = function()
surface.SetDrawColor( 236, 240, 241 )
surface.DrawRect( 0, 0, bhop:GetWide(), bhop:GetTall() )
if buttonColored = true then
draw.RoundedBox(0, 0, 0, w, h, Color( 1, 255, 146, 255 ) )
else
draw.RoundedBox(0, 0, 0, w, h, Color( 236, 240, 241, 255 ) )
end
end
bhop.DoClick = function() surface.PlaySound("garrysmod/content_downloaded.wav")
CreateClientConVar("bunnyhop", 1, true, false)
if (isBhop == 0) then -- ACTIVER LE BHOP) isBhop = 1
else --DESACTIVER BHOP isBhop = 0
end
if buttonColored == false then buttonColored = true else buttonColored = false end
end -- Tu ouvre doclick mais tu le ferme pas 0_o
function Bunnyhop() if GetConVar("bunnyhop"):GetInt() == 1 then if input.IsKeyDown(KEY_SPACE) then if LocalPlayer():IsOnGround() then RunConsoleCommand("+jump") timer.Create("Bhop", 0, 0.01, function() RunConsoleCommand("-jump") end) -- Quand tu fait un timer si tu ouvre une parenthèse , faut la fermer end end
end
end -- Compte il te manque 1 end
hook.Add("Tick", "Bunnyhop", Bunnyhop )
prsq mon Dframe c'est melon
et props c'est un onglet
 
᠌ ᠌ ᠌ ᠌ ᠌ ᠌᠌ ᠌ ᠌ ᠌

᠌ ᠌ ᠌ ᠌ ᠌ ᠌᠌ ᠌ ᠌ ᠌

Psychopathe
Messages
742
Score réaction
808
Points
265
J'annonce c'est pour cheat qu'il veut ce code ( J'ai des screen ) donc est-ce vraiment utile de l'aider ?
 
  • Initiateur de la discussion
A

AnnibalExHD

Geek
Messages
52
Score réaction
1
Points
90
᠌ ᠌ ᠌ ᠌ ᠌ ᠌᠌ ᠌ ᠌ ᠌ à dit:
J'annonce c'est pour cheat qu'il veut ce code ( J'ai des screen ) donc est-ce vraiment utile de l'aider ?
euh pardon non jamais
 
᠌ ᠌ ᠌ ᠌ ᠌ ᠌᠌ ᠌ ᠌ ᠌

᠌ ᠌ ᠌ ᠌ ᠌ ᠌᠌ ᠌ ᠌ ᠌

Psychopathe
Messages
742
Score réaction
808
Points
265
AnnibalExHD à dit:
euh pardon non jamais
Dommage qu'on ai pas le droit de montrer des screens de conv privé :rolleyes:
 
M

Membre supprimé 98332

Anonyme
Les gars avant de crier à l'aider utilisez un linter pour des fautes de syntaxe...

Falco en a fait un super bien pour le GLua :
https://fptje.github.io/glualint-web/
 
Lap3che

Lap3che

Helpeur Divin
Messages
1 992
Score réaction
1 204
Points
495
᠌ ᠌ ᠌ ᠌ ᠌ ᠌᠌ ᠌ ᠌ ᠌ à dit:
Dommage qu'on ai pas le droit de montrer des screens de conv privé :rolleyes:
Tu peux envoyer sur notre discord dans le channel frontière, y’a tous les best et y’a @thepsyca osi
 
  • J'aime
Réactions: thepsyca
ZarosOVH

ZarosOVH

Modérateur
Membre du Staff
Messages
6 527
Score réaction
5 488
Points
1 295
᠌ ᠌ ᠌ ᠌ ᠌ ᠌᠌ ᠌ ᠌ ᠌ à dit:
Dommage qu'on ai pas le droit de montrer des screens de conv privé :rolleyes:
Perso moi je copie/colle la conv et je fais passer ça pour un roman, askip c’est autorisé vu que j’ai pas pris de warn pour les 2 que j’avais poster Kappa
 
  • J'aime
Réactions: Lap3che et ᠌ ᠌ ᠌ ᠌ ᠌ ᠌᠌ ᠌ ᠌ ᠌
Discord d'entraide
Rejoignz-nous sur Discord