[Windows][TS3] Change your Flag very fast

XURY

Member
Joined
May 9, 2015
Messages
60
Reaction score
96
Points
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
Joined
Apr 26, 2015
Messages
1,029
Reaction score
896
Points
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
 

iJoris

Member
Joined
May 20, 2015
Messages
24
Reaction score
15
Points
35
Would you mind posting the source so that other people can learn from it?
 

denka

Restricted
Joined
Apr 26, 2015
Messages
224
Reaction score
62
Points
106
not working for me tried with the cyberghost vpn
 

max00710

Member
Joined
Sep 15, 2015
Messages
8
Reaction score
0
Points
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