mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-06-08 07:38:19 +01:00
9283d96c69
* Bump, debug verb and changelog * Removed udp_debugger
13 lines
443 B
Plaintext
13 lines
443 B
Plaintext
/**
|
|
* Debug verb for our custom UDP module, generally used for gelf logging
|
|
*/
|
|
/client/proc/rustg_send_udp()
|
|
set name = "RUSTG Send UDP"
|
|
set category = "Debug"
|
|
set desc = "Sends an UDP text packet using our rust_g custom module."
|
|
var/destination = input(usr, "Address in ip:port format.", "Address", null)
|
|
var/message = input(usr, "Message to send.", "Message", null)
|
|
|
|
if(destination && message)
|
|
rustg_udp_send(destination, message)
|