Help me with this Omegle bot (Python)

iHaveAplan

Newbie
Joined
Nov 18, 2012
Messages
8
Reaction score
0
I have this code, but I don't know how to make it send messages with different delay before every message. I know nothing about Python and I don't know how to make it connect to another stranger when someone disconnects or when the last message is send. Can you help me? :)

I added the code in pastebin here: /XtaMPVCY
 
Not sure what your asking in your second question but adding a random delay in Python is pretty straight forward:
Code:
from random import randint
from time import sleep


sleep(randint(10,100))
This will sleep for a random number of seconds between 10 and 100.

I have this code, but I don't know how to make it send messages with different delay before every message. I know nothing about Python and I don't know how to make it connect to another stranger when someone disconnects or when the last message is send. Can you help me? :)

I added the code in pastebin here: /XtaMPVCY
 
try using mechanize library , or use sikuli it will be good for a beginner
 
Back
Top