Jump to content

16 Screenshots

  • 356.2k
  • 10.4k
  • 154.36 kB

Recommended Comments



Hello! Really sorry about! I have the tag active now!

Best Regards

Edited by Nuno Correia
Link to comment
Share on other sites
1 minute ago, Infidel said:

Permissions don't work for SkillTree?...

They work fine.
Make sure you have set the following permissions for basic use:

skilltree.chat
skilltree.tree
skilltree.xp

 

Link to comment
Share on other sites

@imthenewguy hi again, loooooove this plugin ❤️

Am I the only one not getting the "Stroke of luck" skill working?
Config is set to default. Max level (5) = Node Spawn Chance +25%.
No nodes are spawning now.
Tried with pickaxe, stone.pickaxe and icepick.salvaged.
It was working yesterday before the Rust update.

Link to comment
Share on other sites
11 hours ago, Dexta said:

@imthenewguy hi again, loooooove this plugin ❤️

Am I the only one not getting the "Stroke of luck" skill working?
Config is set to default. Max level (5) = Node Spawn Chance +25%.
No nodes are spawning now.
Tried with pickaxe, stone.pickaxe and icepick.salvaged.
It was working yesterday before the Rust update.

Also finding it does not seem to be procing. Players said something and I confirmed it doesnt seem to be working by smacking a ton of nodes. 

Edited by snapple
  • Like 1
Link to comment
Share on other sites

Yeah ive had a reports of it since last night. Was taking the night off though; have been doing a lot of plugin shit as of late lol.

Ill take a peak after the weekend and see what's going on.

  • Love 2
Link to comment
Share on other sites

Is there a way to make crafting instant when players reach max crafting?
Maybe grant a permission? or change a buff?

Edited by Gt403cyl2
Link to comment
Share on other sites
5 hours ago, Gt403cyl2 said:

Is there a way to make crafting instant when players reach max crafting?
Maybe grant a permission? or change a buff?

I don't plan on integrating instant crafting into the plugin. You could download InstantCrafting and assign the permission to the player once they achieve level 5. There is a guide to permissions on the main page.

Link to comment
Share on other sites
3 hours ago, imthenewguy said:

I don't plan on integrating instant crafting into the plugin. You could download InstantCrafting and assign the permission to the player once they achieve level 5. There is a guide to permissions on the main page.

Yeah I was thinking that I should be able to grant a perm, Thanks

Link to comment
Share on other sites
20 minutes ago, forlandoo said:

how does it work with loottable? If you already have the server set to a 2x, is there a conflict?

It will only base the yield increase off of the vanilla value.
You can use SkillTree to modify the base yield on your server, and the skills will work from those base values rather than vanilla.

 

  "Base yield settings": {
    "Allow Skill Tree to adjust the base amount of resource received? Buffs will base their modifiers off of the amended base amount.": true,
    "Yield types multipliers [1.0 = vanilla]": {
      "Wood": 1.0,
      "Stone": 1.0,
      "Metal": 1.0,
      "Sulfur": 1.0,
      "Corn": 1.0,
      "Potato": 1.0,
      "Pumpkin": 1.0,
      "Cloth": 1.0,
      "Diesel": 1.0,
      "AnimalFat": 1.0,
      "Bones": 1.0,
      "Leather": 1.0,
      "Fish": 1.0,
      "Seed": 1.0,
      "Mushroom": 1.0,
      "Berry": 1.0
    }
  },

 

Link to comment
Share on other sites
9 hours ago, Gt403cyl2 said:

Is there a way to make crafting instant when players reach max crafting?
Maybe grant a permission? or change a buff?

Sorry I must be blind, I saw the video for creating your own custom skills, but I think it's out of date?
I don't see the command to add, and the vid is not clear enough to read it...

Can you provide an example of what I would need to add to the config that I can then modify?

Link to comment
Share on other sites
11 minutes ago, Gt403cyl2 said:

Sorry I must be blind, I saw the video for creating your own custom skills, but I think it's out of date?
I don't see the command to add, and the vid is not clear enough to read it...

Can you provide an example of what I would need to add to the config that I can then modify?

out of date? It's brand new xD
The principal is the same. You simply don't adjust anything above

"permissions": {

You can have a standard buff, and still include custom permissions to run when that buff level is achieved.

The only entry under perms would be "5" then all of the info relevant to the InstantCraft plugin.

Link to comment
Share on other sites
23 minutes ago, imthenewguy said:

out of date? It's brand new xD
The principal is the same. You simply don't adjust anything above

"permissions": {

You can have a standard buff, and still include custom permissions to run when that buff level is achieved.

The only entry under perms would be "5" then all of the info relevant to the InstantCraft plugin.

Lets say I want to add the perm "instantcraft.use" to

"Expert Tinkerer": {
          "enabled": true,
          "max_level": 5,
          "tier": 3,
          "value_per_buff": 0.1,
          "buff_info": {
            "Key": "Craft_Speed",
            "Value": "Percentage"
          },
          "icon_url": "https://www.dropbox.com/s/8ibntd9n1033dh4/Expert_Tinkerer.png?dl=1",
          "skin": 2873050815,
          "permissions": null
        }

would I just change the permission from null to

"permissions": {"instantcraft.use" : "Instant Crafting"}

because I tried that and it threw an error when spending the point on the buff.

Link to comment
Share on other sites
1 hour ago, Gt403cyl2 said:

Lets say I want to add the perm "instantcraft.use" to

"Expert Tinkerer": {
          "enabled": true,
          "max_level": 5,
          "tier": 3,
          "value_per_buff": 0.1,
          "buff_info": {
            "Key": "Craft_Speed",
            "Value": "Percentage"
          },
          "icon_url": "https://www.dropbox.com/s/8ibntd9n1033dh4/Expert_Tinkerer.png?dl=1",
          "skin": 2873050815,
          "permissions": null
        }

would I just change the permission from null to

"permissions": {"instantcraft.use" : "Instant Crafting"}

because I tried that and it threw an error when spending the point on the buff.

No you would need to format it the same as the video, at least for the permissions section

 

Link to comment
Share on other sites
44 minutes ago, imthenewguy said:

No you would need to format it the same as the video, at least for the permissions section

 

Ok I got it sorted now, tbh it was kinda unclear how to go about it, I realize the video is there and it's correct, but modifying an existing snippet of the config doesn't follow the video, also the command you use in the video "Testpermsnode" didn't work for me at all.

Edited by Gt403cyl2
Link to comment
Share on other sites
10 hours ago, Gt403cyl2 said:

Ok I got it sorted now, tbh it was kinda unclear how to go about it, I realize the video is there and it's correct, but modifying an existing snippet of the config doesn't follow the video, also the command you use in the video "Testpermsnode" didn't work for me at all.

The command definitely exists. If you are using in game console it requires skilltree.admin to run. Glad you sorted it though.

7 minutes ago, The Syndicate said:

how hard would it to maybe see about like a prestiage system? with titles 

I don't understand what a prestige system is or what its purpose would be.

Link to comment
Share on other sites

do u know in like cod when u gain up to a certain level u can prestiage ur rank and maybe that might be to much work. 

Link to comment
Share on other sites
2 minutes ago, The Syndicate said:

do u know in like cod when u gain up to a certain level u can prestiage ur rank and maybe that might be to much work. 

Never really played cod. I remember it sort of from mw2 back in the day, but it was just levels with extra steps and no real difference wasn't it?

Link to comment
Share on other sites
15 minutes ago, imthenewguy said:

Never really played cod. I remember it sort of from mw2 back in the day, but it was just levels with extra steps and no real difference wasn't it?

Its not about the difference, its like updating in SkillTree.
You update to lvl 200 in skilltree than you get a certain rank like SkillStarter.
All your skill points get removed
Now you start over with the tittle SkillStarter until lvl 200 again and you get the rank SkillMaster
etc like SkillPro - SkillExpert give it some names 🙂

Link to comment
Share on other sites

I made a russian language translate, 90% in this JSON file translated, other staff ppl must translate by self in plugin xD
Can you add to archive or add link on the buttom of guide this file?
Some words not in lang file 😞 so i think every update we need translate it manualy xD
For example

 

new CuiTextComponent { Text = "CLOSE", Font = "robotocondensed-regular.ttf", FontSize = 16, Align = TextAnchor.MiddleCenter, Color = "1 1 1 1" },

Changed to
 

new CuiTextComponent { Text = "ВЫЙТИ", Font = "robotocondensed-regular.ttf", FontSize = 16, Align = TextAnchor.MiddleCenter, Color = "1 1 1 1" },

My translate not ideal, but can help for ppl that made RU servers. ( also they can change it always )
spawn node after gather node doesn't work, waiting for update ❤️ 

SkillTree.json

Link to comment
Share on other sites
10 hours ago, Watcher said:

Its not about the difference, its like updating in SkillTree.
You update to lvl 200 in skilltree than you get a certain rank like SkillStarter.
All your skill points get removed
Now you start over with the tittle SkillStarter until lvl 200 again and you get the rank SkillMaster
etc like SkillPro - SkillExpert give it some names 🙂

I've asked the dev of the Personal Wipe plugin to add wiping of Skill Tree support but he hasn't done it yet. This would achieve what you are looking for if he added it.

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Like 14
  • Love 18

User Feedback

1.3m

Downloads

Total number of downloads.

6.5k

Customers

Total customers served.

95.9k

Files Sold

Total number of files sold.

1.9m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.