Jump to content

Home

Scripting


phr33d0m

Recommended Posts

First off id like to say sorry to any of those who dont fell that this should be in the editing section, but quite frankly none of the other areas of the forum seemed to fit.

==============================================

 

Could someone plz tell me as site or send me a list that tell how to script quake3 style and the jedi knight 2 commands....i havent found a good site and seeing as how jedi knight 2 runs of the q3 engine i just wondered if anyone could help me out

Link to comment
Share on other sites

Heres some command to get ya started buddy

 

/cmdlist --- Lists all the games basic commands

/cvarlist --- Lists all the things you can change

 

You can also do this

 

/cvarlist *force* --- Will find all the things with force in them

 

Just use the * as a wildcard..

 

Hope thats some help..

Link to comment
Share on other sites

This site might help.

 

http://guru.josefine.at/~mfischer/dev/q3atfaq/faq-10.html

 

 

To get a list of commands:

 

bind w "cmdlist"

 

 

Scripting is mad easy, basically the same way you make Counter Strike scripts (which I love to do btw), except a couple minor differences.

 

Here is an example of an FPS toggle script I made.

 

//FPS Toggler - CAPSLOCK

set fpst "vstr fps1"

set fps1 "cg_drawfps 1; set fpst vstr fps0"

set fps0 "cg_drawfps 0; set fpst vstr fps1"

 

bind CAPSLOCK "vstr fpst"

 

-Script MaSTa

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...