X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=dpdefs%2Fdpextensions.qc;h=48045a202faf22ed1b7bdcbf811db9d113d7752e;hb=245c18803b0321a49a2cde3eb365d212ed8f7994;hp=43dd56cb6a929736f055c4ed000f850d72846f6e;hpb=73bbf90a419c7b19c0b6f1cb11f05813a1658199;p=xonotic%2Fdarkplaces.git diff --git a/dpdefs/dpextensions.qc b/dpdefs/dpextensions.qc index 43dd56cb..48045a20 100644 --- a/dpdefs/dpextensions.qc +++ b/dpdefs/dpextensions.qc @@ -2619,10 +2619,10 @@ float MOVETYPE_USER_LAST = 191; //idea: eukara //darkplaces implementation: Cloudwalk -// Do NOT use in production yet. -string __fullspawndata; +//Do NOT use in production yet. Uncomment if you intend to use it +//string __fullspawndata; //description: -// http://icculus.org/finger/marco?date=2019-01-25&time=05-38-02 +//http://icculus.org/finger/marco?date=2019-01-25&time=05-38-02 //DP_QC_FS_SEARCH_PACKFILE //idea: Mario @@ -2632,3 +2632,13 @@ float(string pattern, float caseinsensitive, float quiet, string packfile) searc //description: //extension to search_begin (DP_QC_FS_SEARCH), performs a filename search with the specified pattern (for example "maps/*.bsp") and stores the results in a search slot (minimum of 128 supported by any engine with this extension), the other functions take this returned search slot number, be sure to search_free when done (they are also freed on progs reload). //only searches for files within the specified packfile, which is expected to match the results of whichpack(). + +//EXT_CSQC (registercommand for SSQC) +//idea: probably Spoike +//darkplaces implementation: Cloudwalk +//builtin definitions: +void(string cmdname) registercommand = #352; +//description: +//the registercommand builtin but the server can use it + +float(float dividend, float divisor) mod = #245;