-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.go
69 lines (68 loc) · 1.5 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package main
import (
"fmt"
"github.com/bwmarrin/discordgo"
"os"
"os/signal"
"strings"
"syscall"
)
var (
stopChannel chan bool
conf *config
)
func main(){
conf = parse_config()
dg, err := discordgo.New("Bot "+ conf.Token)
if err!=nil {
fmt.Println("error !gg!", err)
return
}
stopChannel = make(chan bool)
dg.AddHandler(messageCreate)
err = dg.Open()
if err!=nil {
fmt.Print("open Web_socket Error gg!!", err)
return
}
fmt.Println("Bot is now running. Press CTRL-C to exit.")
go queue_way()
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM)
<-sc
dg.Close()
}
func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate){
if (m.Author.ID==s.State.User.ID) {
return
}
msg_string := string(m.Content)
bot_func := strings.Split(msg_string, " ")
switch bot_func[0] {
case conf.PREFIX+"play":
if len(bot_func)==1{
err_msg(s, m.ChannelID, "Try !play [song/url]")
}
var song_name string
song_name = ""
for i := 1; i<len(bot_func);i++{
song_name+=bot_func[i]+" "
}
song_name = strings.TrimSuffix(song_name, " ")
go straem_to_discord(s, m, song_name)
case conf.PREFIX+"stop":
go stop_stream(s, m)
case conf.PREFIX+"pause":
go pause_stream(s, m)
case conf.PREFIX+"skip":
go skip_music(s,m)
case conf.PREFIX+"gachi":
go gachi(s,m.ChannelID)
}
if (m.Content=="Снюс"){
s.ChannelMessageSend(m.ChannelID, "Чесвин")
}
if (m.Content=="Чесвин"){
s.ChannelMessageSend(m.ChannelID, "Снюс")
}
}