43 coaches online • Server time: 00:14
Forum Chat
Log in
Recent Forum Topics goto Post Chaos Draft League R...goto Post anyone know how to c...goto Post Elf Draft Coach
SearchSearch 
Post new topic   Reply to topic
View previous topic Log in to check your private messages View next topic
Bytez0r



Joined: May 28, 2005

Post   Posted: Oct 12, 2006 - 18:09 Reply with quote Back to top

hmm, im too much of a rookie computer guy to get that working.. i unzipped it - tried to look threw the posts here, cant seem to find anyone with the same problem, maybe im just too dumb right now ?

its unzipped in the javabb folder.. - anyone have an idear whats wrong?

figured it out - my winrar opened the jbbr.jar before, found the javaplayer and run it that way Smile
tenpole



Joined: Sep 07, 2006

Post   Posted: Nov 10, 2007 - 21:28 Reply with quote Back to top

Has anyone updated this. I cant get new positional's to work
Barre



Joined: Aug 09, 2003

Post   Posted: Dec 12, 2007 - 01:41 Reply with quote Back to top

I spent about 5 minutes yesterday hacking up a little ZIP file getter for replays. So if you meet the following requirements it might make your life a little easier:

1. You are using Firefox
2. You have the GreaseMonkey plug-in installed.

If you have the above then the following code should work for you.

Code:
var regex = /FUMBBL\.php.*\page=match\.*\&id=([0-9]+)/;
var matches = regex.exec(window.location.href);
if ( matches != null ) {
   var gId = matches[1];
   if(confirm('Download the replay ZIP file?')) {
      window.location = 'http://fumbbl.com/results/' + gId.substring(0, (gId.length - 4)) + '/' + gId + '.zip';
   }
}


To add this in GreaseMonkey just right click on the monkey icon -> Add new script, fill in the details you want, this script works globally so you can just put * in the includes field. Then paste in the code above.

This is just a hack so if you feel like it improve at will.

How it works
Go to any result screen in FUMBBL and you will be prompted via a javascript 'confirm' window to download the ZIP file, if you click 'OK' the browser will be redirected to the ZIP file and the regular download dialogue should appear.

Note: Be wary of new lines in the code snippet, there should be 8 lines only
Rthrth



Joined: May 05, 2004

Post   Posted: Dec 24, 2007 - 18:48 Reply with quote Back to top

Let me suggest to correct the first line to this:

Code:
var regex = /FUMBBL\.php.*\page=match.*\&id=([0-9]+)/;


It is necessary to work the script for both
Code:

http://fumbbl.com/FUMBBL.php?page=match&id=nnnnnnn
http://fumbbl.com/FUMBBL.php?page=match&op=view&id=nnnnnnn

style match windows.

_________________
www.tar.hu/bloodbowl/index.htm
JMOxx75



Joined: Dec 27, 2007

Post   Posted: Jan 03, 2008 - 04:03 Reply with quote Back to top

I was wondering if there was a way to turn off the highlighted TZ's on replays?

Ok i found it in the settings ini it just didn't work the first time because both settings have to be set to no?
Vorkaaz



Joined: Apr 11, 2007

Post   Posted: Jan 06, 2008 - 03:23 Reply with quote Back to top

Anyone else encounter this problem
Everytime I tried to load a game either via local or web
I always get an error


    Parse Error
    java.lang.Exception:[Line 57] Team 1 Name: <any team name>
Colin



Joined: Aug 02, 2003

Post   Posted: Jan 11, 2008 - 20:00 Reply with quote Back to top

Vorkaaz wrote:
Anyone else encounter this problem
Everytime I tried to load a game either via local or web
I always get an error


    Parse Error
    java.lang.Exception:[Line 57] Team 1 Name: <any team name>


I'm getting this error too:

Image

It used to work, but I've fiddled around with Java updates - could this be particular to one Java version?

_________________
Join The Cult of Tzeentch, mutate randomly! | Hug a newb! Join the Faculty of Academy Instructors!
Purplegoo



Joined: Mar 23, 2006

Post   Posted: Jan 11, 2008 - 20:05 Reply with quote Back to top

Same for me. Used to work a treat, doesn’t now. And frankly, the patches and updates aren’t as pretty as the original, so I'm loath to upgrade. Sad
TRagedy



Joined: Jan 18, 2008

Post 17 Posted: Jan 31, 2008 - 01:06 Reply with quote Back to top

After much research I have found Lincoln's FBB Website. Its in French , but just download the zip
It worked great for me. He has done a good job.

Java BlodBowl Replay 2 Beta : FBB Edition

http://www.e411-music.be/static/fbb/jbbreplay2.html

Thanks Rynkky and Lincoln , great job ![/i]
Falesh



Joined: Aug 02, 2003

Post   Posted: Feb 10, 2008 - 20:06 Reply with quote Back to top

Nice one TRagedy, I was having trouble with the old version and the one in your link works perfectly.

_________________
Image
PhrollikK



Joined: Nov 04, 2006

Post   Posted: Feb 10, 2008 - 20:08 Reply with quote Back to top

Tried it out yesterday and it worked a treat!

_________________
Visit my MiniCity
Mega Punk!
Malicious Rex, Daemon Adoptable
Laviak



Joined: Jul 19, 2004

Post   Posted: Feb 01, 2009 - 02:24 Reply with quote Back to top

For any that are interested in the actual fix, I finally got around to actually having a look at the source.

The problem occurs with the skilllist "&nbsp;" (i.e. no skills on the player).
bb/util/HTMLTeamReader.java wrote:

bb/util/HTMLTeamReader.java - starting on line 188:
Code:
    void setPlayerSkills( Player p, String skillList )
       {
        String ss[] = skillList.split( "," );
        for( int i = 0; i < ss.length; i++ )
            {
            ss[ i ] = ss[ i ].trim();
            if( ss[ i ].length() > 0 )
                {


Change:
Code:
                p.skills().addSkill( Skill.forName( ss[ i ] ) );

to
Code:
                Skill s = Skill.forName( ss[ i ] );
                if( s != null)
                    {
                    p.skills().addSkill( s );
                    }


(The remainder of the function follows)
Code:
                }
            }
        }


_________________
We Fink Wer Orks
--------
Help save blood bowl, foul an elf today!.
Alf115



Joined: Aug 17, 2005

Post   Posted: Mar 20, 2009 - 13:58 Reply with quote Back to top

So, now, with LRB5 online client and this one, you are telling us that the 2 Bbowl softs are being maintained by french guys. Woot.
Display posts from previous:     
 Jump to:   
All times are GMT + 1 Hour
Post new topic   Reply to topic
View previous topic Log in to check your private messages View next topic