|
Post by Geodude 🌻 on Jan 19, 2017 19:02:41 GMT -5
I think most of my problem is getting someone to look at my ticket. So if anybody has a staff email, do tell please. That may be the only way I'll get some attention.
|
|
|
Post by Geodude 🌻 on Jan 27, 2017 9:08:04 GMT -5
It looks like my ticket was addressed! I got my main back after two months. I had to go through the "friend emailing a staff member" route in order to get movement on the ticket. I will make the spreadsheet of my account info soon so I don't have to rely on my memory.
|
|
|
Post by Geodude 🌻 on Jan 28, 2017 13:01:28 GMT -5
I was trying to do an inventory of my sdb and closet and got annoyed at how slow it was to copy and paste. I wrote this little snippet one can paste into their browser's Javascript Console when visiting an SDB, Closet, or Storage Shed page. You have to be on one of those pages to get meaningful results. It will dump item names into the console separated by newline. You can search how to invoke this console in your preferred web browser.
Hey mods, I don't know if posting code is okay. I know pasting unverified JS into a console is not generally good so if this bothers anyone, please remove this post. I would wait for the mods to make a judgement call or someone else to verify this code is clean before using it.
//copy and paste the following code into your browser's javascript console. text output is logged to the JS console itself. a
//dump out names of items that have grey background from zebra-striping $( "tr[bgcolor='#F6F6F6']" ) .each( function(){ console.log($(this).children('td').eq(1).text()); } );
//dump out names of items that have white background from zebra-striping $( "tr[bgcolor='#FFFFFF']" ) .each( function(){ console.log($(this).children('td').eq(1).text()); } );
//dump out names of items that are wearable, with blue background $( "tr[bgcolor='#DFEAF7']" ) .each( function(){ console.log($(this).children('td').eq(1).text()); } );
|
|
|
Post by Tiger on Jan 28, 2017 13:27:07 GMT -5
Hello, Real Life Front-End Developer here who gets paid to code with JS/JQuery and frequently uses the Developer Tools console, and also a mod \ o Geodude 🌻's code is fine - for the non-code-inclined, all it's doing is running through the HTML of the page, which you could find by right-clicking a page and clicking "View Source", grabbing each table row (tr) by background color (bgcolor) and then writing its table cell (td) text. It's not accessing anything remotely personal on your computer or anything on Neopets' end except the basic HTML you could get anyway (so no connections to databases, no changes to your account, or anything that could get your account in trouble). (Also the console Geo mentions, since I don't think most people know how to get to this, is accessible by hitting F12 on the page, or right-clicking on the page and selecting "Inspect" or "Inspect Element". In the box that comes up, click the "Console" tab, and that's where you'll want to paste this.)
|
|
|
Post by Geodude 🌻 on Jan 28, 2017 13:29:45 GMT -5
Thanks Tiger! I didn't explain it as well as you did. I was sorta in a hurry for lunch XD. Thanks for adding better documentation .
|
|
|
Post by Serene on Jan 28, 2017 21:39:45 GMT -5
Glad to hear you got your account back! Hopefully you won't have to undergo similar circumstances again in the future!
|
|