Skip to content

Commit

Permalink
3.2.8 released.
Browse files Browse the repository at this point in the history
various bug fixes, changes to the stdout intro, and custom giveaway delay(nested json variables added to the settings json file) and switched my stdout function out for a module called screen.
  • Loading branch information
noto-rious committed Nov 13, 2020
1 parent 0239704 commit 68e10db
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 12 deletions.
Binary file modified Nitro.Self-V3
Binary file not shown.
Binary file modified Nitro.Self-V3.exe
Binary file not shown.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ require (
github.com/alexabrahall/goWebhook v0.0.0-20200812072358-157135cbcf69
github.com/bwmarrin/discordgo v0.22.0
github.com/fatih/color v1.9.0
github.com/inancgumus/screen v0.0.0-20190314163918-06e984b86ed3
github.com/itsTurnip/dishooks v0.0.0-20200206125049-b4fc7c7b042e
github.com/valyala/fasthttp v1.16.0
)
3 changes: 3 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ github.com/fatih/color v1.9.0 h1:8xPHl4/q1VyqGIPif1F+1V3Y3lSmrq01EabUW3CoW5s=
github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU=
github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=
github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
github.com/inancgumus/screen v0.0.0-20190314163918-06e984b86ed3 h1:fO9A67/izFYFYky7l1pDP5Dr0BTCRkaQJUG6Jm5ehsk=
github.com/inancgumus/screen v0.0.0-20190314163918-06e984b86ed3/go.mod h1:Ey4uAp+LvIl+s5jRbOHLcZpUDnkjLBROl15fZLwPlTM=
github.com/insomnyawolf/DiscordWebhook v0.0.0-20190315172019-0f4df693cd9f h1:mlbv9LDUNem1P6Z7uv//WTapaeUJn+7R15yDUCV09To=
github.com/insomnyawolf/DiscordWebhook v0.0.0-20190315172019-0f4df693cd9f/go.mod h1:ipWjJbYjPhctUBcc90lqNDsjEFhuRjaTzu2cdrG3uyY=
github.com/itsTurnip/dishooks v0.0.0-20200206125049-b4fc7c7b042e h1:7/ig5iBHnQclaKaaBKPUkQGjaxz04H6auAArkKj5E4o=
Expand All @@ -34,5 +36,6 @@ golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5h
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980 h1:OjiUf46hAmXblsZdnoSXsEUSKU8r1UEzcL5RVZ4gO9Y=
golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
16 changes: 5 additions & 11 deletions sniper.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (
"github.com/bwmarrin/discordgo"
"github.com/fatih/color"
"github.com/valyala/fasthttp"
"github.com/inancgumus/screen"
)

var (
Expand Down Expand Up @@ -185,15 +186,8 @@ func isWindows() bool {
}
//ClearCLI clears the stdout.
func ClearCLI() {
if isWindows() {
cmd := exec.Command("cmd", "/c", "cls")
cmd.Stdout = os.Stdout
cmd.Run()
} else {
c := exec.Command("clear")
c.Stdout = os.Stdout
c.Run()
}
screen.Clear()
screen.MoveTopLeft()
}
func isUpper(s string) bool {
for _, r := range s {
Expand All @@ -214,7 +208,7 @@ func isLower(s string) bool {
}
func init() {
ClearCLI()
appversion = "v3.2.7"
appversion = "v3.2.8"

if _, err := os.Stat("tokens.txt"); err == nil {
Tokens, err = readLines("tokens.txt")
Expand Down Expand Up @@ -350,7 +344,7 @@ func loadSniper(wg *sync.WaitGroup, str string, id int) {
▓██ ▀█ ██▒▒██▒▒ ▓██░ ▒░▓██ ░▄█ ▒▒██░ ██▒ ░ ▓██▄ ▒███ ▒██░ ▒████ ░
▓██▒ ▐▌██▒░██░░ ▓██▓ ░ ▒██▀▀█▄ ▒██ ██░ ▒ ██▒▒▓█ ▄ ▒██░ ░▓█▒ ░
▒██░ ▓██░░██░ ▒██▒ ░ ░██▓ ▒██▒░ ████▓▒░ ██▓ ▒██████▒▒░▒████▒░██████▒░▒█░
░ ▒░ ▒ ▒ ░▓ ▒ ░░ ░ ▒▓ ░▒▓░░ ▒░▒░▒░ ▒▓▒ ▒ ▒▓▒ ▒ ░░░ ▒░ ░░ ▒░▓v3.2.7
░ ▒░ ▒ ▒ ░▓ ▒ ░░ ░ ▒▓ ░▒▓░░ ▒░▒░▒░ ▒▓▒ ▒ ▒▓▒ ▒ ░░░ ▒░ ░░ ▒░▓v3.2.8
░ ░░ ░ ▒░ ▒ ░ ░ ░▒ ░ ▒░ ░ ▒ ▒░ ░▒ ░ ░▒ ░ ░ ░ ░ ░░ ░ ▒ ░ ░
░ ░ ░ ▒ ░ ░ ░░ ░ ░ ░ ░ ▒ ░ ░ ░ ░ ░ ░ ░ ░ ░
░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.2.7
v3.2.8

0 comments on commit 68e10db

Please sign in to comment.