# Server Events

### vms\_gym:runStrengthBooster

An event for use, for example, with the steroids item. When this event is triggered, the player will have boosted point acquisition at the gym during strength exercises.

{% code fullWidth="false" %}

```lua
-- @param {multiplier: number}: For example: 3.0
-- @param {duration: number}: Duration in ms of strength booster - for example 360000
TriggerClientEvent('vms_gym:runStrengthBooster', src, multiplier, duration)
```

{% endcode %}

***

### vms\_gym:runConditionBooster

An event for use, for example, with the protein item. When this event is triggered, the player will have boosted point acquisition while running, for example, on a treadmill.

```lua
-- @param {multiplier: number}: For example: 4.0
-- @param {duration: number}: Duration in ms of condition booster - for example 360000
TriggerClientEvent('vms_gym:runConditionBooster', src, multiplier, duration)
```
