Ok. So.... so far I haven't really had any problems while making my daily do-er. But tonight I've been trying to get the wheels to work, and i just cant seem to do it.

I guess have a look at my code first...

Code:
'declarations
        Dim strHTML, strSpin As String
        'Spin wheel
        strHTML = nWrap.Get("http://www.neopets.com/faerieland/wheel.phtml")
        If InStr(1, strHTML, "you've already spun this wheel in the last two hours") Then
            lstLog.Items.Add(Date.Now.ToString("H:mm:ss") & " | " & "You've spun wheel within past 2 hours.")
            Exit Sub
        End If
        strSpin = nWrap.Between(strHTML, "var swf = new SWFObject('", "', '")
        strHTML = nWrap.Post("http://www.neopets.com/amfphp/gateway.php", "", strSpin)
        Delay(6)
        'Attempted Log update
ok. so, i put a break point before my wrapper.post line so make sure all my strings r filled. Everything is filled, so i try to post.
so .post(url as string, the actual POST, Referral as string)
But nothing happens when I post. I can login on my browser and still spin the wheel. Anyone have any useful insight? maybe im just missing something?