Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 49 line #128

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
135 changes: 74 additions & 61 deletions tiktodv3.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,24 @@
from os import system, name
import chromedriver_binary
from time import time, strftime, gmtime, sleep
import pyfiglet, os, threading
import pyfiglet
import threading
import chromedriver_autoinstaller


# Check if the current version of chromedriver exists
# and if it doesn't exist, download it automatically,
# then add chromedriver to path
chromedriver_autoinstaller.install()


def clear():
if name == 'nt':
_ = system('cls')
else:
_ = system('clear')


clear()
system('title TIKTOD V3')

Expand All @@ -34,233 +38,242 @@ def clear():
chrome_options.add_argument("--mute-audio")
chrome_options.add_experimental_option('excludeSwitches', ['enable-logging'])

driver = webdriver.Chrome( options=chrome_options)
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.set_window_size(1024, 650)

Views = 0
Hearts = 0
Followers = 0


def beautify(arg):
return format(arg, ',d').replace(',', '.')

def title1(): # Update the title IF option 1 was picked.

def title1(): # Update the title IF option 1 was picked.
global Views

while True:
time_elapsed = strftime('%H:%M:%S', gmtime(time() - start))
system(f'title TIKTOD V3 ^| Views Sent: {beautify(Views)} ^| Elapsed Time: {time_elapsed}')

def title2(): # Update the title IF option 2 was picked.

def title2(): # Update the title IF option 2 was picked.
global Hearts

while True:
time_elapsed = strftime('%H:%M:%S', gmtime(time() - start))
system(f'title TIKTOD V3 ^| Hearts Sent: {beautify(Hearts)} ^| Elapsed Time: {time_elapsed}')

def title3(): # Update the title IF option 3 was picked.

def title3(): # Update the title IF option 3 was picked.
global Followers

while True:
time_elapsed = strftime('%H:%M:%S', gmtime(time() - start))
system(f'title TIKTOD V3 ^| Followers Sent: {beautify(Followers)} ^| Elapsed Time: {time_elapsed}')

def title4(): # Update the title IF option 1 was picked.


def title4(): # Update the title IF option 1 was picked.
global Shares

while True:
time_elapsed = strftime('%H:%M:%S', gmtime(time() - start))
system(f'title TIKTOD V3 ^| Shares Sent: {beautify(Shares)} ^| Elapsed Time: {time_elapsed}')


def loop1():
global Views
sleep(10)

try:
driver.find_element_by_xpath("/html/body/div[4]/div[1]/div[3]/div/div[4]/div/button").click()

except:
print("[-] The captcha is unsolved!")
driver.refresh()
loop1()

try:
sleep(2)
driver.find_element_by_xpath("//*[@id=\"sid4\"]/div/form/div/input").send_keys(vidUrl)

sleep(1)
driver.find_element_by_xpath("//*[@id=\"sid4\"]/div/form/div/div/button").click()

sleep(5)
driver.find_element_by_xpath("//*[@id=\"c2VuZC9mb2xsb3dlcnNfdGlrdG9V\"]/div[1]/div/form/button").click()

driver.refresh()
Views += 1000
print("[+] Views sended!")

sleep(300)
loop1()

except:
print("[-] An error occured. Retrying..")
print("[-] An error occured. Retrying..")
driver.refresh()
loop1()


def loop2():
global Hearts
sleep(10)

try:
driver.find_element_by_xpath("/html/body/div[4]/div[1]/div[3]/div/div[2]/div/button").click()

except:
print("[-] The captcha is unsolved!")
driver.refresh()
loop2()

try:
sleep(2)
driver.find_element_by_xpath('//*[@id="sid2"]/div/form/div/input').send_keys(vidUrl)

sleep(1)
driver.find_element_by_xpath('//*[@id="sid2"]/div/form/div/div/button').click()

sleep(5)
driver.find_element_by_xpath('//*[@id="c2VuZE9nb2xsb3dlcnNfdGlrdG9r"]/div[1]/div/form/button').click()

sleep(6)
hearts = driver.find_element_by_xpath('//*[@id="c2VuZE9nb2xsb3dlcnNfdGlrdG9r"]/span').text.split()

Hearts += int(hearts[0])
print("[+] Hearts sended!")

sleep(5)
driver.refresh()

sleep(1800)
loop2()

except:
print("[-] An error occured. Retrying..")
print("[-] An error occured. Retrying..")
driver.refresh()
loop2()


def loop3():
global Followers
sleep(10)

try:
driver.find_element_by_xpath("/html/body/div[4]/div[1]/div[3]/div/div[1]/div/button").click()

except:
print("[-] The captcha is unsolved!")
driver.refresh()
loop3()

try:
sleep(2)
driver.find_element_by_xpath("//*[@id=\"sid\"]/div/form/div/input").send_keys(vidUrl)

sleep(1)
driver.find_element_by_xpath("//*[@id=\"sid\"]/div/form/div/div/button").click()

sleep(5)
driver.find_element_by_xpath("//*[@id=\"c2VuZF9mb2xsb3dlcnNfdGlrdG9r\"]/div[1]/div/form/button").click()
sleep(6)
folls = driver.find_element_by_xpath('//*[@id="c2VuZF9mb2xsb3dlcnNfdGlrdG9r"]/span').text.split()

Followers += int(folls[0])
print("[+] Followers sended!")
driver.refresh()

sleep(1800)
loop3()

except:
print("[-] An error occured. Retrying..")
driver.refresh()
loop3()


def loop4():
global Shares
sleep(10)

try:
driver.find_element_by_xpath("/html/body/div[4]/div[1]/div[3]/div/div[5]/div/button").click()

except:
print("[-] The captcha is unsolved!")
driver.refresh()
loop4()

try:
sleep(2)
driver.find_element_by_xpath("//*[@id=\"sid7\"]/div/form/div/input").send_keys(vidUrl)

sleep(1)
driver.find_element_by_xpath("//*[@id=\"sid7\"]/div/form/div/div/button").click()

sleep(5)
driver.find_element_by_xpath("//*[@id=\"c2VuZC9mb2xsb3dlcnNfdGlrdG9s\"]/div[1]/div/form/button").click()

driver.refresh()
Shares += 100
print("[+] Shares sended!")

sleep(300)
loop4()

except:
print("[-] An error occured. Retrying..")
driver.refresh()
loop4()


clear()

print(pyfiglet.figlet_format("TIKTOD V3", font="slant"))
print("Log:")

if auto == 1:
driver.get("https://zefoy.com/")

a = threading.Thread(target=title1)
b = threading.Thread(target=loop1)

a.start()
b.start()

elif auto == 2:
driver.get("https://zefoy.com/")

a = threading.Thread(target=title2)
b = threading.Thread(target=loop2)

a.start()
b.start()

elif auto == 3:
driver.get("https://zefoy.com/")

a = threading.Thread(target=title3)
b = threading.Thread(target=loop3)

a.start()
b.start()

elif auto == 4:
driver.get("https://zefoy.com/")

a = threading.Thread(target=title4)
b = threading.Thread(target=loop4)

a.start()
b.start()

elif auto == 5:
print("[+] This program was created by @kangoka. [github.com/kangoka]")
print("[+] This program was origionally uploaded to github.com/kangoka/tiktodv3.")
print("[+] This program was majorly improved by @XxBi1a. [github.com/XxB1a]")

else:
print(f"{auto} is not a valid option. Please pick 1, 2, 3, 4 or 5")