Admin Popus

  • Initiateur de la discussion
H

hamidzl69

Bambi
Messages
11
Score réaction
0
Points
35
Bonjours j'ai acheter cette adonne (admin popus) et j'ai remarquer qu'il manquer le teleport je voulais savoir comment faire pour mettre le teleport a la place du retourne .

Merci d'avance de votre réponse.
 
Kyle13200

Kyle13200

Geek suprême
Messages
230
Score réaction
70
Points
100
Tu aurais une image d'illustration s'il te plait ?
Il n'y a pas le "goto" ?
 
  • Initiateur de la discussion
H

hamidzl69

Bambi
Messages
11
Score réaction
0
Points
35
Kyle13200 à dit:
Tu aurais une image d'illustration s'il te plait ?
Il n'y a pas le "goto" ?
oui le goto il y est mais j'aimerai le remplacer pas le tp tien le lien http://www.noelshack.com/2016-28-1468719387-20160717021553-1.jpg
 
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
Remplace ça:
Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 2) cbu:SetSize(83,18) cbu:SetText(" Retourner") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.should_unjail = false cbu.DoClick = function() local toexec = [["ulx return ^"]] LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end end
Par ça:
Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 4) cbu:SetSize(83,18) cbu:SetText(" TP") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.DoClick = function() local toexec = [["ulx teleport $]]..noob:SteamID()..[["]] LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end end
 
hamidzl

hamidzl

Bambi
Messages
13
Score réaction
0
Points
40
Nardox à dit:
Remplace ça:
Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 2) cbu:SetSize(83,18) cbu:SetText(" Retourner") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.should_unjail = false cbu.DoClick = function() local toexec = [["ulx return ^"]] LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end end
Par ça:
Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 4) cbu:SetSize(83,18) cbu:SetText(" TP") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.DoClick = function() local toexec = [["ulx teleport $]]..noob:SteamID()..[["]] LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end end
Merci tu pourrai aussi faire sa mais en remplacent le freeze pas le le kick?
 
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
Ok je te fait ça
 
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
Remplace ça:
Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 3) cbu:SetSize(83,18) cbu:SetText(" Freeze") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.should_unfreeze = false cbu.DoClick = function() local toexec = [["ulx freeze $]]..noob:SteamID()..[["]] if cbu.should_unfreeze then toexec = [["ulx unfreeze $]]..noob:SteamID()..[["]] end LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end cbu.should_unfreeze = not cbu.should_unfreeze end cbu.Paint = function(self,w,h) if cbu.Depressed or cbu.m_bSelected then draw.RoundedBox( 1, 0, 0, w, h, Color(255,50,50,255) ) elseif cbu.Hovered then draw.RoundedBox( 1, 0, 0, w, h, Color(205,30,30,255) ) else draw.RoundedBox( 1, 0, 0, w, h, Color(80,80,80,255) ) end surface.SetDrawColor(Color(255,255,255)) surface.SetMaterial(Material("icon16/link.png")) surface.DrawTexturedRect(5, 1, 16, 16) end
Par ça:

Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 4) cbu:SetSize(83,18) cbu:SetText(" Kick") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.DoClick = function() local toexec = [["ulx kick $]]..noob:SteamID()..[["]] LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end end cbu.Paint = function(self,w,h) if cbu.Depressed or cbu.m_bSelected then draw.RoundedBox( 1, 0, 0, w, h, Color(255,50,50,255) ) elseif cbu.Hovered then draw.RoundedBox( 1, 0, 0, w, h, Color(205,30,30,255) ) else draw.RoundedBox( 1, 0, 0, w, h, Color(80,80,80,255) ) end surface.SetDrawColor(Color(255,255,255)) surface.SetMaterial(Material("icon16/link.png")) surface.DrawTexturedRect(5, 1, 16, 16) end
 
M

mike2545200

Geek
Messages
56
Score réaction
1
Points
90
tu pourrais fais que a la place de retourne est mette kick ?
 
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
Remplace ça:
Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 2) cbu:SetSize(83,18) cbu:SetText(" Retourner") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.should_unjail = false cbu.DoClick = function() local toexec = [["ulx return ^"]] LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end end
Par ça:
Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 4) cbu:SetSize(83,18) cbu:SetText(" Kick") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.DoClick = function() local toexec = [["ulx kick $]]..noob:SteamID()..[["]] LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end end cbu.Paint = function(self,w,h) if cbu.Depressed or cbu.m_bSelected then draw.RoundedBox( 1, 0, 0, w, h, Color(255,50,50,255) ) elseif cbu.Hovered then draw.RoundedBox( 1, 0, 0, w, h, Color(205,30,30,255) ) else draw.RoundedBox( 1, 0, 0, w, h, Color(80,80,80,255) ) end surface.SetDrawColor(Color(255,255,255)) surface.SetMaterial(Material("icon16/link.png")) surface.DrawTexturedRect(5, 1, 16, 16) end
 
M

mike2545200

Geek
Messages
56
Score réaction
1
Points
90
ok merci
 
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
Derien
 
M

mike2545200

Geek
Messages
56
Score réaction
1
Points
90
connais tu l'addons darkrpadvancedarrestingsystem
 
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
envoie le lien
 
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
Oui un peux pk
 
hamidzl

hamidzl

Bambi
Messages
13
Score réaction
0
Points
40
Nardox à dit:
Remplace ça:
Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 3) cbu:SetSize(83,18) cbu:SetText(" Freeze") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.should_unfreeze = false cbu.DoClick = function() local toexec = [["ulx freeze $]]..noob:SteamID()..[["]] if cbu.should_unfreeze then toexec = [["ulx unfreeze $]]..noob:SteamID()..[["]] end LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end cbu.should_unfreeze = not cbu.should_unfreeze end cbu.Paint = function(self,w,h) if cbu.Depressed or cbu.m_bSelected then draw.RoundedBox( 1, 0, 0, w, h, Color(255,50,50,255) ) elseif cbu.Hovered then draw.RoundedBox( 1, 0, 0, w, h, Color(205,30,30,255) ) else draw.RoundedBox( 1, 0, 0, w, h, Color(80,80,80,255) ) end surface.SetDrawColor(Color(255,255,255)) surface.SetMaterial(Material("icon16/link.png")) surface.DrawTexturedRect(5, 1, 16, 16) end
Par ça:

Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 4) cbu:SetSize(83,18) cbu:SetText(" Kick") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.DoClick = function() local toexec = [["ulx kick $]]..noob:SteamID()..[["]] LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end end cbu.Paint = function(self,w,h) if cbu.Depressed or cbu.m_bSelected then draw.RoundedBox( 1, 0, 0, w, h, Color(255,50,50,255) ) elseif cbu.Hovered then draw.RoundedBox( 1, 0, 0, w, h, Color(205,30,30,255) ) else draw.RoundedBox( 1, 0, 0, w, h, Color(80,80,80,255) ) end surface.SetDrawColor(Color(255,255,255)) surface.SetMaterial(Material("icon16/link.png")) surface.DrawTexturedRect(5, 1, 16, 16) end
Nardox à dit:
Remplace ça:
Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 3) cbu:SetSize(83,18) cbu:SetText(" Freeze") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.should_unfreeze = false cbu.DoClick = function() local toexec = [["ulx freeze $]]..noob:SteamID()..[["]] if cbu.should_unfreeze then toexec = [["ulx unfreeze $]]..noob:SteamID()..[["]] end LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end cbu.should_unfreeze = not cbu.should_unfreeze end cbu.Paint = function(self,w,h) if cbu.Depressed or cbu.m_bSelected then draw.RoundedBox( 1, 0, 0, w, h, Color(255,50,50,255) ) elseif cbu.Hovered then draw.RoundedBox( 1, 0, 0, w, h, Color(205,30,30,255) ) else draw.RoundedBox( 1, 0, 0, w, h, Color(80,80,80,255) ) end surface.SetDrawColor(Color(255,255,255)) surface.SetMaterial(Material("icon16/link.png")) surface.DrawTexturedRect(5, 1, 16, 16) end
Par ça:

Code:
local cbu = vgui.Create("DButton",frm) cbu:SetPos(215,20 * 4) cbu:SetSize(83,18) cbu:SetText(" Kick") cbu:SetColor(Color(255,255,255)) cbu:SetContentAlignment(4) cbu.DoClick = function() local toexec = [["ulx kick $]]..noob:SteamID()..[["]] LocalPlayer():ConCommand(toexec) if cfg.debug then print(toexec) end end cbu.Paint = function(self,w,h) if cbu.Depressed or cbu.m_bSelected then draw.RoundedBox( 1, 0, 0, w, h, Color(255,50,50,255) ) elseif cbu.Hovered then draw.RoundedBox( 1, 0, 0, w, h, Color(205,30,30,255) ) else draw.RoundedBox( 1, 0, 0, w, h, Color(80,80,80,255) ) end surface.SetDrawColor(Color(255,255,255)) surface.SetMaterial(Material("icon16/link.png")) surface.DrawTexturedRect(5, 1, 16, 16) end
Franchement merci
 
M

mike2545200

Geek
Messages
56
Score réaction
1
Points
90
hamidzl à dit:
Franchement merci
parce que j'ai acheter l'addons darkrpadvancedarrestingsystem mais il fonction pas je c'est pas pourquoi
 
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
Derien;)
 
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
mike2545200 à dit:
parce que j'ai acheter l'addons darkrpadvancedarrestingsystem mais il fonction pas je c'est pas pourquoi
Non je l'ai jamais utilisé desole
 
M

mike2545200

Geek
Messages
56
Score réaction
1
Points
90
Nardox

Nardox

Psychopathe
Messages
1 143
Score réaction
240
Points
250
Fait une demande dans Entraides serveur de jeux
 
Discord d'entraide
Rejoignz-nous sur Discord