[Windows][TS3] Change your Flag very fast

XURY

Member
May 9, 2015
60
96
53
-TS3 FlagChanger-

Tutorial:
1.Turn on the VPN
2. Run the script
- Type in the IP of the TS3 Server that you're connected to(WITHOUT THE PORT)
- Type in how fast you want your flag to be changed
- Type in the Gateway to your router
- Type in, how often you want to repeat the process
:D
3. Have fun!

SO
\-All you need is-/
A VPN!
->CyberGhost<-
->HotspotShield<-

\-And this Script-/

Please understand that i converted it to a .exe file
so no other forums can see the code and pretend to be the creators!
:p

*GERMAN*
->Click me!<-

*ENGLISH*
->Click me!<-

NOTE!
Sometimes your flag will freeze at the point where your country flag can be seen
when you manually break the process(ONLY if you had set it to change "forever")
Just download this ->Tool<- and you'll be fine!

[Virusscans(false positives)]
FlagFix
FlagChanger[english]
FlagChanger[german]
 

ehthe

Retired Staff
Contributor
Apr 26, 2015
1,028
896
216
Linux version :
Code:
#!/bin/bash
HOST=xxx.xxx.xxx.xxx
VPN=xxx.xxx.xxx.xxx
DEFAULT_GATEWAY=xxx.xxx.xxx.xxx

#Remove the vpn from global
ip route del 0.0.0.0/0
ip route add 0.0.0.0/0 via $DEFAULT_GATEWAY

while :; do
    ip route add $HOST via $VPN

    ip route del $HOST
    ip route add $HOST via $DEFAULT_GATEWAY

    ip route del $HOST
done
 

max00710

Member
Sep 15, 2015
8
0
38
Linux version :
Code:
#!/bin/bash
HOST=xxx.xxx.xxx.xxx
VPN=xxx.xxx.xxx.xxx
DEFAULT_GATEWAY=xxx.xxx.xxx.xxx

#Remove the vpn from global
ip route del 0.0.0.0/0
ip route add 0.0.0.0/0 via $DEFAULT_GATEWAY

while :; do
    ip route add $HOST via $VPN

    ip route del $HOST
    ip route add $HOST via $DEFAULT_GATEWAY

    ip route del $HOST
done

how do I have configure the linux script?
 
Top