Иконка ресурса

CSDM Menu 1.1.0

Нет прав для скачивания
Installation:
  1. Place files on the server according to the archive hierarchy.
  2. Compile the plugin.
  3. Copy the compiled plugin to the /amxmodx/plugins.
  4. Register the plugin in the file amxmodx/configs/plugins.ini.
  5. Place CSDM_Menu.json in /addons/amxmodx/configs/
  6. Customize settings in the JSON file.

    CSDM_Menu.json:
    JSON:
    {
        "settings": {
            "vault_name": "csdm_menu",          // nVault file name.
            "vault_obsolete_days": 30,          // Number of days before player settings are automatically removed from vault
            "hud_hs_position": {
                "x": -1.0,                      // X/Y position for headshot HUD text
                "y": 0.22
            },
            "hud_hs_color": [150, 30, 30],      // RGB color for headshot HUD text [Red, Green, Blue]
            "hud_kills_position": {
                "x": 0.95,                      // X/Y position for kills HUD text
                "y": 0.22
            },
            "hud_kills_color": [150, 30, 30],   // RGB color for kill counter [Red, Green, Blue]
            "fade_color": [0, 200, 75],         // RGB color for fade effect [Red, Green, Blue]
            "menu_commands": [                  // List of commands that should toogle menu
                "say /settings",
                "nightvision",
                "say /menu"
            ],
            "bonus_max_hp": 100.0,              // Maximum bonus HP that can be given to a player
            "bonus_hp_normal": 0.0,             // Bonus HP that is given to a player when they kill someone
            "bonus_hp_hs": 15.0                 // Bonus HP that is given to a player when they kill someone with a headshot
        }
    }
Назад
Верх