Im used to seeing ulx concms being used like this:
function ulx.cc_blah(ply, command, argv, args)
...
end
ulx.concommand( "blah", ulx.cc_blah, "blah", ULib.ACCESS_ADMIN, "!blah", _, ulx.ID_PLAYER_HELP )
I know how to extract different arguments from the line using argv. I however want the full line minus the !blah eg.
"player: !blah i went to the park"
i want to use in my code the "i went to the park" portion of the line. I presumed this was in the args variable but have had little luck getting it to do anything. Im sure im doing it wrong. So either im on the wrong track or im doing it wrong.
So could I have an example of how to do this please?