# Server

## Server sided events

The following event gets triggered whenever the shells list gets updated

> `kq_shellbuilder:updated`

No additional information is passed.

## Server exports

### GetShells

This export allows you to retrieve the shells information

```lua
-- Example
exports.kq_shellbuilder:GetShells()

-- Returns:
-- {
--     id = 1,
--     title = "My shell",
--     coords = {x = 0.0, y = 0.0, z = 0.0}, -- Coords of the IPL
--     spawnPoint = {x = -1.0, y = 2.0, z = 0.0}, -- The offset for the shell spawnpoint
-- }
```
