Posts by Wz' • 19 points
2 posts
-
2
votes2
answers80
viewsA: Event on 2 servers at the same time
This event works on every server the bot is on! If you want to set a different message for each server, one of the ways you can use is a banco de dados local, for this there are several packages…
-
-3
votes1
answer395
viewsA: How to view all JS code requested by an iframe?
Well, you can use the fetch to get the code of the requested pages. Example: const link = 'https://google.com/'; fetch(link) .then( result => result.text() ) .then( HTML => { // ai você faz o…