Page cover image

πŸ’ͺTalents

Documentation relating to the lumen_talents

Installation

  • Works with RedEM:RP / VORP / RSG . Be sure you installed one of them before to use this script.

  • You need to have 1 utility scripts. These will be provided by discord

    • redemrp_menu_base

  • Drag and drop the resource in your resources folder

    • lumen_talents

  • Add this ensure in your server.cfg below under all utility scripts

    • ensure lumen_talents

  • Edit the config.lua to make sure to customize the code

If you have any questions, please contact our lumen works discord.

Framework

Config.framework = "redemrp"

You can set the framework you need. The available options are "redemrp" , "vorp" or "rsg

Language

Config.Text = {
    [1] = "See Talents",
    [2] = "Assign Points",
    [3] = "Reset points",
    [4] = "Talents",
    [5] = "Yes",
    [6] = "No",
    [7] = "You will be kicked from the <br> server to apply the changes",
    [8] = "Attribute reset granted, will be kicked out in 10 seconds",
    [9] = "Attributes reset granted, please reconnect to see changes",
    [10] = "Assigned Points ",
    [11] = "Press [ENTER] for + Information",
    [12] = "Reset Attributes",
    [13] = "Confirm the action",
    [14] = "Level ",
    [15] = "You currently have ",
    [16] = "points in use",
    [17] = "You don't have enough points available",
    [18] = "Maximum points achieved in this category",
    [19] = "You cannot assign so many points, it exceeds the limit of 8",
    [20] = "Points added",
    [21] = "You do not have the required job to be able to use this talent",
    [22] = "You do not have administration permissions",
    [24] = "Available Points: ",

}
Config.MenuSkills = {
    [1] = {label = "Health", image = "https://cdn.discordapp.com/attachments/1005069974227923044/1155138930287587328/vida2.png", requirementsJob = {}, text = "Increases the maximum life permanently"},
    [2] = {label = "Energy", image = "https://cdn.discordapp.com/attachments/1005069974227923044/1155138911279001741/energia.png", requirementsJob = {}, text = "Increases the maximum stamina permanently"},
    [3] = {label = "Health regeneration", image = "https://cdn.discordapp.com/attachments/1005069974227923044/1155138912734429206/regeneracion_de_vida_2.png", requirementsJob = {"doctor"}, text = "Increases life regeneration. This attribute is reserved for doctor jobs"},
    [4] = {label = "Stamina Regeneration", image = "https://cdn.discordapp.com/attachments/1005069974227923044/1155138912424042636/Regeneracion_de_energia.png", requirementsJob = {"police"}, text = "Increases stamina regeneration. At rank 8 unlocks an extra boost when crouching. This attribute is reserved for police jobs"},
    [5] = {label = "Weapon damage", image = "https://cdn.discordapp.com/attachments/1005069974227923044/1155138911576793208/potencia_de_fuego2.png", requirementsJob = {}, text = "Increases damage when a projectile hits the target"},
    [6] = {label = "Damage resistance", image = "https://cdn.discordapp.com/attachments/1005069974227923044/1155138910670827680/resistencia_al_dano_2.png", requirementsJob = {}, text = "Increases total defense against all incoming damage. At rank 8 the bonus is increased when the player is in cover"},
    [7] = {label = "Stealth", image = "https://cdn.discordapp.com/attachments/1005069974227923044/1155138932258906212/sigilono.png", requirementsJob = {"doctor","police"}, text = "Decreases the distance at which animals can detect you. At rank 8, the Eagle Eye skill is unlocked"},
    [8] = {label = "Accuracy", image = "https://cdn.discordapp.com/attachments/1005069974227923044/1155138911891374100/precision_2.png", requirementsJob = {}, text = "Decreases bullet dispersion when firing a weapon. At rank 8 unlocks increased projectile damage if the player shoots from a mount"},

}

Here you can see the available menu skills

  • label : It is the name of the skill.

  • image: Here you can add an image as an icon.

  • requirementsJob : You can specify which jobs can raise this skill (example: {"police","doctor"} ). If you leave it empty {} all players will be able to use it

  • text : Description of the skill

Notifications

Config.notifyServer = function(text,src)
    TriggerClientEvent('redem_roleplay:ShowObjective',src, text, 4000)
end

Config.notifyClient = function(text)
    TriggerEvent('redem_roleplay:ShowObjective', text, 4000)
end

You can set your custom notification system here, by default redemrp is added

Skil Data

Config.SkillData = {
    ["regHealt"] = {base = 0},
    ["stealth"] = {base = 0.1},
    ["accuracy"] = {base = 0.1},
    ["regEnergy"] = {base = 0, extra = 1},
    ["armor"] = {base = 0.05, extra = 0.05},
    ["damage"] = {base = 0.1, extra = 0.1},
}

Here you can change the power of each skill. Be careful with adding very high values ​​since some skills are very sensitive and can greatly disrupt the game.

  • base : Indicates the increase of the attribute for each assigned point (up to a maximum of 8)

  • extra : Indicates the increase of the attribute upon reaching the maximum points (8 points)

Warning !! Be careful with adding very high values ​​since some skills are very sensitive and can greatly disrupt the game.

Custom Api (dev mode)

If you need to add in another script experience or level, you can use this event on server side, I show you below how to add it.

In your script, locate the area of the code where the money or reward is added, and also add this small line of code

TriggerEvent("lumen_talents:setCustomServerSide",src,TYPE,QUANTITY)

This adds 2 level directly to the player, just change the number of levels you want. If the number is negative it will subtract levels.

You can also set a fixed amount regardless of what the player previously had with this code

Example

TriggerEvent("lumen_talents:addCustomServerSide",src,"nivel",2)
TriggerEvent("lumen_talents:setCustomServerSide",src,"nivel",2)

For experience points, replace the word "nivel" with "exp"

Last updated