# General

### How do you add more screens?

To be able to create more screens you'll need to create more gfx files.&#x20;

1. Go into the stream folder osp\_ambulance/stream
2. Copy an already existing gfx file
3. Rename the file by incrementing the number at the end by one. &#x20;

```
// Example
If you want to have more of the stationary screens, you'll need to add more of those files
Eg. generic_texture_renderer_stationary6.gfx --> generic_texture_renderer_stationary7.gfx
```

***

### How do I disable ragdoll when getting wounded?

To disable the instant ragdoll effect when getting injured you'll need to change a config value on the wounds you want to disable it for.\
\
Change the&#x20;

```lua
causeStaggering = 25 -- The int is the chance to trigger a ragdoll in %
```

variable on the wounds you want to change/disable it for.&#x20;
