PDA

View Full Version : 165Daily Doer



Ashleys165
01-10-2012, 06:16 PM
165Daily Doer!!!

[Only registered and activated users can see links]

Does the Following Dailies:
Coltzen Shrine
Omelette
Anchor Management
Interest
Healing Springs
Meteor
Wise Old King
Shop of Offers
Discarded Plushie
Ye Olde Fishing Vortex
Grumpy Old King
Apple Bobbing
Snowager
Toy Chest
Deserted Tomb
Fruit Machine
Tombola
Jelly
------
Test Your Strength
Buried Treasure

Public! Any member can use this!

Please Report all bugs this version will have a few due to it being such a "fresh out of the frying pan" program.
If you have a space ( ) in your username, take out the space ( ) and put in %20 in it's place until I have the bug fixed. I will post when it is fixed.

Download; [Only registered and activated users can see links]

Harry Potter
01-10-2012, 09:08 PM
It looks great! I'd test it out but I dont have a neopets account (;

Ashleys165
01-11-2012, 06:18 PM
You're Sherri, you're a hero! You will figure something out.



To others, my next version will contain scratch cards and bank options.

Adam
01-11-2012, 06:24 PM
You're Sherri, you're a hero! You will figure something out.



To others, my next version will contain scratch cards and bank options.

i cant wait until you get the wheels done XD that will be godly!!

lilangel
01-11-2012, 07:04 PM
How about the lab?

Ashleys165
01-12-2012, 04:53 PM
How about the lab?

Well, my main was frozen, but I will be doing it asap... I need more NP though, been cheating alot to get it.

dodowong303
01-28-2012, 10:27 PM
it is so great that i don't have to click anymore :D

kidchaor
02-02-2012, 06:28 PM
add the lab, forgotten shore, and PROXY SUPPORT.

Ashleys165
02-02-2012, 07:35 PM
add the lab, forgotten shore, and PROXY SUPPORT.
I will!!!! I need some time, and it will happen AFTER the shell creator!

Zioax69
02-18-2012, 07:04 PM
Nice program...looking forward to your future ones +Rep

yamakracker
02-18-2012, 07:05 PM
looks nice but yeah proxy support would be nice ^^

loucamente
02-22-2012, 01:28 PM
Cool, it's very fast =]

Meircdragon
04-02-2012, 07:16 AM
Hi, I was wondering where the items you've gotten from the Daily Doer go to? I don't have any new items in my inventory.

SmileYaDead
04-02-2012, 07:17 AM
Hi, I was wondering where the items you've gotten from the Daily Doer go to? I don't have any new items in my inventory.
You probably didn't get any items then.

Ashleys165
04-02-2012, 09:23 AM
Hi, I was wondering where the items you've gotten from the Daily Doer go to? I don't have any new items in my inventory.

You have to remember this is a daily doer, not a daily hacker. It is random.. Sometimes you win, others you don't.

goodieboy
04-09-2012, 04:04 AM
Great! now I don't have to dailies myself!

TripleS91
04-09-2012, 09:54 AM
I had doing dailies xD

Great Program! :)

I owe you rep

Kera
04-30-2012, 03:49 PM
Just tried it out on one of my accounts, checked all the things I wanted to do, hit start, they all changed to 'Done', but I log onto the account, and none of the dailies are done..??
A little confused. Lol, is it not working now or something?

Ashleys165
04-30-2012, 04:06 PM
Just tried it out on one of my accounts, checked all the things I wanted to do, hit start, they all changed to 'Done', but I log onto the account, and none of the dailies are done..??
A little confused. Lol, is it not working now or something?

Eh, I'll check it out, neo changed some things so it may not be working right. You can still use this one ([Only registered and activated users can see links]) though.

Kera
04-30-2012, 05:32 PM
Thank you. :)

exdark
06-13-2012, 06:19 AM
wow, very handy, very awesome too

Ashleys165
07-16-2012, 10:31 PM
This is being updated, so I highly advise against using it till the update is completed, there are some major bugs that need to be fixed.

DarkByte
08-04-2012, 06:31 AM
For the wheels you need to simulate the packets , you can do this just with a wrapper and adding a extra request function. This is not the best way to do this , check out damiens guide in the programming section for that but wheel packets never change so it will do.

1.Use a packet editor to look at the packets sent from firefox when spinning a real wheel on neopets.
2.The relevant packet is as follows:

Send to : POST /amfphp/gateway.php
..Content-Type: application/x-amf..
Content-length: 47............WheelService.spinWheel../1............

You should add a "Amf" request to your [Only registered and activated users can see links] , this is not hard just recode whatever is used for get/post already and change some headers. Heres a basic function i added to a [Only registered and activated users can see links] when testing this.

[SPOILER]
[CODE]Imports System
Imports System.Collections.Generic
Imports System.Text
Imports System.Text.RegularExpressions
Imports System.IO
Imports System.IO.Compression
Imports System.Net.Sockets

Public Class [Only registered and activated users can see links]
'[Only registered and activated users can see links] Credits to glurak and whoever converted this to vb.net
'This is not my work except for some slight chagnges and tweaks where i see fit
Implements ICloneable

Private TCP_Client As TcpClient
Private colCookies As Dictionary(Of String, String) = New Dictionary(Of String, String)
Public strCookies As String = String.Empty
Public LastPage As String = String.Empty

Private pUseProxy As Boolean = False
Private pProxyAddress As String = String.Empty
Private pProxyPort As Integer = 80

Public Const constHeaderUserAgent As String = "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-GB; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8"

Public headerAccept As String = "text/html,application/xhtml+xml,application/xml,0.9,*/*;q=0.8"
Public headerUserAgent As String = "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-GB; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8"
Public headerAcceptLanguage As String = "en-us,en;q=0.5"
Public headerAcceptCharset As String = "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
Public alternativePostdataSeparator As String = "

j03
08-04-2012, 09:04 AM
She wrote this in VB6 I believe.

DarkByte
08-04-2012, 09:33 AM
I have the code in vb6 if its useful to you :). Needs more explanation really check my keyquest guide so you know whats going on :).

bykolorzzz
08-04-2012, 11:27 PM
Thanks! nice program :P

razkull
08-09-2012, 05:26 PM
Thank you much appreciated :)