Powercord Scripts
Go to file
Syz cc212b6390 e
e
2020-11-17 23:17:47 +00:00
README.md e 2020-11-17 23:17:47 +00:00

README.md

Powercord Scripts

Collection of console scripts for Powercord

Call

(async ()=>{
  const {
    getModule,
    messages: { receiveMessage },
    channels: { getChannelId },
  } = require('powercord/webpack')
  const { createBotMessage } = await getModule(['createBotMessage'])
  const { getCurrentUser } = await getModule(['getCurrentUser'])
  
  let msg = createBotMessage(getChannelId(), 'Helo')
  msg.author = getCurrentUser()
  msg.mention_everyone = false
  msg.type = 3
  msg.flags = 0
  receiveMessage(msg.channel_id, msg)
})()

Boost

(async ()=>{
  const {
    getModule,
    messages: { receiveMessage },
    channels: { getChannelId },
  } = require('powercord/webpack')
  const { createBotMessage } = await getModule(['createBotMessage'])
  const { getCurrentUser } = await getModule(['getCurrentUser'])
  
  let msg = createBotMessage(getChannelId(), 'lol im a booster')
  msg.author = getCurrentUser()
  msg.mention_everyone = false
  msg.type = 8
  msg.flags = 0 
  receiveMessage(msg.channel_id, msg)
})()

Boost level 1

(async ()=>{
  const {
    getModule,
    messages: { receiveMessage },
    channels: { getChannelId },
  } = require('powercord/webpack')
  const { createBotMessage } = await getModule(['createBotMessage'])
  const { getCurrentUser } = await getModule(['getCurrentUser'])
  
  let msg = createBotMessage(getChannelId(), 'SpoofMyBoost')
  msg.author = getCurrentUser()
  msg.mention_everyone = false
  msg.type = 9 
  msg.flags = 0
  receiveMessage(msg.channel_id, msg)
})()

Boost level 2

(async ()=>{
  const {
    getModule,
    messages: { receiveMessage },
    channels: { getChannelId },
  } = require('powercord/webpack')
  const { createBotMessage } = await getModule(['createBotMessage'])
  const { getCurrentUser } = await getModule(['getCurrentUser'])
  
  let msg = createBotMessage(getChannelId(), 'SpoofMyBoost')
  msg.author = getCurrentUser()
  msg.mention_everyone = false
  msg.type = 10
  msg.flags = 0
  receiveMessage(msg.channel_id, msg)
})()

Boost level 3

(async ()=>{
  const {
    getModule,
    messages: { receiveMessage },
    channels: { getChannelId },
  } = require('powercord/webpack')
  const { createBotMessage } = await getModule(['createBotMessage'])
  const { getCurrentUser } = await getModule(['getCurrentUser'])
  
  let msg = createBotMessage(getChannelId(), 'SpoofMyBoost')
  msg.author = getCurrentUser()
  msg.mention_everyone = false
  msg.type = 11
  msg.flags = 0
  receiveMessage(msg.channel_id, msg)
})()

Previews

Credit

Credit Ignacio

Discord

Syz#0001 Send Nudes