package modules
import (
"fmt"
)
//Help program usage
func Help(progName string) {
fmt.Println("Discord-Exploits Help")
fmt.Println(" Usage: " + progName + " -i -m [-q]")
fmt.Println("")
fmt.Println("--quiet -q don't show welcome screen")
fmt.Println("-i provide input file")
fmt.Println("-m specify mode")
fmt.Println("")
fmt.Println("modes:")
fmt.Println(" video:")
fmt.Println(" e takes input video (.webm) and edits it so discord will keep making it longer")
fmt.Println(" n takes input video (.webm) and edits it so discord will think it has got a huge negative duration")
fmt.Println(" z, 0 takes input video (.webm) and edits it so discord will think it has got a 0s duration")
fmt.Println(" image:")
fmt.Println(" v takes an image (.png) and makes other users' windows defender think it's a virus\n ")
}