Jump to content

Helpful Scripts (Tamper/Greasemonkey)


listerman

Recommended Posts

There's a script so you can find out the learning speed mate I just can't find it

 

you dont need a script, you just need to look up the value and you got your learning speed.

 

But i liked what wolf said somewhere on this matter. If your fighter goes from -- to + he has very good learning speed. The Skill SNapshot thing would give you right away the value. Otherwise you need to rightlick on the bar and get the % and multipy 0,(prozent in there) it then with 150. Then you have the value/number as well.

 

All just tho if you do a 1on1 session on an untrained skill and where you only put in 1 point at creation.

 

But as i said i liked wolf explenation somewhere.

  • Upvote 3
Link to comment
Share on other sites

Guys please help after two years of not having it i finally got tamper monkey i did all the above scripts so thanks for them, im trying to find any more like the learning speed one can anyone help

 

In the OP, it's the 4th script 'Skill Snapshot Extractor' get that one then go to http://www.mmatycoon.com/mystatssnapshot.php and there should be a load of numbers telling you the exact value of each skill. through which you can find the learning speed of your fighter.

 

 

And what Bob says is right if you don't need an exact number just a rough estimate. -- to + can be anywhere from 5.1 to something like 6.5 so can be good or average. -- to ++ is the fastest and -- to - is horrifically slow

  • Like 1
  • Upvote 2
Link to comment
Share on other sites

 

In the OP, it's the 4th script 'Skill Snapshot Extractor' get that one then go to http://www.mmatycoon.com/mystatssnapshot.php and there should be a load of numbers telling you the exact value of each skill. through which you can find the learning speed of your fighter.

 

 

And what Bob says is right if you don't need an exact number just a rough estimate. -- to + can be anywhere from 5.1 to something like 6.5 so can be good or average. -- to ++ is the fastest and -- to - is horrifically slow

It wasn't the number I was after I want to see if my fighter can learn any more on that skill if it's still going up as from 14-15 takes a lot of time but my guy not popped for about a month so wanted to know.

Thanks for the infor guys

Link to comment
Share on other sites

It wasn't the number I was after I want to see if my fighter can learn any more on that skill if it's still going up as from 14-15 takes a lot of time but my guy not popped for about a month so wanted to know.

Thanks for the infor guys

 

this is already on the site itself.

 

here http://mmatycoon.com/assistant_skill_progress.php

Link to comment
Share on other sites

  • 1 month later...
  • 3 weeks later...

Anyone else have the stat extractor script suddenly stop working? It shows that it is enabled in Tamper Monkey but it's not working for me anymore. It worked just a couple weeks ago.

 

I was just looking for learning speeds myself and it no longer works - thought I was alone with this issue. Already tried installing the script again but no luck

Link to comment
Share on other sites

Turns out the script needed for the skills snapshot to work is no longer available. Since that script is only used to test fighters learning speed, I will (when I get the chance, don't hold your breath) create a new script that will make it easier to test learning speed. It will be similar, but will be extremely simple.

 

Will let you guys know when I work on this.

  • Upvote 4
Link to comment
Share on other sites

Turns out the script needed for the skills snapshot to work is no longer available. Since that script is only used to test fighters learning speed, I will (when I get the chance, don't hold your breath) create a new script that will make it easier to test learning speed. It will be similar, but will be extremely simple.

 

Will let you guys know when I work on this.

 

Sweet :) Thanks Listerman!

Link to comment
Share on other sites

Turns out the script needed for the skills snapshot to work is no longer available. Since that script is only used to test fighters learning speed, I will (when I get the chance, don't hold your breath) create a new script that will make it easier to test learning speed. It will be similar, but will be extremely simple.

 

Will let you guys know when I work on this.

Sounds great! ;) THanks man. You are the best!

Link to comment
Share on other sites

Guess who found some free time today?

 

The script I promised is up and ready to test out. Havn't had much time to test it, and I havn't tested on Firefox, but it seems to be running fine on Chrome at least.

 

Basically, it adds a text that explains what to do on the page http://www.mmatycoon.com/mystatssnapshot.php

 

All it does is, you click on the colored bar of the skill you want to check, and it gives you the exact number. Pretty simple really.

  • Upvote 4
Link to comment
Share on other sites

Guess who found some free time today?

 

The script I promised is up and ready to test out. Havn't had much time to test it, and I havn't tested on Firefox, but it seems to be running fine on Chrome at least.

 

Basically, it adds a text that explains what to do on the page http://www.mmatycoon.com/mystatssnapshot.php

 

All it does is, you click on the colored bar of the skill you want to check, and it gives you the exact number. Pretty simple really.

 

Goddamn awesome stuff and gave me a good laugh just now :D

 

0d68cdcb99fb984ce2752c106e8b7dd3.png

  • Upvote 1
Link to comment
Share on other sites

I'm still rollilng an old version of the hype/pop counter that I've been editing for ages that includes more... stuff--morale, energy, manager hype, etc. Hopefully this is helpful. (c:

// ==UserScript==
// @name           MMA Tycoon Org Fighter Hype/Pop Extractor
// @namespace      http://www.tycoontools.com/greasemonkey-scripts
// @description    This script shows the exact hype and popularity values of fighters in your org, on the Fighter List and Full Fighter List pages.
// @include        http://www.mmatycoon.com/orgfighterlistpublic.php*
// @include        http://mmatycoon.com/orgfighterlistpublic.php*
// @include        http://www.mmatycoon.com/orgfighterlist.php*
// @include        http://mmatycoon.com/orgfighterlist.php*
// @include        http://www.mmatycoon.com/orgfighterlistfull.php*
// @include        http://mmatycoon.com/orgfighterlistfull.php*
// @version        1.1
// @copyright      2010
// @require        http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js
// ==/UserScript==

function Main() {
    // add the header to each weight-level table
    jQuery("strong:contains('Hype')").parent("td").after("<td><strong>Hype + Pop Value</strong></td>");

    // for each hype&pop bar, get the value & add the column with it as the value
    jQuery("td[background*='images/bar']")
        .each(
            function () {
                var hypeValue = jQuery(this).attr("width").replace("%", "");
                hypeValue = (hypeValue * 10).toFixed(2);
                jQuery(this).parent("tr").parent("tbody").parent("table").parent("td").after("<td>" + hypeValue + "</td>");
            }
        );
}

Main();

I can only confirm this works in FF.

Link to comment
Share on other sites

Guess who found some free time today?

 

The script I promised is up and ready to test out. Havn't had much time to test it, and I havn't tested on Firefox, but it seems to be running fine on Chrome at least.

 

Basically, it adds a text that explains what to do on the page http://www.mmatycoon.com/mystatssnapshot.php

 

All it does is, you click on the colored bar of the skill you want to check, and it gives you the exact number. Pretty simple really.

 

Works with Firefox, thanks for the script

Link to comment
Share on other sites

  • 2 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...