{"id":108646,"date":"2024-01-07T20:31:47","date_gmt":"2024-01-07T19:31:47","guid":{"rendered":"https:\/\/fivem-mods.net\/?post_type=product&#038;p=108646"},"modified":"2025-12-24T07:32:01","modified_gmt":"2025-12-24T06:32:01","slug":"kernkompetenzsystem","status":"publish","type":"product","link":"https:\/\/fivemx.com\/de\/core-skill-system\/","title":{"rendered":"Kern \u2013 F\u00e4higkeitensystem"},"content":{"rendered":"<div style=\"width: 100%;height: 0px;position: relative;padding-bottom: 56.250%\"><\/div>\n<div><\/div>\n<div>Config:<\/div>\n<div>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">Config = {     --- If you have a suggestions on new skills, contact us on discord and tag @burbonas\r\n\r\n    -- Command for admins to add xp \/addxp playerid amount\r\n\r\n    KeyToOpenSkillMenu = '7', --(number 7 right now)\r\n    \r\n    LevelingDifficulty = 20,--%  the difficulty to level up in [ % ]  \r\n    SkillPointsPerLevel = 1, -- how many skill points player will get EACH LEVEL UP\r\n\r\n    NotificationTimeInSeconds = 7,\r\n\r\n    RestoreDefault = {\r\n        allowRestore = true,\r\n        Name = \"Fresh Start\",\r\n        Description = \"All of the skills you have will be removed and you will start your journey again at level 0.\",\r\n        Purchase = \"This is only available once every session!\",\r\n        NoSkills = \"You have no skills to reset!\",\r\n        NotAvailable = \"You have already used your Fresh Start!\",\r\n    },\r\n\r\n    StartingSkill = {\r\n        SkillName = \"The Rise Of \", -- after \"The Rise Of \" will be a player name, it will be written automatically\r\n        SkillDescription = \"You will get 3 starting skill points, use them wisely. You will earn 1 skill point each levelup. Earn experience by working, robbing banks, shops.\", ---- YOU SHOULD CHANGE THIS PART OF HOW THEY WILL EARN XP IN YOUR SERVER\r\n        StartingSkillPoints = 2,\r\n        Purchase = 0,\r\n        image = \"mainskill\",\r\n    },\r\n\r\n\r\n\r\n    Skills = { --- ALL the explanations on SkillAbilities are in Skill Abilities Documentation file\r\n\r\n        HealthRegen1 = { --- First Top skill\r\n            ConnectLineTo = \"StartingSkill\",\r\n            SkillName = \"Health Recovery\", \r\n            SkillDescription = \"Health Regeneration, you will start regenerating 1HP every 5 seconds, the regeneration will start at 20HP or below and will stop at 40HP\",\r\n            Purchase = 1,\r\n            x = 2715, -- coordinates in px (left)\r\n            y = 1190, -- coordinates in px (top)\r\n            image = \"HealthRegen1\",\r\n            SkillAbilities = {\r\n                AddHealthRegen = { \r\n                    SpeedOfRegenerationInSeconds = 5, \r\n                    StartRegeneration = 20, \r\n                    StopRegeneration = 40, \r\n                },\r\n            },\r\n        },\r\n        StaminaSprintTime1 = { --- First Bottom Left skill\r\n            ConnectLineTo = \"StartingSkill\",\r\n            SkillName = \"Stamina Capacity\", \r\n            SkillDescription = \"You will be able to sprint 30% longer\",\r\n            Purchase = 1,\r\n            image = \"staminasprint\",\r\n            x = 2332, -- coordinates in px (left)\r\n            y = 1696, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddStaminaSprint = 5,\r\n            },\r\n        },\r\n        RunningSpeed1 = { --- First Bottom Right skill\r\n            ConnectLineTo = \"StartingSkill\",\r\n            SkillName = \"Running Speed\", \r\n            SkillDescription = \"Running Speed, you will be able to run 5% faster\",\r\n            Purchase = 1,\r\n            image = \"Speed\",\r\n            x = 3081, -- coordinates in px (left)\r\n            y = 1697, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddSpeed = 1.05,\r\n            },\r\n        },\r\n\r\n\r\n\r\n        --- Start of TOP LEFT SIDE skill tree\r\n        AddHealth1 = { \r\n            ConnectLineTo = \"HealthRegen1\",\r\n            SkillName = \"Health Shot\", \r\n            SkillDescription = \"You will unlock \/addhp command that gives you 10HP, usable every 5 minutes\",\r\n            Purchase = 1,\r\n            image = \"Health\",\r\n            x = 2487, -- coordinates in px (left)\r\n            y = 941, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddHealth = 10,\r\n            },\r\n        },\r\n        AddHealth2 = { \r\n            ConnectLineTo = \"AddHealth1\",\r\n            SkillName = \"Health Shot 2LVL\", \r\n            SkillDescription = \"The command \/addhp now will give you 20HP, usable every 5 minutes\",\r\n            Purchase = 1,\r\n            image = \"Health\",\r\n            x = 2352, -- coordinates in px (left)\r\n            y = 652, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddHealth = 20,\r\n            },\r\n        },\r\n        AddHealth3 = { \r\n            ConnectLineTo = \"AddHealth2\",\r\n            SkillName = \"Health Shot 3LVL\", \r\n            SkillDescription = \"The command \/addhp now will give you 30HP, usable every 5 minutes\",\r\n            Purchase = 2,\r\n            image = \"Health\",\r\n            x = 2479, -- coordinates in px (left)\r\n            y = 276, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddHealth = 30,\r\n            },\r\n        },\r\n        AddHealth4 = { \r\n            ConnectLineTo = \"AddHealth3\",\r\n            SkillName = \"Health Shot 4LVL\", \r\n            SkillDescription = \"The command \/addhp now will give you 50HP, usable every 5 minutes\",\r\n            Purchase = 3,\r\n            image = \"Health\",\r\n            x = 1771, -- coordinates in px (left)\r\n            y = 119, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddHealth = 50,\r\n            },\r\n        },\r\n\r\n\r\n        HealthRegen2 = { \r\n            ConnectLineTo = \"AddHealth1\",\r\n            SkillName = \"Better Health Recovery\", \r\n            SkillDescription = \"Health Regeneration, now the regeneration will start from 30HP or below to 50HP\",\r\n            Purchase = 1,\r\n            image = \"HealthRegen1\",\r\n            x = 1933, -- coordinates in px (left)\r\n            y = 833, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddHealthRegen = { \r\n                    StartRegeneration = 30, \r\n                    StopRegeneration = 50, \r\n                },\r\n            },\r\n        },\r\n        HealthRegen3 = { \r\n            ConnectLineTo = \"HealthRegen2\",\r\n            SkillName = \"Faster Health Recovery\", \r\n            SkillDescription = \"Health Regeneration, now you will get 1HP every 4 seconds\",\r\n            Purchase = 1,\r\n            image = \"HealthRegen1\",\r\n            x = 1630, -- coordinates in px (left)\r\n            y = 460, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddHealthRegen = { \r\n                    SpeedOfRegenerationInSeconds = 4, \r\n                },\r\n            },\r\n        },\r\n        HealthRegen4 = { \r\n            ConnectLineTo = \"HealthRegen3\",\r\n            SkillName = \"Better Health Recovery 2LVL\", \r\n            SkillDescription = \"Health Regeneration, now the regeneration will start from 40HP or below to 60HP\",\r\n            Purchase = 2,\r\n            image = \"HealthRegen1\",\r\n            x = 1314, -- coordinates in px (left)\r\n            y = 981, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddHealthRegen = { \r\n                    StartRegeneration = 40, \r\n                    StopRegeneration = 60, \r\n                },\r\n            },\r\n        },\r\n        HealthRegen5 = { \r\n            ConnectLineTo = \"HealthRegen4\",\r\n            SkillName = \"Better Health Recovery 3LVL\", \r\n            SkillDescription = \"Health Regeneration, now the regeneration will start from 50HP or below to 90HP\",\r\n            Purchase = 3,\r\n            image = \"HealthRegen1\",\r\n            x = 785, -- coordinates in px (left)\r\n            y = 887, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddHealthRegen = { \r\n                    StartRegeneration = 50, \r\n                    StopRegeneration = 90, \r\n                },\r\n            },\r\n        },\r\n        HealthRegen6 = { \r\n            ConnectLineTo = \"HealthRegen3\",\r\n            SkillName = \"Faster Health Recovery 2LVL\", \r\n            SkillDescription = \"Health Regeneration, now you will get 1HP every 3 seconds\",\r\n            Purchase = 2,\r\n            image = \"HealthRegen1\",\r\n            x = 1012, -- coordinates in px (left)\r\n            y = 509, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddHealthRegen = { \r\n                    SpeedOfRegenerationInSeconds = 3, \r\n                },\r\n            },\r\n        },\r\n        HealthRegen7 = { \r\n            ConnectLineTo = \"HealthRegen6\",\r\n            SkillName = \"Faster Health Recovery 3LVL\", \r\n            SkillDescription = \"Health Regeneration, now you will get 1HP every 1 seconds\",\r\n            Purchase = 3,\r\n            image = \"HealthRegen1\",\r\n            x = 412, -- coordinates in px (left)\r\n            y = 199, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddHealthRegen = { \r\n                    SpeedOfRegenerationInSeconds = 1, \r\n                },\r\n            },\r\n        },\r\n        --- END of TOP LEFT SIDE skill tree\r\n\r\n\r\n\r\n\r\n        --- START of TOP RIGHT SIDE skill tree\r\n        AddArmor1 = { \r\n            ConnectLineTo = \"HealthRegen1\",\r\n            SkillName = \"Armor Shot\", \r\n            SkillDescription = \"You will unlock \/addarmor command that gives you 10 Armor Points, usable every 5 minutes\",\r\n            Purchase = 1,\r\n            image = \"Armor\",\r\n            x = 2865, -- coordinates in px (left)\r\n            y = 941, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddArmor = 10,\r\n            },\r\n        },\r\n        AddArmor2 = { \r\n            ConnectLineTo = \"AddArmor1\",\r\n            SkillName = \"Armor Shot 2LVL\", \r\n            SkillDescription = \"The command \/addarmor now will give you 20 Armor Points, usable every 5 minutes\",\r\n            Purchase = 1,\r\n            image = \"Armor\",\r\n            x = 2741, -- coordinates in px (left)\r\n            y = 479, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddArmor = 20,\r\n            },\r\n        },\r\n        AddArmor3 = { \r\n            ConnectLineTo = \"AddArmor2\",\r\n            SkillName = \"Armor Shot 3LVL\", \r\n            SkillDescription = \"The command \/addarmor now will give you 30 Armor Points, usable every 5 minutes\",\r\n            Purchase = 2,\r\n            image = \"Armor\",\r\n            x = 3161, -- coordinates in px (left)\r\n            y = 460, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddArmor = 30,\r\n            },\r\n        },\r\n        AddArmor4 = { \r\n            ConnectLineTo = \"AddArmor3\",\r\n            SkillName = \"Armor Shot 4LVL\", \r\n            SkillDescription = \"The command \/addarmor now will give you 50 Armor Points, usable every 5 minutes\",\r\n            Purchase = 3,\r\n            image = \"Armor\",\r\n            x = 3573, -- coordinates in px (left)\r\n            y = 79, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddArmor = 50,\r\n            },\r\n        },\r\n        \r\n\r\n\r\n        ArmorRegen1 = { \r\n            ConnectLineTo = \"AddArmor1\",\r\n            SkillName = \"Armor Recovery\", \r\n            SkillDescription = \"Armor Regeneration, you will start regenerating 1 Armor Point every 5 seconds, the regeneration will start at 10 Armor or below and will stop at 30 Armor\",\r\n            Purchase = 1,\r\n            x = 3307, -- coordinates in px (left)\r\n            y = 782, -- coordinates in px (top)\r\n            image = \"ArmorRegen\",\r\n            SkillAbilities = {\r\n                AddArmorRegen = { \r\n                    SpeedOfRegenerationInSeconds = 5, \r\n                    StartRegeneration = 10, \r\n                    StopRegeneration = 30, \r\n                },\r\n            },\r\n        },\r\n        ArmorRegen2 = { \r\n            ConnectLineTo = \"ArmorRegen1\",\r\n            SkillName = \"Better Armor Recovery\", \r\n            SkillDescription = \"Armor Regeneration, now the regeneration will start from 30HP or below to 50HP\",\r\n            Purchase = 1,\r\n            image = \"ArmorRegen\",\r\n            x = 3780, -- coordinates in px (left)\r\n            y = 981, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddArmorRegen = { \r\n                    StartRegeneration = 30, \r\n                    StopRegeneration = 50, \r\n                },\r\n            },\r\n        },\r\n        ArmorRegen3 = { \r\n            ConnectLineTo = \"ArmorRegen2\",\r\n            SkillName = \"Better Armor Recovery 2LVL\", \r\n            SkillDescription = \"Armor Regeneration, now the regeneration will start from 40HP or below to 60HP\",\r\n            Purchase = 2,\r\n            image = \"ArmorRegen\",\r\n            x = 4353, -- coordinates in px (left)\r\n            y = 861, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddArmorRegen = { \r\n                    StartRegeneration = 40, \r\n                    StopRegeneration = 60, \r\n                },\r\n            },\r\n        },\r\n        ArmorRegen4 = { \r\n            ConnectLineTo = \"ArmorRegen3\",\r\n            SkillName = \"Better Armor Recovery 3LVL\", \r\n            SkillDescription = \"Armor Regeneration, now the regeneration will start from 50HP or below to 80HP\",\r\n            Purchase = 3,\r\n            image = \"ArmorRegen\",\r\n            x = 4998, -- coordinates in px (left)\r\n            y = 1021, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddArmorRegen = { \r\n                    StartRegeneration = 50, \r\n                    StopRegeneration = 80, \r\n                },\r\n            },\r\n        },\r\n        ArmorRegen5 = { \r\n            ConnectLineTo = \"ArmorRegen2\",\r\n            SkillName = \"Faster Armor Recovery\", \r\n            SkillDescription = \"Armor Regeneration, now you will get 1 Armor Point every 4 seconds\",\r\n            Purchase = 1,\r\n            image = \"ArmorRegen\",\r\n            x = 3653, -- coordinates in px (left)\r\n            y = 509, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddArmorRegen = { \r\n                    SpeedOfRegenerationInSeconds = 4, \r\n                },\r\n            },\r\n        },\r\n        ArmorRegen6 = { \r\n            ConnectLineTo = \"ArmorRegen5\",\r\n            SkillName = \"Faster Armor Recovery 2LVL\", \r\n            SkillDescription = \"Armor Regeneration, now you will get 1 Armor Point every 3 seconds\",\r\n            Purchase = 2,\r\n            image = \"ArmorRegen\",\r\n            x = 4238, -- coordinates in px (left)\r\n            y = 199, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddArmorRegen = { \r\n                    SpeedOfRegenerationInSeconds = 3, \r\n                },\r\n            },\r\n        },\r\n        ArmorRegen7 = { \r\n            ConnectLineTo = \"ArmorRegen6\",\r\n            SkillName = \"Faster Armor Recovery 3LVL\", \r\n            SkillDescription = \"Armor Regeneration, now you will get 1 Armor Point every 1 seconds\",\r\n            Purchase = 3,\r\n            image = \"ArmorRegen\",\r\n            x = 4716, -- coordinates in px (left)\r\n            y = 559, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddArmorRegen = { \r\n                    SpeedOfRegenerationInSeconds = 1, \r\n                },\r\n            },\r\n        },\r\n        --- END of TOP RIGHT SIDE skill tree\r\n\r\n\r\n\r\n\r\n\r\n        --- START of BOTTOM RIGHT SIDE skill tree\r\n        DriveCarFaster1 = {\r\n            ConnectLineTo = \"RunningSpeed1\",\r\n            SkillName = \"Driver: Beginner\", \r\n            SkillDescription = \"The skill adds 5km\/h to Top Speed of any car you drive\",\r\n            Purchase = 1,\r\n            image = \"drivingfaster1\",\r\n            x = 3244, -- coordinates in px (left)\r\n            y = 2006, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddDrivingSpeed = 5,\r\n            },\r\n        },\r\n        DriveCarFaster2 = {\r\n            ConnectLineTo = \"DriveCarFaster1\",\r\n            SkillName = \"Driver: Amatuer\", \r\n            SkillDescription = \"The skill adds 10km\/h to Top Speed of any car you drive\",\r\n            Purchase = 1,\r\n            image = \"drivingfaster1\",\r\n            x = 3001, -- coordinates in px (left)\r\n            y = 2328, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddDrivingSpeed = 10,\r\n            },\r\n        },\r\n        DriveCarFaster3 = {\r\n            ConnectLineTo = \"DriveCarFaster2\",\r\n            SkillName = \"Driver: Pro\", \r\n            SkillDescription = \"The skill adds 15km\/h to Top Speed of any car you drive\",\r\n            Purchase = 2,\r\n            image = \"drivingfaster1\",\r\n            x = 3244, -- coordinates in px (left)\r\n            y = 2616, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddDrivingSpeed = 15,\r\n            },\r\n        },\r\n        DriveCarFaster4 = {\r\n            ConnectLineTo = \"DriveCarFaster3\",\r\n            SkillName = \"Driver: Racer\", \r\n            SkillDescription = \"The skill adds 20km\/h to Top Speed of any car you drive\",\r\n            Purchase = 3,\r\n            image = \"drivingfaster1\",\r\n            x = 2746, -- coordinates in px (left)\r\n            y = 2797, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddDrivingSpeed = 20,\r\n            },\r\n        },\r\n\r\n\r\n        BoatFaster1 = {\r\n            ConnectLineTo = \"DriveCarFaster1\",\r\n            SkillName = \"Sailor: Beginner\", \r\n            SkillDescription = \"The skill adds 5km\/h to Top Speed of any boat you sail\",\r\n            Purchase = 1,\r\n            image = \"SailingFaster\",\r\n            x = 3410, -- coordinates in px (left)\r\n            y = 2304, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddBoatSpeed = 5,\r\n            },\r\n        },\r\n        BoatFaster2 = {\r\n            ConnectLineTo = \"BoatFaster1\",\r\n            SkillName = \"Sailor: Amatuer\", \r\n            SkillDescription = \"The skill adds 10km\/h to Top Speed of any boat you sail\",\r\n            Purchase = 1,\r\n            image = \"SailingFaster\",\r\n            x = 3780, -- coordinates in px (left)\r\n            y = 2344, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddBoatSpeed = 10,\r\n            },\r\n        },\r\n        BoatFaster3 = {\r\n            ConnectLineTo = \"BoatFaster2\",\r\n            SkillName = \"Sailor: Pro\", \r\n            SkillDescription = \"The skill adds 15km\/h to Top Speed of any boat you sail\",\r\n            Purchase = 2,\r\n            image = \"SailingFaster\",\r\n            x = 3860, -- coordinates in px (left)\r\n            y = 2757, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddBoatSpeed = 15,\r\n            },\r\n        },\r\n        BoatFaster4 = {\r\n            ConnectLineTo = \"BoatFaster3\",\r\n            SkillName = \"Sailor: Racer\", \r\n            SkillDescription = \"The skill adds 20km\/h to Top Speed of any boat you sail\",\r\n            Purchase = 3,\r\n            image = \"SailingFaster\",\r\n            x = 4278, -- coordinates in px (left)\r\n            y = 2570, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddBoatSpeed = 20,\r\n            },\r\n        },\r\n\r\n\r\n        RunningSpeed2 = {\r\n            ConnectLineTo = \"RunningSpeed1\",\r\n            SkillName = \"Running Speed 2LVL\", \r\n            SkillDescription = \"Running Speed, you will be able to run 15% faster\",\r\n            Purchase = 1,\r\n            image = \"Speed\",\r\n            x = 3450, -- coordinates in px (left)\r\n            y = 1709, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddSpeed = 1.15,\r\n            },\r\n        },\r\n        RunningSpeed3 = {\r\n            ConnectLineTo = \"RunningSpeed2\",\r\n            SkillName = \"Running Speed 3LVL\", \r\n            SkillDescription = \"Running Speed, you will be able to run 20% faster\",\r\n            Purchase = 2,\r\n            image = \"Speed\",\r\n            x = 3900, -- coordinates in px (left)\r\n            y = 1892, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddSpeed = 1.20,\r\n            },\r\n        },\r\n        RunningSpeed4 = {\r\n            ConnectLineTo = \"RunningSpeed3\",\r\n            SkillName = \"Running Speed 4LVL\", \r\n            SkillDescription = \"Running Speed, you will be able to run 30% faster\",\r\n            Purchase = 3,\r\n            image = \"Speed\",\r\n            x = 4146, -- coordinates in px (left)\r\n            y = 2235, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddSpeed = 1.30,\r\n            },\r\n        },\r\n\r\n        ShieldWall1 = {\r\n            ConnectLineTo = \"RunningSpeed2\",\r\n            SkillName = \"Defensive Wall\", \r\n            SkillDescription = \"Hold [Shift + CapsLock] and place a defensive wall which helps you in combat. The wall will be standing for 15 seconds and recharge after 3 minutes\",\r\n            Purchase = 1,\r\n            image = \"ShieldWall\",\r\n            x = 3923, -- coordinates in px (left)\r\n            y = 1470, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddShieldWall = { \r\n                    WallStandingTimeInSeconds = 15,\r\n                    WallRechargeTimeInSeconds = 180,\r\n                },\r\n            },\r\n        },\r\n        ShieldWall2 = {\r\n            ConnectLineTo = \"ShieldWall1\",\r\n            SkillName = \"Wall Standing Time\", \r\n            SkillDescription = \"The wall will be standing for 20 seconds instead of 15 seconds\",\r\n            Purchase = 1,\r\n            image = \"ShieldWall\",\r\n            x = 4393, -- coordinates in px (left)\r\n            y = 1749, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddShieldWall = { \r\n                    WallStandingTimeInSeconds = 20,\r\n                },\r\n            },\r\n        },\r\n        ShieldWall3 = {\r\n            ConnectLineTo = \"ShieldWall2\",\r\n            SkillName = \"Wall Standing Time 2LVL\", \r\n            SkillDescription = \"The wall will be standing for 25 seconds instead of 20 seconds\",\r\n            Purchase = 2,\r\n            image = \"ShieldWall\",\r\n            x = 4636, -- coordinates in px (left)\r\n            y = 2195, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddShieldWall = { \r\n                    WallStandingTimeInSeconds = 25,\r\n                },\r\n            },\r\n        },\r\n        ShieldWall4 = {\r\n            ConnectLineTo = \"ShieldWall3\",\r\n            SkillName = \"Wall Standing Time 3LVL\", \r\n            SkillDescription = \"The wall will be standing for 30 seconds instead of 25 seconds\",\r\n            Purchase = 3,\r\n            image = \"ShieldWall\",\r\n            x = 5142, -- coordinates in px (left)\r\n            y = 2155, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddShieldWall = { \r\n                    WallStandingTimeInSeconds = 30,\r\n                },\r\n            },\r\n        },\r\n\r\n        ShieldWall5 = {\r\n            ConnectLineTo = \"ShieldWall1\",\r\n            SkillName = \"Wall Recharge Time\", \r\n            SkillDescription = \"The wall recharge time will decrease to 2 minutes and 30 seconds instead of 3 minutes\",\r\n            Purchase = 1,\r\n            image = \"ShieldWall\",\r\n            x = 4530, -- coordinates in px (left)\r\n            y = 1390, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddShieldWall = { \r\n                    WallRechargeTimeInSeconds = 150,\r\n                },\r\n            },\r\n        },\r\n        ShieldWall6 = {\r\n            ConnectLineTo = \"ShieldWall5\",\r\n            SkillName = \"Wall Recharge Time 2LVL\", \r\n            SkillDescription = \"The wall recharge time will decrease to 2 minutes instead of 2 minutes and 30 seconds\",\r\n            Purchase = 2,\r\n            image = \"ShieldWall\",\r\n            x = 5102, -- coordinates in px (left)\r\n            y = 1579, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddShieldWall = { \r\n                    WallRechargeTimeInSeconds = 120,\r\n                },\r\n            },\r\n        },\r\n        ShieldWall7 = {\r\n            ConnectLineTo = \"ShieldWall6\",\r\n            SkillName = \"Wall Recharge Time 3LVL\", \r\n            SkillDescription = \"The wall recharge time will decrease to 1 minute instead of 2 minutes\",\r\n            Purchase = 3,\r\n            image = \"ShieldWall\",\r\n            x = 4841, -- coordinates in px (left)\r\n            y = 1831, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddShieldWall = { \r\n                    WallRechargeTimeInSeconds = 60,\r\n                },\r\n            },\r\n        },\r\n        --- END of BOTTOM RIGHT SIDE skill tree\r\n\r\n\r\n\r\n        --- START of BOTTOM LEFT SIDE skill tree\r\n\r\n        StaminaRecoveryTime1 = {\r\n            ConnectLineTo = \"StaminaSprintTime1\",\r\n            SkillName = \"Stamina Recovery\", \r\n            SkillDescription = \"You will recover stamina 30% faster\",\r\n            Purchase = 1,\r\n            image = \"staminasprint\",\r\n            x = 2124, -- coordinates in px (left)\r\n            y = 2006, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddStaminaRecovery = 3,\r\n            },\r\n        },\r\n        StaminaRecoveryTime2 = { \r\n            ConnectLineTo = \"StaminaRecoveryTime1\",\r\n            SkillName = \"Stamina Recovery 2LVL\", \r\n            SkillDescription = \"You will recover stamina 60% faster\",\r\n            Purchase = 2,\r\n            image = \"staminasprint\",\r\n            x = 1685, -- coordinates in px (left)\r\n            y = 2215, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddStaminaRecovery = 5,\r\n            },\r\n        },\r\n        StaminaRecoveryTime3 = { \r\n            ConnectLineTo = \"StaminaRecoveryTime2\",\r\n            SkillName = \"Stamina Recovery 3LVL\", \r\n            SkillDescription = \"You will recover stamina 90% faster\",\r\n            Purchase = 3,\r\n            image = \"staminasprint\",\r\n            x = 1777, -- coordinates in px (left)\r\n            y = 2635, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddStaminaRecovery = 10,\r\n            },\r\n        },\r\n\r\n        StaminaSprintTime2 = { \r\n            ConnectLineTo = \"StaminaRecoveryTime1\",\r\n            SkillName = \"Stamina Capacity 2LVL\", \r\n            SkillDescription = \"You will be able to sprint 70% longer\",\r\n            Purchase = 1,\r\n            image = \"staminasprint\",\r\n            x = 2508, -- coordinates in px (left)\r\n            y = 2304, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddStaminaSprint = 8,\r\n            },\r\n        },\r\n        StaminaSprintTime3 = { \r\n            ConnectLineTo = \"StaminaSprintTime2\",\r\n            SkillName = \"Stamina Capacity 3LVL\", \r\n            SkillDescription = \"You will be able to sprint 100% longer\",\r\n            Purchase = 2,\r\n            image = \"staminasprint\",\r\n            x = 2142, -- coordinates in px (left)\r\n            y = 2530, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddStaminaSprint = 10,\r\n            },\r\n        },\r\n        StaminaSprintTime4 = { \r\n            ConnectLineTo = \"StaminaSprintTime3\",\r\n            SkillName = \"Stamina Capacity 4LVL\", \r\n            SkillDescription = \"You will be able to sprint 200% longer\",\r\n            Purchase = 3,\r\n            image = \"staminasprint\",\r\n            x = 2447, -- coordinates in px (left)\r\n            y = 2917, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddStaminaSprint = 20,\r\n            },\r\n        },\r\n\r\n\r\n        SwimmingSpeed1 = { \r\n            ConnectLineTo = \"StaminaSprintTime1\",\r\n            SkillName = \"Swimming Speed\", \r\n            SkillDescription = \"You will be able to swim 5% faster\",\r\n            Purchase = 1,\r\n            image = \"Swimming\",\r\n            x = 1918, -- coordinates in px (left)\r\n            y = 1709, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddSwimmingSpeed = 1.05,\r\n            },\r\n        },\r\n        SwimmingSpeed2 = { \r\n            ConnectLineTo = \"SwimmingSpeed1\",\r\n            SkillName = \"Swimming Speed 2LVL\", \r\n            SkillDescription = \"You will be able to swim 15% faster\",\r\n            Purchase = 1,\r\n            image = \"Swimming\",\r\n            x = 1545, -- coordinates in px (left)\r\n            y = 1932, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddSwimmingSpeed = 1.15,\r\n            },\r\n        },\r\n        SwimmingSpeed3 = { \r\n            ConnectLineTo = \"SwimmingSpeed2\",\r\n            SkillName = \"Swimming Speed 3LVL\", \r\n            SkillDescription = \"You will be able to swim 20% faster\",\r\n            Purchase = 2,\r\n            image = \"Swimming\",\r\n            x = 1337, -- coordinates in px (left)\r\n            y = 2422, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddSwimmingSpeed = 1.20,\r\n            },\r\n        },\r\n        SwimmingSpeed4 = { \r\n            ConnectLineTo = \"SwimmingSpeed3\",\r\n            SkillName = \"Swimming Speed 4LVL\", \r\n            SkillDescription = \"You will be able to swim 30% faster\",\r\n            Purchase = 3,\r\n            image = \"Swimming\",\r\n            x = 785, -- coordinates in px (left)\r\n            y = 2288, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddSwimmingSpeed = 1.30,\r\n            },\r\n        },\r\n\r\n        UnderWaterTime1 = { \r\n            ConnectLineTo = \"SwimmingSpeed1\",\r\n            SkillName = \"UnderWater Time\", \r\n            SkillDescription = \"You will be able to stay under water 10 seconds longer\",\r\n            Purchase = 1,\r\n            image = \"underwater\",\r\n            x = 1472, -- coordinates in px (left)\r\n            y = 1485, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddUnderWaterTime = 20,\r\n            },\r\n        },\r\n        UnderWaterTime2 = { \r\n            ConnectLineTo = \"UnderWaterTime1\",\r\n            SkillName = \"UnderWater Time 2LVL\", \r\n            SkillDescription = \"You will be able to stay under water 20 seconds longer\",\r\n            Purchase = 1,\r\n            image = \"underwater\",\r\n            x = 1089, -- coordinates in px (left)\r\n            y = 1776, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddUnderWaterTime = 30,\r\n            },\r\n        },\r\n        UnderWaterTime3 = { \r\n            ConnectLineTo = \"UnderWaterTime2\",\r\n            SkillName = \"UnderWater Time 3LVL\", \r\n            SkillDescription = \"You will be able to stay under water 30 seconds longer\",\r\n            Purchase = 2,\r\n            image = \"underwater\",\r\n            x = 638, -- coordinates in px (left)\r\n            y = 1776, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddUnderWaterTime = 40,\r\n            },\r\n        },\r\n        UnderWaterTime4 = { \r\n            ConnectLineTo = \"UnderWaterTime3\",\r\n            SkillName = \"UnderWater Time 4LVL\", \r\n            SkillDescription = \"You will be able to stay under water 40 seconds longer\",\r\n            Purchase = 3,\r\n            image = \"underwater\",\r\n            x = 638, -- coordinates in px (left)\r\n            y = 1776, -- coordinates in px (top)\r\n            SkillAbilities = {\r\n                AddUnderWaterTime = 50,\r\n            },\r\n        },\r\n    },\r\n\r\n\r\n\r\n\r\n\r\n    Text = {\r\n\r\n        ['notenough'] = 'You don\\'t have enough Skill Points',\r\n        ['enough'] = 'The skill was applied Skill',\r\n\r\n        ['fullhealth'] = \"You have full Health\",\r\n        ['canuseaddhp'] = \"You can use \/addhp again\",\r\n\r\n        ['fullarmor'] = \"You have full Armor\",\r\n        ['canuseaddarmor'] = \"You can use \/addarmor again\",\r\n\r\n        ['notallowed'] = \"You are not allowed to use this command\",\r\n        ['wait5minutes'] = \"5 minutes hasn't passed\",\r\n\r\n        ['wallrecharging'] = \"Defense Wall Recharging!\",\r\n        ['wallactive'] = \"Defense Wall Active!\",\r\n    },\r\n}<\/pre>\n<p>&nbsp;<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<h2 data-topic-id=\"4858336\">Skill Tree-System mit moderner Benutzeroberfl\u00e4che (Erfahrung, Level, Skillpunkte, F\u00e4higkeiten)<\/h2>\n<p>f\u00fcr qbCore!<\/p>","protected":false},"featured_media":108647,"comment_status":"open","ping_status":"closed","template":"","meta":[],"product_brand":[2894],"product_cat":[512,2907],"product_tag":[2683],"class_list":["post-108646","product","type-product","status-publish","has-post-thumbnail","product_brand-core","product_cat-qbcore-scripts","product_cat-qbox-scripts","product_tag-core","first","instock","sale","downloadable","virtual","taxable","purchasable","product-type-simple"],"_links":{"self":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/product\/108646","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/types\/product"}],"replies":[{"embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/comments?post=108646"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/media\/108647"}],"wp:attachment":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/media?parent=108646"}],"wp:term":[{"taxonomy":"product_brand","embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/product_brand?post=108646"},{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/product_cat?post=108646"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/product_tag?post=108646"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}