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

Timeleft x and execute


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
TrullSin
Senior Member
Join Date: Jun 2018
Old 12-09-2018 , 16:10   Timeleft x and execute
Reply With Quote #1

What is the best away to when the timeleft is like 2 minutes, execute a ServerCommand?
For CS:GO
TrullSin is offline
Mr.Freeman
Senior Member
Join Date: Nov 2013
Location: Canada
Old 12-09-2018 , 16:56   Re: Timeleft x and execute
Reply With Quote #2

Two minutes left on roundtime or maptime?
__________________
Feel Free to PM me about any questions, I'll do my best to help
Mr.Freeman is offline
TrullSin
Senior Member
Join Date: Jun 2018
Old 12-09-2018 , 17:09   Re: Timeleft x and execute
Reply With Quote #3

Roundtime
TrullSin is offline
iskenderkebab33
Senior Member
Join Date: Jun 2018
Old 12-09-2018 , 17:21   Re: Timeleft x and execute
Reply With Quote #4

maybe this can help you https://forums.alliedmods.net/showthread.php?p=2369937
iskenderkebab33 is offline
Mr.Freeman
Senior Member
Join Date: Nov 2013
Location: Canada
Old 12-09-2018 , 18:32   Re: Timeleft x and execute
Reply With Quote #5

You can fetch the round time, OnRoundStart, start a timer equal too the (roundtime - freezetime - 60 seconds)?
__________________
Feel Free to PM me about any questions, I'll do my best to help
Mr.Freeman is offline
TrullSin
Senior Member
Join Date: Jun 2018
Old 12-14-2018 , 11:19   Re: Timeleft x and execute
Reply With Quote #6

PHP Code:
#pragma semicolon 1

#include <sourcemod>
#include <sdktools>
#include <sdkhooks>
#include <cstrike>

float g_flNextTimeleft 0.0;
int g_flTimeleft 120;

public 
void OnPluginStart() {
  
ConVar hTimeleft CreateConVar("timeleft""120""When timeleft hit this time it will execute the command");
  if (
hTimeleft == INVALID_HANDLE) {
    
SetFailState("CreateConVar failed");
  }
  
AutoExecConfig(true);

  
g_flTimeleft GetConVarInt(hTimeleft);
  
delete hTimeleft;

  
HookEvent("round_start"OnRoundStartEventHookMode_Post);
}

public 
void OnRoundStart(Event event, const char[] namebool dontBroadcast) {
  
g_flNextTimeleft GetGameTime() + float(GameRules_GetProp("m_iRoundTime") - g_flTimeleft);
}

public 
Action Timeleft(int client) {
    if (
GetGameTime() < g_flNextTimeleft) {
      
ServerCommand("exec normal.cfg");
    } else {
    }

Cant figure it out why not executing.. Prob doing something wrong
TrullSin is offline
Mr.Freeman
Senior Member
Join Date: Nov 2013
Location: Canada
Old 12-15-2018 , 14:12   Re: Timeleft x and execute
Reply With Quote #7

Quote:
Originally Posted by TrullSin View Post
PHP Code:
#pragma semicolon 1

#include <sourcemod>
#include <sdktools>
#include <sdkhooks>
#include <cstrike>

float g_flNextTimeleft 0.0;
int g_flTimeleft 120;

public 
void OnPluginStart() {
  
ConVar hTimeleft CreateConVar("timeleft""120""When timeleft hit this time it will execute the command");
  if (
hTimeleft == INVALID_HANDLE) {
    
SetFailState("CreateConVar failed");
  }
  
AutoExecConfig(true);

  
g_flTimeleft GetConVarInt(hTimeleft);
  
delete hTimeleft;

  
HookEvent("round_start"OnRoundStartEventHookMode_Post);
}

public 
void OnRoundStart(Event event, const char[] namebool dontBroadcast) {
  
g_flNextTimeleft GetGameTime() + float(GameRules_GetProp("m_iRoundTime") - g_flTimeleft);
}

public 
Action Timeleft(int client) {
    if (
GetGameTime() < g_flNextTimeleft) {
      
ServerCommand("exec normal.cfg");
    } else {
    }

Cant figure it out why not executing.. Prob doing something wrong

after a quick glance there is no timer creation not KillTimer function. all you have done on g_flNextTimeleft is assign it a value.
__________________
Feel Free to PM me about any questions, I'll do my best to help
Mr.Freeman is offline
Reply


Thread Tools
Display Modes

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 15:44.


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