Skip to content

Latest commit

 

History

History
63 lines (52 loc) · 1.82 KB

README.md

File metadata and controls

63 lines (52 loc) · 1.82 KB

Hitmarker menu for CSGO

This plugin requires SourceMod

To install the plugin, follow the installation guide

Forum link

Source code

How it works

(Full video here)

hitmarker-menu-csgo-preview.mp4

Stuff:

  • addons/sourcemod/scripting/.sp - Source code
  • addons/sourcemod/plugins/.smx - Compiled plugin
  • materials/erasurf/ - Default hitmarkers I've included

Installation:

Put the .smx file into your server plugins/ folder
Move erasurf/ to your server materials/ folder. (Make sure your server's fastdl is working)

Adding more hitmarkers:

If you want to add new hitmarkers, you will have to edit and recompile the plugin
But its pretty simple, follow the example below:

char hitmarker_path[][] = {
    "",
    "erasurf/wingsmarkerv2_era",
    "erasurf/crosshair_evil_v2_eye_era",
    "erasurf/crosshair_evil_v3_era",
    "erasurf/iexhit_era",
    "erasurf/iexvermelho",
    "erasurf/hitmarker_era",
    "erasurf/hitmarker_2_era",
    "erasurf/crosshair_alliance_v1_era",
    "erasurf/hit3blue",
    "erasurf/hit4red",
    "erasurf/kimimaru_pequenov1",
    // EXAMPLE: "mycommunity/cool_hitmarker01"	// .vmt and .vtf should be here: csgo/materials/mycommunity/
};

char hitmarker_name[][] = {
    "None",
    "Era",
    "Evileye",
    "Evil",
    "iexblue",
    "iexred",
    "Karma1",
    "Karma2",
    "Alliance",
    "hit3blue",
    "hit4red",
    "kimimaru_red",
    // EXAMPLE: "Cool Hitmarker"
};

TODO:

  • Add hitmarkers via config file