mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 07:00:03 +00:00
164 lines
2.1 KiB
Markdown
164 lines
2.1 KiB
Markdown
|
# Server
|
||
|
|
||
|
For Server-sided
|
||
|
|
||
|
## `.Server`
|
||
|
|
||
|
Create new Warp event.
|
||
|
|
||
|
::: code-group
|
||
|
```lua [Variable]
|
||
|
(
|
||
|
Identifier: string,
|
||
|
rateLimit: {
|
||
|
maxEntrance: number,
|
||
|
interval: number,
|
||
|
}?
|
||
|
)
|
||
|
```
|
||
|
|
||
|
```lua [Example]
|
||
|
local Remote = Warp.new("Remote")
|
||
|
```
|
||
|
:::
|
||
|
|
||
|
## `:Connect`
|
||
|
|
||
|
Connect event to receive incoming from client way.
|
||
|
|
||
|
::: code-group
|
||
|
```lua [Variable]
|
||
|
(
|
||
|
player: Player,
|
||
|
callback: (...any) -> ()
|
||
|
): string
|
||
|
```
|
||
|
|
||
|
```lua [Example]
|
||
|
Remote:Connect(function(player, ...)
|
||
|
print(player, ...)
|
||
|
end)
|
||
|
```
|
||
|
:::
|
||
|
|
||
|
## `:Once`
|
||
|
|
||
|
This function likely `:Connect` but it disconnect the event once it fired.
|
||
|
|
||
|
::: code-group
|
||
|
```lua [Variable]
|
||
|
(
|
||
|
player: Player,
|
||
|
callback: (...any) -> ()
|
||
|
)
|
||
|
```
|
||
|
|
||
|
```lua [Example]
|
||
|
Remote:Once(function(player, ...)
|
||
|
print(player, ...)
|
||
|
end)
|
||
|
```
|
||
|
:::
|
||
|
|
||
|
## `:Disconnect`
|
||
|
|
||
|
Disconnect the event connection.
|
||
|
|
||
|
::: code-group
|
||
|
```lua [Variable]
|
||
|
(
|
||
|
key: string
|
||
|
)
|
||
|
```
|
||
|
|
||
|
```lua [Example]
|
||
|
local connection = Remote:Connect(function(player, ...) end) -- store the key
|
||
|
|
||
|
Remote:Disconnect(connection)
|
||
|
```
|
||
|
:::
|
||
|
|
||
|
## `:DisconnectAll`
|
||
|
|
||
|
Disconnect All the event connection.
|
||
|
|
||
|
```lua [Example]
|
||
|
Remote:DisconnectAll()
|
||
|
```
|
||
|
|
||
|
## `:Fire`
|
||
|
|
||
|
Fire the event to a client.
|
||
|
|
||
|
::: code-group
|
||
|
```lua [Variable]
|
||
|
(
|
||
|
reliable: boolean,
|
||
|
player: Player,
|
||
|
...: any
|
||
|
)
|
||
|
```
|
||
|
|
||
|
```lua [Example]
|
||
|
Remote:Fire(true, player, "Hello World!")
|
||
|
```
|
||
|
:::
|
||
|
|
||
|
## `:Fires` <Badge type="tip" text="Server Only" />
|
||
|
|
||
|
Fire the event to all clients.
|
||
|
|
||
|
::: code-group
|
||
|
```lua [Variable]
|
||
|
(
|
||
|
reliable: boolean,
|
||
|
...: any
|
||
|
)
|
||
|
```
|
||
|
|
||
|
```lua [Example]
|
||
|
Remote:Fires(true, "Hello World!")
|
||
|
```
|
||
|
:::
|
||
|
|
||
|
## `:Invoke`
|
||
|
|
||
|
Semiliar to `:InvokeClient`, its for Invoke to a client.
|
||
|
|
||
|
::: code-group
|
||
|
```lua [Variable]
|
||
|
(
|
||
|
timeout: number,
|
||
|
player: Player,
|
||
|
...: any
|
||
|
) -> (...any)
|
||
|
```
|
||
|
|
||
|
```lua [Example]
|
||
|
local Request = Remote:Invoke(2, player, "Hello World!")
|
||
|
```
|
||
|
:::
|
||
|
|
||
|
::: warning
|
||
|
This function is yielded, once it timeout it will return nil.
|
||
|
:::
|
||
|
|
||
|
## `:Wait`
|
||
|
|
||
|
Wait the event being triggered.
|
||
|
|
||
|
```lua
|
||
|
Remote:Wait()
|
||
|
```
|
||
|
|
||
|
::: warning
|
||
|
This function is yielded, Invoke might also ping this one and also causing error.
|
||
|
:::
|
||
|
|
||
|
## `:Destroy`
|
||
|
|
||
|
Disconnect all connection of event and remove the event from Warp.
|
||
|
|
||
|
```lua
|
||
|
Remote:Destroy()
|
||
|
```
|