. . . Posted July 8, 2025 Share Posted July 8, 2025 Is there some way to check if a character uses the insight point mechanic for unlocking skills and stuff, some tag ideally Link to comment https://forums.kleientertainment.com/forums/topic/166882-is-there-a-tag-that-characters-that-can-use-the-insight-level-up-feature-have/ Share on other sites More sharing options...
E100Pavel Posted July 8, 2025 Share Posted July 8, 2025 (edited) As far as I can tell, there isn't a clean way to check if character has a skilltree. The closest thing is ThePlayer.components.skilltreeupdater:GetActivatedSkills() (it seems to be a rare component that's available on the client), but it only works if player actually activated a skill. As for the dirty way, what I came up with is: local skilltree_data = require("prefabs/skilltree_defs") local has_skill_tree = skilltree_data.SKILLTREE_DEFS[ThePlayer.prefab] ~= nil Edited July 8, 2025 by E100Pavel typos Link to comment https://forums.kleientertainment.com/forums/topic/166882-is-there-a-tag-that-characters-that-can-use-the-insight-level-up-feature-have/#findComment-1826103 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now