Skip to content

Instantly share code, notes, and snippets.

@TonyRenHK
Last active May 4, 2019 01:43
Show Gist options
  • Save TonyRenHK/a9326fbbc9eaec51d885f65ce23ea1a0 to your computer and use it in GitHub Desktop.
Save TonyRenHK/a9326fbbc9eaec51d885f65ce23ea1a0 to your computer and use it in GitHub Desktop.
Python
import pyautogui, sys
import time
for num in range(1,20):
pyautogui.moveTo( 4294966792, 901, 2)
pyautogui.click()
pyautogui.typewrite('Good!')
pyautogui.press('enter')
time.sleep(3)
from random import randint
CommentList = ['red', 'blue', 'green','red', 'blue', 'green','red', 'blue', 'green', 'green']
for num in range(1,20):
print(CommentList[randint(0, 9)])
import pyautogui, sys
import time
from random import randint
CommentList = ['Good!!!', 'Nice', 'Wonderful!!!','[em]e7150[/em][em]e7150[/em][em]e7150[/em]',
'Lliy[em]e179[/em][em]e179[/em][em]e179[/em][em]e179[/em]',
'[em]e163[/em][em]e163[/em][em]e163[/em]',
'[em]e7054[/em][em]e7054[/em][em]e7054[/em][em]e7054[/em]',
'[em]e7038[/em][em]e7038[/em][em]e7038[/em]!!!',
'Good!!!Wonderful!', '[em]e142[/em]!![em]e142[/em]!']
for num in range(1,1000):
pyautogui.moveTo( 1200, 340, 2)
pyautogui.click()
pyautogui.typewrite(CommentList[randint(0, 9)])
pyautogui.press('enter')
time.sleep(3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment