Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision |
crpl:docs:playsound [2013/02/11 19:44] – created virgilw | crpl:docs:playsound [2025/02/14 14:57] (current) – external edit 127.0.0.1 |
---|
~~DISCUSSION~~ | |
<- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#sound_commands|SoundCommands]] | <- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#sound_commands|SoundCommands]] |
===== PlaySound===== | ===== PlaySound===== |
| |
^Arguments^Result^Notation^ | ^Arguments ^Result^ Notation ^ |
|Name of Sound| |''s1 -- ''| | |Name of Sound | | '' s1 -- '' | |
| |
| |
=== Description === | === Description === |
Plays a sound. The list of available sound names can be found in the game by clicking the "Sound" button on the unit editing panel. Here, sounds can be sampled as well. Note that a sound play asynchronously. Multiple sounds can be played at the same time and will overlap. No given sound can be played within 0.1 seconds of itself, though. When playing sounds in custom maps, care should be taken to no play sounds that don't fit the action or that are overly annoying. | Plays a sound. The list of available sound names can be found in the game by clicking the "Sound" button on the unit editing panel. Here, sounds can be sampled as well. |
| |
| Note that sounds play asynchronously - multiple sounds can be played at the same time and will overlap, with one limitation - no given sound can be played within 0.1 seconds of itself. When playing sounds in custom maps, take care to select those that fit the action and are not overly annoying. |
| |
| Names are **case sensitive**. |
| |
| Sounds are: |
| * "Explosion0" through "Explosion11" |
| * "Weapons0" through "Weapons33" |
| * "Misc0" through "Misc35" |
| * "Retro0" through "Retro26" |
| * "PulseCannonFire" |
| * "PulseExplosion" |
| * "MortarFire" |
| * "MortarExplosion" |
| * "DroneTakeoff" |
| * "Dronefire" |
| * "SniperFire" |
| * "SprayerFire" |
| * "CollectorOff" |
| * "CollectorOn" |
| * "BerthaShellHit" |
| * "BerthaFire" |
| * "UnitExplosion" |
| * "UnitLand" |
| * "UnitTakeOff" |
| * "UnitPlaced" |
| * "ErrorBeep" |
| * "CreeperShrapnelHit" |
| * "BombExplode" |
| * "InfoMessoge" |
| * "ShieldGeneratorOn" |
| * "ShieldGeneratorOff" |
| * "CreeperAA" |
| * "SporeExplosion" |
| * "SporeFire" |
| * "RunnerExplosion" |
| * "RunnerFire" |
| * "Stunned" |
| * "TotemExplosion" |
| * "BlackHoleDone" |
| * "MissionSuccess" |
| * "MissionFailure" |
| |
=== Examples === | === Examples === |
PlaySound("Explosion0") | PlaySound("Explosion0") |
</code> | </code> |
| |
| <code> |
| #cycle through all the retro sounds |
| <-num 1 add 27 mod ->num |
| "Retro" <-num concat PlaySound |
| 60 delay |
| </code> |
| |
| |
| |