Rune Central

The Official Rune Quake Message Board
It is currently Thu Apr 18, 2024 11:54 pm

All times are UTC - 5 hours [ DST ]




Post new topic Reply to topic  [ 124 posts ]  Go to page Previous  1, 2, 3, 4, 5 ... 7  Next
Author Message
 Post subject:
PostPosted: Mon Oct 17, 2005 5:48 pm 
Offline
User avatar

Joined: Fri Jul 22, 2005 6:10 pm
Posts: 2
Location: Budapest/Hungary
grat józsi :wink:

_________________
ImpTIMI was slain by a Death Knight.
I am a imp girl.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Mon Oct 17, 2005 6:12 pm 
Offline
User avatar

Joined: Sun Mar 16, 2003 3:34 pm
Posts: 35
Location: Vancouver USA
You cannot select it from the menu option.
You can change the cvar from console but not the menu.

Sorry I needed to specify better!

_________________
Image
[img]http://www.gamestatus.net/sig/q1/[pK]c3re4lK1lL4.png[/img]
Image


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Mon Oct 17, 2005 6:14 pm 
Offline
User avatar

Joined: Sun Mar 16, 2003 3:34 pm
Posts: 35
Location: Vancouver USA
I also exec my own configs... thanx!

_________________
Image
[img]http://www.gamestatus.net/sig/q1/[pK]c3re4lK1lL4.png[/img]
Image


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Mon Oct 17, 2005 7:28 pm 
Offline
User avatar

Joined: Sun Mar 16, 2003 3:34 pm
Posts: 35
Location: Vancouver USA
I figured out the problem! For some reason my joequake pak0 did
not extract into my joequake folder. All fixed! :)

_________________
Image
[img]http://www.gamestatus.net/sig/q1/[pK]c3re4lK1lL4.png[/img]
Image


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Tue Oct 18, 2005 2:21 am 
Offline
quake.intertex.net
User avatar

Joined: Sat Nov 15, 2003 7:39 pm
Posts: 243
Location: Kansas City!
About the Mlook thing, when i created this for Qrack I left the +mlook and -mlook variables, used to show a message when trying to use them. but this is what m_look calls
Code:
qboolean OnChange_m_look (cvar_t *var, char *string)
{   
   if (!string[0])
   {
      return false;
   }

   if (!(m_look.value) && lookspring.value)
      V_StartPitchDrift();
   
   return true;
}

cvar_t   m_look   = {"m_look", "1", false, false, OnChange_m_look};

this way if m_look is 0 it is like -mlook and updates PitchDrift for keyboard use...


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Tue Oct 18, 2005 11:16 am 
Offline
User avatar

Joined: Sun Oct 09, 2005 4:48 am
Posts: 392
Location: Hey look! Secret Message!!!!
ew! you put your top braces below? ew! :lol:

_________________
If you see me online, say Hi :)


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Tue Oct 18, 2005 8:10 pm 
Offline
quake.intertex.net
User avatar

Joined: Sat Nov 15, 2003 7:39 pm
Posts: 243
Location: Kansas City!
I pull my socks up to my knees too! :twisted:


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Tue Oct 18, 2005 10:26 pm 
Offline
User avatar

Joined: Sun Oct 09, 2005 4:48 am
Posts: 392
Location: Hey look! Secret Message!!!!
Image

_________________
If you see me online, say Hi :)


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Wed Oct 19, 2005 7:23 am 
Offline
User avatar

Joined: Sat Feb 12, 2005 5:32 am
Posts: 23
People, if you read the whatsnew.txt file, it says that the mlook command has been changed to freelook. In your config files, add the line +freelook and all is good. ;-)

_________________
Image


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Wed Oct 19, 2005 7:31 am 
Offline

Joined: Sun Mar 09, 2003 10:47 pm
Posts: 1612
Location: Ohio
Actually, freelook is a cvar (i.e. freelook 0 =off, freelook 1 = on).

+mlook and -mlook work fine, but -mlook doesn't set freelook to 0. So the +mlook/-mlook combo only works if you don't manually set freelook to 1.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Wed Oct 19, 2005 10:16 am 
Offline
User avatar

Joined: Sun Oct 09, 2005 4:48 am
Posts: 392
Location: Hey look! Secret Message!!!!
I'm still puzzled why you made freelook. I know it saves in your config but adding +mlook into the config is just the same :S

_________________
If you see me online, say Hi :)


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Wed Oct 19, 2005 10:47 am 
Offline

Joined: Sun Mar 09, 2003 10:47 pm
Posts: 1612
Location: Ohio
Only variables are saved to config files. +mlook isn't a variable, it's a key binding like +attack or +jump. Apparently back in the days fresh off Doom II when no one used the mouse, they didn't think that anyone would be a full time mouse user.

So, that's why Joszef added the freelook 0/1 cvar and Sput added m_look 0/1.

more ... wrote:
And if you wonder why the variables aren't the same, well, FuhQuake uses freelook as the cvar and Joszef has consistently made implementation very FuhQuake-like ... which is nice because switching between FuhQuake (Quakeworld) and JoeQuake (Quake) is very easy and and I know Quakeworld users appreciate it.

Sput chose m_look which fits well with m_rate, m_smooth, etc.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Wed Oct 19, 2005 9:00 pm 
Offline
User avatar

Joined: Sun Oct 09, 2005 4:48 am
Posts: 392
Location: Hey look! Secret Message!!!!
a simple if statement could add +mlook to the config if selected. My custom GLpro does that so don't say it can't be done :?

_________________
If you see me online, say Hi :)


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Wed Oct 19, 2005 9:17 pm 
Offline

Joined: Sun Mar 09, 2003 10:47 pm
Posts: 1612
Location: Ohio
Canadian*Sniper wrote:
a simple if statement could add +mlook to the config if selected. My custom GLpro does that so don't say it can't be done :?


It could be done, but the +commands represent states. +attack is a state that continues until -attack. +speed represents running until -speed, for instance.

Saving a state to config file wouldn't be conforming to the way Quake engines are coded.

The reason why +speed doesn't need to be saved to a config is that setting "always run" in Options doesn't set +speed. It sets cl_forward speed to 400.

ID should have made mlook have a corresponding cvar when they first made Quake.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Thu Oct 20, 2005 1:11 am 
Offline
User avatar

Joined: Sun Oct 09, 2005 4:48 am
Posts: 392
Location: Hey look! Secret Message!!!!
hmm This is why i have my own engine, I can do whatever the hell i want it to do without restrictions.

_________________
If you see me online, say Hi :)


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Thu Oct 20, 2005 8:49 am 
Offline
quake.intertex.net
User avatar

Joined: Sat Nov 15, 2003 7:39 pm
Posts: 243
Location: Kansas City!
Oh now the bull SH@#%#$T has taken flight.... :lol:


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Thu Oct 20, 2005 9:41 am 
Offline
User avatar

Joined: Sun Oct 09, 2005 4:48 am
Posts: 392
Location: Hey look! Secret Message!!!!
That's the longest 'I' I've ever seen

_________________
If you see me online, say Hi :)


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Thu Oct 20, 2005 11:43 am 
Offline
User avatar

Joined: Tue Sep 20, 2005 12:47 pm
Posts: 61
Location: England
Going a bit offtopic here :shock:


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Fri Oct 21, 2005 2:32 am 
Offline
User avatar

Joined: Sat Feb 12, 2005 5:32 am
Posts: 23
Dang it.... More people need to see the goodness in JoeQuake. I'm sick of all these engines scattering the fans of Quake everywhere. :-/

I thought a new release of JoeQuake would get more publicity in it's own forum than this... Whatever, everyone else is missing out ;-)

_________________
Image


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Fri Oct 21, 2005 2:36 am 
Offline

Joined: Sun Mar 09, 2003 10:47 pm
Posts: 1612
Location: Ohio
I wouldn't want everyone in the world seeing those 0 pings in the scoreboard. A couple of the issues in the release would make 0.15 look like a work in progress and not leave the impression of how excellent JoeQuake really is.

A couple of small tweaks need to be made.

Then it's time :D :D

JoeQuake 0.15 made the PlanetQuake homepage, btw.


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 124 posts ]  Go to page Previous  1, 2, 3, 4, 5 ... 7  Next

All times are UTC - 5 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 53 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group