How do I jump and fire again?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • GonnarMon

    #1

    How do I jump and fire again?

    I'm working on a mod and want to jump and fire a weapon, mostly the C4. V1.0 is able to jump and throw/fire, but working with the latest version. I've searched the soldier folder and found additions to the common/common.con, but thats just the delays to fr after jump and so on. I've looked all over but where I need to look apparently, and its bugging me that I can't find anything else. Is it possibly a .DLL or even a client file I don't know. If anyone could help I would greatly appreciate it.)
  • Curmudgeon5462

    #2
    Re: How do I jump and fire again?

    It may not be a value to change, they may have deleted a line of script altogether to stop jump shooting. Try looking at 1.0 scripts compared to 1.4 or whatever your running.

    Comment

    • |D|-Jaws

      #3
      Re: How do I jump and fire again?

      You can jump and shoot in DCON. Get ahold of their devs.

      Comment

      • Bigboom

        #4
        Re: How do I jump and fire again?

        You pretty much worked out how to do it anyway. It is the fire delay that disables/enables jump and fire.

        Change the fire delay after jump setting in the Common.con file to the following:

        Code:
        Vars.Set fire-delay-after-jump 0
        You can find Common.con in the objects_server.zip of your mod under soldiers/Common/Common.con

        Hope that helps. :)

        Comment

        • Elxx
          Member
          • Apr 2005
          • 941

          #5
          Re: How do I jump and fire again?

          I was just looking for a way to do this yesterday! Thanks a lot, Bigboom

          Comment

          • GonnarMon

            #6
            Re: How do I jump and fire again?

            Thank You!!! You are the Stuff!!!

            What I did is delete all the additional lines instead of editing them.

            Comment

            Working...