Jump to content

Recommended Posts

Posted (edited)

I just through this together, I hope you like it.

what you need:

  • Have Utorrent 1.6 installed and running
  • Have atleast one download running
  • Have a T-Mobile phone
What I am going to add:
  • Support for major phone carriers
  • HTTP viewer and controller (Add & Remove torrents)
  • Timed intervals for messages
  • Support for more than one torrent
  • Error handling
UNDER CONSTRUCTION

\/ \/ \/ \/ \/ \/ \/ \/ \/ \/

#include <IE.au3>
$ID = 1234

AdlibEnable( "security", 500 )
$tmobile_number = 5555551212
$rows = ControlListView("µTorrent 1.6", "", "SysListView321", "GetItemCount", "")
$columns = ControlListView("µTorrent 1.6", "", "SysListView321", "GetSubItemCount", "")
$file = FileOpen( @TempDir & "\temptorrent.txt", 2 )
For $i = 0 To $rows -1
    $data = ""
    For $r = 0 To 10
        If $r <> 1 Then
            If $r = 10 Then
                $data = ControlListView("µTorrent 1.6", "", "SysListView321", "GetText", $i, $r)
                If $data = "" Then $data = "N/A"
                If $data = "8" Then $data = "Forever"
            Else
                $data = ControlListView("µTorrent 1.6", "", "SysListView321", "GetText", $i, $r) & "|"
                If $data = "|" Then $data = "N/A"
                If $data = "8|" Then $data = "Forever|"
            EndIf
            FileWrite( $file, $data )
        EndIf
    Next
    FileWriteLine( $file, "¶" )
Next
FileClose( $file )
ConsoleWrite(FileRead( @TempDir & "\temptorrent.txt" ) )
ConsoleWrite( @CRLF & StringLen( FileRead( @TempDir & "\temptorrent.txt" ) ) )





$celldata = ""
For $i = 0 To $rows -1
$celldata = $celldata & @CRLF & ControlListView("µTorrent 1.6", "", "SysListView321", "GetText", $i, 0) & ": " & ControlListView("µTorrent 1.6", "", "SysListView321", "GetText", $i, 3)
Next

;tmobile("Utorrent", $celldata, $tmobile_number)
Func tmobile($From,$Message,$Cell_Number)
    $oIE = _IECreate("https://wmg.tmomail.net/customer_site/jsp/messaging_lo.jsp", 0, 0)
    $o_form = _IEFormGetObjByName($oIE, "message_form")
    $o_to = _IEFormElementGetObjByName($o_form, "min");        <----Send To
    $o_msg = _IEFormElementGetObjByName($o_form, "text");        <----Message
    $o_from = _IEFormElementGetObjByName($o_form, "require_sender");        <----From
    $o_terms = _IEFormElementGetObjByName($o_form, "msgTermsUse"); <-----terms
    _IEFormElementSetValue($o_to, $Cell_Number)
    _IEFormElementSetValue($o_msg, $Message)
    _IEFormElementSetValue($o_from, $From)
    $o_terms.click
    _IEFormSubmit($o_form)
    _IEQuit($oIE)
EndFunc

Func security()
    ControlClick( "Security Information", "", "Button1", "left" )
EndFunc
Edited by zerocool60544
Check out ConsultingJoe.com
Posted

Interesting idea zero. I guess if you had a really important download this would come in handy!

AutoIt Scripts:Aimbot: Proof of Concept - PixelSearching Aimbot with several search/autoshoot/lock-on techniques.Sliding Toolbar - Add a nice Sliding Toolbar to your next script. Click the link to see an animation of it in action!FontInfo UDF - Get list of system fonts, or search to see if a particular font is installed.Get Extended Property UDF - Retrieve a files extended properties (e.g., video/image dimensions, file version, bitrate of song/video, etc)
Posted

uTorrent has a _really_ great WebUI btw.

"I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar.
Posted

This is a great concept. With modifications, this coudl be used to show you updates on many different things using your cell phone.

No doubt i will use this for something!

Posted

This is a great concept. With modifications, this coudl be used to show you updates on many different things using your cell phone.

No doubt i will use this for something!

Thank you, The script is not yet done and may not even function properly but my up-to-date code is there. I am working on the PHP script so that everyone that wants this just has to run the script and create a user account on my site and just login and get,edit, or add torrents.
Check out ConsultingJoe.com
  • 11 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...