- Initiateur de la discussion
M
Maxime120500
Geek
- Messages
- 34
- Score réaction
- 1
- Points
- 60
Bonjour,
Je cherche de l'aide pour un script/lua.
Je cherche a afficher une image en rentrant une commande dans le tchat.
Cela serais dans ce type.
je suis débutant dans le dev. ( Le code n'est pas bon du tout )
Je cherche de l'aide pour un script/lua.
Je cherche a afficher une image en rentrant une commande dans le tchat.
Cela serais dans ce type.
ajout d'une image ingame grace a une commande:
if ( SERVER ) then hook.Add( "PlayerSay", MainFrame = vgui.Create( "DFrame" )
MainFrame:SetSize( 200, 200 )
MainFrame:Center()
MainFrame:SetTitle( "Post process effect" )
local postprocess = vgui.Create( "DImage", MainFrame )
postprocess:SetSize( 128, 128 )
postprocess:Center()
local materials = file.Find( "materials/gui/postprocess/*.png", "GAME" )
postprocess:SetImage( "materials/gui/postprocess/"..materials[math.random( 1, #materials )] )
print( postprocess:GetImage() )