Quantcast

Jump to content


Photo

black pawkeet or bruce b slot auto player


  • This topic is locked This topic is locked
23 replies to this topic

#1 masterkruse

masterkruse
  • 16 posts

Posted 16 August 2007 - 09:26 PM

this site should work on making a autoplayer for black pawkeet or bruce b slot auto player it would be super nice to have

#2 masterkruse

masterkruse
  • 16 posts

Posted 16 August 2007 - 10:15 PM

lol yah true but the last one was confusing an know one understood it so ithought i would try it again

#3 DudeOnline

DudeOnline
  • 1897 posts

Posted 17 August 2007 - 06:32 AM

QUOTE(Kitsune @ Aug 16 2007, 10:56 PM) View Post
You mean your last topic wasn't enough? Ok look, while it's nice that you're suggesting things for the site, it can be seen a s anegative if a very new member comes on and asks for programs to be made. It just comes off as rude no matter how polite you come across as being.



He's not exactly a new member, hes been here about 2 months, He's just been lurking/leeching smile.gif

#4 spottedtiger

spottedtiger
  • 427 posts

Posted 17 August 2007 - 08:28 AM

meh... i'd rather have a scorch slots autoplayer >_> there used to be one i think but it got poofed sad.gif



#5 unlimitedorb

unlimitedorb
  • 15 posts

Posted 17 August 2007 - 09:11 AM

QUOTE(spottedtiger @ Aug 17 2007, 08:28 AM) View Post
meh... i'd rather have a scorch slots autoplayer >_> there used to be one i think but it got poofed sad.gif

The below is a javascript url (or inline javascript if you rather) that I made to autoplay scorchyslots. I don't know if it still works with the new layout, but if it doesn't it doesn't matter because a new version with some artificial intelligence will be released in my upcoming Firefox extension. Just enter it into your address bar on the scorchy slots page and press go, it should automatically start playing. I'm starting on a Firefox extension for macroing different kinds of games (and it will be updated) so stay tuned. The space in "java script" should be removed, this forum automatically inserts it as an XSS prevention measure.


java script: var ni = document.getElementById('ban'); var newdiv = document.createElement('div'); var divIdName = 'neoResponse'; newdiv.setAttribute('id',divIdName); ni.appendChild(newdiv); var XMLHttpRequestObject = false; try { XMLHttpRequest } catch (e) { alert("Could not create XMLHttpRequestObject. Please Make sure you are using Mozilla Firefox."); } XMLHttpRequestObject = new XMLHttpRequest(); function socket() { var neoCollect; var container; container = window.document.getElementById("neoResponse"); try { neoCollect = window.document.forms[0].collect.value; } catch (e) { neoCollect = false; } if (neoCollect == false) { if (XMLHttpRequestObject) { XMLHttpRequestObject.open("GET", "http://neopets.com/games/slots.phtml?hold1=&hold2=&hold3=&hold4=&play=yes", true); XMLHttpRequestObject.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); XMLHttpRequestObject.onreadystatechange = function() { if(XMLHttpRequestObject.readyState == 4 && XMLHttpRequestObject.status == 200) { container.innerHTML = XMLHttpRequestObject.responseText; }}; XMLHttpRequestObject.send(null); delete XMLHttpRequestObject; }} if(neoCollect) { if(XMLHttpRequestObject) { XMLHttpRequestObject.open("POST", "http://neopets.com/games/process_slots2.phtml", true); XMLHttpRequestObject.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); XMLHttpRequestObject.onreadystatechange = function() { if(XMLHttpRequestObject.readyState == 4 && XMLHttpRequestObject.status == 200) { container.innerHTML = XMLHttpRequestObject.responseText; }}; XMLHttpRequestObject.send("collect=true"); delete XMLHttpRequestObject; }}} function socketLoop() { setInterval("socket()", 1000); } socketLoop(); alert("AJP's Dead Player V1.02a in Progress...");

Edited by unlimitedorb, 17 August 2007 - 09:14 AM.


#6 spottedtiger

spottedtiger
  • 427 posts

Posted 17 August 2007 - 09:21 AM

is that uh... safe?

#7 unlimitedorb

unlimitedorb
  • 15 posts

Posted 17 August 2007 - 10:14 AM

QUOTE(spottedtiger @ Aug 17 2007, 09:21 AM) View Post
is that uh... safe?


Completely.

#8 Cant Stop Me

Cant Stop Me
  • 694 posts

Posted 17 August 2007 - 11:19 AM

That's a great idea, it would need a neopoint limit though, so you can run it while you sleep and not have all your neopoints taken. tongue.gif

#9 masterkruse

masterkruse
  • 16 posts

Posted 17 August 2007 - 01:01 PM

ty dudeonline some one finally realizes that ive ben her for a while but yah i have ben lurking an i havnt ben into this latley i just made a pet name checker also but when i try to send the program there is always an error can some one help me with that

#10 Sweeney

Sweeney
  • 1230 posts


Users Awards

Posted 17 August 2007 - 03:21 PM

QUOTE(unlimitedorb @ Aug 17 2007, 06:14 PM) View Post
Completely.

I've been wondering, why did you join NeoCodex almost a year ago, if you only recently got into the Neo cheating scene?

#11 masterkruse

masterkruse
  • 16 posts

Posted 17 August 2007 - 03:35 PM

yah true but i just got back into it an i learned how to make some programs an i started off with a neopet name checker but i need some help getting it on there

Edited by masterkruse, 17 August 2007 - 03:37 PM.


#12 Raui

Raui
  • 5687 posts


Users Awards

Posted 17 August 2007 - 04:52 PM

QUOTE(unlimitedorb @ Aug 18 2007, 04:14 AM) View Post
Completely.


Incorrect. It'll show invalid referrers, if its safe then I'm jesus tongue.gif

#13 unlimitedorb

unlimitedorb
  • 15 posts

Posted 17 August 2007 - 09:00 PM

QUOTE(Raui @ Aug 17 2007, 04:52 PM) View Post
Incorrect. It'll show invalid referrers, if its safe then I'm jesus tongue.gif


I was referring to the script itself as in it's not doing anything malicious like sending cookies. It will definitely show valid referers since there is only one referer that you need, inline javascript inherits whatever page you are on as a referer when sending XMLHTTP requests, but...a broken clock is correct twice a day, in this case you were correct that it isn't safe but not for the right reason.

#14 Sweeney

Sweeney
  • 1230 posts


Users Awards

Posted 18 August 2007 - 01:55 AM

QUOTE(unlimitedorb @ Aug 18 2007, 06:00 AM) View Post
I was referring to the script itself as in it's not doing anything malicious like sending cookies. It will definitely show valid referers since there is only one referer that you need, inline javascript inherits whatever page you are on as a referer when sending XMLHTTP requests, but...a broken clock is correct twice a day, in this case you were correct that it isn't safe but not for the right reason.

lol
Raui is correct even when he's wrong.
Especially about pogramming.

#15 Raui

Raui
  • 5687 posts


Users Awards

Posted 18 August 2007 - 03:05 AM

Actually UnlimitedOrd I think your the broken clock in this case. I'm fully right in what I say. Your script is unsafe. Even if you don't steal the accounts and store the cookies on a 3rd party server but the invalid referers will get you frozen within i'd say 1 day ? 2 days if you do it on a Sunday so in otherwords you still lose your account. Also don't think I'm trying to bag you or your code out. I know that if you injected that somehow into your lookup it'd be great and the referers would still be wrong but atleast they would be comming from a neopets site tongue.gif

#16 unlimitedorb

unlimitedorb
  • 15 posts

Posted 18 August 2007 - 06:58 AM

QUOTE(Raui @ Aug 18 2007, 03:05 AM) View Post
Actually UnlimitedOrd I think your the broken clock in this case. I'm fully right in what I say. Your script is unsafe. Even if you don't steal the accounts and store the cookies on a 3rd party server but the invalid referers will get you frozen within i'd say 1 day ? 2 days if you do it on a Sunday so in otherwords you still lose your account. Also don't think I'm trying to bag you or your code out. I know that if you injected that somehow into your lookup it'd be great and the referers would still be wrong but atleast they would be comming from a neopets site tongue.gif


There are no invalid referers if you start on the scorchy slots game page directly. You can't just go to any old page and hit go with it. It has to be on the correct page in order to work properly, once it's on the correct page, it will automatically inherit that page as a referer. It just so happens that there is only one page that you need as a referer throughout the entire game process and since you start on that page, the referer is correct. It's almost the equivalent of refreshing the page, but can press "collect" for you as well if you win anything.

For alot of situations you have to explicitly set the referers because of the nature of the program. But using AJAX for this, you don't have to. In fact, even if you wanted to change the referer, browser security will not allow you to do so with AJAX.

Edited by unlimitedorb, 18 August 2007 - 07:04 AM.


#17 Raui

Raui
  • 5687 posts


Users Awards

Posted 18 August 2007 - 04:31 PM

Ahh nvm I see you structured it to be entered in the URL bar wink.gif In which case I an incorrect unless theres some special refferer.

#18 Nick

Nick
  • <img src="http://i29.tinypic.com/9iwl5w.jpg">

  • 6051 posts


Users Awards

Posted 18 August 2007 - 04:34 PM

QUOTE(Dudeonline @ Aug 17 2007, 09:32 AM) View Post
He's not exactly a new member, hes been here about 2 months, He's just been lurking/leeching smile.gif


That makes us hate it even more. smile.gif

#19 [email protected]

Posted 19 August 2007 - 04:41 AM

QUOTE(unlimitedorb @ Aug 17 2007, 07:11 PM) View Post
The below is a javascript url (or inline javascript if you rather) that I made to autoplay scorchyslots. I don't know if it still works with the new layout, but if it doesn't it doesn't matter because a new version with some artificial intelligence will be released in my upcoming Firefox extension.


Oooh, that sounds intriguing.

I've been using iOpus iMacros for simple stuff but it would be great to see something Neopets specific.



#20 J03

J03
  • 220 posts

Posted 20 August 2007 - 04:17 AM

So, unlimitedorb can that be put as a greasemonkey script and just run it on the SS game page?

#21 mattman

mattman
  • 1 posts

Posted 21 October 2007 - 03:02 PM

um i dont know if this will help with the arument but i found something awesome... a dice-a-roo ap greasemonkey script tongue.gif tongue.gif i didnt make it but its awesome. ive won 3 jackpots 5 lotto tickets and much food items
its on:http://userscripts.org/scripts/show/2445

#22 ninetees

ninetees
  • 8 posts

Posted 14 October 2015 - 02:43 AM

Hi please help where should i place all these htm in include or exclude. Please guide me thanks



#23 Elindoril

Elindoril
  • Weeaboo Trash

  • 9254 posts


Users Awards

Posted 14 October 2015 - 03:46 AM

Holy mother of grave digs.

#24 Strategist

Strategist
  • Sadmin

  • 10012 posts


Users Awards

Posted 14 October 2015 - 10:53 AM

Hi please help where should i place all these htm in include or exclude. Please guide me thanks


You need to stop gravedigging please.


1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users