rofl cake
Well-Known Member
- May 25, 2015
- 204
- 451
- 108
Code:
[Q] What does this do?
[A]This allows you to connect to a server that Teamspeak has globaly blacklisted.
Credits go to;
Anonn@crackteamspeak
DrWhat@unknowncheats
Anonn's Version:
Code:
______________________________
1. Close the ts3 client.
______________________________
2. Go to the directory and delete file:
%appdata%/TS3Client
pat it into the search box or the address bar :)
Delete the file: cache.dat
______________________________
3. Block address blacklist.teamspeak.com
Go to %WINDIR%/System32/drivers/etc/ and edit the file hosts
At the end of the append 0.0.0.0 blacklist.teamspeak.com and save file.
______________________________
4. Start the client, you can now connect to all servers:)
DrWhat's Version:
Code:
@echo off
TITLE TeamSpeak 3 Bypass BlackList
echo.
echo TeamSpeak 3 Bypass BlackList. 08.2014
:choice
SET /P C="Installation now. Do you want to continue? [Y/n]: "
for %%? in (Y) do if /I "%C%"=="%%?" goto setup
for %%? in (n) do if /I "%C%"=="%%?" exit
goto choice
:setup
taskkill /f /im "ts3client_win32.exe" > NUL
taskkill /f /im "ts3client_win64.exe" > NUL
echo Set UAC = CreateObject("Shell.Application") > "%temp%\getadmin.vbs"
set params = %*:"="
echo UAC.ShellExecute "cmd.exe","/c echo. 0.0.0.0 blacklist.teamspeak.com >> %WINDIR%\System32\drivers\etc\hosts","","runas", 0 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs" > NUL
del "%temp%\getadmin.vbs" > NUL
del "%APPDATA%\TS3Client\resolved.dat" > NUL
del "%APPDATA%\TS3Client\cache.dat" > NUL
del "%APPDATA%\TS3Client\cache\webserverlist.dat" > NUL
del "%APPDATA%\TS3Client\cache\webserverlistcache.dat" > NUL
echo Blacklist Disabled, start teamspeak and connect.
pause