Announcement

Collapse
No announcement yet.

speedball source?

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

  • speedball source?

    This one mostly goes out to R00k but I thought a thread would be better than a pm; in case anyone had alternate routes.

    So anyways; is it possible to get the source for Speedball game mode from CAX without the clan-arena part? I realize CAX is secret source for some reason [z0mfg1337h4x] but I've been considering jumping back into some QC and making a multiplayer team game mod that is kind of similar to speedball. I was thinking if I could use speedball as a base I could get the mod done faster and it would be less intimidating (how the mind rusts like iron) and it might actualy get finished.

    I realize CAX and speedball sources may not be separate entities; which even if it was possible to acquire that it may not be a simple task.


    Troll answers also welcome.

  • #2
    Some of us are above that sprectrum
    Want to get into playing Quake again? Click here for the Multiplayer-Startup kit! laissez bon temps rouler!

    Comment


    • #3
      I can do better..

      http://www.quakeone.com/cax/Qball.zip

      This is the entire source to the Qball mod circa 2003. It contains the "speedball" mode, (aka Assault mode).
      www.quakeone.com/qrack | www.quakeone.com/cax| http://en.twitch.tv/sputnikutah

      Comment


      • #4
        No bridge awesome!
        Want to get into playing Quake again? Click here for the Multiplayer-Startup kit! laissez bon temps rouler!

        Comment


        • #5
          Originally posted by R00k View Post
          I can do better..

          http://www.quakeone.com/cax/Qball.zip

          This is the entire source to the Qball mod circa 2003. It contains the "speedball" mode, (aka Assault mode).
          o shweet, I looked for Qball for a little bit and found a version of it on one of the idgames repositories, but it must have been an early one as the game play was described as soccer without mention of a speedball mode.

          thanks R00k

          Comment


          • #6
            That soccer mod is a completely different mod. This is a clone of the Qball from Mplayer.
            www.quakeone.com/qrack | www.quakeone.com/cax| http://en.twitch.tv/sputnikutah

            Comment


            • #7
              I've run into a problem, i kept getting errors in internal.qc, the problem seemed to be that it was littered with "%"'s everywhere. So I went through and removed every one of them, now it complies but I get many errors that cause insta-crashe;
              Code:
              internal.qc
              internal.qc(123): warning: Array index should be type int
              internal.qc(126): warning: Array index should be type int
              internal.qc(129): warning: Array index should be type int
              internal.qc(129): warning: Array index should be type int
              internal.qc(141): warning: Mixed float and int types
              internal.qc(143): warning: Mixed float and int types
              internal.qc(171): warning: Mixed float and int types
              internal.qc(173): warning: Mixed float and int types
              internal.qc(177): warning: Mixed float and int types
              internal.qc(179): warning: Mixed float and int types
              internal.qc(190): warning: AddInt: Type mismatch on return. Expected float found int
              internal.qc(201): warning: Mixed float and int types
              internal.qc(203): warning: Mixed float and int types
              internal.qc(207): warning: Mixed float and int types
              internal.qc(209): warning: Mixed float and int types
              internal.qc(228): warning: SubInt: Type mismatch on return. Expected float found int
              internal.qc(239): warning: Mixed float and int types
              internal.qc(241): warning: Mixed float and int types
              internal.qc(253): warning: NegInt: Type mismatch on return. Expected float found int
              internal.qc(268): warning: Array index should be type int
              internal.qc(284): warning: Array index should be type int
              internal.qc(285): warning: Array index should be type int
              internal.qc(287): warning: Array index should be type int
              internal.qc(288): warning: Array index should be type int
              internal.qc(291): warning: Array index should be type int
              internal.qc(292): warning: Array index should be type int
              internal.qc(309): warning: Mixed float and int types
              internal.qc(325): warning: Array index should be type int
              internal.qc(328): warning: NegInt: type mismatch on parm 0. Expected float, found int. See definition internal.qc(234)
              internal.qc(336): warning: Array index should be type int
              internal.qc(338): warning: Mixed float and int types
              internal.qc(338): warning: Mixed float and int types
              Am I missing something? I tried changing the (floats) to (int) but that caused more trouble.

              Comment


              • #8
                The % tells the compiler is an INTeger.

                You are using the wrong compiler.
                It requires version 2.5 of Frikqcc or Qccx.
                http://www.quakeone.com/cax/frikqcc.exe

                create a shortcut and use this commandline

                frikqcc.exe /O1 -warn 4


                It should compile 0 warnings/0 errors outta the box.

                This mod only runs on ProQuake servers. Unless you strip out the internals.qc, net.qc from the progs.src.
                www.quakeone.com/qrack | www.quakeone.com/cax| http://en.twitch.tv/sputnikutah

                Comment


                • #9
                  o okay, I was using the wrong version of Frikqcc, heh thanks.

                  Comment

                  Working...
                  X