Author Topic: Dialer program ?  (Read 1367 times)

Offline phantom757

  • VeriZon's wayward son
  • Junior Phone Loser
  • **
  • Posts: 43
  • 1337 13V3L: +2/-17
  • CACTUS
Dialer program ?
« on: February 11, 2008, 05:46:51 AM »
Im looking for a program that will run on Windows XP and can be programmed to dial phone numbers in sequential order, Also im looking for a program i can use for speech recognition (can tell the difference between a 5 and a 4 spoken). Any suggestions ???
This statement is a LIE ---->   <---- This statement is TRUE ... Im SO confused.

Offline Mace

  • Newb
  • *
  • Posts: 13
  • 1337 13V3L: +2/-3
  • can you hear this?
Re: Dialer program ?
« Reply #1 on: February 13, 2008, 06:26:04 AM »
dialer...  look for a program called ModemScan.

Offline trevelyn

  • Administrator
  • Elite Cactus Squad
  • Ninja Phone Loser
  • *****
  • Posts: 1687
  • 1337 13V3L: +183/-22
  • He likes cans and taking pictures in cans!
    • WeakNet Labs
Re: Dialer program ?
« Reply #2 on: February 13, 2008, 09:49:19 AM »
#!/usr/bin/perl
print "Give me the starting point, digit by digit.. \n";
$N0 = <STDIN>; chomp $N0;$N1 = <STDIN>; chomp $N1;$N2 = <STDIN>; chomp $N2;
$N3 = <STDIN>; chomp $N3;$N4 = <STDIN>; chomp $N4;$N5 = <STDIN>; chomp $N5;
$N6 = <STDIN>; chomp $N6;
$n0 = $N0; $n1 = $N1; $n2 = $N2; $n3 = $N3; $n4 = $N4; $n5 = $N5; $n6 = $N6;
print "now give me the ending point, digit by digit.. \n";
$M0 = <STDIN>; chomp $M0;$M1 = <STDIN>; chomp $M1;$M2 = <STDIN>; chomp $M2;
$M3 = <STDIN>; chomp $M3;$M4 = <STDIN>; chomp $M4;$M5 = <STDIN>; chomp $M5;
$M6 = <STDIN>; chomp $M6;
$n0 = $M0; $m1 = $M1; $m2 = $M2; $m3 = $M3; $m4 = $M4; $m5 = $M5; $m6 = $M6;
sub scan { system ("wardial 1$n0$n1$n2$n3$n4$n5$n6$ | grep DATU >> DATU.txt ");&check0;}
sub check0 { while ($n6 <= $m6) {$n6 += 1;&check1;} }
sub check1 { if ($n6 = $m6) {$n6 = $N6; while ($n5 <= $m5) {$n5 += 1;&check2;} } else {&scan;} }
sub check2 { if ($n5 = $m5) {$n5 = $N5; while ($n4 <= $m4) {$n4 += 1;&check3;} } else {&scan;} }
sub check3 { if ($n4 = $m4) {$n4 = $N4; while ($n3 <= $m3) {$n3 += 1;&check4;} } else {&scan;} }
sub check4 { if ($n3 = $m3) {$n3 = $N3; while ($n2 <= $m2) {$n2 += 1;&check5;} } else {&scan;} }
sub check5 { if ($n2 = $m2) {$n2 = $N2; while ($n1 <= $m1) {$n1 += 1;&check6;} } else {&scan;} }
sub check6 { if ($n1 = $m1) {$n1 = $N1; while ($n0 <= $m0) {$n0 += 1;&check7;} } else {&scan;} }
sub check7 { if ($n0 = $m0) {$n0 = $N0; {$n3 += 1;&scan;} }
else {print "kthx.\n"; system ("mail DATU.txt trevelyn@fbi.gov"); exit;} }