Page 1 of 2

[WIP] My FPS Game

Posted: Wed Mar 21, 2018 4:26 am
by skr2000
Hi to all,
I'm working on fps game based on mfps.
This project is still wip, It'll improve more and more.

This video shows those things:
- Round Start CountDown(Also can change loadout before round starts)
- Currency system
- Leaning
- Checking Ammunation
- QuickGrenade
- Custom Recoil System
- Gun Down before round/Too close to the object
- Weapon and LoadOut Customization System
- Holding Breath

If you have any question or sth, just leave a comment.
Thanks :)

Re: [WIP] My FPS Game

Posted: Wed Mar 21, 2018 5:07 am
by Oggy
Is the leaning system be synchronized with the third view?

Re: [WIP] My FPS Game

Posted: Wed Mar 21, 2018 5:24 am
by skr2000
Oggy wrote:Is the leaning system be synchronized with the third view?
yup.

Re: [WIP] My FPS Game

Posted: Sat Mar 24, 2018 2:34 am
by Oggy
Hi. Did you use lovatto loading script? Could you like guide how to use it with Mfps 2.0?

Re: [WIP] My FPS Game

Posted: Sat Mar 24, 2018 4:59 am
by skr2000
Oggy wrote:Hi. Did you use lovatto loading script? Could you like guide how to use it with Mfps 2.0?
Replace MoveToGameScene one to this:

Code: Select all

    private IEnumerator MoveToGameScene()
    {
        while (PhotonNetwork.room == null)
        {
            yield return null;
        }
        PhotonNetwork.isMessageQueueRunning = false;
		bl_SceneLoaderUtils.GetLoader.LoadLevel((string)PhotonNetwork.room.CustomProperties[PropertiesKeys.SceneNameKey]);
    }
It's quite simple.

Re: [WIP] My FPS Game

Posted: Sat Mar 24, 2018 5:47 am
by Oggy
Thank you very much! :)

Re: [WIP] My FPS Game

Posted: Sun Apr 01, 2018 5:02 pm
by websbk
How did you do round countdown?

Re: [WIP] My FPS Game

Posted: Mon Apr 02, 2018 11:02 am
by DRIVER1ksa
very well

Re: [WIP] My FPS Game

Posted: Thu Apr 12, 2018 4:30 am
by Oggy
websbk wrote:How did you do round countdown?
Same question!
Please, sharing is a pleasure! :D

Re: [WIP] My FPS Game

Posted: Tue May 01, 2018 2:26 am
by Holst
Looks good :)

I would also like to know how you did the round countdown :D