My Brute Forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.



 
HomeSearchLatest imagesRegisterLog in
Registration DOES NOT need an email verification.
Welcome to the biggest MyBrute forum on the internet.
Look at the sections' stickies: you'll find there everything you need to know about the game!

 

 Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)

Go down 
+5
Bust
Jazz™
thorax
Jill Sandwich
ShadoFlame
9 posters
AuthorMessage
ShadoFlame
* *
* *
ShadoFlame


Posts : 11
Join date : 2009-04-17

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeFri 17 Apr 2009, 21:05

When run, and in the arena, if you click on a player you will be directed to his profile (useful for seeing if player is good or not).

Code:
// ==UserScript==
// @name          MyBrute
// @description    Replaces brutes' names by their url in arena to help you see their profile. 
// @namespace      aivean.com
// @version        0.1
// @include        http://*.mybrute.com/arene
// @include        http://*.mybrute.com/arene/*
// ==/UserScript==

var allnames = document.getElementsByTagName("div");
       for(var i=0; i<allnames.length; i++){
           var nameEl = allnames[i];
           if(nameEl.getAttribute("class") == "name" ){
              var name = nameEl.innerHTML;
              var link = document.createElement('a');
            link.setAttribute('href', 'http://'+name+'.mybrute.com/cellule/');
            link.setAttribute('target', '_blank');
            link.setAttribute('onclick', 'return false;');
            link.innerHTML = name;
            nameEl.innerHTML = "";
            nameEl.insertBefore(link, null);

-ShadoFlame
Back to top Go down
Jill Sandwich
Forum Mod
Forum Mod
Jill Sandwich


Posts : 1690
Join date : 2009-04-14
Age : 35
Location : Tranquility Lane

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeFri 17 Apr 2009, 22:32

Very nice! This will prove useful. Too bad I know nothing of scripts, but useful this is!
Back to top Go down
thorax
* * * * * * *
* * * * * * *
thorax


Posts : 275
Join date : 2009-04-17

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeFri 17 Apr 2009, 23:27

Oh brilliant script. How do we use it lol. I am an idiot at this stuff
Back to top Go down
http://thoraxgfx.webs.com
Jazz™
* * * * * * * * * *
* * * * * * * * * *
Jazz™


Posts : 1219
Join date : 2009-04-15
Age : 30
Location : Philippines

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeSun 19 Apr 2009, 11:07

save it on notepad and save as

"anything.bat"

am i correct?
Back to top Go down
https://www.facebook.com/jazzy052
Bust
* *
* *



Posts : 11
Join date : 2009-04-13

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeSun 19 Apr 2009, 14:44

Wrong . You need a firefox plugin called GreaseMonkey for this
Back to top Go down
thorax
* * * * * * *
* * * * * * *
thorax


Posts : 275
Join date : 2009-04-17

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeMon 20 Apr 2009, 11:18

Nice job. Did you make it?
Back to top Go down
http://thoraxgfx.webs.com
rockhunter75
* * *
* * *



Posts : 27
Join date : 2009-04-20

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeTue 21 Apr 2009, 19:53

Please explain in more detail how to use this.
Back to top Go down
Jazz™
* * * * * * * * * *
* * * * * * * * * *
Jazz™


Posts : 1219
Join date : 2009-04-15
Age : 30
Location : Philippines

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeWed 06 May 2009, 08:43

hahha now i know.. i already installed this on my brute thanks ^^
Back to top Go down
https://www.facebook.com/jazzy052
Meathook
*
*



Posts : 1
Join date : 2009-05-05

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeWed 06 May 2009, 11:00

hmm.. I can't get it to work. In the arena, it says that the script is enabled.. but when I challange a brute, his name is not replaced with a link to his profile..?

Edit:Actually, on the http://*.mybrute.com/vs/* page, it says that "no scripts installed!" in greasemonkey plugin.


Edit: Nevermind. OP failed to explain that you need to install it from userscripts website: http://userscripts.org/scripts/show/46302
Back to top Go down
bruniitho5
* *
* *
bruniitho5


Posts : 13
Join date : 2009-05-31
Age : 29

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeFri 03 Jul 2009, 04:47

thanks men
Back to top Go down
http://fachitaa.labrute.fr/cellule
Yaboirobby
* * * * * * * * * * *
* * * * * * * * * * *
Yaboirobby


Posts : 4322
Join date : 2009-05-21
Age : 28
Location : Atlanta, GA

Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitimeFri 03 Jul 2009, 12:12

Nice bro, that could prove helpful later ☀
Back to top Go down
http://mybrute-nomercy.webs.com/
Sponsored content





Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Empty
PostSubject: Re: Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)   Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY) Icon_minitime

Back to top Go down
 
Useful Script For Player Profile (GREASEMONKEY REQUIRED - FIREFOX ONLY)
Back to top 
Page 1 of 1
 Similar topics
-
» New Greasemonkey script
» [Rel] Pupil Linkifier Greasemonkey Script
» Need to change my email address in Profile...
» just wondering why isnt there a link to your brute on ur profile
» Greasemonkey Help

Permissions in this forum:You cannot reply to topics in this forum
My Brute Forum :: Guides & Info :: Cheats & Scripts-
Jump to: