thetwistedpanda

Untitled

Sep 6th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 5.59 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/Settings Menu (Requires sm_time_tracker_display < 0)
  10.     //  - 1: Show Top Players (Obeys sm_time_tracker_top_limit)
  11.     //  - 2: Show Current Rank
  12.     //  - 3: Show Positions
  13.     //  - 4: Show Time Played
  14.     //
  15.     "Commands"
  16.     {
  17.         "sm_timemenu"   "0"
  18.         "timemenu"      "0"
  19.  
  20.         "sm_mostactive" "1"
  21.         "mostactive"    "1"
  22.  
  23.         "sm_timerank"   "2"
  24.         "timerank"      "2"
  25.  
  26.         "sm_timeranks"  "3"
  27.         "timeranks"     "3"
  28.  
  29.         "sm_played"     "4"
  30.         "played"        "4"
  31.     }
  32.    
  33.     //* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  34.     //Special Loading Definition
  35.     //- This entry is used whenever a client's data has not loaded from the server.
  36.     //- Do not change the "Loading" entry, or delete it, as it'll break things. If you do not want
  37.     //    to utilize this feature, set values for "tag", "chat", and "text" to ""
  38.     //
  39.     "Loading"
  40.     {
  41.         "tag"       "[Loading]"
  42.         "chat"      ""
  43.         "text"      ""
  44.     }
  45.    
  46.     //* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  47.     //Position Definition
  48.     //- These entries obey the ConVar sm_time_tracker_position, determining whether the "ranks"
  49.     //    or "seconds" value is the one used.
  50.     //
  51.     //- The "chat" and "text" keys support using Colors (either colors.inc or morecolors.inc)
  52.     //  - Limit colors to 2 to 3 colors per entry; using more is not recommended.
  53.     //    - Limited to 64 characters, up to 32 belong to player's name.
  54.     //  - Supports custom values, such as #FFFFFF for white text.
  55.     //  - Also supports using {color} tags, depending on which configuration is used.
  56.     //    - CS:GO == colors.inc
  57.     //    - CS:S == morecolors.inc
  58.     //    - Comment/Uncomment #define LEGACY_COLORS to disable/enable CS:GO support.
  59.     //
  60.     //- Position Methods
  61.     //  - Method: Seconds (sm_time_tracker_position 0)
  62.     //    - Compares client's total number of seconds played against the "seconds" value for each definition.
  63.     //    - If a client has 2 hours played, and there are definitions for 3600 and 10800, the client will
  64.     //        use the definition for 3600 seconds. (2 hours == 7200 seconds == less than 10800 but greater
  65.     //        than 3600. Simple?)
  66.     //  - Method: Ranks (sm_time_tracker_position 1)
  67.     //    - Grabs the client's current rank within the server and determines what defintion to use.
  68.     //    - The "ranks" value for each definition is the highest rank to consider anyone for.
  69.     //    - If there are ranks 3 10 and 50, ranks 1-3 use the first definition, 4-10 use the second,
  70.     //        and anyone 11-50 will use the third definition.
  71.     //
  72.     //- Special Out-Of-Ranking Positions
  73.     //  - If a definition is declare with a "seconds" value of "-1" or a "ranks" value of "-1" (depending
  74.     //      what sm_time_tracker_position is set to), any player that falls outside the defined rankings
  75.     //      will receive that special position.
  76.     //  - These entries will not appear within the View Rank Positions command.
  77.     //
  78.     //- Information
  79.     //  - "info"    - Used for the Show Positions command.
  80.     //  - "tag"     - Appears in the CS:S/CS:GO Clan Tag area.
  81.     //  - "chat"    - Appears in chat infront of their name.
  82.     //  - "text"    - Color to change their text.
  83.     //  - "stars"   - Appears in the CS:S/CS:GO Scoreboard (MVP Stars).
  84.     //  - "seconds" - Total # of seconds played to achieve rank (if sm_time_tracker_position 0).
  85.     //  - "ranks"   - Highest rank eligible for position (if sm_time_tracker_position 1).
  86.     //
  87.    
  88.     //* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  89.     //Out Of Rankings
  90.     "0"
  91.     {
  92.         "info"      ""
  93.  
  94.         "tag"       "[Unranked]"
  95.         "chat"      "Unranked "
  96.         "text"      ""
  97.  
  98.         "stars"     "0"
  99.         "seconds"   "-1"
  100.         "ranks"     "-1"
  101.     }
  102.  
  103.     //* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  104.     //Ranked   
  105.     "1"
  106.     {
  107.         "info"      "Newbie"
  108.  
  109.         "tag"       "[Newbie]"
  110.         "chat"      "Newbie "
  111.         "text"      ""
  112.  
  113.         "stars"     "0"
  114.         "seconds"   "0"         //New
  115.         "ranks"     "2000"
  116.     }
  117.     "2"
  118.     {
  119.         "info"      "Casual"
  120.  
  121.         "tag"       "[Casual]"
  122.         "chat"      "Casual "
  123.         "text"      ""
  124.  
  125.         "stars"     "1"
  126.         "seconds"   "3600"      //1 Hour
  127.         "ranks"     "1000"
  128.     }
  129.     "3"
  130.     {
  131.         "info"      "Junior"
  132.  
  133.         "tag"       "[Junior]"
  134.         "chat"      "Junior "
  135.         "text"      ""
  136.  
  137.         "stars"     "2"
  138.         "seconds"   "10800"     //3 Hours
  139.         "ranks"     "750"
  140.     }
  141.     "4"
  142.     {
  143.         "info"      "Regular"
  144.  
  145.         "tag"       "[Regular]"
  146.         "chat"      "Regular "
  147.         "text"      ""
  148.  
  149.         "stars"     "3"
  150.         "seconds"   "43200"     //12 Hours
  151.         "ranks"     "500"
  152.     }
  153.     "5"
  154.     {
  155.         "info"      "Senior"
  156.  
  157.         "tag"       "[Senior]"
  158.         "chat"      "Senior "
  159.         "text"      ""
  160.  
  161.         "stars"     "4"
  162.         "seconds"   "86400"     //24 Hours
  163.         "ranks"     "250"
  164.     }
  165.     "6"
  166.     {
  167.         "info"      "Veteran"
  168.  
  169.         "tag"       "[Veteran]"
  170.         "chat"      "{green}Veteran {teamcolor}"
  171.         "text"      ""
  172.  
  173.         "stars"     "5"
  174.         "seconds"   "259200"    //3 Days
  175.         "ranks"     "100"
  176.     }
  177.     "7"
  178.     {
  179.         "info"      "Godlike"
  180.  
  181.         "tag"       "[Godlike]"
  182.         "chat"      "{green}Godlike {teamcolor}"
  183.         "text"      ""
  184.  
  185.         "stars"     "6"
  186.         "seconds"   "604800"    //1 Week
  187.         "ranks"     "50"
  188.     }
  189.     "8"
  190.     {
  191.         "info"      "Extreme"
  192.  
  193.         "tag"       "[Extreme]"
  194.         "chat"      "{green}Extreme {teamcolor}"
  195.         "text"      ""
  196.  
  197.         "stars"     "7"
  198.         "seconds"   "1209600"   //2 Weeks
  199.         "ranks"     "10"
  200.     }
  201.     "9"
  202.     {
  203.         "info"      "No-Life"
  204.  
  205.         "tag"       "[No-Life]"
  206.         "chat"      "{green}No-Life {teamcolor}"
  207.         "text"      ""
  208.  
  209.         "stars"     "7"
  210.         "seconds"   "2419200"   //1 Month
  211.         "ranks"     "10"
  212.     }
  213. }
Advertisement
Add Comment
Please, Sign In to add comment