DrBernhard Posted November 24, 2008 Share Posted November 24, 2008 Hi all, My 15 minutes app based on the FM2009 Scout/Editor framework. Don't expect too much, it's just a nice application which shows CA/PA/Sale value. The source is available through SVN via the FM2009 Scout/Editor framework's codepage (see the thread here on SIGames for the link). Note, values are in GBP! Screenshot Install link http://www.100procentjan.nl/fm2009/opense/publish.htm Link to post Share on other sites More sharing options...
Cin-cout Posted November 24, 2008 Share Posted November 24, 2008 brilliant, thanks DrBernhard Link to post Share on other sites More sharing options...
TheUsualSuspect9 Posted November 24, 2008 Share Posted November 24, 2008 how accurate is the ask values? Link to post Share on other sites More sharing options...
TheUsualSuspect9 Posted November 24, 2008 Share Posted November 24, 2008 how accurate is the ask values? Not great from what i can see Link to post Share on other sites More sharing options...
DJLM82 Posted November 24, 2008 Share Posted November 24, 2008 TUS9, the -1 is when a user team's player does not have a value set. It's normal and all scout tools from previous versions are like this. The sale value is specified within FM itself, not a guesswork of this tool, or any other scout tool Link to post Share on other sites More sharing options...
TheUsualSuspect9 Posted November 24, 2008 Share Posted November 24, 2008 TUS9, the -1 is when a user team's player does not have a value set. It's normal and all scout tools from previous versions are like this. The sale value is specified within FM itself, not a guesswork of this tool, or any other scout tool I know -1 is when a value is not set but with the tools i used for FM 08 they gave a pretty accurate reading of home much i would have to pay for a player, whereas on the tools for FM 09 they are not accurate Link to post Share on other sites More sharing options...
Kris Posted November 24, 2008 Share Posted November 24, 2008 Good app and well done on releasing it via a svn/open source. Not like Graeme Kellys pregame editor (easy dig) Link to post Share on other sites More sharing options...
DrBernhard Posted November 24, 2008 Author Share Posted November 24, 2008 Good app and well done on releasing it via a svn/open source.Not like Graeme Kellys pregame editor (easy dig) Well just created it as show off for the Framework ;-) literally 15 minutes of work. Link to post Share on other sites More sharing options...
DJLM82 Posted November 24, 2008 Share Posted November 24, 2008 Hi, Sorry to bother, but seeing as I always ask for scout tools, I'm trying to give a go myself, I'm a self-learner but need a couple of right directions to start :-) I downloaded all the framework stuff and opened the OpenSE project in Visual Studio. Let's say I want to add another field there which will show, let's say, the current player's club, or position. How would I go about doing that? I've tried copying and pasting one of the existing fields (the fitness one) and changed "FitnessLabel" to "PositionLabel" assuming this would show the position, but it just stood there saying "loading..." Can you give me a tip in the right direction please? Thanks a lot. Link to post Share on other sites More sharing options...
DrBernhard Posted November 24, 2008 Author Share Posted November 24, 2008 You have to doubleclick the form to switch to code-view. Look now for the 'public void UpdateData(Player player)' which now says: public void UpdateData(Player player) { CALabel.Text = player.CurrentPlayingAbility.ToString(); PALabel.Text = player.PotentialPlayingAbility.ToString(); ValueLabel.Text = string.Format("{0:N}", player.Value).Replace(",00", ""); SaleValueLabel.Text = string.Format("{0:N}", player.SaleValue).Replace(",00", ""); FitnessLabel.Text = player.Fitness.ToString(); } Now assume you've added a label named 'ClubLabel'; add the following line of code to the above statement ClubLabel.Text = player.Team.Club.Name.ToString(); so the statement becomes: public void UpdateData(Player player) { CALabel.Text = player.CurrentPlayingAbility.ToString(); PALabel.Text = player.PotentialPlayingAbility.ToString(); ValueLabel.Text = string.Format("{0:N}", player.Value).Replace(",00", ""); SaleValueLabel.Text = string.Format("{0:N}", player.SaleValue).Replace(",00", ""); FitnessLabel.Text = player.Fitness.ToString(); ClubLabel.Text = player.Team.Club.Name.ToString(); } Link to post Share on other sites More sharing options...
DJLM82 Posted November 24, 2008 Share Posted November 24, 2008 Great. Thanks for your help. Where would I find all "commands" that can be entered/searched? Link to post Share on other sites More sharing options...
DrBernhard Posted November 24, 2008 Author Share Posted November 24, 2008 Great. Thanks for your help. Where would I find all "commands" that can be entered/searched? Just type in player and then a dot (.), all attributes will then show. Note that for some properties you have to type another dot after the propertyname, for example player.TechnicalAbilties.Freekick; it's pretty clear after a few minutes. You can have a look in the SampleApp for some more examples of nice code. (Search for certain players, etc.) Good luck! Link to post Share on other sites More sharing options...
megafan2005 Posted November 24, 2008 Share Posted November 24, 2008 thought id have a look at the code for this since my other attempt failed but no such luck the code isnt working correctly when opened. Link to post Share on other sites More sharing options...
TheUsualSuspect9 Posted November 24, 2008 Share Posted November 24, 2008 can we have a download link? Link to post Share on other sites More sharing options...
DrBernhard Posted November 24, 2008 Author Share Posted November 24, 2008 Look in first post. Link to post Share on other sites More sharing options...
Tottiseiya Posted November 25, 2008 Share Posted November 25, 2008 Great. Thanks. Link to post Share on other sites More sharing options...
Knightsy Posted November 25, 2008 Share Posted November 25, 2008 Great. Thanks. Er how does this work in game? I have FM running in windowed mode, opened the 'OpenSE' and it is just saying loading in all the boxes. Do I need to do something else?? Thanks in Advance Link to post Share on other sites More sharing options...
Cadijk van Kaarhandel Posted November 25, 2008 Share Posted November 25, 2008 Knightsy when you go on to a Player Profile it should load up the values. Link to post Share on other sites More sharing options...
SWFC4eva Posted November 25, 2008 Share Posted November 25, 2008 Is there any way to make this stay on top of all windows? Link to post Share on other sites More sharing options...
afroturf2 Posted November 25, 2008 Share Posted November 25, 2008 Can you please tell me how i would make this brilliant little thing run on top of my full-screen game, like Mini-SE does? Somethings wrong with my resolution and it wont let me run in windowed mode. Top work, by the way DrBernhard. Link to post Share on other sites More sharing options...
Magic75 Posted November 25, 2008 Share Posted November 25, 2008 Can you please tell me how i would make this brilliant little thing run on top of my full-screen game, like Mini-SE does?Top work, by the way DrBernhard. Seconded! That is all that i would ever want from scouting tool PA/CA/Always on top I wish i knew enough to do it myself Link to post Share on other sites More sharing options...
manc101 Posted November 25, 2008 Share Posted November 25, 2008 Er how does this work in game? I have FM running in windowed mode, opened the 'OpenSE' and it is just saying loading in all the boxes. Do I need to do something else??Thanks in Advance Wait, Its Loading. Link to post Share on other sites More sharing options...
DrBernhard Posted November 25, 2008 Author Share Posted November 25, 2008 Always on top would be pretty easy, just setting the form's TopMost property to true. If any developer has some spare time tomorrow, please add and republish :-) I won't have time until this weekend. Link to post Share on other sites More sharing options...
Magic75 Posted November 26, 2008 Share Posted November 26, 2008 Always on top would be pretty easy, just setting the form's TopMost property to true.If any developer has some spare time tomorrow, please add and republish :-) I won't have time until this weekend. Will it stay "always on top" with full screen game? If so, that would be fantastic... Link to post Share on other sites More sharing options...
megafan2005 Posted November 26, 2008 Share Posted November 26, 2008 DrBernhard I cannot play with the source files as it wont compile Error 1 Unable to find manifest signing certificate in the certificate store. OpenSE Link to post Share on other sites More sharing options...
Force Posted November 26, 2008 Share Posted November 26, 2008 If you want it to stay on top, download 'Actual Title Buttons' - it's a program that adds buttons onto top bar, and you can even make it more transparent. Program is a 60day trial, but I guess a new release of this will be made sooner. It's not ideal, but it's the best you can do right now. Hope this makes the program more enjoyable to use Link to post Share on other sites More sharing options...
SWFC4eva Posted December 20, 2008 Share Posted December 20, 2008 Any chance this will be updated to work with the new patch? Link to post Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.