Raised This Month: $51 Target: $400
 12% 

[CS:S]Map Time


Post New Thread Reply   
 
Thread Tools Display Modes
Author
WeSTMan
New Member
Join Date: Jun 2014
Plugin ID:
4253
Plugin Version:
Plugin Category:
General Purpose
Plugin Game:
Any
Plugin Dependencies:
    Servers with this Plugin:
     
    Plugin Description:
    Old 06-24-2014 , 06:02   [CS:S]Map Time
    Reply With Quote #1

    Plugin Name: Map Time
    Version: 1.1
    Author: WeSTMan
    Attached Files
    File Type: 7z MapTime v1.1.7z (3.1 KB, 350 views)
    WeSTMan is offline
    OcC
    Senior Member
    Join Date: Mar 2012
    Location: Romania
    Old 06-24-2014 , 12:02   Re: [CS:S]Map Time
    Reply With Quote #2

    would not hurt more detailed
    __________________
    OcC is offline
    Send a message via Yahoo to OcC
    OcC
    Senior Member
    Join Date: Mar 2012
    Location: Romania
    Old 10-28-2016 , 23:49   Re: [CS:S]Map Time
    Reply With Quote #3

    PHP Code:
    #define PLUGIN_VERSION "1.1"
    new HoursMinutesSeconds;

    public 
    Plugin:myinfo = {
        
    name "MapTime",
        
    author "WeSTMan",
        
    description "Time Map by WeSTMan",
        
    version PLUGIN_VERSION,
        
    url ""
    };

    public 
    OnPluginStart()
    {
        
    RegAdminCmd("sm_maptime"CMD_TimeMapADMFLAG_GENERIC);
    }

    public 
    OnMapStart()
    {
        
    Hours 0;
        
    Minutes 0;
        
    Seconds 0;
        
    CreateTimer(1.0TimeMapOne_TIMER_REPEAT|TIMER_FLAG_NO_MAPCHANGE);
    }

    public 
    Action:CMD_TimeMap(clientargs)
    {    
        
    PrintToChat(client"\x04[MapTime] \x01Сыграно \x04%d \x01час(ов), \x04%d\x01 минут(ы) и \x04%d\x01 секунд(ы)."HoursMinutesSeconds);
        return 
    Plugin_Handled;
    }

    public 
    Action:TimeMapOne(Handle:timer)
    {
        
    Seconds += 1;
        if (
    Seconds == 60)
        {
            
    Seconds 0;
            
    Minutes += 1;
        }
        if (
    Minutes == 60)
        {
            
    Minutes 0;
            
    Hours += 1;
        }
        return 
    Plugin_Continue;

    __________________
    OcC is offline
    Send a message via Yahoo to OcC
    Reply



    Posting Rules
    You may not post new threads
    You may not post replies
    You may not post attachments
    You may not edit your posts

    BB code is On
    Smilies are On
    [IMG] code is On
    HTML code is Off

    Forum Jump


    All times are GMT -4. The time now is 02:55.


    Powered by vBulletin®
    Copyright ©2000 - 2024, vBulletin Solutions, Inc.
    Theme made by Freecode