I will make my own Concommand Support system.
But…
it has an Error.
concommand.Add( “report_rdm”, function( ply, cmd, args )
ply:ulx asay Ich wurde soeben RDM.Ich bitte um Support()
print( “Meldung abgeschickt!” )
end )
[Its an German Support system it will be become an ULX command]
[lua]
ply:ulx asay Ich wurde soeben RDM.Ich bitte um Support()
[/lua]
This isn’t lua. Functions will never have spaces in their name or a full stop in the middle. What you are probably wanting is
RunConsoleCommand, but if so, you are creating a command to run a command, which is verbose and pointless. Instead you should use ulx.asay( calling_ply, message ), defined here.