FOnline: Reloaded

General => Tools and Modifications => Topic started by: mojuk on August 09, 2013, 09:59:52 am

Title: FOnline Reloaded Character Planner
Post by: mojuk on August 09, 2013, 09:59:52 am
FOnline Reloaded Character Planner

Simple version of character planner made for FOnline Reloaded.
I will make reupload and post changelog in first post every time something is fixed/reworked.

If you spot any bugs or mistakes in calculations please let me know in this topic or by pm, thanks!

Changelog:
old:
Spoiler: show
- fixed refreshing PP value on speech skill change (reported by kaincallavis),
- added info about experience needed to reach current level
- Changed Bonus HtH Damage to More HtH Criticals and HtH Criticals to Better HtH Criticals perks,
- Merged Unarmed and Melee Weapons skill into one: Close Combat,
- Odd values of Endurance give additional +1 HP each 2 levels, starting from 2nd level (additional +12 HP),
- Last character perk from levelling should be chosen until level 30, or it will be lost,
- You can no longer make chars with 0 INT by abusing bonehead trait
- Removed "Best of Bad Lot" support perk,
- Removed Fast Reload perk,
- Increased level requirement of Quick Pockets to 6.
- x5 button bugfix
- option to reset current character
- option to save screen of current character
- fixed Throwing taging after character reset (reported by Martyr)
- fixed AC calculations (reported by OdijSuppi)


New:
- Lifegiver perks changed to +40/+30/+20 from +20/+30/+40
- Boneyard quest reward changed from +15% sg to +10% sg or +10% bg or +10% ew or +10% throwing or +10% close combat
- added First Aid and Small Guns books (they give skill points like other books)


FOnline Reloaded Character Planner (http://www.fonline-reloaded.net/files/ReloadedPlanner.zip)
Title: Re: FOnline Reloaded Character Planner
Post by: Koniko on August 22, 2013, 04:53:05 pm
Nice tool.
Title: Re: FOnline Reloaded Character Planner
Post by: Kelin on August 22, 2013, 09:25:34 pm
I'm playing around with it right now, an extremely helpful tool indeed.  ;)
Title: Re: FOnline Reloaded Character Planner
Post by: DocAN on August 22, 2013, 10:05:35 pm
Some of our guys cant stop to play with it :D Exelent work Mojuk !
Title: Re: FOnline Reloaded Character Planner
Post by: kaincallavis on August 23, 2013, 02:24:20 am
Great tool.
I've already made a bunch of character templates :D
Can't decide which ones to use X_X!

One bug I noticed is that it has a hard time updating the "party points" unless you get a new perk or implant - then it updates to the correct amount.
Thanks for the tool!
-Kain
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on August 23, 2013, 08:54:29 am
One bug I noticed is that it has a hard time updating the "party points" unless you get a new perk or implant - then it updates to the correct amount.

Fixed. There was a problem with refreshing PP value on speech skill change.
Thanks for reporting.
Title: Re: FOnline Reloaded Character Planner
Post by: Strike on August 23, 2013, 08:39:19 pm
I love it :)
Title: Re: FOnline Reloaded Character Planner
Post by: DocAN on August 25, 2013, 09:33:00 am
Mojuk, some players are asking if You could add expirence bar to the FRCP.
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on August 25, 2013, 01:36:19 pm
Mojuk, some players are asking if You could add expirence bar to the FRCP.

Done. New version available to download in first post.
Title: Re: FOnline Reloaded Character Planner
Post by: apocalypseman on August 26, 2013, 12:15:49 am
For some reason the character planner does not work. It shows up as a blank JAR file.
Title: Re: FOnline Reloaded Character Planner
Post by: DocAN on August 26, 2013, 12:37:27 am
It works fine for me. Check Your version of JAVA.
Title: Re: FOnline Reloaded Character Planner
Post by: Strike on August 26, 2013, 10:32:45 am
For some reason the character planner does not work. It shows up as a blank JAR file.
I got same problem, I have latest Java version (Version 7 Update 25)
But I can't get it working since that last update.
Title: Re: FOnline Reloaded Character Planner
Post by: Kelin on August 26, 2013, 10:49:48 am
I got same problem, I have latest Java version (Version 7 Update 25)
But I can't get it working since that last update.
For me it works, Java Version 7 Update 11 installed.

By the way I have a small suggestion regarding UI ergonomics. Assigning skillpoints is somewhat cumbersome, you have to keep clicking in order to raise your skill. Even using a keyboard doesn’t help that much, you still have to press a key instead of a mouse button repeatedly. It should work like in Opera’s char planner, when you hold your mouse button it automatically increases your skill points until all points are spent. It would be much more comfortable than clicking several hundreds of times when you are planning your character.

The good news is, it shouldn’t be that hard to implement. You can use for example the javax.swing.Timer class to repeatedly perform the action (basically to call some method that increases skill points).
Code: [Select]
private Timer timer;
...
timer = new Timer(90, new ActionListener()
        {
           public void actionPerformed(ActionEvent e)
           {
           // increase skill points
           }
        });
        timer.setInitialDelay(500);
Then you just register a change listener to detect when the button is released
Code: [Select]
ButtonModel model = button.getModel();
model.addChangeListener(new ChangeListener() {
           public void stateChanged(ChangeEvent ev) {
            if (ev.getSource() instanceof ButtonModel) {
                    ButtonModel model = (ButtonModel) ev.getSource();
                     if (model.isPressed()) {
                    timer.start();
                     else {
          timer.stop();

          }
                }
              }
            });
and finally you have probably something like this already coded
Code: [Select]
button.addActionListener(this);
...
   public void actionPerformed(ActionEvent e)
    {
        if(e.getActionCommand().equals("+"))
        {
               // increase skill points
        }
        if(e.getActionCommand().equals("-"))
        {
               // decrease skill points
        }       
    }
You can just leave it without any modification I think (to let users click click click if they want to :-) ). This is of course, the way I would do it, implementation doesn’t matter what matters is a happy program user ;).

Someone may consider this as nitpicking, but I see it as a serious usability issue worth fixing.

PS: I’ve just noticed there is a +5 button that has been very inconspicuous till now. After a while of testing it seems it really sped up the whole process of point splitting, nonetheless, my bet would be maybe half of users might not even notice this button (like I did) and also there is no -5, which makes this solution hard to spot when you glance at the skills panel.

PS: PS: So my advice is to add -5 button, that will cost you less time and less effort, OR... probably a better solution, get rid of +5 button and go for the same functionality as FCP had. If you feel playful you could even include both solutions, that would be great  8)  (so it would look like -5  -  +  +5 in the planner, or make a small checkbox that will display those +-5 buttons on request, just brainstorming)
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on August 26, 2013, 01:47:51 pm
For some reason the character planner does not work. It shows up as a blank JAR file.
I got same problem, I have latest Java version (Version 7 Update 25)
But I can't get it working since that last update.

I updated my Java to latest version as you guys and had same problem. It seams that is was only an issue with bad java executables association to .jar files after update. You can try to fix it manualy or download and use this small program:
http://johann.loefflmann.net/en/software/jarfix/index.html#Download (http://johann.loefflmann.net/en/software/jarfix/index.html#Download)
I used it and now everything is working fine.

Let me know if this solved the problem.

@Kelin
Thanks for constructive notes. Don't look at code, it's not well made in many ways :P Initial idea behind this app was different than what it turned out to be.
I made this +5 button as a quick fix for "clicking problem" until I have more free time to fix it how it should be done (aka "Kelin's idea" :P).
Title: Re: FOnline Reloaded Character Planner
Post by: Kelin on August 26, 2013, 02:32:48 pm
@mojuk: I know the feeling, it starts with a small idea, then you add few more features and end up extending your code on daily basis because there is still lots to be improved. I’m glad you already thought about it and please don’t call me captain obvious  :D  because believe it or not, some people wouldn’t even think about it as something that needs to be adjusted. Anyway, now I’m much more serene when I know that the fix is coming “soon”  :P
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on August 30, 2013, 12:14:28 pm
Updated accordingly to recent changelog.

Fixed small bug with x5 button, please download new version or don't use that button :P
Sorry for inconvenience.

New update:
- Removed "Best of Bad Lot" support perk,
- Removed Fast Reload perk,
- Increased level requirement of Quick Pockets to 6.
Title: Re: FOnline Reloaded Character Planner
Post by: Herr Swindler on August 30, 2013, 10:45:15 pm
Great tool, but is there any way to save your build or am I missing something?
Title: Re: FOnline Reloaded Character Planner
Post by: baskila on August 30, 2013, 10:52:00 pm
'New Char' button would also be nice.
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on September 01, 2013, 11:42:59 am
'New Char' button would also be nice.

Added with this update.

Great tool, but is there any way to save your build or am I missing something?

Added option to save current char as image (so you do have to print screen it). File open/save option available soon.
Title: Re: FOnline Reloaded Character Planner
Post by: baskila on September 01, 2013, 12:31:27 pm
'New Char' button would also be nice.

Added with this update.


Thanks mojuk but I can't see it. Maybe you meant next update?
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on September 01, 2013, 01:34:46 pm
Top left corner, File menu, New button :)
Title: Re: FOnline Reloaded Character Planner
Post by: baskila on September 01, 2013, 07:06:29 pm
Top left corner, File menu, New button :)
damn, thanks. my perception must be around 1..  ::)
Title: Re: FOnline Reloaded Character Planner
Post by: Martyr on September 05, 2013, 11:58:23 pm
Throwing skill does not work as intended when tagged, it behaves as if it were untagged when putting skill points into it.
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on September 07, 2013, 01:31:20 pm
Throwing skill does not work as intended when tagged, it behaves as if it were untagged when putting skill points into it.

Fixed. It was a problem caused by "new" button.
Title: Re: FOnline Reloaded Character Planner
Post by: Uwierz on September 12, 2013, 11:33:56 am
Hey, In this character planner if you didnt chose perk from 24 lvl till 27 lvl You will not be able to choose it later. Do really works this way in-game? I cant choose my last perk at 40 lvl?
Title: Re: FOnline Reloaded Character Planner
Post by: Perteks on September 12, 2013, 11:37:46 am
Hey, In this character planner if you didnt chose perk from 24 lvl till 27 lvl You will not be able to choose it later. Do really works this way in-game? I cant choose my last perk at 40 lvl?
Read changelogs, yes you can't hamster it
Title: Re: FOnline Reloaded Character Planner
Post by: jacky on September 12, 2013, 11:55:06 am
please add every possible implants,  at this moment I cant find  toughness implants.
Title: Re: FOnline Reloaded Character Planner
Post by: Uwierz on September 12, 2013, 12:01:08 pm
Thx
Title: Re: FOnline Reloaded Character Planner
Post by: OdijSuppi on September 12, 2013, 02:22:34 pm
Livewire adds a wrong amount of points to Armor Class. At the moment it only gives 1,5 points to AC for each point of Agility, although it should add 3 points to AC for each point of Agility.
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on September 13, 2013, 12:17:34 pm
Livewire adds a wrong amount of points to Armor Class. At the moment it only gives 1,5 points to AC for each point of Agility, although it should add 3 points to AC for each point of Agility.

Thanks, I see the problem, but it's a bit more complex than that, will be fixed with next update, soon :)
Title: Re: FOnline Reloaded Character Planner
Post by: Caradeverga on September 13, 2013, 09:55:13 pm
Hello, people.

I know this is my first post, and i'm using it  not introducing myself on the forum, but the reason I registered is to ask a question:

How do you make the character planner work?

I'm average at pc knowledge, and I managed to understand that the files compressed in the archive should (or must) be used with Java. Well, I tried several combinations of the .MF file and the .class files, but it was futile.

Would any of you kind enough to tell me how to use it?

Thanks in advance.
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on September 13, 2013, 10:10:23 pm
Hello, people.

I know this is my first post, and i'm using it  not introducing myself on the forum, but the reason I registered is to ask a question:

How do you make the character planner work?

I'm average at pc knowledge, and I managed to understand that the files compressed in the archive should (or must) be used with Java. Well, I tried several combinations of the .MF file and the .class files, but it was futile.

Would any of you kind enough to tell me how to use it?

Thanks in advance.

You must have Java installed, you can download one from here: http://www.java.com/en/download/index.jsp (http://www.java.com/en/download/index.jsp)
In theory, you can run .jar files with double click now, if somehow it doesn't work then use this small program: http://johann.loefflmann.net/en/software/jarfix/index.html#Download (http://johann.loefflmann.net/en/software/jarfix/index.html#Download) to bind Java to .jar files.
Title: Re: FOnline Reloaded Character Planner
Post by: Caradeverga on September 13, 2013, 11:01:53 pm
Thank you for taking trouble to fast reply me.

The problem was my Java was outdated and strangely (to me), it scattered all the files in 2 folders instead of making it a single java executable.

The link you sent me worked like a miracle, so kudos to you.

Well, I'll give it a shot.

Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on September 14, 2013, 08:54:03 am
please add every possible implants,  at this moment I cant find  toughness implants.
I see no reason for this ot be honest, beside there is not place to display all resists anyway and those 2 misssing implants don't change anything important in build such as SPECIAL or HP.

Livewire adds a wrong amount of points to Armor Class. At the moment it only gives 1,5 points to AC for each point of Agility, although it should add 3 points to AC for each point of Agility.

Should be fixed now and updated version available to download in first post. Let me know if there is still anything wrong with AC calculation.

@Caradeverga
I'm glad it helped.
Title: Re: FOnline Reloaded Character Planner
Post by: OdijSuppi on September 14, 2013, 02:06:00 pm
Should be fixed now and updated version available to download in first post. Let me know if there is still anything wrong with AC calculation.
It works fine now.
Title: Re: FOnline Reloaded Character Planner
Post by: dskpnk on November 13, 2013, 02:55:32 pm
Got some problem, i can't click anywhere, for example + on special don't add +.

Title: Re: FOnline Reloaded Character Planner
Post by: merlin on December 19, 2013, 07:48:22 pm
How does one actually use the mojuk planner? What do I need to do to open or run it? I can only open it with a zip archive so far. (Am I really this dumb?)
Title: Re: FOnline Reloaded Character Planner
Post by: Strike on December 19, 2013, 07:53:48 pm
How does one actually use the mojuk planner? What do I need to do to open or run it? I can only open it with a zip archive so far. (Am I really this dumb?)
It's JAR file, you need Java for it.

Edit: If you don't mess with Java, use FCP http://forum.fonline-reloaded.net/index.php?topic=619.0 (http://forum.fonline-reloaded.net/index.php?topic=619.0)
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on April 30, 2015, 08:17:47 pm
New version of planner uploaded in first post.

Changes:
- Lifegiver perks changed to +40/+30/+20 HP from +20/+30/+40 HP,
- Boneyard quest reward changed from +15% sg to +10% sg or +10% bg or +10% ew or +10% throwing or +10% close combat,
- added First Aid and Small Guns books (they give skill points like other books - will soon appear in changelog),

Build was made using Java 8u45, so if you got problems running it try updating your Java.
Title: Re: FOnline Reloaded Character Planner
Post by: Kaaon on May 12, 2015, 04:39:58 pm
There seems to be a problem when you choose to add the Swift Learner support perk. The planner doesn't add any additional skill points upon leveling after choosing the perk.  :facepalm
swift learner is not giving skill points
Title: Re: FOnline Reloaded Character Planner
Post by: Psycroptic on May 12, 2015, 08:28:37 pm
swift learner is not giving skill points

I'm a complete idiot.

I meant EDUCATED.

I wasn't seeing an increase in skill points after choosing the Educated support perk.

I updated Java.

All is well.
Title: Re: FOnline Reloaded Character Planner
Post by: BeheGrzmotPL on July 18, 2015, 08:05:10 pm
Hello, I have some suggestions:
 
+ Add in parentheses maximum HP, so that they vary depending on the strength and endurance. Thanks to this already when selecting SPECIAL be known how many lives will be presented at the 24 level (without perks).

+ The same is true with skill cap - will know which skills is not profitable to tag
Title: Re: FOnline Reloaded Character Planner
Post by: TheFox115 on July 30, 2015, 02:25:16 am
how does this work basically you testing out various things with so you know what you want and don't want?
Title: Re: FOnline Reloaded Character Planner
Post by: Koniko on July 30, 2015, 11:00:39 am
how does this work basically you testing out various things with so you know what you want and don't want?

With this u can perdict and make yourself suitable build for your character at further levels or perhaps just for reroll. You can calculate what will be your HP & stats. You may also try counting hitchance but it's little buggy and may be diffrent from real hitchance.
Title: Re: FOnline Reloaded Character Planner
Post by: MacReady on August 11, 2015, 06:56:41 pm
How to tur on the char planer its nit exe file?
Title: Re: FOnline Reloaded Character Planner
Post by: zinthos on August 11, 2015, 07:02:41 pm
How to tur on the char planer its nit exe file?
install java
Title: Re: FOnline Reloaded Character Planner
Post by: worldremaker on October 03, 2015, 12:13:00 pm
How to tur on the char planer its nit exe file?
JAR file is executable of Java. Install latest JRE for it.
https://java.com/download/
If you have WinXP you don't have to care about notification about some not suported functions because this planner running well without them.
Title: Re: FOnline Reloaded Character Planner
Post by: runboy93 on August 24, 2017, 10:35:50 am
https://portableapps.com/apps/utilities/java_portable_launcher

+

https://portableapps.com/apps/utilities/java_portable

If you get errors, try Portable Apps platform and install those apps with that.

Fast and easiest way to run Character Planner JAR file.

btw, any plans to update character planner after next season comes?
Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on August 25, 2017, 11:56:23 am
Old one updated: NO.
New one: Yes, some ugly beta soon. Can't promise any date.
Title: Re: FOnline Reloaded Character Planner
Post by: rncr on August 30, 2017, 08:06:16 am
łoł, I can't wait to use it, but I will. Thanks for another epic contribution Mojuk.    :)

Looks like I'll be downloading Java, with high-speed Internet  8)
 
Title: Re: FOnline Reloaded Character Planner
Post by: gauvaran on September 19, 2017, 10:38:44 am
I updated Mr. Mojuk's character planner with Season 3 info : (for temporary usage)
 http://tuan.sdf.org/ReloadedPlanner.jar (http://tuan.sdf.org/ReloadedPlanner.jar)

Without any permisson ...
I very apologize ...
Please forgive me Mr. Mojuk...
I hope you will release a new tool soon...

Title: Re: FOnline Reloaded Character Planner
Post by: mojuk on September 19, 2017, 06:52:43 pm
I don't mind. I'm surprised, for me that old one was so ugly I didn't want to go back to it ;p
New one is still unfinished, can't promise any ETA yet.
Title: Re: FOnline Reloaded Character Planner
Post by: Perteks on September 21, 2017, 10:56:47 am
I updated Mr. Mojuk's character planner with Season 3 info : (for temporary usage)
 http://tuan.sdf.org/ReloadedPlanner.jar (http://tuan.sdf.org/ReloadedPlanner.jar)

Without any permisson ...
I very apologize ...
Please forgive me Mr. Mojuk...
I hope you will release a new tool soon...

Ehh not working correctly, 2 medics not one have correct requirements, livewire on 3rd lvl, no quest bonus for hth
Title: Re: FOnline Reloaded Character Planner
Post by: Dank Anel on September 21, 2017, 02:08:04 pm
I don't mind. I'm surprised, for me that old one was so ugly I didn't want to go back to it ;p
New one is still unfinished, can't promise any ETA yet.

simple is much good.
Title: Re: FOnline Reloaded Character Planner
Post by: gauvaran on September 22, 2017, 06:43:35 am
I updated Mr. Mojuk's character planner with Season 3 info : (for temporary usage)
 http://tuan.sdf.org/ReloadedPlanner.jar (http://tuan.sdf.org/ReloadedPlanner.jar)

Without any permisson ...
I very apologize ...
Please forgive me Mr. Mojuk...
I hope you will release a new tool soon...

Ehh not working correctly, 2 medics not one have correct requirements, livewire on 3rd lvl, no quest bonus for hth
Updated what you mentioned, but I dont know about Quest bonus for hth, what is it
Title: Re: FOnline Reloaded Character Planner
Post by: Perteks on September 22, 2017, 09:02:23 am
I updated Mr. Mojuk's character planner with Season 3 info : (for temporary usage)
 http://tuan.sdf.org/ReloadedPlanner.jar (http://tuan.sdf.org/ReloadedPlanner.jar)

Without any permisson ...
I very apologize ...
Please forgive me Mr. Mojuk...
I hope you will release a new tool soon...

Ehh not working correctly, 2 medics not one have correct requirements, livewire on 3rd lvl, no quest bonus for hth
Updated what you mentioned, but I dont know about Quest bonus for hth, what is it
there is quest from sad farmer (min 9 lvl) and rewars is 15 hth skill, gonna check later if its 15 sp or just skill
Title: Re: FOnline Reloaded Character Planner
Post by: Ravena on November 03, 2017, 02:02:21 pm
What is a character planner? I can't find out what it is on the wiki or the forums or anywhere is it like a character editor? if so would that be a form of cheating?
Title: Re: FOnline Reloaded Character Planner
Post by: Wichura on November 05, 2017, 08:02:19 pm
Relax your testicles son. Character planner is a tool to plan the way your character is about to be developed. On first page of this thread you have a link to download (a badly outdated now) version of it. Enjoy.
Title: Re: FOnline Reloaded Character Planner
Post by: s on November 09, 2017, 01:19:27 am
Hey, thanks for keeping this tool alive and updated

It really helps