PDA

View Full Version : Plugin for NO TIE


Grafitosky
11-26-2020, 10:57
If one of the teams does not die, then it is a draw and if no one is lost throughout the game, the map will not be changed i need help!

GsiX
11-26-2020, 11:06
If one of the teams does not die, then it is a draw and if no one is lost throughout the game, the map will not be changed i need help!

But there is only one map in Red Dead Redemption 2.
How did you change the map?

Grafitosky
11-26-2020, 11:21
But there is only one map in Red Dead Redemption 2.
How did you change the map?

Map is changing from UMC_MAPCYCLE - rtv, nextmap...
And I'll explain the problem more.
If the time ends, it is a draw(tie) on the table, he writes 0:0 and if in the next round there is a draw(tie) again, it will be 0: 0 and it can be like this forever. What can I do with this?

GsiX
11-26-2020, 11:26
Ahhh.. the game is CSGO.
I have short it out for you. Wait a little bit.
It probably only cvar.. people always can come up with solutions.

SSheriFF
11-26-2020, 12:49
Map is changing from UMC_MAPCYCLE - rtv, nextmap...
And I'll explain the problem more.
If the time ends, it is a draw(tie) on the table, he writes 0:0 and if in the next round there is a draw(tie) again, it will be 0: 0 and it can be like this forever. What can I do with this?

try
https://forums.alliedmods.net/showpost.php?p=2608716&postcount=7

GsiX
11-27-2020, 04:16
try
https://forums.alliedmods.net/showpost.php?p=2608716&postcount=7

i actually found this same link yesterday but my lack of knowledge in the game itself made me shy away.

So @SSheriFF, what happen if i modify the end round result? will the game end or continue?
Teach me senpai.

I do not have the game installed.. not CSS not GO.. so have no clue to find out other then asking.. :oops::oops:

Grafitosky
11-27-2020, 06:57
try
https://forums.alliedmods.net/showpost.php?p=2608716&postcount=7


the round does not end with this

SSheriFF
11-27-2020, 09:49
the round does not end with this

Thats the result you wanted to get, am i wrong?

Grafitosky
11-27-2020, 11:13
Thats the result you wanted to get, am i wrong?
I use google translator because im bad in english and maybe that's why it came out so badly you understood me, I want some team to get a point instead of a tie, is it possible?

freak.exe_uLow
11-27-2020, 13:11
I use google translator because im bad in english and maybe that's why it came out so badly you understood me, I want some team to get a point instead of a tie, is it possible?

try this translator: https://www.deepl.com/de/translator

SSheriFF
11-27-2020, 13:13
I use google translator because im bad in english and maybe that's why it came out so badly you understood me, I want some team to get a point instead of a tie, is it possible?
not tested
public Action CS_OnTerminateRound(float& delay, CSRoundEndReason& reason)
{
if(reason == CSRoundEnd_Draw)
reason = CSRoundEnd_CTWin; //use "CSRoundEnd_TerroristWin" to make the T's win the round
return Plugin_Changed;
}