scripts.cfg 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. // CubeScript placed in this file is automatically executed on each startup.
  2. const MODES [tdm coop dm surv tsurv ctf pf btdm bdm lss osok tosok bosok htf tktf ktf tpf tlss bpf blss btsurv btosok]
  3. const MODEALIASES [map lms vip sendmap]
  4. // "editent" command:
  5. // This command collects all the attributes of the nearest entity, and then
  6. // prompts that into a handy command that allows you to edit that entities
  7. // attributes easily.
  8. // Note: The editent command can NOT define rotation/yaw inside the command!
  9. // However, the current yaw of the player will define the rotation/yaw when
  10. // using the command!
  11. const editent [
  12. if $editing [
  13. if (strcmp (getenttype) mapmodel) [ saycommand "/entset" (getenttype) (getentattr 1) (getentattr 2) (getentattr 3) ] [
  14. if (> (findlist [light sound clip plclip] (getenttype)) -1) [
  15. saycommand "/entset" (getenttype) (getentattr 0) (getentattr 1) (getentattr 2) (getentattr 3)
  16. ] [
  17. saycommand "/entset" (getenttype) (getentattr ((> (findlist [playerstart ctf-flag] (getenttype)) -1)))
  18. ]
  19. ]
  20. ]
  21. ]
  22. // "convertclips" command:
  23. // This command automatically changes the a "clip" to a "plclip" entity or vice-versa.
  24. const convertclips [
  25. if $editing [
  26. if (strcmp (getenttype) clip) [ entset plclip (getentattr 0) (getentattr 1) (getentattr 2) (getentattr 3) ] [
  27. if (strcmp (getenttype) plclip) [ entset clip (getentattr 0) (getentattr 1) (getentattr 2) (getentattr 3) ] [
  28. echo No changes made. This entity isn't a clip or a plclip.; echo Try using the /closestenttype command to find a specific entity.
  29. ]
  30. ]
  31. ]
  32. ]
  33. // increase legroom for mapmodels by decreasing the z-offset of a map config mapmodel slot
  34. // and simultaneously increasing the z-offset of all affected map model entities
  35. // (this is to counteract the fact, that the z-offset of an entity can only hold positive numbers - using the ability of the slot config to use negative numbers))
  36. // this will not change anything visible in the map - but allow a mapmodel to be lowered further than before
  37. // the only argument is the slot number - for more leg room, repeat the script
  38. const mapmodelzoff [
  39. if (strlen (editmapmodelslot $arg1)) [ // invalid slot returns empty string
  40. looplist (editmapmodelslot $arg1) [rad h zoff snap path] [editmapmodelslot $arg1 "" "" (- $zoff 1) ; echo $path in slot # $arg1 : new z-offset (- $zoff 1)]
  41. looplist (mapmodelslotusage $arg1) ii [editentity $ii "" "" "" "" "" (+ 1 (at (editentity $ii) 6)) ; echo adjusted entity # $ii]
  42. ]
  43. ]
  44. // "gibsgore" command:
  45. // This command controls gib Speed/Number/TTL all in one variable.
  46. const gibsgore [
  47. looplist (at ["0 30 6 5000" "1 30 6 5000" "1 30 75 5000" "1 15 64 10000" "1 40 100 2500"] $arg1) [a1 a2 a3 a4] [
  48. gib $a1 ; gibspeed $a2 ; gibnum $a3 ; gibttl $a4 ; __gibsgore = $arg1
  49. ]
  50. ]
  51. // "fullscreentoggle" command:
  52. // This command allows swapping of fullscreen mode to be bound to a key.
  53. const fullscreentoggle [ fullscreen (! $fullscreen) ]
  54. const editsvar [ inputcommand $$arg1 (concatword "push q (addpunct $cmdbuf) ; " $arg1 " (at $q 0) ; pop q") (concatword "edit " $arg1 :) ]
  55. const editmapmsg [ editsvar mapmsg ]
  56. const editalias [ if (checkalias $arg1) 0 [ alias $arg1 "" ] ; inputcommand $$arg1 (concatword "push q (addpunct $cmdbuf) ; " $arg1 " = (at $q 0) ; pop q") (concatword "edit " $arg1 :) ]
  57. const escapenoquotes [ substr (escape $arg1) 1 -2 ]
  58. const run [ push n (concatword "exec config/" $arg1 ".cfg") ; loop i (- $numargs 1) [ n = (concat $n $(concatword arg (+ $i 2))) ] ; n ; pop n]
  59. const closecurmenu [ closemenu (curmenu) ]
  60. const resetcurmenu [ delmenu (curmenu) ; newmenu (curmenu) ]
  61. const refreshcurmenu [ push __curmenu (curmenu); closecurmenu; showmenu (pop __curmenu) ]
  62. const refreshcurmenudelayed [ push __curmenu (curmenu); closecurmenu; sleep 0 [ showmenu (pop __curmenu) ] ]
  63. const switch [ if (&& (< $arg1 $numargs) (>= $arg1 0)) [ arg@(+ $arg1 2) ]]
  64. // Auto-completions
  65. const mapcomplete [complete $arg1 "packages/maps/official packages/maps" cgz]
  66. loop i (listlen (concat $MODES $MODEALIASES)) [ mapcomplete (at (concat $MODES $MODEALIASES) $i) ]
  67. complete demo demos dmo
  68. looplist [
  69. listoptions ""
  70. newent ents
  71. addentity ents
  72. clearents ents
  73. closestenttype ents
  74. enumentities ents
  75. weapon weapons
  76. burstshots weapons
  77. fragmessage weapons
  78. gibmessage weapons
  79. team teamnames
  80. addpunct punctuations // the command addpunct actually wants the punctuation name as second argument, but we can't do that. sry.
  81. loadcrosshair crosshairnames
  82. edittexturestack texturestacktypes
  83. enumsounds soundcategories
  84. ] [ cmd options ] [ listcomplete $cmd (listoptions $options)
  85. ]
  86. listcomplete edittagclip "none plclip clip"
  87. listcomplete getvarrange "min max default"
  88. listcomplete mapareacheck "vdelta steepest total pprest pp"
  89. listcomplete modeinfo "list clear get all ctf|dm|htf|ktf|lss|osok|pf|surv|tdm|tktf|tlss|tosok|tpf|tsurv"
  90. listcomplete mapartist "print get set clear"
  91. listcomplete authsetup "pre priv pub ppass pass passd needpass genpre genpriv genpub newppass newpass unarmed"
  92. listcomplete authkey "clear list delete new add selfcert"
  93. looplist [ addzipmod zipmodremove zipmodgetdesc ] cmd [complete $cmd "mods" zip]
  94. // set up list of skymaps
  95. push skies ""
  96. looplist (gettexturelist skymaps/ "" _ft.jpg) [c1 c2 c3 c4] [skies = (concat $skies (escape (concatword $c3 "/" $c4)))]
  97. listcomplete loadsky (pop skies)
  98. // Game mode descriptions...
  99. gamemodedesc 0 [Team Deathmatch: Shred the enemy team to pieces!]
  100. gamemodedesc 1 [Co-operative Editing: Edit maps with others online!]
  101. gamemodedesc 2 [Deathmatch: Destroy anything that moves! Everyone for themselves!]
  102. gamemodedesc 3 [Survivor: Conserve your precious life, destroy the enemy's. Once all your enemies are dead, the round restarts.]
  103. gamemodedesc 4 [Team Survivor: Conserve your precious life, destroy the enemy team. Once all your enemies are dead, the round restarts.]
  104. gamemodedesc 5 [Capture the Flag: Steal the enemy teams flag and bring it to your home base. Don't let your own flag get stolen.]
  105. gamemodedesc 6 [Pistol Frenzy: Can you make your enemy eat lead with the most simplest of weapons?]
  106. gamemodedesc 7 [Bot Team Deathmatch: Find the enemy A.I. and destroy them!]
  107. gamemodedesc 8 [Bot Deathmatch: It's every man and A.I. for themselves! Dismantle those bots!]
  108. gamemodedesc 9 [Last Swiss Standing: Knive and bomb the enemy!]
  109. gamemodedesc 10 [One Shot, One Kill: You and your opponents start with 1hp, a sniper rifle, a knife and no pickups. Survive with your sniper, or humiliate with your swiss steel.]
  110. gamemodedesc 11 [Team One Shot, One Kill: Your team starts with 1hp, a sniper rifle, a knife and no pickups. Survive with your sniper, or humiliate with your swiss steel.]
  111. gamemodedesc 12 [Bot One Shot, One Kill: You and the bots start with 1hp, a sniper rifle, a knife and no pickups. Survive with your sniper, or humiliate with your swiss steel.]
  112. gamemodedesc 13 [Hunt the Flag: Find the enemy flag, frag the flag bearer and collect the flag to score. Protect your own team flag. If the flag bearer collects the enemy flag, they gain a 1 point bonus.]
  113. gamemodedesc 14 [Team Keep the Flag: There is only one flag. Get the flag and keep it. You score one point every 15 seconds. If your teammate has the flag, protect him. If the flag bearer collects the enemy flag, they gain a 1 point bonus.]
  114. gamemodedesc 15 [Keep the Flag: Get the flag and keep it. You score one point every 15 seconds. Everybody else will want to destroy you!]
  115. gamemodedesc 16 [Team Pistol Frenzy: Can you make your enemy team eat lead with the most simplest of weapons?]
  116. gamemodedesc 17 [Team Last Swiss Standing: Knive and bomb the enemy team!]
  117. gamemodedesc 18 [Bot Pistol Frenzy: Can you make the enemy A.I. eat lead with the most simplest of weapons?]
  118. gamemodedesc 19 [Bot Last Swiss Standing: Knive and bomb the enemy A.I.!]
  119. gamemodedesc 20 [Bot Team Survivor: Conserve your precious life, destroy the enemy A.I. team! Once all your enemies are dead, the round restarts.]
  120. gamemodedesc 21 [Bot Team One Shot, One Kill: You and your A.I. team start with 1hp, a sniper rifle, a knife and no pickups. Survive with your sniper, or humiliate with your swiss steel.]
  121. const resetbinds [ run resetbinds; echo "\f3All binds have been reset to default values!" ]
  122. const changeteam [ if (< (player1 team) 4) [ team (at [RVSF CLA RVSF-SPECT CLA-SPECT] (player1 team)) ] ]
  123. const NUM_WEAPONS (listlen (listoptions weapons))
  124. const NUM_MODES (listlen $MODES)
  125. const MAX_CLIENTS 16
  126. const MAX_BOT_MATCH_LENGTH 60
  127. const getgunindex [ findlist (listoptions weapons) $arg1 ]
  128. loop r $NUM_MODES [ const (at $MODES $r) (format [votemap %1 %2 %3] $r "$arg1" "$arg2") ]
  129. const modenum [ result (findlist $MODES $arg1) ]
  130. // Mode/map-setting aliases.
  131. const votemap [ mode $arg1; map $arg2 $arg3 ]
  132. const lms [ surv $arg1 $arg2 ]
  133. const vip [ htf $arg1 $arg2 ]
  134. const add2alias [
  135. if (strcmp [] (getalias $arg1)) [ $arg1 = $arg2 ] [
  136. $arg1 = (concat (concatword (getalias $arg1) [;]) $arg2)
  137. ]
  138. ]
  139. const addOnLoadOnce [ add2alias mapstartonce $arg1 ]
  140. const addOnLoadAlways [ add2alias mapstartalways $arg1 ]
  141. const addOnQuit [ add2alias onQuit $arg1 ]
  142. const check2init [ if (! (checkalias $arg1)) [ tempalias $arg1 $arg2 ] ] // only overwrites an alias if it doesn't exist
  143. const check2initlist [ loop cll (listlen $arg1) [ check2init (at $arg1 $cll) $arg2 ] ] // check2inits multiple aliases
  144. const forceinit [ loop fil (listlen $arg1) [ (at $arg1 $fil) = $arg2 ] ] // forcibly overwrites multiple aliases
  145. const checkinit [ if (! (checkalias $arg1)) [ $arg1 = "" ]; if (> $numargs 1) [ if (! (strstr (getalias $arg1) $arg2)) [ add2alias $arg1 $arg2 ] ] ] // ensures the initialization of an alias, optionally ensures the alias contains string $arg2
  146. const aliasinit [ loop ail (listlen $arg1) [ checkinit (at $arg1 $ail) $arg2 ] ] // checkinits multiple aliases
  147. const add2list [ if (strcmp [] (getalias $arg1)) [ $arg1 = $arg2 ] [ $arg1 = (concat (getalias $arg1) $arg2) ] ] // works exactly like concat, use as a shortcut to: alias = (concat $alias "some string")
  148. const add2bind [ if (! (strstr (keybind $arg1) $arg2)) [ bind $arg1 (format [%1; %2] (keybind $arg1) $arg2) ] ] // works exactly like add2alias except for used with keybinds
  149. const concatuniq [ if (< (findlist $$arg1 $arg2) 0) [$arg1 = (concat $$arg1 (escape $arg2)) ; result 1] [result 0] ] // add item to list, if it's not already been in the list
  150. // Weapon switching/action utilities.
  151. const hasprimary [ result (= (curweapon) (currentprimary)) ]
  152. const primary [ weapon (currentprimary) ]
  153. const ptoggle [ if (hasprimary) $arg1 primary ] // Toggle between primary/specified weapon
  154. const secondary [ weapon PISTOL ]
  155. const sndtoggle [ ptoggle secondary ]
  156. const melee [ weapon KNIFE ]
  157. const knftoggle [ ptoggle melee ]
  158. const grenades [ weapon GRENADE ]
  159. const gndtoggle [ ptoggle grenades ]
  160. const altaction [ (concatword altaction_ (curweapon)) ]
  161. const checkmag [ result (|| (magcontent $arg1) (magreserve $arg1)) ]
  162. const checkrange [ && (>=f $arg1 $arg2) (<=f $arg1 $arg3) ] // checkrange x min max
  163. loop i $NUM_WEAPONS [ (concatword altaction_ $i) = quicknadethrow ] // Quick nade throw is default
  164. // Use format to define altaction_N aliases from now on, makes for less edits in the future if weapon IDs change. - Bukz
  165. // (format altaction_%1 (getgunindex knife)) = [ if (checkmag (currentprimary)) primary [ if (|| (checkmag PISTOL) (checkmag AKIMBO)) secondary [ if (checkmag GRENADE) grenades ] ] ] // Knife // uncomment to switch to primary/secondary/grenades with MOUSE2 depending on ammo content for each.
  166. (format altaction_%1 (getgunindex sniper)) = [ setscope 1; onrelease [ setscope 0 ] ] // Sniper
  167. // (format altaction_%1 (getgunindex grenades)) = attack // Grenade // with this comment, you throw the nade and the nade is unselected : Brahma
  168. oldsens = $sensitivity
  169. const zoom [
  170. if (= $arg1 1) [
  171. if (! (=f $sensitivity $scopesens)) [
  172. oldsens = $sensitivity
  173. // avoid error if using 0.001 as sensitivity
  174. newsens = $scopesens
  175. if (> (*f 1 1000) $newsens) [ if (< 1000 $newsens) [ sensitivity $scopesens ] ]
  176. setscope 1
  177. ]
  178. ] [ sensitivity $oldsens; setscope 0 ]
  179. ]
  180. delta_game_0 = [ if (= $arg1 1) [ shiftweapon 1 ] [ shiftweapon -1 ] ] // Cycle through weapons
  181. delta_game_1 = [ if (checkrange (+ $gamma $arg1) 30 300) [ gamma (+ $gamma $arg1) ] ] // Tweak gamma
  182. delta_game_2 = [ if (checkrange (+ $fov $arg1) 75 120) [ fov (+ $fov $arg1) ] ] // Tweak fov
  183. delta_spect_0 = [ changefollowplayer $arg1 ]
  184. // Map editing using the mousewheel...
  185. tempalias modifier 0
  186. tempalias editmeta2down 0
  187. const domodifier [ modifier = $arg1; onrelease [ modifier = 0 ] ]
  188. const universaldelta [
  189. push s
  190. if $editing [ s = edit ] [
  191. if (player1 alive) [ s = game ] [ s = spect ]
  192. ]
  193. [delta_@(pop s)_@modifier] (* $arg1 (at "1 3" $editmetakeydown)) (* $arg1 (at "1 10" $editmetakeydown))
  194. ]
  195. // To utilize the below, you will need to bind "domodifier X"
  196. // (replace X with the number of the delta_edit) to a key. To
  197. // use them, simply hold the key that the "domodifier" is bound
  198. // to and then scroll backwards/forwards while looking at the
  199. // floor/ceiling.
  200. delta_edit_0 = [ editheight $flrceil $arg1 ] // Move cubes...
  201. delta_edit_1 = [ if $flrceil [ vdelta $arg1 ] [ vdelta (- 0 $arg1) ] ] // Change heightfielding...
  202. delta_edit_2 = [ edittex $flrceil $arg1 ] // Change floor/ceiling textures...
  203. delta_edit_3 = [ edittex (+ $flrceil 1) $arg1 ] // Change wall/upper-wall textures...
  204. delta_edit_4 = [ equalize $flrceil ] // Equalize floor/ceiling...
  205. delta_edit_6 = [ entproperty $editaxis $arg1 ] // Move map entity...
  206. delta_edit_10 = [ if (checkrange (+f $flyspeed (divf $arg1 4)) 1 5) [ flyspeed (+f $flyspeed (divf $arg1 4)); echo $flyspeed ] ] // Tweak flyspeed
  207. delta_edit_11 = [ expandselection $arg1 ] // Expand/shrink the current selection
  208. delta_edit_attr1 = [ entproperty 0 $arg2 $editmeta2down ] // Changes the first value on entities...
  209. delta_edit_attr2 = [ entproperty 1 $arg2 $editmeta2down ] // Changes the second value on entities...
  210. delta_edit_attr3 = [ entproperty 2 $arg2 $editmeta2down ] // Changes the third value on entities...
  211. delta_edit_attr4 = [ entproperty 3 $arg2 $editmeta2down ] // Changes the fourth value on entities...
  212. delta_edit_attr5 = [ entproperty 4 $arg2 $editmeta2down ] // Changes the fifth value on entities...
  213. delta_edit_attr6 = [ entproperty 5 $arg2 $editmeta2down ] // Changes the sixth value on entities...
  214. delta_edit_attr7 = [ entproperty 6 $arg2 $editmeta2down ] // Changes the seventh value on entities...
  215. delta_edit_spawns = [ gotonextplayerstart $arg1 ]
  216. delta_edit_todoents = [ gotonexttodoentity $arg1 ]
  217. delta_game_spawns = []
  218. // Scroll console (in all modes)
  219. delta_game_conscroll = [ __scrolled = $conopen ; conskip (* 4 $arg1) ]
  220. delta_spect_conscroll = $delta_game_conscroll
  221. delta_edit_conscroll = $delta_game_conscroll
  222. // HUD toggles
  223. const toggleshowmap [ showmap 1; onrelease [ showmap 0 ] ]
  224. // convenient connecting from the serverbrowser
  225. // sbconnect arg list:
  226. // arg1 IP, arg2 port,
  227. // arg3 1: server full
  228. // arg4 1: password protected
  229. // arg5 1: private mode, 2: match mode
  230. // arg6 1: banned, 2: blacklisted 3: both
  231. // arg7 "server description"
  232. // TODO: interpret a#3,4,5,6 [ft:any1:2010apr04]
  233. const sbconnect [
  234. tempalias sbdns $arg1; tempalias sbport $arg2; tempalias sbdesc $arg7; tempalias sbpwd []; tempalias sbmsg []
  235. if (>= $arg5 1) [
  236. sbmsg = [This server is set to private.]; showmenu [password required]
  237. ] [
  238. if (>= $arg6 1) [
  239. sbmsg = [You are banned from this server.]; showmenu [password required]
  240. ] [
  241. if (= $arg4 1) [
  242. sbmsg = [This server is password-protected.]; showmenu [password required]
  243. ] [
  244. if (> (strlen $arg7) 0) [ echo connecting to $arg7 ]
  245. connect $arg1 $arg2
  246. ]
  247. ]
  248. ]
  249. ]
  250. // answer last PM
  251. const quickanswer [ if (>= $lastpm 0) [ saycommand (concat /pm $lastpm []) ] [ saycommand (concat /pm []) ] ]
  252. // For those players who use IRC too much...
  253. const join [ connect $arg1 $arg2 $arg3 ]
  254. const reconnect [ if $numargs [ tempalias svpass $arg1 ] [ tempalias svpass [] ]; if $connected [ tempalias svdata (curserver); afterdisconnect [ connect (at $svdata 0) (at $svdata 1) $svpass ] ] ]
  255. const dlmap [ getmap $arg1 [ sleep 2500 (concat map $arg1) ] ]
  256. const rndmap [ result (at $__defaultmaps (rnd (listlen $__defaultmaps))) ]
  257. const rrnd [ + (rnd (- $arg2 $arg1)) $arg1 ]
  258. const listaverage [ push sum "" ; looplist $arg1 n [ +=f sum $n ] ; if (strlen $sum) [ div=f sum (listlen $arg1) ] ; result (pop sum) ]
  259. tempalias pasteent [if $editing [echo no entity copied, yet]]
  260. const copyent [
  261. if $editing [
  262. push n (format2 "%1 %5 %6 %7 %8 %9 %010 %011" (editentity (getclosestent)))
  263. push d (switch (findlist "mapmodel sound" (at $n 0)) [mapmodelslotname (at $n 2)] [at (editmapsoundslot (at $n 1)) 0])
  264. pasteent = [if $editing [if $editmetakeydown [showmenu [Paste entity]] [newent7 @@@n ; echo @@@n @@@d pasted.]]]
  265. newmenu [Paste entity]
  266. menuitem [paste: @n @d] [newent7 @n ; echo @n @d pasted.]
  267. echo $n $d copied.
  268. pop n d
  269. ]
  270. ]
  271. const newent7 [ // like newent, but setting all seven attributes directly
  272. if $numargs [
  273. loop i 8 [ push [a@i] (if (< $i $numargs) [result $arg@(+ $i 1)])]
  274. selectionwalk [] [
  275. push n (addentity $a0)
  276. if (strlen $n) [ editentity $n (at $sw_cursel 0) (at $sw_cursel 1) "" $a1 $a2 $a3 $a4 $a5 $a6 $a7 ]
  277. pop n
  278. ]
  279. loop i 8 [ pop [a@i] ]
  280. ]
  281. ]
  282. // countwalls - Counts cubes of a specific type in all selections
  283. const countwalls [
  284. push __cnt 0
  285. selectionwalk [ if (= $sw_type $arg1) [ += __cnt 1 ] ]
  286. pop __cnt
  287. ]
  288. // cycle through all playerstarts
  289. const gotonextplayerstart [
  290. if (&& (!= $arg1 1) (!= $arg1 -1)) [ arg1 = 1 ]
  291. if (! (checkalias __gotonextplayerstart)) [ tempalias __gotonextplayerstart -1 ]
  292. push sl ""
  293. looplist [0 1 100] t [
  294. looplist (enumentities playerstart) i [
  295. if (= $t (at (editentity $i) 5)) [
  296. sl = (concat $sl $i)
  297. ]
  298. ]
  299. ]
  300. push n (listlen $sl)
  301. if (&& $n $editing) [
  302. __gotonextplayerstart = (mod (+ $n $n $arg1 $__gotonextplayerstart) $n)
  303. gotoentity (at $sl $__gotonextplayerstart)
  304. edittoggle ; sleep 50 edittoggle
  305. ]
  306. pop n sl
  307. ]
  308. // cycle through todo entities
  309. const gotonexttodoentity [
  310. if (&& (!= $arg1 1) (!= $arg1 -1)) [ arg1 = 1 ]
  311. if (! (checkalias __gotonexttodoentity)) [ tempalias __gotonexttodoentity -1 ]
  312. push l (enumtodoentities)
  313. push n (div (listlen $l) 2)
  314. if (&& $n $editing) [
  315. __gotonexttodoentity = (mod (+ $n $n $arg1 $__gotonexttodoentity) $n)
  316. looplisti $l [e desc] [
  317. if (= $i $__gotonexttodoentity) [
  318. gotoentity $e
  319. echo (concatword "TODO entity #" $e ": \fs\f4" (editentity $e) "\fr ") $desc
  320. ]
  321. ]
  322. ]
  323. pop n l
  324. ]
  325. // select whole map
  326. const selectall [
  327. select 2 2 (- (powf 2 (mapsize)) 4) (- (powf 2 (mapsize)) 4)
  328. ]
  329. // push and pop selection sets
  330. const pushselections [
  331. if (listlen (selx)) [
  332. push selsets ""
  333. selectionwalk [] [ selsets = (concat $selsets "; addselection" $sw_cursel) ]
  334. push popselections (concat "resetselections" (pop selsets) "; pop popselections")
  335. ][
  336. echo no selction
  337. ]
  338. ]
  339. tempalias popselections [ echo no selections stored ]
  340. const __changeselectionsize [
  341. if (&& $editing (= $numargs 4)) [
  342. push selsets ""
  343. selectionwalk [] [ selsets = (concat $selsets $sw_cursel) ]
  344. resetselections
  345. looplist (pop selsets) [x y xs ys] [
  346. if (&& (> (+ $xs $arg3) 0) (> (+ $ys $arg4) 0)) [
  347. addselection (- $x $arg1) (- $y $arg2) (+ $xs $arg3) (+ $ys $arg4)
  348. ] [
  349. addselection $x $y $xs $ys
  350. ]
  351. ]
  352. ]
  353. ]
  354. // enlarge selections after slope or arch placement to change all vdelta values (when enlargearchslopeselections is 0)
  355. const enlargevdeltaselections [ __changeselectionsize 0 0 (if $numargs $arg1 1) (if $numargs $arg1 1) ]
  356. // /expandselection 1 // makes the current selection bigger by 1 cube on all sides
  357. const expandselection [ if $numargs [ __changeselectionsize $arg1 $arg1 (* 2 $arg1) (* 2 $arg1) ] ]
  358. // /shrinkselection 1 // makes the current selection smaller by 1 cube on all sides
  359. const shrinkselection [ if $numargs [ *= arg1 -1 ; __changeselectionsize $arg1 $arg1 (* 2 $arg1) (* 2 $arg1) ] ]
  360. alias updateeditinfopanel explainclosestentity // default hook
  361. const __entexp_light [ at [ "radius: %1\nintensity: %2\n\n\f4(white light)" "radius: %1\nr: %2\ng: %3\nb: %4\n\n\f4(colored light)" ] (|| (getentattr 2 1) (getentattr 3 1)) ]
  362. const __entexp_playerstart [ result "angle: %1\nteam: %2" ]
  363. const __entexp_pistol [ result "elevation: %1" ]
  364. const __entexp_ammobox __entexp_pistol
  365. const __entexp_grenades __entexp_pistol
  366. const __entexp_health __entexp_pistol
  367. const __entexp_helmet __entexp_pistol
  368. const __entexp_armour __entexp_pistol
  369. const __entexp_akimbo __entexp_pistol
  370. const __entexp_mapmodel [ concatword "angle: %1\nconfig slot: #%2\n\elevation: %3\ntexture: %4\npitch: %5\nroll: %6\n\n\fs\f1slot #%2 info:\n" (format2 "\f9%5\fr\nclip radius: %1\nclip height: %2\nelevation: %3 scale: %4" (editmapmodelslot (getentattr 1)))]
  371. const __entexp_trigger [ result "tag: %1\ntype: %2" ]
  372. const __entexp_ladder [ result "height: %1" ]
  373. const __entexp_ctf-flag [ result "angle: %1\nteam: %2" ]
  374. const __entexp_sound [ concatword "config slot: #%1\nradius: %2\nsize: %3\nvolume: %4\n\n\fs\f1slot #%1 info:\n" (format2 "\f9%1\fr\nmaxuses: %2" (editmapsoundslot (getentattr 0)))]
  375. const __entexp_clip [ result "elevation: %1\nx-radius: %2\ny-radius: %3\nheight: %4\nslope: %6\nshape: %7" ]
  376. const __entexp_plclip __entexp_clip
  377. const __entexp_dummy [ result "n/a" ]
  378. const explainclosestentity [
  379. if (>= (getclosestent) 0) [
  380. concatword "\fs\f1" (getenttype) "\fr entity:\n\n" (format2 ((concatword __entexp_ (getenttype))) (format2 "%5 %6 %7 %8 %9 %010 %011" (editentity (getclosestent))))
  381. ]
  382. ]
  383. // megabind - Binds a key to many different actions depending on the current game state.
  384. const megabind [ if (> $numargs 5) [ bind $arg1 (format "if (watchingdemo) [ %1 ] [ if (|| $editing (= $gamemode 1)) [ %2 ] [ if $connected [ %3 ] [ if (curmodeattr bot) [ %4 ] [ %5 ] ] ] ]" $arg2 $arg3 $arg4 $arg5 $arg6) ] ]
  385. // storesets - Generates an alias (list) of the current values for the given CVARs.
  386. const storesets [
  387. if (> $numargs 1) [
  388. tempalias badargs 0; $arg2 = []
  389. loop ssl (listlen $arg1) [
  390. if (isIdent (at $arg1 $ssl)) [
  391. add2list $arg2 (getalias (at $arg1 $ssl))
  392. ] [ badargs = 1; break ]
  393. ]
  394. if $badargs [ delalias $arg2; echo "\f3Error: \f5Bad argument(s) given!" ]
  395. ]
  396. ]
  397. // cleanshot - Take a "clean" screenshot with no HUD items.
  398. const __disablehud [ tempalias __tmp_old_sets (concat hudgun $hudgun ";" showclips $showclips) ; hudgun 0 ; showclips 0 ; if $editing [ seteditshow 0 ]; blankouthud 1000 ]
  399. const __enablehud [ __tmp_old_sets ; if $editing seteditshow ; blankouthud 0 ]
  400. const cleanshot [ __disablehud; sleep 200 screenshot; sleep 500 __enablehud ]
  401. // highestcn - Returns the highest valid client number available.
  402. const highestcn [
  403. hcn = -1
  404. if $connected [ nl = (+ $MAX_CLIENTS 1) ] [ if (curmodeattr bot) [ nl = 100 ] [ nl = 1 ] ]
  405. loop h $nl [
  406. if (isclient $h) [ hcn = $h ]
  407. ]
  408. result $hcn
  409. ]
  410. ingall = 0
  411. const ignoreall [ if $connected [ ingall = 1; loop ia (+ (highestcn) 1) [ ignore $ia ]; echo "\f1NOTE: \f5all clients currently on the server were ignored" ] ]
  412. const unignoreall [ if $connected [ ingall = 0; clearignored -1; echo "\f1NOTE: \f5all clients currently on the server were unignored" ] ]
  413. const ignoreteam [
  414. if (curmodeattr team) [
  415. _arg1 = (toupper $arg1)
  416. if (|| (strcmp $_arg1 CLA) (strcmp $_arg1 RVSF)) [
  417. loop itl (+ (highestcn) 1) [
  418. if (isclient $itl) [
  419. if (= (player $itl team) (at [0 1] (strcmp $_arg1 RVSF))) [ ignore $itl ]
  420. ]
  421. ]
  422. ] [
  423. if (checkrange $_arg1 0 1) [
  424. loop itl (+ (highestcn) 1) [
  425. if (isclient $itl) [
  426. if (= (player $itl team) $_arg1) [ ignore $itl ]
  427. ]
  428. ]
  429. ]
  430. ]
  431. ] ignoreall
  432. ]
  433. const ignoreenemy [ if (! (player1 spect)) [ignoreteam (at [0 1] (! (player1 team)))] ]
  434. // Simple claim-admin script for one single-server.
  435. // Fill in the 3 aliases below, and uncomment the below line to activate.
  436. // bind F3 "customclaimadminscript"
  437. _CAS_serverip = "IP ADDRESS"
  438. _CAS_serverpass = "PASSWORD"
  439. _CAS_servername = "SERVER NAME"
  440. const customclaimadminscript [
  441. if (strcmp (curserver 1) $_CAS_serverip) [
  442. if (! (player1 role)) [ setadmin 1 $_CAS_serverpass ] [ setadmin 0 ]
  443. ] [ echo "\f3Error: \f5you're not connected to" $_CAS_servername servers ]
  444. ]
  445. // manage per-map gamma values
  446. // setgamma <x> sets a persistent gamma value for a map
  447. const setgamma [
  448. push nn (concatword "__dyngamma_" (curmap))
  449. if (checkrange $arg1 30 300) [
  450. $nn = $arg1
  451. echo "gamma preset for map" (curmap) "set to" $arg1
  452. ] [
  453. if (&& [checkalias $nn] [strlen $$nn]) [
  454. $nn = ""
  455. echo "gamma preset for map" (curmap) "deleted"
  456. ]
  457. ]
  458. pop nn
  459. ]
  460. const applygamma [
  461. push nn (concatword "__dyngamma_" (curmap))
  462. if (&& [checkalias $nn] [strlen $$nn]) [ gamma $$nn ; echo "gamma set to" $$nn ] [ gamma $defaultgamma ]
  463. pop nn
  464. ]
  465. addOnLoadAlways applygamma
  466. // get optional scripts on demand
  467. tempalias load_autosave [ run opt/autosave ; alias load_autosave [] ]
  468. tempalias load_compatibility [ run opt/compatibility ; alias load_compatibility [] ]
  469. tempalias load_survival [ load_compatibility ; run opt/survival ; alias load_survival [] ]
  470. tempalias load_parsestring [ run opt/parsestring ; alias load_parsestring [] ]
  471. tempalias load_faq [ run opt/faq ; alias load_faq [] ]
  472. tempalias load_convmap [ saycommand "/run opt/convmap " ]
  473. tempalias load_mapeditscripts [ run opt/mapeditscripts ]