Bungie.net Community
This topic has moved here: Subject: Script Central> All GM Scripts Here!
  • Subject: Script Central> All GM Scripts Here!
Subject: Script Central> All GM Scripts Here!

Five years older and wiser
The fires are burning, I'm fire, never tire
Slay warriors in the forests, and on hire

Posted by: a rascal cat
I've never asked if you can see exactly how many posts you have.


...

Posted by: a rascal cat
Alright, so we basically have no idea how many times we have posted, but we can find out our Average Post Per Day.


...

Posted by: a rascal cat
It probably would, but I'm sure the Employees have some way of finding exactly how many posts we have, so I'm sure some sort of script has been made.


...

Posted by: a rascal cat
Is there a script that allows you to see how many times you have posted in the public forums?


I am 12, what is this? I must be unable to read.

  • 02.03.2011 6:38 AM PDT
  • gamertag: [none]
  • user homepage:

Positive vibes.

I was saying that I never asked before yesterday.

  • 02.03.2011 8:23 AM PDT

Five years older and wiser
The fires are burning, I'm fire, never tire
Slay warriors in the forests, and on hire

Posted by: a rascal cat
I was saying that I never asked before yesterday.

I don't care. I'm tired of your disingenuous assertions.

  • 02.03.2011 1:18 PM PDT
Subject: Script Central> Live Post Preview; uStalk Chrome App

Does anyone even read these?

Posted by: a rascal cat
I was saying that I never asked before yesterday.
What about this?

[Edited on 02.03.2011 3:58 PM PST]

  • 02.03.2011 3:53 PM PDT
  • gamertag: [none]
  • user homepage:

Hey, I'm Shane (or Metro). Feel free to message me about whatever.

Is there any way I can download the "Show Banned Users" script now that dazarobbo's userscript account seems to have been deleted?

  • 02.06.2011 5:58 PM PDT

Call me Ares

"Learning is never wrong. Even learning how to kill isn't wrong. Or right. It's just a thing to learn, a thing I can teach you." -Chade
Nothing is true but perception. Everything is permitted but a lie.

The Spartan 1 Project

I recently got a script (trying to find original creator) and what it does is after 25 seconds a screensaver for b.net comes up.
Im pretty new to this and i've made minimal changes myself.
My only problem is that the screensaver activates when the mouse does not move for 25 seconds.
Does anyone know how to include a few lines so when im typing it wont activate?

  • 02.07.2011 7:23 PM PDT
Subject: Script Central> All GM Scripts Here!

Rock Chalk Real Talk
Minnesotan, currently going to school at KU.


@Geegs30

Does anyone have the old version of the Navbar Reincarnate that was the header that stayed in place? I loved it, and I can't find a version that works with the new update.

Thanks!

  • 02.07.2011 10:25 PM PDT
Subject: Script Central> Live Post Preview; uStalk Chrome App

Left here a long time ago.

I've got a fairly decent script.

Bungie.net Tweaks
General featuresTopbar with customizable "Quick Links" menu

Forum featuresPosts have direct links to authors' Halo Service Records (if their gamertags are linked)
Posts have direct links to themselves
Posts can be collapsed, fonts tweaked for readability
When quoting, a direct link to the quoted post is automatically added

Halo: Reach File featuresErrors shown as you type when typing tags (only if enough space)

DisclaimersThis script has not been tested to ensure compatibility with other userscripts. It does not come with tech support.

  • 02.10.2011 11:36 AM PDT

Left here a long time ago.

Posted by: master of ares (post)
I recently got a script (trying to find original creator) and what it does is after 25 seconds a screensaver for b.net comes up.
Im pretty new to this and i've made minimal changes myself.
My only problem is that the screensaver activates when the mouse does not move for 25 seconds.
Does anyone know how to include a few lines so when im typing it wont activate?
Presumably, it listens for mousemove events at some point (so it knows when you're active). Edit whatever code runs that check, so that it also listens for onkeydown.

  • 02.10.2011 11:38 AM PDT

Call me Ares

"Learning is never wrong. Even learning how to kill isn't wrong. Or right. It's just a thing to learn, a thing I can teach you." -Chade
Nothing is true but perception. Everything is permitted but a lie.

The Spartan 1 Project

Posted by: DavidJCobb
Posted by: master of ares (post)
I recently got a script (trying to find original creator) and what it does is after 25 seconds a screensaver for b.net comes up.
Im pretty new to this and i've made minimal changes myself.
My only problem is that the screensaver activates when the mouse does not move for 25 seconds.
Does anyone know how to include a few lines so when im typing it wont activate?
Presumably, it listens for mousemove events at some point (so it knows when you're active). Edit whatever code runs that check, so that it also listens for onkeydown.
ill try that, thanks.

would i add another line that also listens, or edit the current line and add onkeydown to that?

[Edited on 02.10.2011 4:22 PM PST]

  • 02.10.2011 4:10 PM PDT

Left here a long time ago.

Posted by: master of ares (post)
ill try that, thanks.

would i add another line that also listens, or edit the current line and add onkeydown to that?
Depends very heavily on how they registered the event listener, and what the listener actually does.

Assuming that the listener simply sets some variable to mark the time you were last active, here are examples of how you could add it:

If they used addEventListener:
some_node.addEventListener("mousemove", theFunction, true); // original code
some_node.addEventListener("keydown", theFunction, true); // what you add

If they used jQuery bind:
//$(some_node).bind("mousemove", theFunction); // original code, delete
$(some_node).bind("mousemove keydown", theFunction); // new code

If they used jQuery event-specific functions:
//$(some_node).mousemove(theFunction); // original code, delete
$(some_node).bind("mousemove keydown", theFunction); // new code


Is the script you're editing on UserScripts.org? If so, you can PM me: remind me that I offered to help, link to the script, tell me where the code you want to change is, and I'll see if I can offer you any advice that'd be more... concrete.

[Edited on 02.10.2011 5:37 PM PST]

  • 02.10.2011 5:36 PM PDT

Call me Ares

"Learning is never wrong. Even learning how to kill isn't wrong. Or right. It's just a thing to learn, a thing I can teach you." -Chade
Nothing is true but perception. Everything is permitted but a lie.

The Spartan 1 Project

ApocalypeX wrote it.
Here is the original post. As far as i know, its not on UserScripts.

Thanks to both of you for offering too help.

[Edited on 02.10.2011 7:35 PM PST]

  • 02.10.2011 7:34 PM PDT

The source code makes me lol. If I get a chance this weekend I'll fix this mess.
Posted by: master of ares
ApocalypeX wrote it.
Here is the original post. As far as i know, its not on UserScripts.

Thanks to both of you for offering too help.

  • 02.10.2011 8:28 PM PDT

Okay I want to make a script that changes the Bungie.net background, how would I go about doing this?

  • 02.13.2011 10:25 AM PDT

Posted by: UK David T
Okay I want to make a script that changes the Bungie.net background, how would I go about doing this?
You'll need some sort of editor, and some knowledge of javascript. Been awhile since I've programmed in it, but I believe you can do a "get" statement in Javascript then replace it.

  • 02.13.2011 12:00 PM PDT

Five years older and wiser
The fires are burning, I'm fire, never tire
Slay warriors in the forests, and on hire

Posted by: Luke35120
Posted by: UK David T
Okay I want to make a script that changes the Bungie.net background, how would I go about doing this?
You'll need some sort of editor, and some knowledge of javascript. Been awhile since I've programmed in it, but I believe you can do a "get" statement in Javascript then replace it.

wat

He can just insert new CSS for the body tag.

EDIT: Do you mean a getElement* method? or GET as in AJAX?

[Edited on 02.13.2011 2:23 PM PST]

  • 02.13.2011 2:22 PM PDT

I meant getElement.

  • 02.13.2011 2:40 PM PDT

Five years older and wiser
The fires are burning, I'm fire, never tire
Slay warriors in the forests, and on hire

By the way, apocalypex.net is down and being moved. I doubt if any of my old scripts will be uploaded again when the move is done. I want a fresh start and those crappy written scripts gone, new ones will be nicer. :)

  • 02.14.2011 10:12 AM PDT

Rock Chalk Real Talk
Minnesotan, currently going to school at KU.


@Geegs30

Posted by: ApocalypeX
By the way, apocalypex.net is down and being moved. I doubt if any of my old scripts will be uploaded again when the move is done. I want a fresh start and those crappy written scripts gone, new ones will be nicer. :)

Shucks, I was just about to install some of your stuff :/

  • 02.14.2011 11:47 AM PDT
Subject: Script Central> New: Hawtbar

SAVE THE TIGERS!

Sincerely,
Anonymous

Posting tools is nice, makes things much simpler!

  • 02.19.2011 6:34 PM PDT

Call me Ares

"Learning is never wrong. Even learning how to kill isn't wrong. Or right. It's just a thing to learn, a thing I can teach you." -Chade
Nothing is true but perception. Everything is permitted but a lie.

The Spartan 1 Project

Posted by: Anonymous v1
Posting tools is nice, makes things much simpler!
Honestly, i dont like posting tools.

the code shortcuts are great and all, but i never use them. its not that difficult to do it yourself.
The quick links are distracting, but im glad those are minimized.
parse text is great, but i rarely need it.

my favorite feature (and the only one i use) is the save and load post functions.

  • 02.21.2011 4:45 PM PDT
Subject: Script Central> Live Post Preview; uStalk Chrome App

please give this halo vid a chance i worked super hard on it
www.youtube.com/NinjaSlimSnipez

  • 02.21.2011 9:34 PM PDT
Subject: Script Central> New: Hawtbar

Five years older and wiser
The fires are burning, I'm fire, never tire
Slay warriors in the forests, and on hire

Posted by: master of ares
Posted by: Anonymous v1
Posting tools is nice, makes things much simpler!
Honestly, i dont like posting tools.

the code shortcuts are great and all, but i never use them. its not that difficult to do it yourself.
The quick links are distracting, but im glad those are minimized.
parse text is great, but i rarely need it.

my favorite feature (and the only one i use) is the save and load post functions.

PT5.0

'nuff said.

  • 02.22.2011 7:35 AM PDT

Just a note to any scripters here:

Coup 5 is now open for testing, but more importantly, is open for developing. An API is exposed for anyone wanting to build a script for people to install.

Please check the Coup d'Bungie group for more info.

  • 02.22.2011 8:29 AM PDT
Subject: Script Central> All GM Scripts Here!

Call me Ares

"Learning is never wrong. Even learning how to kill isn't wrong. Or right. It's just a thing to learn, a thing I can teach you." -Chade
Nothing is true but perception. Everything is permitted but a lie.

The Spartan 1 Project

where can i find posting tools 5?

  • 02.22.2011 6:41 PM PDT