Page 1 of 2

Tie

Posted: Sun Oct 23, 2011 1:51 pm
by Noobasaurus
Is it impossible to have a tie in a game? Or when the two last people on either team shoot each other at the same time one randomly gets defeat?

Re: Tie

Posted: Sun Oct 23, 2011 3:02 pm
by Marvel4
I don't think that's possible. One of them will die first, even if it's just a difference of 1 ms.

Re: Tie

Posted: Sun Oct 23, 2011 3:04 pm
by Noobasaurus
Marvel4 wrote:I don't think that's possible. One of them will die first, even if it's just a difference of 1 ms.
Hm. There is still an extremely small chance...but I don't think they ever made a title that says "TIE". :|

Re: Tie

Posted: Sun Oct 23, 2011 5:45 pm
by Teancum
In the astronomical event of a tie the game *could* also take into account number of deaths per team. The one with the least would win. Don't think the LUA code does that though. Nevertheless in the game's six years I've never heard of anyone even mentioning a tie. If it's measured in milliseconds then it's impossible. The chance of such is a fraction so small I can't even imagine it.

Re: Tie

Posted: Sun Oct 23, 2011 5:50 pm
by Noobasaurus
Teancum wrote:In the astronomical event of a tie the game *could* also take into account number of deaths per team. The one with the least would win.
The one with the least deaths? That is basically how many reinforcements you deplete until it is 1v1. So I don't see how the number of deaths could influence a tie not being a tie...unless it was unlimited reinforcements...
Teancum wrote:The chance of such is a fraction so small I can't even imagine it.
Perhaps a test...
Hidden/Spoiler:
And a nice and small chance.

Re: Tie

Posted: Sun Oct 23, 2011 6:35 pm
by skelltor
I think it just says victory for whatever side your on because when I use FC victory teams 1 & 2 it says victory for me.

Re: Tie

Posted: Sun Oct 23, 2011 8:57 pm
by Teancum
skelltor wrote:I think it just says victory for whatever side your on because when I use FC victory teams 1 & 2 it says victory for me.
I just checked, and that's correct. Directly from the LUA code:

CONQUEST

Code: Select all

function ObjectiveConquest:GameOptionsTimeLimitUp()
	local team1pts = GetReinforcementCount(1)
	local team2pts = GetReinforcementCount(2)
	if ( team1pts > team2pts ) then
		MissionVictory(1)
	elseif ( team1pts < team2pts ) then
		MissionVictory(2)
	else
		--tied, so victory for both
		MissionVictory({1,2})
	end
end
TEAM DEATHMATCH VARIANTS

Code: Select all

function ObjectiveTDM:GameOptionsTimeLimitUp()
	local team1pts = GetTeamPoints(1)
	local team2pts = GetTeamPoints(2)
	if ( team1pts > team2pts ) then
		MissionVictory(1)
	elseif ( team1pts < team2pts ) then
		MissionVictory(2)
	else	
		--tied, so victory for both
		MissionVictory({1,2})
	end
end

Re: Tie

Posted: Sun Oct 23, 2011 11:32 pm
by kinetosimpetus
This may have happened to me once. I'm not sure... and I doubt I have a screenshot... but I think I remember winning a conquest match and having 0 - 0 reinforcements on the score screen.

Re: Tie

Posted: Mon Oct 24, 2011 10:06 am
by Noobasaurus
kinetosimpetus wrote:This may have happened to me once. I'm not sure... and I doubt I have a screenshot... but I think I remember winning a conquest match and having 0 - 0 reinforcements on the score screen.
After six or so years of playing something is only bound to happen.

Re: Tie

Posted: Mon Oct 24, 2011 11:35 am
by Eaol
For a second there I thought you didn't know if you could get a TIE Fighter in the game *facepalm*.

I think the moment one of us divides by zero will be the moment we see a screen saying "Tie" or "Draw" on our monitors.

Re: Tie

Posted: Tue Oct 25, 2011 5:28 pm
by Dakota
i wonder why i never thought of trying this out. just get 1 reinforcement on each team (easier with fc and on multiplayer) and then drop a bomb and then sit on it...

Re: Tie

Posted: Tue Oct 25, 2011 5:35 pm
by THEWULFMAN
Dakota wrote:i wonder why i never thought of trying this out. just get 1 reinforcement on each team (easier with fc and on multiplayer) and then drop a bomb and then sit on it...


Actually that would be a bad way of doing it. Whomever lands first dies(when you get hit by a bomb or whatever, you don't die until you hit the ground), and if you used a mod to remove all push from the exp whomever is closer to the bomb would die first.

Re: Tie

Posted: Tue Oct 25, 2011 6:11 pm
by Teancum
Guys, I literally just confirmed a few posts above that it counts as a victory for both teams. There is no such thing as an actual "Tie" in the traditional sense. Check the code I posted.
Hidden/Spoiler:
[quote="Teancum"][quote="skelltor"]I think it just says victory for whatever side your on because when I use FC victory teams 1 & 2 it says victory for me.[/quote]

I just checked, and that's correct. Directly from the LUA code:

CONQUEST
[code]function ObjectiveConquest:GameOptionsTimeLimitUp()
local team1pts = GetReinforcementCount(1)
local team2pts = GetReinforcementCount(2)
if ( team1pts > team2pts ) then
MissionVictory(1)
elseif ( team1pts < team2pts ) then
MissionVictory(2)
else
--tied, so victory for both
MissionVictory({1,2})
end
end[/code]

TEAM DEATHMATCH VARIANTS
[code]function ObjectiveTDM:GameOptionsTimeLimitUp()
local team1pts = GetTeamPoints(1)
local team2pts = GetTeamPoints(2)
if ( team1pts > team2pts ) then
MissionVictory(1)
elseif ( team1pts < team2pts ) then
MissionVictory(2)
else
--tied, so victory for both
MissionVictory({1,2})
end
end[/code][/quote]

Re: Tie

Posted: Tue Oct 25, 2011 8:45 pm
by Dakota
Teancum wrote:Guys, I literally just confirmed a few posts above that it counts as a victory for both teams. There is no such thing as an actual "Tie" in the traditional sense. Check the code I posted.
Hidden/Spoiler:
[quote="Teancum"][quote="skelltor"]I think it just says victory for whatever side your on because when I use FC victory teams 1 & 2 it says victory for me.
I just checked, and that's correct. Directly from the LUA code:

CONQUEST

Code: Select all

function ObjectiveConquest:GameOptionsTimeLimitUp()
	local team1pts = GetReinforcementCount(1)
	local team2pts = GetReinforcementCount(2)
	if ( team1pts > team2pts ) then
		MissionVictory(1)
	elseif ( team1pts < team2pts ) then
		MissionVictory(2)
	else
		--tied, so victory for both
		MissionVictory({1,2})
	end
end
TEAM DEATHMATCH VARIANTS

Code: Select all

function ObjectiveTDM:GameOptionsTimeLimitUp()
	local team1pts = GetTeamPoints(1)
	local team2pts = GetTeamPoints(2)
	if ( team1pts > team2pts ) then
		MissionVictory(1)
	elseif ( team1pts < team2pts ) then
		MissionVictory(2)
	else	
		--tied, so victory for both
		MissionVictory({1,2})
	end
end
[/quote][/hide][/quote]

i had already read that when i posted. i just wondered why i never thought about it.

Re: Tie

Posted: Tue Oct 25, 2011 10:58 pm
by Teancum
Ah :oops:

Re: Tie

Posted: Wed Oct 26, 2011 4:10 pm
by [RDH]Zerted
Would you guys rather it said tie if multiple teams win? Even when a tie, your team has a Victory (and a Defeat).

Re: Tie

Posted: Wed Oct 26, 2011 6:11 pm
by Noobasaurus
[RDH]Zerted wrote:Would you guys rather it said tie if multiple teams win? Even when a tie, your team has a Victory (and a Defeat).
Well, even though it is highly unlikely, yes.

Re: Tie

Posted: Wed Oct 26, 2011 6:41 pm
by Fiodis
Noobasaurus wrote:Well, even though it is highly unlikely, yes.
Actually for me it's extremely likely. I usually get bored with SP matches inside of twenty minutes and use Fake Console to get a victory for both teams. :P

Re: Tie

Posted: Wed Oct 26, 2011 6:57 pm
by Noobasaurus
Fiodis wrote:
Noobasaurus wrote:Well, even though it is highly unlikely, yes.
Actually for me it's extremely likely. I usually get bored with SP matches inside of twenty minutes and use Fake Console to get a victory for both teams. :P
Well I mean actually in the game. But if you did that then a nice TIE title would be cool...

Re: Tie

Posted: Wed Oct 26, 2011 7:08 pm
by Fiodis
Noobasaurus wrote:Well I mean actually in the game.
My SP matches are, actually, in the game. :? I don't play them in Notepad or anything.