So basically I'd like to know what I need to add and to what lua code to give them points when they join the group.
I suppose it'd be in my cc_menus.lua folder where the command !steam is located.
This is my lua code:
function ulx.steam( calling_ply )
calling_ply:SendLua([[gui.OpenURL( "]] .. GetConVarString("steam_url") .. [[" )]])
end
local steam = ulx.command( "Menus", "ulx steam", ulx.steam, "!steam" )
steam:defaultAccess( ULib.ACCESS_ALL )
steam:help( "For joining the steam group." )