-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathactor.js
More file actions
129 lines (111 loc) · 6.58 KB
/
Copy pathactor.js
File metadata and controls
129 lines (111 loc) · 6.58 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
const axios = require("axios");
const baseApiUrl = async () => {
const base = await axios.get("https://raw.githubusercontent.com/mahmudx7/HINATA/main/baseApiUrl.json");
return base.data.mahmud;
};
module.exports = {
config: {
name: "actor",
aliases: ["actorgame"],
version: "1.7",
author: "MahMUD",
countDown: 10,
role: 0,
description: {
bn: "অভিনেতার ছবি দেখে নাম অনুমান করার খেলা",
en: "Guess the actor name by looking at the picture",
vi: "Đoán tên diễn viên bằng cách nhìn vào bức ảnh"
},
category: "game",
guide: {
bn: ' {pn}: গেমটি শুরু করতে লিখুন',
en: ' {pn}: Type to start the game',
vi: ' {pn}: Nhập để bắt đầu trò chơi'
}
},
langs: {
bn: {
start: "একজন অভিনেতার ছবি এসেছে! নামটা বলো তো বেবি?",
correct: "✅ | একদম সঠিক উত্তর বেবি!\n\nতুমি জিতেছো %1 কয়েন এবং %2 এক্সপি।",
wrong: "🥺 | উত্তরটি ভুল হয়েছে বেবি!\n\nসঠিক উত্তর ছিল: %1",
notYour: "× বেবি, এটি তোমার জন্য নয়! নিজের জন্য গেম শুরু করো। >🐸",
error: "× সমস্যা হয়েছে: %1। প্রয়োজনে Contact MahMUD।"
},
en: {
start: "A random actor has appeared! Guess the name, baby.",
correct: "✅ | Correct answer, baby!\n\nYou have earned %1 coins and %2 exp.",
wrong: "🥺 | Wrong Answer, baby!\n\nThe Correct answer was: %1",
notYour: "× This is not your actor, baby! >🐸",
error: "× API error: %1. Contact MahMUD for help."
},
vi: {
start: "Một diễn viên đã xuất hiện! Đoán tên đi cưng.",
correct: "✅ | Đáp án chính xác cưng ơi!\n\n✨ Bạn nhận được %1 xu và %2 exp.",
wrong: "🥺 | Sai rồi cưng ơi!\n\nĐáp án đúng là: %1",
notYour: "× Đây không phải phần chơi của bạn cưng à! >🐸",
error: "× Lỗi: %1. Liên hệ MahMUD để được hỗ trợ."
}
},
onReply: async function ({ api, event, Reply, usersData, getLang }) {
const authorName = String.fromCharCode(77, 97, 104, 77, 85, 68);
if (module.exports.config.author !== authorName) {
return api.sendMessage("You are not authorized to change the author name.", event.threadID, event.messageID);
}
const { actorNames, author } = Reply;
const getCoin = 500;
const getExp = 121;
if (event.senderID !== author) {
return api.sendMessage(getLang("notYour"), event.threadID, event.messageID);
}
const reply = event.body.trim().toLowerCase();
const userData = await usersData.get(event.senderID);
await api.unsendMessage(Reply.messageID);
const isCorrect = actorNames.some(name => reply.includes(name.toLowerCase()));
if (isCorrect) {
userData.money += getCoin;
userData.exp += getExp;
await usersData.set(event.senderID, userData);
return api.sendMessage(getLang("correct", getCoin, getExp), event.threadID, event.messageID);
} else {
return api.sendMessage(getLang("wrong", actorNames.join(", ")), event.threadID, event.messageID);
}
},
onStart: async function ({ api, event, getLang }) {
try {
const authorName = String.fromCharCode(77, 97, 104, 77, 85, 68);
if (this.config.author !== authorName) return;
const apiUrl = await baseApiUrl();
const response = await axios.get(`${apiUrl}/api/actor`);
const { name, imgurLink } = response.data.actor;
const actorNames = Array.isArray(name) ? name : [name];
const imageStream = await axios({
method: "GET",
url: imgurLink,
responseType: "stream",
headers: { 'User-Agent': 'Mozilla/5.0' }
});
return api.sendMessage({
body: getLang("start"),
attachment: imageStream.data
},
event.threadID,
(err, info) => {
if (err) return api.sendMessage("❌ Failed to send actor image.", event.threadID);
global.GoatBot.onReply.set(info.messageID, {
commandName: this.config.name,
messageID: info.messageID,
author: event.senderID,
actorNames
});
setTimeout(() => {
api.unsendMessage(info.messageID);
}, 40000);
},
event.messageID
);
} catch (error) {
console.error("ActorGame Error:", error.message);
return api.sendMessage(getLang("error", error.message), event.threadID, event.messageID);
}
}
};