/[sudobot]/trunk/src/AntiRaid.js
ViewVC logotype

Annotation of /trunk/src/AntiRaid.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10 - (hide annotations)
Mon Jul 29 17:28:12 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 932 byte(s)
Added new features
1 rakin 10 const { lockAll } = require('../commands/lockall');
2    
3     module.exports = class AntiRaid {
4     constructor() {
5     this.joins = 0;
6     }
7    
8     load(guild) {
9     this.maxJoins = app.config.props[guild.id].raid.max_joins;
10     this.included = app.config.props[guild.id].raid.included;
11     this.time = app.config.props[guild.id].raid.time;
12     }
13    
14     async start(member) {
15     await this.load(member.guild);
16    
17     console.log('Joined');
18    
19     setTimeout(() => {
20     this.joins = 0;
21     console.log('RAID reset');
22     }, this.time);
23    
24     this.joins++;
25    
26     if (this.joins >= this.maxJoins) {
27     let role = member.guild.roles.cache.find(r => r.id === app.config.props[member.guild.id].gen_role);
28     let channels = member.guild.channels.cache.filter(channel => this.included.indexOf(channel.id) !== -1);
29    
30     await lockAll(role, channels, true);
31     }
32     }
33     };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26