Page 1 of 2

Domination / Covert Point GameMode - MFPS

Posted: Sat Jun 20, 2015 9:03 am
by Lovatto
for those who want more game modes, here have this requested by many, it is the classic "Domination or Covert Point" where two teams try to dominate most "Points or Bases" and prevent the opposing team take them or recovers.

- The system contains the basic logic of the gameplay, is ready for you to improve at will and taste.

Preview:
Image
Image
Image

PURCHASE ON ONLINE STORE:

Re: Domination / Covert Point GameMode - MFPS

Posted: Sat Jun 20, 2015 2:28 pm
by Amer96
Great!
I can't get it easily!. The bombs have tow teams fighting to destroy them? or there is a team to attack it and another team to defend it?

Re: Domination / Covert Point GameMode - MFPS

Posted: Sat Jun 20, 2015 6:09 pm
by Lovatto
Amer96 wrote:Great!
I can't get it easily!. The bombs have tow teams fighting to destroy them? or there is a team to attack it and another team to defend it?
Two teams, 5 bases / points, each team has to dominate and defend most or all of the bases / points when a team manages to get a base, you have to try to defend it to prevent the enemy team to achieve take / recover.

Like Domination in Ballistic (Unity FPS Game).

Re: Domination / Covert Point GameMode - MFPS

Posted: Wed Jun 24, 2015 1:42 am
by JessieK
Question:

Do you get points for holding each "capture point" that ticks up to a final score or is it just who ever holds the most "capture points" by the end of the game wins?

Re: Domination / Covert Point GameMode - MFPS

Posted: Wed Jun 24, 2015 9:31 am
by Lovatto
JessieK wrote:Question:

Do you get points for holding each "capture point" that ticks up to a final score or is it just who ever holds the most "capture points" by the end of the game wins?
Yes, the team get a point for each time to take o recovert a point, so at the end wins the team with more points.

Re: Domination / Covert Point GameMode - MFPS

Posted: Mon Jun 29, 2015 6:15 am
by abg
yes it works well for me and i swaped the mesh for a cool little flag icon wich i used for bl_decal C:\Users\docs\MFPS\Content\Art\GUI\Other\flag.png
Lovatto may lack some communication skills but he is a very good programer especualy with scripting.
Thanks Lovatto very impressed.

Re: Domination / Covert Point GameMode - MFPS

Posted: Wed Feb 21, 2018 7:48 pm
by Nerbs
Two things I noticed were
1) The progress bar only shows for the server master. All other clients can still capture bases, but don't get the progress bar.
2) If an enemy is in the base with you 'isBusy' gets checked, but if you kill that enemy inside the base, it stays checked so you can't capture it. It seems this only gets set to false of the enemy leaves the base, not if they die.
How can I fix these 2 issues?
(I am using the MFPS 2.0 version)

Re: Domination / Covert Point GameMode - MFPS

Posted: Thu Feb 22, 2018 1:01 am
by Lovatto
1 - I don't get this problem, can you tell me how reproduce (2 player in same team... etc..)
2 - Try replacing the 'OnLocalDeath' function of bl_BombDefuse.cs with this:

Code: Select all

void OnLocalDeath()
    {
        if(ActorPlant == PhotonNetwork.playerName)
        {
            CanPlant = false;
            CanDesactive = false;
            CancelInvoke();
            photonView.RPC("StartPlantBomb", PhotonTargets.AllBuffered, false);
        }
    }

Re: Domination / Covert Point GameMode - MFPS

Posted: Thu Feb 22, 2018 4:15 am
by Nerbs
Lovatto wrote:1 - I don't get this problem, can you tell me how reproduce (2 player in same team... etc..)
2 - Try replacing the 'OnLocalDeath' function of bl_BombDefuse.cs with this:

Code: Select all

void OnLocalDeath()
    {
        if(ActorPlant == PhotonNetwork.playerName)
        {
            CanPlant = false;
            CanDesactive = false;
            CancelInvoke();
            photonView.RPC("StartPlantBomb", PhotonTargets.AllBuffered, false);
        }
    }
I will record a video today to show.
And this is a problem with the Domination Capture point issue, the code provided was is for the bomb defuse package (which by the way works great!)

Re: Domination / Covert Point GameMode - MFPS

Posted: Thu Feb 22, 2018 1:49 pm
by Nerbs