mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
/*
|
|
|
|
CHOMPedit - This file has been excluded from the compilation.
|
|
Reason: Replaced with "Tickets System"
|
|
|
|
*/
|
|
|
|
/datum/admin_help/proc/send2adminchat()
|
|
if(!CONFIG_GET(string/chat_webhook_url))
|
|
return
|
|
|
|
var/list/adm = get_admin_counts()
|
|
var/list/afkmins = adm["afk"]
|
|
var/list/allmins = adm["total"]
|
|
|
|
spawn(0) //Unreliable world.Exports()
|
|
var/query_string = "type=adminhelp"
|
|
query_string += "&key=[url_encode(CONFIG_GET(string/chat_webhook_key))]"
|
|
query_string += "&from=[url_encode(key_name(initiator))]"
|
|
query_string += "&msg=[url_encode(html_decode(name))]"
|
|
query_string += "&admin_number=[allmins.len]"
|
|
query_string += "&admin_number_afk=[afkmins.len]"
|
|
world.Export("[CONFIG_GET(string/chat_webhook_url)]?[query_string]")
|
|
|
|
/client/verb/adminspice()
|
|
set category = "Admin"
|
|
set name = "Request Spice"
|
|
set desc = "Request admins to spice round up for you"
|
|
|
|
//handle muting and automuting
|
|
if(prefs.muted & MUTE_ADMINHELP)
|
|
to_chat(usr, span_danger("Error: You cannot request spice (muted from adminhelps)."))
|
|
return
|
|
|
|
if(tgui_alert(usr, "Are you sure you want to request the admins spice things up for you? You accept the consequences if you do.","Spicy!",list("Yes","No")) == "Yes")
|
|
message_admins("[ADMIN_FULLMONTY(usr)] has requested the round be spiced up a little.")
|
|
to_chat(usr, span_notice("You have requested some more spice in your round."))
|
|
else
|
|
to_chat(usr, span_notice("Spice request cancelled."))
|
|
return
|
|
|
|
//if they requested spice, then remove spice verb temporarily to prevent spamming
|
|
remove_verb(usr, /client/verb/adminspice)
|
|
spawn(10 MINUTES)
|
|
if(usr) // In case we left in the 10 minute cooldown
|
|
add_verb(usr, /client/verb/adminspice) // 10 minute cool-down for spice request
|