Felskis Skilltree Plugin

● ARCHIVED · READ-ONLY
Started by Felski 294 posts Page 12 of 15 View original ↗
  1. Sektor said:
    Yeah it was what i thought first, but it's the same thing...

    And if I try to put a YEP_MainMenuManager and put the same code as you, I have thoses errors.

    The second error is pretty weird. Maybe try loading my plugin before the main menu manager plugin?
    Does my plugin work in a fresh project?
    Best regards,
    Felski
  2. Hi Felski, thanks for helping me.

    So, I create a new project to test from scratch.
    I put the Js in the js/plugins folder.
    create a skilltree json named Techtrees.json with a tree named "test" only one node on lane 1 column 1.

    Then in the actors menu :

    <Techtree>
    test
    </Techtree>

    And activate the js in the script menu.
    Then the game dosn't find errors but dosn't reconise the script I think.
    I really enjoy this script :kaocry:

    Best Regards.
  3. Sektor said:
    Hi Felski, thanks for helping me.

    So, I create a new project to test from scratch.
    I put the Js in the js/plugins folder.
    create a skilltree json named Techtrees.json with a tree named "test" only one node on lane 1 column 1.

    Then in the actors menu :

    <Techtree>
    test
    </Techtree>

    And activate the js in the script menu.
    Then the game dosn't find errors but dosn't reconise the script I think.
    I really enjoy this script :kaocry:

    Best Regards.

    Is there anything showing in the console? Press F8 or F12 when ingame.
    Best regards,
    Felski
  4. An Unexpected token on the FELSKI Techtree js.
  5. Sektor said:
    An Unexpected token on the FELSKI Techtree js.

    What version of my plugin are you using?
    What version is RPG Maker MV?
  6. RMMV 1.5.2
    techtree 1.3.7
  7. Sektor said:
    RMMV 1.5.2
    techtree 1.3.7

    Hey Sektor,

    the plugin only works with RPG Maker MV 1.6 or higher.
    Best regards,
    Felski
  8. Hi ! Thanks it worked.

    Thanks and sorry to bother you.
  9. Hello there! I'm having problems with the arrow graphic displaying over skills, if a skill is between a skill and it's parent.
    arrow.png

    Is there any way to fix this?
  10. Suzio Uwabami said:
    Hello there! I'm having problems with the arrow graphic displaying over skills, if a skill is between a skill and it's parent.
    View attachment 165736

    Is there any way to fix this?

    Hi @Suzio Uwabami

    I will look into this issue soon.
    Best regards,
    Felski
  11. Hi! The plugin is very good, but I use codes like:
    Code:
    \i[x]
    in the description boxes for skills to illustrate information with icons! These icons do not appear in the skill tree.
  12. Aandel said:
    Hi! The plugin is very good, but I use codes like:
    Code:
    \i[x]
    in the description boxes for skills to illustrate information with icons! These icons do not appear in the skill tree.

    Hi @Aandel,

    the i needs to be capitalized.
    Code:
    \I[x]
    should work.
    Best regards,
    Felski
  13. yes, it worked! Sorry for my inattention:aswt:
  14. Hi Felskis!
    There is a little flaw in your code so i gave it "-8" fix here:
    Clipboard02.png

    now the bgimg can fix the frame "inside" perfectly.(as shown below)
    Clipboard03.png

    The problem of the original code is: You have set the width and height equals to the bgwith and bgheight, but there is a white frame around which has a width of 4 pixels for each side(total 8 pixels)
    As a result, your bgimg will exceed to right and bottom for 8 pixels. So i add a "-8" to your variables to make it fit perfectly! cheers!
  15. I am having issues with the trees not showing up for the actor in the menu or with a plugin command. I am trying in a brand new project with no other plugins. I am not getting any errors, but it says there is no tree attached, but I am certain the notetag and identifier are the same

    -UPDATE- 1/30/21 11:55pm
    I was able to link the created warrior skill tree to Harold but only through the plugin command "ADDTECHTREE 1 warrior" in an event. The skill tree is not connected at the start of the game. Nothing shows in the skilltree menu until after I run the event.
  16. xDRAGOONx said:
    I am having issues with the trees not showing up for the actor in the menu or with a plugin command. I am trying in a brand new project with no other plugins. I am not getting any errors, but it says there is no tree attached, but I am certain the notetag and identifier are the same

    -UPDATE- 1/30/21 11:55pm
    I was able to link the created warrior skill tree to Harold but only through the plugin command "ADDTECHTREE 1 warrior" in an event. The skill tree is not connected at the start of the game. Nothing shows in the skilltree menu until after I run the event.
    Hi @xDRAGOONx
    As the error message shows, there are leading spaces before the tree uid. Get rid of the spaces infront of warrior and the trees should be attached properly.
    Best regards,
    Felski
  17. Felski said:
    Hi @xDRAGOONx
    As the error message shows, there are leading spaces before the tree uid. Get rid of the spaces infront of warrior and the trees should be attached properly.
    Best regards,
    Felski
    Ah, such as easy fix! I though I had tried this already but I guess not, thanks for your response and for you amazing plugin!


  18. Hello Felski! I want to leave all the static skills, I don't want the skills to change positions on the screen.
    I reduced the size of the nodes and tried to put 5 lines.
    But the first line never obeys the position in the uid, it is always moving up one line.
    Put the first Skill to appear on the 3rd line and it always stays on the 2nd line and then when moving between Skills it then fits in the correct position.
    But when leaving and entering again, the same happens!
    I already touched everything I got in the plugin but nothing to find a solution. Could you give me a light to resolve this?
    Here is a video of what happens:
  19. :aswt2::rolleyes:
    Sorry to bring more!
    When I place a node on line 1 and depth 1 and a node on line 2 and depth 3, for example, creating nodes diagonally, the keys are unable to go to Node 2, forcing you to use the mouse to access this Node.
  20. Hello @Felski !

    I was trying to make a node that increases the Actor's Max TP since in my project I change TP into a Stamina system.
    I tried to put $gameActors.actor(0001).gainTp(5) in the 'Run Custom Javascript Code' section but when I activate the node I get an error message :
    1615811762035.png
    I tried to do the same on a new project but the issue comes anyway. I'm not good at Javascript so maybe I'm doing something wrong ?