-
Notifications
You must be signed in to change notification settings - Fork 0
/
天气-RadarFore.lua
51 lines (48 loc) · 1.51 KB
/
天气-RadarFore.lua
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
--全国雷达拼图
local log = require("log")
local Api = require("coreApi")
local json = require("json")
local http = require("http")
function ReceiveFriendMsg(CurrentQQ, data)
return 1
end
function ReceiveGroupMsg(CurrentQQ, data)
if string.find(data.Content, "雷达") == 1 then
local time = os.time()
response, error_message =
http.request(
"GET",
"http://www.nmc.cn/rest/relevant/380",
{
query = "_=" ..
time,
headers = {
["Accept"] = "*/*",
["User-Agent"] = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36"
}
}
)
local html = response.body
local j = json.decode(html)
local img_url = j[4].image
local prefix = "http://image.nmc.cn"
Api.Api_SendMsg(--调用发消息的接口
CurrentQQ,
{
toUser = data.FromGroupId, --回复当前消息的来源群ID
sendToType = 2, --2发送给群1发送给好友3私聊
sendMsgType = "PicMsg", --进行文本复读回复
groupid = 0, --不是私聊自然就为0咯
content = "", --回复内容
picUrl = prefix .. img_url,
picBase64Buf = "",
fileMd5 = "",
atUser = 0 --是否 填上data.FromUserId就可以复读给他并@了
}
)
end
return 1
end
function ReceiveEvents(CurrentQQ, data, extData)
return 1
end