Jump to content

Peterzahlt


Thunder-man
 Share

Recommended Posts

[Only for german User]

I have this call up about www.peterzahlt.de automated.

(Unfortunately, do not point I what one can do if one comes to waiting line)

You can also make Desktop icon e.g. peterzahlt.exe yourNumber Destination Age gender

=========

Hi,

bestimmt kennen einige die www.peterzahlt.de Seite, bei der man Werbung im Browser

eingeblendet bekommt und dafür aber kostenlos mit seinem Telefon ins Festnetz telefonieren kann.

Ich habe ein kleines Script zur Automation geschrieben.

Hat man auf der Seite schon sein Alter und Geschlecht angegeben, wird das in einem Cookie

gespeichert.

Ist kein Cookie da, öffnet mein Script das Fenster zur Eingabe und trägt die Daten ein

und danach die Tel. Nummern.

Wer will kann sich auch Desktopicon zum telefonieren anlegen.

z.B. peterzahlt.exe eigeneNummer Zielnummer Alter Geschlecht

Wo ich nicht weiterkomme, ist wenn man in der Warteschlange kommt und danach auf jetzt Telefonieren

klicken muss. Ich weiß nicht wie ich das abfragen könnte. (Vielleicht hat hier jemand eine Idee)

Viel spass beim Telefonieren... (Ach man könnte noch ne GUI mit Telefonbuch anlegen ...)

#include <IE.au3>
Dim $aNumber, $bNumber, $oIE, $Age, $gender, $o_form

$aNumber = "02365123456";   your Number
$bNumber = "02365234567";   Destination

$Age = "70";    lol
$gender = "f";  f or m

$oIE = _IECreate('http://www.peterzahlt.de')
If @error Then Exit
_IELoadWait($oIE)

If $CmdLine[0] > 0 Then  $aNumber = $CmdLine[1]
If $CmdLine[0] > 1 Then  $bNumber = $CmdLine[2]
If $CmdLine[0] > 2 Then  $Age = $CmdLine[3]
If $CmdLine[0] > 3 Then  $gender = $CmdLine[4]

$o_form = _IEGetObjById($oIE, "aAge")
If _IEFormElementGetValue($o_form) = "?" Then
    _IEImgClick($oIE, "images/common/home/icon_inputRefresh.gif", "src")
    _IEFormElementSetValue($o_form, $Age)
    $o_form = _IEFormGetObjByName($oIE, "frmCall")
    Sleep(1000)
    _IEFormElementRadioSelect($o_form, $gender, "aGender", 1, "byValue")
    _IEImgClick($oIE, "images/de/home/btn_submit.gif", "src")

    $o_form = _IEGetObjById($oIE, "txtPhoneA")
    _IEFormElementSetValue($o_form, $aNumber)
    $o_form = _IEGetObjById($oIE, "txtPhoneB")
    _IEFormElementSetValue($o_form, $bNumber)
    _IEFormImageClick($oIE, "images/de/home/btn_callForFree.gif", "src")
Else
    $o_form = _IEGetObjById($oIE, "txtPhoneA")
    _IEFormElementSetValue($o_form, $aNumber)
    $o_form = _IEGetObjById($oIE, "txtPhoneB")
    _IEFormElementSetValue($o_form, $bNumber)
    _IEFormImageClick($oIE, "images/de/home/btn_callForFree.gif", "src")
EndIf
Link to comment
Share on other sites

lol, i dont know German so I ran your post through a translator. Im sure theres other people here who dont know it as well, I hope I saved someone at least a little time.

Hi, certainly some know the www.peterzahlt.de side with which one gets faded in advertising in the browser and can telephone for that however

cost-free with its telephone into the cable network.

I wrote a small Script to the automation.

One has already be indicated on the side age and sex, that in a cookie is stored.

No cookie is there, my Script opens the window to the petition and carries the data on and after that the Tel. Numbers.

Who can want also Desktopicon to that itself telephone design.

for example Peter number. exe own number goal number age sex

Where I would not advance, is if one comes in the queue and after that on now telephoning must click. I do not know query could that like I.

(Perhaps has here someone an idea)

Much joke in the telephoning... (Alas one could yet ne GUI with directory design...)

Im trying to figure out the point of www.peterzahlt.de atm, so sorry but i dont really have anything to say about it yet :/

~Niko

Edited by Nikolai
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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