maybe you can make a program that will do all of the daily routines like tombola, fruit machine, etc.
okay made a perl script which does exactly that It is: Perl - Daily Do-er in the download section. Does 7 important dailies at the moment and is easy to add to if you like.
Re: well it takes to long to explain completely and it is fairly complicated if you've never done anything like it before, but if you open it up in notepad, you should see what needs to be done. The last daily is: Code (Text): sub dailies7{ my $daily = 'Giant Jelly'; my $regex = qr{You take some (.*?)!}; my $regexAgain = qr{cannot take more than one jelly}; my $url = $baseurl . '/jelly/jelly.phtml'; my $header = HTTP::Headers->new( 'Referer' => $baseurl . '/jelly/jelly.phtml?', 'Accept' => 'text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5', 'Connection' => 'keep-alive', "Content-Type" => 'application/x-www-form-urlencoded'); # only for c-shrine/jelly my $req = HTTP::Request->new(POST, $url, $header, 'type=get_jelly'); my $res = $ua->request($req); if ($res->is_success){ if ($res->content =~ m{$regex}i){ print "$daily: Got jelly - $1\n"; } elsif ($res->content =~ m{$regexAgain}i){ print "$daily: You have already taken jelly today.\n"; } else { print "$daily: Unknown?.\n"; } } else { print "Error with daily: $daily.\n"; } } So to add a new one, you'd change everything which is bold: sub dailies7{ #you'd change this to 8, duh my $daily = 'Giant Jelly'; #change this to the name of the daily my $regex = qr{You take some (.*?)!}; #make regexes for each thing, after it has done the daily. For example if you were doing one for coltzans shrine, it might say, "your neopet has become stronger", or something in the HTML of the page. So you'd make a regex my $regex = qr{your neopet has become stronger} my $regexAgain = qr{cannot take more than one jelly}; my $url = $baseurl . '/jelly/jelly.phtml'; #change this to whatever is the URL which we are GOING to, (ie AFTER you've clicked the button for whatever daily), this $url should hold whatever comes AFTER 'www.neopets.com' my $header = HTTP::Headers->new( 'Referer' => $baseurl . '/jelly/jelly.phtml?', #you might need to use a packet sniffer to find out what the referal header should be (look for a 'packet sniffer download' on google. 'Accept' => 'text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5', 'Connection' => 'keep-alive', "Content-Type" => 'application/x-www-form-urlencoded'); # only for c-shrine/jelly #this isn't usually necessary, only use this if you detect (using a packet sniffer) that it needs to send this content-type header. my $req = HTTP::Request->new(POST, $url, $header, 'type=get_jelly'); #the 'type=get_jelly' is the content which is sent. Once again you can detect this with the packet sniffer, but often you won't need to send anything, as you only need this if you needed the 'content-type' header earlier. my $res = $ua->request($req); if ($res->is_success){ if ($res->content =~ m{$regex}i){ print "$daily: Got jelly - $1\n"; } elsif ($res->content =~ m{$regexAgain}i){ print "$daily: You have already taken jelly today.\n"; } else { print "$daily: Unknown?.\n"; } } else { print "Error with daily: $daily.\n"; } } you'd also need to add to the 7th daily this line: &dailies2; at the end of the if ($res->is_success){ -- something tells me i wasted my time 'trying' to explain that because I don't think anyones gonna bother to try ;/
Expon I'm trying it I'm trying to add the omelet thing. Lol I tried it but now when I try to open the daily doer it even doesn't popup So I just change everything back