Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

User contributions

From Quake Wiki

Search for contributions
 
 
      
 
   

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

  • 16:53, 28 February 2008 (diff | hist) . . (+222). . N DP SND FAKETRACKS(New page: The engine plays sound/cdtracks/track001.wav instead of cd track 1 and so on if found, this allows games and mods to have music tracks without using ambientsound. Note: also plays .ogg wi...)
  • 16:53, 28 February 2008 (diff | hist) . . (+87). . N DP SND DIRECTIONLESSATTNNONE(New page: Make sounds with ATTN_NONE have no spatialization (enabling easy use as music sources).)
  • 16:52, 28 February 2008 (diff | hist) . . (+280). . N DP REGISTERCVAR(New page: Builtin definitions: <pre> float(string name, string value) registercvar = #93; </pre> Adds a new console cvar to the server console (in singleplayer this is the player's console), the cv...)
  • 16:52, 28 February 2008 (diff | hist) . . (+49). . N DP QUAKE3 MODEL(New page: shows that the engine supports Quake3 .md3 files.)
  • 16:52, 28 February 2008 (diff | hist) . . (+49). . N DP QUAKE3 MAP(New page: Shows that the engine supports Quake3 .bsp files.)
  • 16:51, 28 February 2008 (diff | hist) . . (+49). . N DP QUAKE2 SPRITE(New page: Shows that the engine supports Quake2 .sp2 files.)
  • 16:51, 28 February 2008 (diff | hist) . . (+49). . N DP QUAKE2 MODEL(New page: Shows that the engine supports Quake2 .md2 files.)
  • 16:51, 28 February 2008 (diff | hist) . . (+434). . N DP QC VECTOANGLES WITH ROLL(New page: Builtin definitions: <pre> vector(vector forward, vector up) vectoangles2 = #51; // same number as vectoangles </pre> Variant of vectoangles that takes an up vector to calculate roll angl...)
  • 16:50, 28 February 2008 (diff | hist) . . (+57). . QSG extensions
  • 16:48, 28 February 2008 (diff | hist) . . (+227). . N DP QC VECTORVECTORS(New page: Builtin definitions: <pre> void(vector dir) vectorvectors = #432; </pre> Creates v_forward, v_right, and v_up vectors given a forward vector, similar to makevectors except it takes a forw...)
  • 16:46, 28 February 2008 (diff | hist) . . (+853). . N DP QC UNLIMITEDTEMPSTRINGS(New page: This extension alters Quake behavior such that instead of reusing a single tempstring (or multiple) there are an unlimited number of tempstrings, which are removed only when a QC function ...)
  • 16:45, 28 February 2008 (diff | hist) . . (+216). . N DP QC TRACE MOVETYPE WORLDONLY(New page: Constant definitions: <pre> float MOVE_WORLDONLY = 3; </pre> Allows traces to hit only world (ignoring all entities, unlike MOVE_NOMONSTERS which hits all bmodels), use as the nomonsters ...)
  • 16:44, 28 February 2008 (diff | hist) . . (+297). . N DP QC TRACE MOVETYPE HITMODEL(New page: Constant definitions: <pre> float MOVE_HITMODEL = 4; </pre> Allows traces to hit alias models (not sprites!) instead of entity boxes, use as the nomonsters parameter to trace functions, n...)
  • 16:44, 28 February 2008 (diff | hist) . . (+384). . N DP QC TRACETOSS(New page: Builtin definitions: <pre> void(entity ent, entity ignore) tracetoss = #64; </pre> Simulates movement of the entity as if it is MOVETYPE_TOSS and starting with it's current state (locatio...)
  • 16:42, 28 February 2008 (diff | hist) . . (+418). . N DP QC TRACEBOX(New page: Builtin definitions: <pre> void(vector v1, vector min, vector max, vector v2, float nomonsters, entity forent) tracebox = #90; </pre> Similar to traceline but much more useful, traces a b...)
  • 16:41, 28 February 2008 (diff | hist) . . (+446). . N DP QC TOKENIZEBYSEPARATOR(New page: Builtin definitions: <pre> float(string s, string separator1, ...) tokenizebyseparator = #479; </pre> This function returns tokens separated by any of the supplied separator strings, exam...)
  • 16:40, 28 February 2008 (diff | hist) . . (+274). . N DP QC STRING CASE FUNCTIONS(New page: Builtin definitions: <pre> string(string s) strtolower = #480; // returns the passed in string in pure lowercase form string(string s) strtoupper = #481; // returns the passed in string in...)
  • 16:40, 28 February 2008 (diff | hist) . . (+361). . N DP QC STRINGCOLORFUNCTIONS(New page: Builtin definitions: <pre> float(string s) strlennocol = #476; // returns how many characters are in a string, minus color codes string(string s) strdecolorize = #477; // returns a string ...)
  • 16:39, 28 February 2008 (diff | hist) . . (+38). . DP QC STRFTIME
  • 16:38, 28 February 2008 (diff | hist) . . (+2,033). . N DP QC STRFTIME(New page: Builtin definitions: <pre> string(float uselocaltime, string format, ...) strftime = #478; </pre> Provides the ability to get the local (in your timezone) or world (Universal Coordinated ...)
  • 16:35, 28 February 2008 (diff | hist) . . (+228). . QSG extensions
  • 16:32, 28 February 2008 (diff | hist) . . (+263). . N DP QC SINCOSSQRTPOW(New page: Builtin definitions: <pre> float(float val) sin = #60; float(float val) cos = #61; float(float val) sqrt = #62; float(float a, float b) pow = #97; </pre> Useful math functions, sine of va...)
  • 16:32, 28 February 2008 (diff | hist) . . (+207). . N DP QC RANDOMVEC(New page: Builtin definitions: <pre> vector() randomvec = #91; </pre> Returns a vector of length < 1, much quicker version of this QC: do {v_x = random()*2-1;v_y = random()*2-1;v_z = random()*2-1;}...)
  • 16:31, 28 February 2008 (diff | hist) . . (+537). . N DP QC MULTIPLETEMPSTRINGS(New page: This extension makes all builtins returning tempstrings (ftos for example) cycle through a pool of multiple tempstrings (at least 16), allowing multiple ftos results to be gathered before ...)
  • 16:30, 28 February 2008 (diff | hist) . . (+1,133). . N DP QC MINMAXBOUND(New page: Builtin definitions: <pre> float(float a, float b) min = #94; float(float a, float b, float c) min3 = #94; float(float a, float b, float c, float d) min4 = #94; float(float a, float b, flo...)
  • 16:29, 28 February 2008 (diff | hist) . . (+770). . N DP QC GETTAGINFO(New page: Builtin definitions: <pre> float(entity ent, string tagname) gettagindex = #451; vector(entity ent, float tagindex) gettaginfo = #452; </pre> gettagindex returns the number of a tag on an...)
  • 16:29, 28 February 2008 (diff | hist) . . (+410). . N DP QC GETSURFACE(New page: Builtin definitions: <pre> float(entity e, float s) getsurfacenumpoints = #434; vector(entity e, float s, float n) getsurfacepoint = #435; vector(entity e, float s) getsurfacenormal = #436...)
  • 16:28, 28 February 2008 (diff | hist) . . (+158). . N DP QC GETLIGHT(New page: Builtin definitions: <pre> vector(vector org) getlight = #92; </pre> Returns the lighting at the requested location (in color), 0-255 range (can exceed 255).)
  • 16:28, 28 February 2008 (diff | hist) . . (+752). . N DP QC FS SEARCH(New page: Builtin definitions: <pre> float(string pattern, float caseinsensitive, float quiet) search_begin = #444; void(float handle) search_end = #445; float(float handle) search_getsize = #446; s...)
  • 16:27, 28 February 2008 (diff | hist) . . (+253). . N DP QC FINDFLOAT(New page: Builtin definitions: <pre> entity(entity start, .entity fld, entity match) findentity = #98; entity(entity start, .float fld, float match) findfloat = #98; </pre> Finds an entity or float...)
  • 16:26, 28 February 2008 (diff | hist) . . (+175). . N DP QC FINDFLAGS(New page: Builtin definitions: <pre> entity(entity start, .float fld, float match) findflags = #449; </pre> Finds an entity with the specified flag set in the field, similar to find().)
  • 16:26, 28 February 2008 (diff | hist) . . (+232). . N DP QC FINDCHAINFLOAT(New page: Builtin definitions: <pre> entity(.entity fld, entity match) findchainentity = #403; entity(.float fld, float match) findchainfloat = #403; </pre> Similar to findentity()/findfloat() but ...)
  • 16:25, 28 February 2008 (diff | hist) . . (+161). . N DP QC FINDCHAINFLAGS(New page: Builtin definitions: <pre> entity(.float fld, float match) findchainflags = #450; </pre> Similar to findflags() but returns a chain of entities like findradius.)
  • 16:25, 28 February 2008 (diff | hist) . . (+153). . N DP QC FINDCHAIN(New page: Builtin definitions: <pre> entity(.string fld, string match) findchain = #402; </pre> Similar to find() but returns a chain of entities like findradius.)
  • 16:24, 28 February 2008 (diff | hist) . . (+133). . N DP QC ETOS(New page: Builtin definitions: <pre> string(entity ent) etos = #65; </pre> Prints "entity 1" or similar into a string. (this was a Q2 builtin))
  • 16:24, 28 February 2008 (diff | hist) . . (+128). . N DP QC CVAR DEFSTRING(New page: Builtin definitions: <pre> string(string s) cvar_defstring = #482; </pre> Returns the default value of a cvar, as a tempstring.)
  • 16:23, 28 February 2008 (diff | hist) . . (+57). . QSG extensions
  • 16:23, 28 February 2008 (diff | hist) . . (-11). . DP QC CVAR STRING
  • 16:22, 28 February 2008 (diff | hist) . . (+128). . N DP QC CVAR STRING(New page: Builtin definitions: <pre> string(string s) cvar_defstring = #482; </pre> Returns the default value of a cvar, as a tempstring.)
  • 16:21, 28 February 2008 (diff | hist) . . (+131). . N DP QC COPYENTITY(New page: Builtin definitions: <pre> void(entity from, entity to) copyentity = #400; </pre> Copies all data in the entity to another entity.)
  • 16:20, 28 February 2008 (diff | hist) . . (+213). . N DP QC CHANGEPITCH(New page: Field definitions: <pre> .float idealpitch; .float pitch_speed; </pre> Builtin definitions: <pre> void(entity ent) changepitch = #63; </pre> Equivilant to changeyaw, ent is normally self...)
  • 16:20, 28 February 2008 (diff | hist) . . (+1). . DP QC DP QC ASINACOSATANATAN2TAN
  • 16:19, 28 February 2008 (diff | hist) . . (+1,843). . N DP QC DP QC ASINACOSATANATAN2TAN(New page: Constant definitions: <pre> float DEG2RAD = 0.0174532925199432957692369076848861271344287188854172545609719144; float RAD2DEG = 57.295779513082320876798154814105170332405472466564321549160...)
  • 16:17, 28 February 2008 (diff | hist) . . (+60). . QSG extensions
  • 15:54, 28 February 2008 (diff | hist) . . (+936). . N DP MOVETYPEFOLLOW(New page: .movetype definitions: <pre> float MOVETYPE_FOLLOW = 12; </pre> MOVETYPE_FOLLOW implemented, this uses existing entity fields in unusual ways: * aiment - the entity this is attached to. *...)
  • 15:53, 28 February 2008 (diff | hist) . . (+231). . N DP MOVETYPEBOUNCEMISSILE(New page: .movetype definitions: <pre> //float MOVETYPE_BOUNCEMISSILE = 11; // already in defs.qc </pre> MOVETYPE_BOUNCE but without gravity, and with full reflection (no speed loss like grenades ha...)
  • 15:52, 28 February 2008 (diff | hist) . . (+115). . N DP MONSTERWALK(New page: MOVETYPE_WALK is permitted on non-clients, so bots can move smoothly, run off ledges, etc, just like a real player.)
  • 15:51, 28 February 2008 (diff | hist) . . (+805). . N DP LITSUPPORT(New page: Indicates this engine loads .lit files for any quake1 format .bsp files it loads to enhance maps with colored lighting. Implementation description: these files begin with the header QLIT ...)
  • 15:50, 28 February 2008 (diff | hist) . . (+241). . N DP LITSPRITES(New page: Indicates this engine supports lighting on sprites, any sprite with ! in its filename (both on disk and in the qc) will be lit rather than having forced EF_FULLBRIGHT (EF_FULLBRIGHT on the...)
  • 15:49, 28 February 2008 (diff | hist) . . (+327). . N DP INPUTBUTTONS(New page: Field definitions: <pre> .float button3; .float button4; .float button5; .float button6; .float button7; .float button8; </pre> Set to the state of the +button3, +button4, +button5, +butt...)

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)