thetwistedpanda

Untitled

Sep 5th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 4.70 KB | None | 0 0
  1. "Timer.Rankings"
  2. {
  3.     //* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4.     //Command Definitions
  5.     //- You can define your own commands here to access plugin features (up to 32 different commands).
  6.     //- Commands that are prefixed with "sm_" will automatically generate ! and / versions.
  7.     //- Each command must be defined one of the actions below:
  8.     //- Actions:
  9.     //  - 0: Show Cookie Menu (Requires timer_ranks_display_method == -1)
  10.     //  - 1: Show Top Players (Obeys timer_ranks_limit_top_players)
  11.     //  - 2: Show Current Rank (Obeys timer_ranks_global_messages)
  12.     //  - 3: Show Rank Positions
  13.     //  - 4: Show Map Worth
  14.     "Commands"
  15.     {
  16.         "sm_rankmenu"   "0"
  17.         "rankmenu"      "0"
  18.  
  19.         "sm_top10"      "1"
  20.         "top10"         "1"
  21.  
  22.         "sm_rank"       "2"
  23.         "rank"          "2"
  24.  
  25.         "sm_ranks"      "3"
  26.         "ranks"         "3"
  27.  
  28.         "sm_points"     "4"
  29.         "points"        "4"
  30.     }
  31.    
  32.     //* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  33.     //Special Loading Definition
  34.     //- This entry is used whenever a client's data has not loaded from the server.
  35.     //- Do not change the "Loading" entry, or delete it, as it'll break things. If you do not want
  36.     //    to utilize this feature, set values for "tag", "chat", and "text" to ""
  37.     "Loading"
  38.     {
  39.         "tag"       "[Loading]"
  40.         "chat"      ""
  41.         "text"      ""
  42.     }
  43.    
  44.     //* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  45.     //Rank Position Definition
  46.     //- These entries obey the ConVar timer_ranks_position_method, determining whether the "ranks"
  47.     //    or "points" value is the one used.
  48.     //
  49.     //- The "chat" and "text" keys support using Colors (either colors.inc or morecolors.inc)
  50.     //  - Limit colors to 2 to 3 colors per entry; using more is not recommended.
  51.     //  - Supports custom values, such as #FFFFFF for WHITE
  52.     //  - Also supports using {color} tags, depending on which configuration is used.
  53.     //    - CS:GO == colors.inc
  54.     //    - CS:S == morecolors.inc
  55.     //
  56.     //- Functionality for timer_ranks_position_method
  57.     //  - Method: Points (timer_ranks_position_method 0)
  58.     //    - Compares client's total number of points against the "points" value for each definition.
  59.     //    - If a client has 50 points, and definitions are 10, 30, and 80, the client will use the
  60.     //        definition for 30 points, as > 30 but < 80.
  61.     //  - Method: Ranks (timer_ranks_position_method 1)
  62.     //    - Grabs the client's current rank within the server and determines what defintion to use.
  63.     //    - The "ranks" value for each definition is the highest rank to consider anyone for.
  64.     //    - If there are ranks 3 10 and 50, ranks 1-3 use the first definition, 4-10 use the second,
  65.     //        and anyone 11-50 will use the third definition. If no other definitions are defined,
  66.     //        all other players are considered out of rankings and receive no tag.
  67.     //
  68.     //- Special Out-Of-Ranking Positions
  69.     //  - If a definition is declare with a "points" value of "-1" or a "ranks" value of "-1" (depending
  70.     //      what timer_ranks_position_method is set to), any player that falls outside the defined rankings
  71.     //      will receive that special position.
  72.     //  - These entries will not appear within the View Rank Positions command.
  73.    
  74.     //* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  75.     //Out Of Rankings
  76.     "0"
  77.     {
  78.         "info"      ""
  79.  
  80.         "tag"       "[Unranked]"
  81.         "chat"      "Unranked "
  82.         "text"      ""
  83.  
  84.         "stars"     "0"
  85.         "points"    "-1"
  86.         "ranks"     "-1"
  87.     }
  88.  
  89.     //* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  90.     //Ranked   
  91.     "1"
  92.     {
  93.         "info"      "Newbie"
  94.  
  95.         "tag"       "[Newbie]"
  96.         "chat"      "Newbie "
  97.         "text"      ""
  98.  
  99.         "stars"     "0"
  100.         "points"    "0"
  101.         "ranks"     "-1"
  102.     }
  103.     "2"
  104.     {
  105.         "info"      "Casual"
  106.  
  107.         "tag"       "[Casual]"
  108.         "chat"      "Casual "
  109.         "text"      ""
  110.  
  111.         "stars"     "1"
  112.         "points"    "15"
  113.         "ranks"     "1000"
  114.     }
  115.     "3"
  116.     {
  117.         "info"      "Regular"
  118.  
  119.         "tag"       "[Regular]"
  120.         "chat"      "Regular "
  121.         "text"      ""
  122.  
  123.         "stars"     "2"
  124.         "points"    "1000"
  125.         "ranks"     "750"
  126.     }
  127.     "4"
  128.     {
  129.         "info"      "Veteran"
  130.  
  131.         "tag"       "[Veteran]"
  132.         "chat"      "Veteran "
  133.         "text"      ""
  134.  
  135.         "stars"     "3"
  136.         "points"    "2500"
  137.         "ranks"     "500"
  138.     }
  139.     "5"
  140.     {
  141.         "info"      "Pro"
  142.  
  143.         "tag"       "[Pro]"
  144.         "chat"      "Pro "
  145.         "text"      ""
  146.  
  147.         "stars"     "4"
  148.         "points"    "7500"
  149.         "ranks"     "250"
  150.     }
  151.     "6"
  152.     {
  153.         "info"      "Expert"
  154.  
  155.         "tag"       "[Expert]"
  156.         "chat"      "Expert "
  157.         "text"      ""
  158.  
  159.         "stars"     "5"
  160.         "points"    "20000"
  161.         "ranks"     "100"
  162.     }
  163.     "7"
  164.     {
  165.         "info"      "Godlike"
  166.  
  167.         "tag"       "[Godlike]"
  168.         "chat"      "Godlike "
  169.         "text"      ""
  170.  
  171.         "stars"     "6"
  172.         "points"    "50000"
  173.         "ranks"     "50"
  174.     }
  175.     "8"
  176.     {
  177.         "info"      "Extreme"
  178.  
  179.         "tag"       "[Extreme]"
  180.         "chat"      "Extreme "
  181.         "text"      ""
  182.  
  183.         "stars"     "7"
  184.         "points"    "100000"
  185.         "ranks"     "10"
  186.     }
  187. }
Advertisement
Add Comment
Please, Sign In to add comment