ESReality - Where Gaming Meets Reality
Not Logged In | Login | Register
12:32 CDT - 1455 users online
All Posts
ChallengeQuake3 demo viewer (4 comments)
Posted by Has3 @ 04:04 CST, 3 November 2009 - iMsg
I was tired of browsing demos ingame and it seems that the amount of listed demos ingame is limited.
So I created this little tool that allows you to view a demo in CQ3 by executing the demo file in windows (kinda like seismovision)

all you have to do is :
1. copy the cq3demoviewer.exe into your Quake folder (same as ChallengeQuake3.exe)
2. rightclick on a demo file, select "Open with" and set the cq3demoviewer.exe as default

the source is inside the zip file for those who are interested (it's not nice but it works :p )
only testet it on Win XP

hosted at rapidshare atm: cq3demoviewer.zip(Rapidshare)
Edited by xou at 17:56 CST, 3 November 2009 - 4406 Hits
config to get key codes (0x##) (3 comments)
Posted by Has3 @ 20:57 CST, 11 February 2009 - iMsg
My first contribution on esr :D

I was annoyed because binding quake 3's keys to the german layout didn't work as expected for all keys(e.g. ö,ä,ü)
So I quickly coded me a tool. It creates a config that binds keys from 0x00 to 0xff, to just say the key's code.
This should work for all other layouts aswell.
Maybe it also works for other quake based games.

hf


the code for those who are interested:
#include <fstream>
int main(int argc, char* argv[])
{
std::ofstream out("keys.cfg");
int i;
out << std::hex; // out as hex
for(i=0; i < 16; i++)
out << "bind 0x0" << i << " \"say 0x0" << i << "\"" << std::endl;
for(i=16; i < 256; i++)
out << "bind 0x" << i << " \"say 0x" << i << "\"" << std::endl;
return 0;
}
3149 Hits
Next Page >>
Conceived and created by Sujoy Roy (Legal Notices)
RSS Feed Information, Link Buttons and Banners