home *** CD-ROM | disk | FTP | other *** search
/ Quaaake Level & Editor 1 / Quaaake_1.iso / quake / editor / bsp / ents.qc < prev    next >
Encoding:
Text File  |  1996-08-22  |  14.8 KB  |  508 lines

  1. /*QUAKED air_bubbles (0 .5 .8) (-8 -8 -8) (8 8 8)
  2. Air bubbles.
  3. */
  4. /*QUAKED ambient_light_buzz (0.3 0.1 0.6) (-10 -10 -8) (10 10 8)
  5. Buzzing light.
  6. */
  7. /*QUAKED ambient_drip (0.3 0.1 0.6) (-10 -10 -8) (10 10 8)
  8. Dripping sound.
  9. */
  10. /*QUAKED ambient_drone (0.3 0.1 0.6) (-10 -10 -8) (10 10 8)
  11. Drone sound.
  12. */
  13. /*QUAKED ambient_comp_hum (0.3 0.1 0.6) (-10 -10 -8) (10 10 8)
  14. Computer sound.
  15. */
  16. /*QUAKED ambient_flouro_buzz (0.3 0.1 0.6) (-10 -10 -8) (10 10 8)
  17. Fluorescent light sound.
  18. */
  19. /*QUAKED ambient_suck_wind (0.3 0.1 0.6) (-10 -10 -8) (10 10 8)
  20. Wind sound.
  21. */
  22. /*QUAKED ambient_swamp1 (0.3 0.1 0.6) (-10 -10 -8) (10 10 8)
  23. Swamp sound 1.
  24. */
  25. /*QUAKED ambient_swamp2 (0.3 0.1 0.6) (-10 -10 -8) (10 10 8)
  26. Swamp sound 2.
  27. */
  28. /*QUAKED ambient_thunder (0.3 0.1 0.6) (-10 -10 -8) (10 10 8)
  29. Thunder sound.
  30. */
  31. /*QUAKED event_lightning (0 1 1) (-16 -16 -16) (16 16 16)
  32. Just for boss level.
  33. */
  34. /*QUAKED func_bossgate (0 .5 .8) ?
  35. This bmodel appears unless players
  36. have all of the episode sigils.
  37. */
  38. /*QUAKED func_button (0 .5 .8) ?
  39. When a button is touched, it moves some
  40. distance in the direction of it's angle,
  41. triggers all of it's targets, waits
  42. some time, then returns to it's original
  43. position where it can be triggered again.
  44.  
  45. "angle"        determines the opening direction
  46. "target"    all entities with a matching targetname will be used
  47. "speed"        override the default 40 speed
  48. "wait"        override the default 1 second wait (-1 = never return)
  49. "lip"        override the default 4 pixel lip remaining at end of move
  50. "health"    if set, the button must be killed instead of touched
  51. "sounds"
  52. 0) steam metal
  53. 1) wooden clunk
  54. 2) metallic click
  55. 3) in-out
  56. */
  57. /*QUAKED func_door (0 .5 .8) ? START_OPEN x DOOR_DONT_LINK GOLD_KEY SILVER_KEY TOGGLE
  58. if two doors touch, they are assumed to
  59. be connected and operate as a unit.
  60. TOGGLE causes the door to wait in both
  61. the start and end states for a trigger event.
  62.  
  63. START_OPEN causes the door to move to
  64. its destination when spawned, and operate
  65. in reverse.  It is used to temporarily
  66. or permanently close off an area
  67. when triggered (not usefull for touch
  68. or takedamage doors).
  69.  
  70. Key doors are allways wait -1.
  71.  
  72. "message"    is printed when the door is touched
  73.     if it is a trigger door and it hasn't been
  74.     fired yet
  75. "angle"        determines the opening direction
  76. "targetname" if set, no touch field will be
  77.     spawned and a remote button or trigger
  78.     field activates the door.
  79. "health"    if set, door must be shot open
  80. "speed"        movement speed (100 default)
  81. "wait"        wait before returning (3 default,
  82.     -1 = never return)
  83. "lip"        lip remaining at end of move
  84.     8 default)
  85. "dmg"        damage to inflict when blocked
  86.     (2 default)
  87. "sounds"
  88. 0)    no sound
  89. 1)    stone
  90. 2)    base
  91. 3)    stone chain
  92. 4)    screechy metal
  93. */
  94. /*QUAKED func_door_secret (0 .5 .8) ? open_once 1st_left 1st_down no_shoot always_shoot
  95. Basic secret door. Slides back, then to the
  96. side. Angle determines direction.
  97. wait  = # of seconds before coming back
  98. 1st_left = 1st move is left of arrow
  99. 1st_down = 1st move is down from arrow
  100. always_shoot = even if targeted, keep shootable
  101. t_width = override WIDTH to move back
  102.     (or height if going down)
  103. t_length = override LENGTH to move sideways
  104. "dmg"        damage to inflict when blocked
  105.     (2 default)
  106.  
  107. If a secret door has a targetname, it will only
  108. be opened by it's botton or trigger, not by damage.
  109. "sounds"
  110. 1) medieval
  111. 2) metal
  112. 3) base
  113. */
  114. /*QUAKED func_episodegate (0 .5 .8) ? E1 E2 E3 E4
  115. This bmodel will appear if the
  116. episode has already been completed,
  117. so players can't reenter it.
  118. */
  119. /*QUAKED func_illusionary (0 .5 .8) ?
  120. A simple entity that looks solid
  121. but lets you walk through it.
  122. */
  123. /*QUAKED func_wall (0 .5 .8) ?
  124. This is just a solid wall if not inhibitted
  125. */
  126. /*QUAKED func_train (0 .5 .8) ?
  127. Trains are moving platforms that
  128. players can ride.  The target's origin
  129. specifies the min point of the train
  130. at each corner.  The train spawns at
  131. the first target it is pointing at.
  132. If the train is the target of a
  133. button or trigger, it will not
  134. begin moving until activated.
  135. speed    default 100
  136. dmg        default    2
  137. sounds
  138. 1) ratchet metal
  139. */
  140. /*QUAKED func_plat (0 .5 .8) ? PLAT_LOW_TRIGGER
  141. speed    default 150
  142. Plats are always drawn in the
  143. extended position, so they will
  144. light correctly.
  145.  
  146. If the plat is the target of
  147. another trigger or button, it
  148. will start out disabled in the
  149. extended position until it is
  150. trigger, when it will lower and
  151. become a normal plat.
  152.  
  153. If the "height" key is set, that
  154. will determine the amount the plat
  155. moves, instead of being implicitly
  156. determined by the model's height.
  157. Set "sounds" to one of the following:
  158. 1) base fast
  159. 2) chain slow
  160. */
  161. /*QUAKED func_dm_only (.0 .0 1.0) ?
  162. A teleporter that only appears in deathmatch
  163. */
  164. /*QUAKED info_null (0 0.5 0) (-4 -4 -4) (4 4 4)
  165. Used as a positional target for
  166. spotlights, etc.
  167. */
  168. /*QUAKED info_notnull (0 0.5 0) (-4 -4 -4) (4 4 4)
  169. Used as a positional target for lightning.
  170. */
  171. /*QUAKED info_intermission (1 0.5 0.5) (-16 -16 -16) (16 16 16)
  172. This is the camera point for the intermission.
  173. Use mangle instead of angle, so you can set
  174. pitch or roll as well as yaw.  'pitch roll yaw'
  175. */
  176. /*QUAKED info_player_start (1 0 0) (-16 -16 -24) (16 16 24)
  177. The normal starting point for a level.
  178. */
  179. /*QUAKED info_player_deathmatch (1 0 1) (-16 -16 -24) (16 16 24)
  180. Potential spawning position for deathmatch games
  181. */
  182. /*QUAKED info_player_coop (1 0 1) (-16 -16 -24) (16 16 24)
  183. Potential spawning position for coop games
  184. */
  185. /*QUAKED info_player_start2 (1 0 0) (-16 -16 -24) (16 16 24)
  186. Only used on start map for the
  187. return point from an episode.
  188. */
  189. /*QUAKED info_teleport_destination (0.0 1.0 1.0) ?
  190. This is the destination marker for a teleporter.
  191. It should have a "targetname" field with the same
  192. value as a teleporter's "target" field.
  193. */
  194. /*QUAKED item_cells (0 .5 .8) (0 0 0) (32 32 32) big
  195. Ammo for the Thunderbolt
  196. */
  197. /*QUAKED item_rockets (0 .5 .8) (0 0 0) (32 32 32) big
  198. Ammo for Rocket/Grenade Launcher
  199. */
  200. /*QUAKED item_shells (0 .5 .8) (0 0 0) (32 32 32) big
  201. Ammo for both Shotgun and SuperShotgun
  202. */
  203. /*QUAKED item_spikes (0 .5 .8) (0 0 0) (32 32 32) big
  204. Ammo for Perforator and Super Perforator
  205. */
  206. /*QUAKED item_health (.3 .3 1) (0 0 0) (32 32 32) rotten megahealth
  207. Health box. Normally gives 25 points.
  208. Rotten box heals 5-10 points,
  209. megahealth will add 100 health, then
  210. rot you down to your maximum health limit,
  211. one point per second.
  212. */
  213. /*QUAKED item_artifact_envirosuit (0 .5 .8) (-16 -16 -24) (16 16 32)
  214. Player takes no damage from water or slime for 30 seconds
  215. */
  216. /*QUAKED item_artifact_super_damage (0.5 0.0 0.0) (-8 -8 -8) (8 8 24)
  217. Quad Damage
  218. */
  219. /*QUAKED item_artifact_invulnerability (0 .5 .8) (-16 -16 -24) (16 16 32)
  220. Player is invulnerable for 30 seconds
  221. */
  222. /*QUAKED item_artifact_invisibility (0 .5 .8) (-16 -16 -24) (16 16 32)
  223. Player is invisible for 30 seconds
  224. */
  225. /*QUAKED item_artifact_super_damage (0 .5 .8) (-16 -16 -24) (16 16 32)
  226. The next attack from the player will do 4x damage
  227. */
  228. /*QUAKED item_armorInv (0 .5 .8) (-16 -16 0) (16 16 32)
  229. Red armor
  230. */
  231. /*QUAKED item_armor2 (0 .5 .8) (-16 -16 0) (16 16 32)
  232. Yellow armor
  233. */
  234. /*QUAKED item_armor1 (0 .5 .8) (-16 -16 0) (16 16 32)
  235. Green armor
  236. */
  237. /*QUAKED item_key1 (0 .5 .8) (-16 -16 -24) (16 16 32)
  238. SILVER key
  239. In order for keys to work
  240. you MUST set your maps
  241. worldtype to one of the
  242. following:
  243. 0: medieval
  244. 1: metal
  245. 2: base
  246. */
  247. /*QUAKED item_key2 (0 .5 .8) (-16 -16 -24) (16 16 32)
  248. GOLD key
  249. In order for keys to work
  250. you MUST set your maps
  251. worldtype to one of the
  252. following:
  253. 0: medieval
  254. 1: metal
  255. 2: base
  256. */
  257. /*QUAKED item_sigil (0 .5 .8) (-16 -16 -24) (16 16 32) E1 E2 E3 E4
  258. End of level sigil, pick up to end
  259. episode and return to jrstart.
  260. */
  261. /*QUAKED light (0 1 0) (-8 -8 -8) (8 8 8) START_OFF
  262. Non-displayed light.
  263. Default light value is 300
  264. Default style is 0
  265. If targeted, it will toggle between on or off.
  266. */
  267. /*QUAKED light_torch_small_walltorch (0 .5 0) (-10 -10 -20) (10 10 20)
  268. Short wall torch
  269. Default light value is 200
  270. Default style is 0
  271. */
  272. /*QUAKED light_flame_large_yellow (0 1 0) (-10 -10 -12) (12 12 18)
  273. Large yellow flame ball
  274. */
  275. /*QUAKED light_flame_small_yellow (0 1 0) (-8 -8 -8) (8 8 8) START_OFF
  276. Small yellow flame ball
  277. */
  278. /*QUAKED light_flame_small_white (0 1 0) (-10 -10 -40) (10 10 40) START_OFF
  279. Small white flame ball
  280. */
  281. /*QUAKED light_fluoro (0 1 0) (-8 -8 -8) (8 8 8) START_OFF
  282. Non-displayed light.
  283. Default light value is 300
  284. Default style is 0
  285. If targeted, it will toggle between on or off.
  286. Makes steady fluorescent humming sound
  287. */
  288. /*QUAKED light_fluorospark (0 1 0) (-8 -8 -8) (8 8 8)
  289. Non-displayed light.
  290. Default light value is 300
  291. Default style is 10
  292. Makes sparking, broken fluorescent sound
  293. */
  294. /*QUAKED light_globe (0 1 0) (-8 -8 -8) (8 8 8)
  295. Sphere globe light.
  296. Default light value is 300
  297. Default style is 0
  298. */
  299. /*QUAKED misc_noisemaker (1 0.5 0) (-10 -10 -10) (10 10 10)
  300. For optimization testing, starts
  301. a lot of sounds.
  302. */
  303. /*QUAKED monster_enforcer (1 0 0) (-16 -16 -24) (16 16 40) Ambush
  304. Enforcer
  305. */
  306. /*QUAKED monster_hell_knight (1 0 0) (-16 -16 -24) (16 16 40) Ambush
  307. Hell Knight.
  308. */
  309. /*QUAKED monster_army (1 0 0) (-16 -16 -24) (16 16 40) Ambush
  310. Grunt
  311. */
  312. /*QUAKED monster_dog (1 0 0) (-32 -32 -24) (32 32 40) Ambush
  313. Attack dog
  314. */
  315. /*QUAKED monster_ogre (1 0 0) (-32 -32 -24) (32 32 64) Ambush
  316. Ogre
  317. */
  318. /*QUAKED monster_knight (1 0 0) (-16 -16 -24) (16 16 40) Ambush
  319. Knight
  320. */
  321. /*QUAKED monster_zombie (1 0 0) (-16 -16 -24) (16 16 32) Crucified ambush
  322. If crucified, stick the bounding
  323. box 12 pixels back into a wall to look right.
  324. */
  325. /*QUAKED monster_wizard (1 0 0) (-16 -16 -24) (16 16 40) Ambush
  326. Scragg (Wizard)
  327. */
  328. /*QUAKED monster_demon1 (1 0 0) (-32 -32 -24) (32 32 64) Ambush
  329. Fiend (Demon)
  330. */
  331. /*QUAKED monster_oldone (1 0 0) (-16 -16 -24) (16 16 32)
  332. */
  333. /*QUAKED monster_shambler (1 0 0) (-32 -32 -24) (32 32 64) Ambush
  334. Shambler
  335. */
  336. /*QUAKED monster_shalrath (1 0 0) (-32 -32 -24) (32 32 48) Ambush
  337. */
  338. /*QUAKED monster_boss (1 0 0) (-128 -128 -24) (128 128 256)
  339. Cthon (Boss of Shareware Quake)
  340. */
  341. /*QUAKED monster_tarbaby (1 0 0) (-16 -16 -24) (16 16 24) Ambush
  342. Tarbaby
  343. */
  344. /*QUAKED monster_fish (1 0 0) (-16 -16 -24) (16 16 24) Ambush
  345. Fish
  346. */
  347. /*QUAKED misc_teleporttrain (0 .5 .8) (-8 -8 -8) (8 8 8)
  348. This is used for the final bos
  349. */
  350. /*QUAKED misc_fireball (0 .5 .8) (-8 -8 -8) (8 8 8)
  351. Lava Balls
  352. */
  353. /*QUAKED misc_explobox (0 .5 .8) (0 0 0) (32 32 64)
  354. TESTING THING
  355. */
  356. /*QUAKED misc_explobox2 (0 .5 .8) (0 0 0) (32 32 64)
  357. Smaller exploding box, REGISTERED ONLY
  358. */
  359. /*QUAKED noclass (0 0 0) (-8 -8 -8) (8 8 8)
  360. prints a warning message when spawned
  361. */
  362. /*QUAKED path_corner (0.5 0.3 0) (-8 -8 -8) (8 8 8)
  363. Monsters will continue walking
  364. towards the next target corner.
  365. */
  366. /*QUAKED test_teleport (0 .5 .8) ?
  367. Teleporter testing
  368. */
  369. /*QUAKED test_fodder (0 .5 .8) ?
  370. beating guy
  371. */
  372. /*QUAKED trap_spikeshooter (0 .5 .8) (-8 -8 -8) (8 8 8) superspike laser
  373. When triggered, fires a spike in
  374. the direction set in QuakeEd.
  375. Laser is only for REGISTERED.
  376. */
  377. /*QUAKED trap_shooter (0 .5 .8) (-8 -8 -8) (8 8 8) superspike laser
  378. Continuously fires spikes.
  379. "wait" time between spike (1.0 default)
  380. "nextthink" delay before firing first spike, so multiple shooters can be stagered.
  381. */
  382. /*QUAKED trigger_teleport (0.5 0.0 0.5) ? PLAYER_ONLY
  383. Any object touching this will be transported
  384. to the corresponding info_teleport_destination
  385. entity.  You must set the "target" field,
  386. and create an object with a "targetname"
  387. field that matches.
  388. */
  389. /*QUAKED trigger_changelevel (0.5 0.5 0.5) ? NO_INTERMISSION
  390. When the player touches this, he gets sent
  391. to the map listed in the "map" variable.
  392. Unless the NO_INTERMISSION flag is set,
  393. the view will go to the info_intermission
  394. spot and display stats.
  395. */
  396. /*QUAKED trigger_setskill (0.5 0.0 0.5) ?
  397. sets skill level to the value of "message".
  398. Only used on start map.
  399. */
  400. /*QUAKED trigger_counter (0.5 0.0 0.5) ? nomessage
  401. Acts as an intermediary for an action
  402. that takes multiple inputs.
  403. If nomessage is not set, t will print "1 more.. "
  404. etc when triggered and "sequence complete" when
  405. finished.  After the counter has been triggered
  406. "count" times (default 2), it will fire all of
  407. it's targets and remove itself.
  408. */
  409. /*QUAKED trigger_once (0.5 0.0 0.5) ? notouch
  410. Variable sized trigger. Triggers once, then
  411. removes itself.  You must set the key "target"
  412. to the name of another object in the level
  413. that has a matching "targetname".  If "health"
  414. is set, the trigger must be killed to activate.
  415. If notouch is set, the trigger is only fired
  416. by other entities, not by touching.
  417. if "killtarget" is set, any objects that
  418. have a matching "target" will be removed
  419. when the trigger is fired.  If "angle" is set,
  420. the trigger will only fire when someone is
  421. facing the direction of the angle.  Use
  422. "360" for an angle of 0.
  423. sounds
  424. 1)   secret
  425. 2)   beep beep
  426. 3)   large switch
  427. 4)
  428. set "message" to text string
  429. */
  430. /*QUAKED trigger_multiple (0.5 0.0 0.5) ? notouch
  431. Variable sized repeatable trigger.  Must be
  432. targeted at one or more entities.  If
  433. "health" is set, the trigger must be killed
  434. to activate each time.  If "delay" is set,
  435. the trigger waits some time after activating
  436. before firing.
  437. "wait" : Seconds between triggerings. (.2 default)
  438. If notouch is set, the trigger is only fired by
  439. other entities, not by touching.
  440. sounds
  441. 1)   secret
  442. 2)   beep beep
  443. 3)   large switch
  444. 4)
  445. set "message" to text string
  446. */
  447. /*QUAKED trigger_onlyregistered (0.5 0.0 0.5) ?
  448. Only fires if playing the registered
  449. version, otherwise prints the message
  450. */
  451. /*QUAKED trigger_secret (0.5 0.0 0.5) ?
  452. secret counter trigger
  453. sounds
  454. 1)   secret
  455. 2)   beep beep
  456. 3)
  457. 4)
  458. set "message" to text string
  459. */
  460. /*QUAKED trigger_monsterjump (0.5 0.0 0.5) ?
  461. Walking monsters that touch this will jump in
  462. the direction of the trigger's angle
  463. "speed" default to 200, the speed thrown forward
  464. "height" default to 200, the speed thrown upwards
  465. */
  466. /*QUAKED trigger_relay (0.5 0.0 0.5) ?
  467. :
  468. */
  469. /*QUAKED trigger_hurt (0.5 0.0 0.5) ?
  470. Any object touching this will be hurt
  471. set dmg to damage amount
  472. defalt dmg = 5
  473. */
  474. /*QUAKED trigger_push (0.5 0.0 0.5) ? PUSH_ONCE
  475. Pushes the player
  476. */
  477. /*QUAKED viewthing (0 .5 .8) (-8 -8 -8) (8 8 8)
  478. Just for the debugging level.
  479. Don't use.
  480. */
  481. /*QUAKED weapon_supershotgun (0 .5 .8) (-16 -16 0) (16 16 32)
  482. SuperShotgun
  483. */
  484. /*QUAKED weapon_nailgun (0 .5 .8) (-16 -16 0) (16 16 32)
  485. Perforator
  486. */
  487. /*QUAKED weapon_supernailgun (0 .5 .8) (-16 -16 0) (16 16 32)
  488. Super Perforator
  489. */
  490. /*QUAKED weapon_grenadelauncher (0 .5 .8) (-16 -16 0) (16 16 32)
  491. Grenade Launcher
  492. */
  493. /*QUAKED weapon_rocketlauncher (0 .5 .8) (-16 -16 0) (16 16 32)
  494. Rocket Launcher
  495. */
  496. /*QUAKED weapon_lightning (0 .5 .8) (-16 -16 0) (16 16 32)
  497. Thunderbolt Cannon
  498. */
  499. /*QUAKED worldspawn (0 0 0) ?
  500. Only used for the world entity.
  501. Set message to the level name.
  502. Set sounds to the cd track to play.
  503. World Types:
  504. 0: medieval
  505. 1: metal
  506. 2: base
  507. */
  508.