thetwistedpanda

Untitled

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