Author Topic: cQVM Releasedish  (Read 9062 times)

Paradox

  • Posts: 2612
  • Turrets: +253/-250
    • Paradox Designs
cQVM Releasedish
« on: October 25, 2009, 10:07:50 pm »
Well here it is:
http://code.google.com/p/cqvm/downloads/detail?name=game.qvm

Based off Lakitu's and Rezyns QVMs, with some extra features.
  • Mute and Putteam durations.
  • Mute/Denybuild/etc states persist on reconnects. No more evasions.
  • Jetpack fuel. Customizable jetpack fuel, featuring regen rate, consumption rate, and total amount
  • !putteam spec votes, subject to duration as set with g_adminTempSpec
  • Mute votes subject to duration as set of g_adminTempMute
  • g_instantBuild returns
  • g_sayAreaRange lets you adjust the range of say area

There is a whole lot more:
http://code.google.com/p/cqvm/wiki/Features

But, with 1.2 on the horizon, there likely wont be many more updates till then.

∧OMG ENTROPY∧

Snake

  • Posts: 541
  • Turrets: +43/-110
    • IdeaShock
Re: cQVM Releasedish
« Reply #1 on: October 26, 2009, 03:09:04 am »
Cool, thanks for this release I'll add some of the patches to a QVM on which I'm working on.
.

MitSugna

  • Guest
Re: cQVM Releasedish
« Reply #2 on: November 03, 2009, 10:05:14 am »
yet another qvm thx

Volt

  • Posts: 256
  • Turrets: +66/-54
Re: cQVM Releasedish
« Reply #3 on: November 03, 2009, 05:54:45 pm »
lol i had fun with !mute time, man thats my fav command in this qvm. is there a perm mute?

btw great release.

Paradox

  • Posts: 2612
  • Turrets: +253/-250
    • Paradox Designs
Re: cQVM Releasedish
« Reply #4 on: November 04, 2009, 06:08:53 am »
Well, there is !mute name, with no time, which is good ol mute, and then there is .NOVOICE

∧OMG ENTROPY∧

Celestial_Rage

  • Posts: 636
  • Turrets: +120/-8
Re: cQVM Releasedish
« Reply #5 on: November 25, 2009, 01:50:44 am »
How can you get patches for individual commands?
"The reports of my death are greatly exaggerated" ~Mark Twain

ThisIsBS

  • Posts: 123
  • Turrets: +4/-45
Re: cQVM Releasedish
« Reply #6 on: May 18, 2010, 12:47:48 am »
Does it let you be able to use black in names? If not, could you tell me how or what qvm has that?

DraZiLoX

  • Posts: 844
  • Turrets: +24/-24
Re: cQVM Releasedish
« Reply #7 on: May 18, 2010, 03:13:02 pm »
EDIT:

client.c

BEFORE:
Code: [Select]
      // don't allow black in a name, period
      if( ColorIndex( *in ) == 0 )
        *out++ = COLOR_WHITE;
      else
        *out++ = *in;

      in++;
      continue;
    }

AFTER:
Code: [Select]
      // don't allow black in a name, period
      if( ColorIndex( *in ) == 0 )
        *out++ = COLOR_BLACK;
      else
        *out++ = *in;

      in++;
      continue;
    }

and dont complain that its crappy, it works!
« Last Edit: May 18, 2010, 03:16:10 pm by DraZiLoX »