rtv: Neon still doesnt like digits
+ print to all when rtv is enabled after initial delay of map start or rtv vote
This commit is contained in:
parent
9eb7ced18c
commit
4643f44cb1
@ -269,6 +269,7 @@ void AttemptRTV(int client)
|
|||||||
public Action Timer_DelayRTV(Handle timer)
|
public Action Timer_DelayRTV(Handle timer)
|
||||||
{
|
{
|
||||||
g_RTVAllowed = true;
|
g_RTVAllowed = true;
|
||||||
|
PrintToChatAll("[RTVE] RockTheVote is available now!");
|
||||||
}
|
}
|
||||||
|
|
||||||
void StartRTV()
|
void StartRTV()
|
||||||
@ -401,8 +402,8 @@ public Action Command_DebugRTV(int client, int args)
|
|||||||
int iVotesNeededTotal = iVotesNeededSteam + iVotesNeededNoSteam;
|
int iVotesNeededTotal = iVotesNeededSteam + iVotesNeededNoSteam;
|
||||||
|
|
||||||
ReplyToCommand(client, "[RTVE] Currently %d Players needed to start a RTV vote.", iVotesNeededTotal);
|
ReplyToCommand(client, "[RTVE] Currently %d Players needed to start a RTV vote.", iVotesNeededTotal);
|
||||||
ReplyToCommand(client, "[RTVE] Calculated on %d Active Steam Players * %f Ratio = %d", iVotersSteam, GetConVarFloat(g_Cvar_Steam_Needed), iVotesNeededSteam);
|
ReplyToCommand(client, "[RTVE] Calculated on %d Active Steam Players * %.2f Ratio = %d", iVotersSteam, GetConVarFloat(g_Cvar_Steam_Needed), iVotesNeededSteam);
|
||||||
ReplyToCommand(client, "[RTVE] + on %d Active No Steam Players * %f Ratio = %d.", iVotersNoSteam, GetConVarFloat(g_Cvar_NoSteam_Needed), iVotesNeededNoSteam);
|
ReplyToCommand(client, "[RTVE] + on %d Active No Steam Players * %.2f Ratio = %d.", iVotersNoSteam, GetConVarFloat(g_Cvar_NoSteam_Needed), iVotesNeededNoSteam);
|
||||||
|
|
||||||
return Plugin_Handled;
|
return Plugin_Handled;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user