Jump to content

bootybay

Active Members
  • Posts

    46
  • Joined

  • Last visited

Community Answers

  1. bootybay's post in is it possible to send click on random links on a website? was marked as the answer   
    Do you want to cycle through those links or really randomize it?
    For $i = 1 To 8 Step 1 _IELinkClickByText($oIE, "link" & $i) Sleep(1000) Next The one above will click link1 - link8
    For $i = 1 To 8 Step 1 _IELinkClickByText($oIE, "link" & Random(1, 8, 1)) Sleep(100) Next This one will click a random link between the numbers 1 and 8. And that 8x in a row.
  2. bootybay's post in _INetSmtpMailCom VPN Problem was marked as the answer   
    Well looks like my college is pretty serious about sending emails.
    I can only send mail via college smtp host and with certain certificats.
    Does anyone know some other way to notify me without email?
×
×
  • Create New...