Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Night Fox

Pages: 1 ... 3 4 5 6 7 [8] 9 10 11 12 13 ... 4035
106
Off Topic / Re: Website that sells cheap clothing?
« on: June 20, 2014, 03:28:43 PM »
I don't want to wear the same t-shirt everyday.
do you... have that problem, right now?

107
Off Topic / Re: It is me or the forums is slow?
« on: June 20, 2014, 01:27:59 PM »
oh
well
no

you have to remember that this isn't an instant messaging platform
it's a forum

108
Off Topic / Re: It is me or the forums is slow?
« on: June 20, 2014, 01:23:52 PM »
it was acting up for me last night, but it's fine now

109
Off Topic / Re: how do i fix my sleep schedule
« on: June 20, 2014, 03:30:10 AM »
i tried to go to sleep early but i ended up just lying there unable to sleep for a while
i'll try setting an alarm though
then
hm
maybe try going to sleep just a couple hours earlier than usual, then the next night, an hour before that, then the next, and so on? idk for sure if it'll work but

110
Off Topic / Re: how do i fix my sleep schedule
« on: June 20, 2014, 03:25:24 AM »
set an alarm for whenever you wanna get up, and go to sleep at 10:00pm

111
there would be less hot dragons :c

112
Off Topic / Re: Steam Game Swap || Steam Summer Sale!
« on: June 20, 2014, 12:55:37 AM »
wait
now I'm kinda confused
like
let's say there's people A, B, C, and D
are the "pairs" like, A <---> B, and C <---> D? or something more like, A --> B --> C --> D --> A?
the arrows represent a game being gifted to someone

113
Off Topic / Re: Steam Game Swap || Steam Summer Sale!
« on: June 20, 2014, 12:29:04 AM »
Im using the honor system here, also I can drama anyone who doesn't purchase a game for someone.
yeah. a drama. that's gonna get me my $5 back

114
Off Topic / Re: Steam Game Swap || Steam Summer Sale!
« on: June 20, 2014, 12:01:40 AM »
the problem with this is that you can't trust the other person to actually follow through
Well you should make it a rule to make sure the person doesn't already have the game you are buying them.
generally, you can see other player's libraries

115
Off Topic / Re: i have am mr sckeling tin
« on: June 19, 2014, 11:47:27 PM »
that is so funny
my sides
are in heaven
im rofling
hilarious

116
Off Topic / Re: Furry Megathread - Furry Things Here
« on: June 19, 2014, 11:13:45 PM »
does chrome have site history and everything?

i rarely use it unless i cant see images on something in ie
yes
and it has an "incognito mode" where, when you're using it, it doesn't record to your history. maybe you could make use of that
wink wink

117
Off Topic / Re: Furry Megathread - Furry Things Here
« on: June 19, 2014, 11:05:18 PM »
you should give chrome a try

118
Off Topic / Re: Furry Megathread - Furry Things Here
« on: June 19, 2014, 11:00:26 PM »
religion
why
well thats not a question for me
it's not like it hurts anything though

also it works right and all. like, if someone has it, and they added their options, you'll see theirs if you have it too
but if someone doesn't have it, or hasn't added theirs, and you have it, then you'll just see "Loading..." instead. idk how to handle that and I'm pretty sure steve's done with it so. it's not a big deal anyway
i thought the BLF was a forum, not a dating site.
so don't use it
i would use that but cant put add-ons on IE
why do you use IE?!

119
Off Topic / Re: Furry Megathread - Furry Things Here
« on: June 19, 2014, 10:48:16 PM »
does anyone want the script that adds this stuff




steve made it
and if you do, you gotta have tampermonkey or an equivalent extension for FireFox or w/e you use

Quote
// ==UserScript==
// @name Blockland Forums Extended Genders and Orientation Plugin v1.0
// @require http://code.jquery.com/jquery-2.1.1.min.js
// @include *forum.blockland.us*?action=profile*
// @include *blockland.us/smf*?action=profile*
// ==/UserScript==

var database = 'http://foxscotch.us/steve/identity';

if(document.URL.indexOf('?action=profile') != -1 && document.URL.indexOf('sa=forumProfile') == -1) {
   var name = $('.titlebg').first().children().first().html();

   /*
   var spec = 'Kitty';
   var gen = 'Transgender Female';
   var ori = 'Triloveual';
   var rel = 'Christian Extremist';
   */

   var loadingMsg = 'Loading...'
   var genObj = $('b:contains("Gender: ")');
   genObj.html('Gender Identity');
   genObj.parent().next().attr('class','genObj');
   genObj.parent().parent().after('<tr><td><b>Religion: </b></td><td class="relObj">'+ loadingMsg + '</td></tr>');
   genObj.parent().parent().before('<tr><td><b>Species: </b></td><td class="specObj">'+ loadingMsg + '</td></tr>');
   genObj.parent().parent().after('<tr><td><b>loveual Orientation: </b></td><td class="oriObj">'+ loadingMsg + '</td></tr>');

   GM_xmlhttpRequest({
      method: "POST",
      url: database + "/index.php",
      data: "name=" + name,
      headers: {
         "Content-Type": "application/x-www-form-urlencoded"
      },
      onload: function(response) {
         console.log(response.responseText);
         setIdentity(response.responseText);
      }
   });
} else if(document.URL.indexOf('sa=forumProfile') != -1) {
   $('input:submit').last().parent().parent().before('<tr><td width="40%"><b>Species:</b></td><td><input type="text" class="spec" size="24" value=""></td></tr><tr><td width="40%"><b>Gender Identity:</b></td><td><input type="text" class="gen" size="24" value=""></td></tr><tr><td width="40%"><b>loveual Orientation:</b></td><td><input type="text" class="ori" size="24" value=""></td></tr><tr><td width="24%"><b>Religion</b></td><td><input type="text" class="rel" size="24" value=""></td></tr><tr><td width="40%">Make sure to hit save and await a response!</td><td><input type="button" class="saveDetails" value="Save"></td></tr>');
}

$('.saveDetails').click(function() {
   sendDetails();
});


function setIdentity(data) {
   var details = JSON.parse(data);
   $('.specObj').html(details['spec']);
   $('.oriObj').html(details['ori']);
   $('.genObj').html(details['gen']);
   $('.relObj').html(details['rel']);
}

function sendDetails() {
   var nameSend = $('td:contains(", you have ")').html().split('Hey, <b>')[1].split('</b>')[0];

   var data = {};
   data.spec = $('.spec').val();
   data.gen = $('.gen').val();
   data.ori = $('.ori').val();
   data.rel = $('.rel').val();

   var jsonString = JSON.stringify(data);

   GM_xmlhttpRequest({
      method: "POST",
      url: database + "/set.php",
      data: "name=" + nameSend + "&data=" + jsonString,
      headers: {
         "Content-Type": "application/x-www-form-urlencoded"
      },
      onload: function(response) {
         alert(response.responseText);
         console.log(response.responseText);
      }
   });
}

if you're using tampermonkey, just click the icon for it in the top right, click "add a new script," and copy and paste that whole thing into there
if there's already something in the text box part (there probably will be), delete it first, then paste

it's probably similarly straight-forward for any other. not sure if you need the top bit or not (the first few lines that begin with "//"), but they're just comments, they can't hurt anything, I'd suggest leaving just in case they serve a purpose for other extensions

120
Suggestions & Requests / Re: Brick Movement Counter
« on: June 19, 2014, 09:38:00 PM »
May I just ask how this would be helpful, ever?
hmmm
Fantastic for counting bricks when you need something to be a certain size.

Pages: 1 ... 3 4 5 6 7 [8] 9 10 11 12 13 ... 4035