Page 3 of 3 FirstFirst 123
Results 21 to 27 of 27

Thread: 165Daily Doer

  1. #21

    Joined
    Jun 2012
    Posts
    7
    Userbars
    0
    Thanks
    0
    Thanked
    0/0
    DL/UL
    20/0
    Mentioned
    Never
    Time Online
    58m
    Avg. Time Online
    N/A
    wow, very handy, very awesome too

  2. #22

    Joined
    Dec 2011
    Posts
    843
    Pronouns
    she/her
    Userbars
    3
    Thanks
    313
    Thanked
    346/213
    DL/UL
    34/2
    Mentioned
    179 times
    Time Online
    1d 19h 11m
    Avg. Time Online
    N/A
    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.

  3. The Following 2 Users Say Thank You to Ashleys165 For This Useful Post:

    j03 (07-17-2012),musemfire (07-17-2012)

  4. #23

    Joined
    Jun 2012
    Posts
    1,699
    Thanks
    876
    Thanked
    2,881/1,142
    DL/UL
    44/1
    Mentioned
    562 times
    Time Online
    118d 6h 45m
    Avg. Time Online
    40m
    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 httpwrapper , 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 httpwrapper 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 httpwrapper
    'Httpwrapper 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 = "

  5. The Following User Says Thank You to DarkByte For This Useful Post:

    j03 (08-04-2012)

  6. #24
    Saiyan Race
    j03's Avatar
    Joined
    Dec 2011
    Posts
    13,745
    Userbars
    176
    Thanks
    5,927
    Thanked
    33,155/6,619
    DL/UL
    23/36
    Mentioned
    3,871 times
    Time Online
    564d 2h 47m
    Avg. Time Online
    3h 13m
    She wrote this in VB6 I believe.
    (you need an account to see links)
    (you need an account to see links)(you need an account to see links)

    ------------------------
    [02/24/2013] Stealth CORE is made into the first standalone Neopets auto-player.
    ------------------------


  7. The Following User Says Thank You to j03 For This Useful Post:

    DarkByte (08-04-2012)

  8. #25

    Joined
    Jun 2012
    Posts
    1,699
    Thanks
    876
    Thanked
    2,881/1,142
    DL/UL
    44/1
    Mentioned
    562 times
    Time Online
    118d 6h 45m
    Avg. Time Online
    40m
    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 .

  9. #26
    bykolorzzz's Avatar
    Joined
    Jul 2012
    Posts
    74
    Userbars
    1
    Thanks
    14
    Thanked
    23/9
    DL/UL
    13/0
    Mentioned
    6 times
    Time Online
    18m
    Avg. Time Online
    N/A
    Thanks! nice program

  10. #27

    Joined
    Aug 2012
    Posts
    50
    Userbars
    1
    Thanks
    24
    Thanked
    1/1
    DL/UL
    20/0
    Mentioned
    1 time
    Time Online
    13m
    Avg. Time Online
    N/A
    Thank you much appreciated

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •