Raised This Month: $32 Target: $400
 8% 

Make a countdown in the center of the screen


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
proffs
Senior Member
Join Date: Jul 2013
Old 07-14-2015 , 13:13   Make a countdown in the center of the screen
Reply With Quote #1

How could I make a simple countdown in the middle of the screen for every player?
Let say I want to create a 60 seconds countdown.


I am not familiar with sourcemod, I am a developer of AMX.
I would love to get some help on this part!
__________________
proffs is offline
TheUnderTaker
Senior Member
Join Date: Dec 2013
Location: Israel
Old 07-14-2015 , 14:00   Re: Make a countdown in the center of the screen
Reply With Quote #2

Making one for you, when It ready you'll get a pm.
__________________
SourcePawn, C# and C++ Programmer.

My plugin list
TheUnderTaker is offline
ecca
Sexy Santa
Join Date: Jan 2011
Old 07-14-2015 , 14:50   Re: Make a countdown in the center of the screen
Reply With Quote #3

Don't post compiled files, it is against the rules. Attach the sourcecode.
__________________
ecca is offline
ESK0
BANNED
Join Date: May 2014
Location: Czech Republic
Old 07-14-2015 , 15:34   Re: Make a countdown in the center of the screen
Reply With Quote #4

Here you go.
PHP Code:
#pragma semicolon 1
#include <sourcemod>

bool countdown false;
float coutdown_startime;

public 
Plugin:myinfo = {
    
name "",
    
author "",
    
description "",
    
version "1.0",
};

public 
OnPluginStart()
{
  
RegConsoleCmd("sm_countdown"Event_CountDown);
}
public 
Action Event_CountDown(int clientint args)
{
  if(
client 0)
  {
    
countdown true;
    
coutdown_startime GetGameTime();
  }

}
public 
OnGameFrame()
{
  if(
countdown)
  {
    
float delay 60.0;
    
float timeleft coutdown_startime GetGameTime() + delay;
    if(
timeleft 0.01)
    {
      
PrintHintTextToAll("CountDown: %0.1f"timeleft);
      
countdown false;
    }
  }


Last edited by ESK0; 07-14-2015 at 15:35.
ESK0 is offline
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 16:16.


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