mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-13 02:42:32 +00:00
* sdf * fsda * fuck * fuck2 * toolz * sdaf * sdfa * saf * sdfa * sdfa * sdf * sdfa * temp rename * temp rename * temp rename * sdaf * the pain is immensurable in the land of byond * the curse of rah * safd * sadf * sadf * gf * asf * fssdfa * sfd * sadf * sfda * brah * brah * it's easier for you to fix this * ffs * brah * brah
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)
|