mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-29 15:08:34 +01:00
Input Conversion Part 2
This commit is contained in:
@@ -928,7 +928,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
|
||||
var/mob/living/M = tgui_input_list(src, "Select who to whisper to:", "Whisper to?", options)
|
||||
if(!M)
|
||||
return 0
|
||||
var/msg = sanitize(input(src, "Message:", "Spectral Whisper") as text|null)
|
||||
var/msg = sanitize(tgui_input_text(src, "Message:", "Spectral Whisper"))
|
||||
if(msg)
|
||||
log_say("(SPECWHISP to [key_name(M)]): [msg]", src)
|
||||
to_chat(M, "<span class='warning'> You hear a strange, unidentifiable voice in your head... <font color='purple'>[msg]</font></span>")
|
||||
|
||||
@@ -297,7 +297,7 @@ var/list/_simple_mob_default_emotes = list(
|
||||
|
||||
var/datum/gender/T = gender_datums[get_visible_gender()]
|
||||
|
||||
pose = sanitize(input(usr, "This is [src]. [T.he]...", "Pose", null) as text)
|
||||
pose = sanitize(tgui_input_text(usr, "This is [src]. [T.he]...", "Pose", null))
|
||||
|
||||
/mob/living/carbon/human/verb/set_flavor()
|
||||
set name = "Set Flavour Text"
|
||||
|
||||
@@ -94,7 +94,7 @@
|
||||
|
||||
if(!target) return
|
||||
|
||||
text = input(usr, "What would you like to say?", "Speak to creature", null, null)
|
||||
text = tgui_input_text(usr, "What would you like to say?", "Speak to creature", null, null)
|
||||
|
||||
text = sanitize(text)
|
||||
|
||||
@@ -134,7 +134,7 @@
|
||||
set desc = "Whisper silently to someone over a distance."
|
||||
set category = "Abilities"
|
||||
|
||||
var/msg = sanitize(input(usr, "Message:", "Psychic Whisper") as text|null)
|
||||
var/msg = sanitize(tgui_input_text(usr, "Message:", "Psychic Whisper"))
|
||||
if(msg)
|
||||
log_say("(PWHISPER to [key_name(M)]) [msg]", src)
|
||||
to_chat(M, "<font color='green'>You hear a strange, alien voice in your head... <i>[msg]</i></font>")
|
||||
|
||||
@@ -295,7 +295,7 @@
|
||||
return
|
||||
|
||||
var/nagmessage = "Adjust your mass to be a size between 25 to 200% (or between 1 to 600% in dorms area). Up-sizing consumes metal, downsizing returns metal."
|
||||
var/new_size = input(user, nagmessage, "Pick a Size", user.size_multiplier*100) as num|null
|
||||
var/new_size = tgui_input_number(user, nagmessage, "Pick a Size", user.size_multiplier*100, 600, 1)
|
||||
if(!new_size || !size_range_check(new_size))
|
||||
return
|
||||
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
to_chat(src, "<span class='alium'>Their plasma vessel is missing.</span>")
|
||||
return
|
||||
|
||||
var/amount = input(usr, "Amount:", "Transfer Plasma to [M]") as num
|
||||
var/amount = tgui_input_number(usr, "Amount:", "Transfer Plasma to [M]")
|
||||
if (amount)
|
||||
amount = abs(round(amount))
|
||||
if(check_alien_ability(amount,0,O_PLASMA))
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
return
|
||||
|
||||
if(!new_type)
|
||||
new_type = input(usr, "Mob type path:", "Mob type") as text|null
|
||||
new_type = tgui_input_text(usr, "Mob type path:", "Mob type")
|
||||
|
||||
if(istext(new_type))
|
||||
new_type = text2path(new_type)
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
|
||||
var/input
|
||||
if(!message)
|
||||
input = sanitize_or_reflect(input(src,"Choose an emote to display.") as text|null, src)
|
||||
input = sanitize_or_reflect(tgui_input_text(src,"Choose an emote to display."), src)
|
||||
else
|
||||
input = message
|
||||
|
||||
@@ -123,7 +123,7 @@
|
||||
to_chat(src, "<span class='warning'>You cannot speak in IC (muted).</span>")
|
||||
return
|
||||
if (!message)
|
||||
message = input(usr, "Type a message to say.","Psay") as text|null
|
||||
message = tgui_input_text(usr, "Type a message to say.","Psay")
|
||||
message = sanitize_or_reflect(message,src)
|
||||
if (!message)
|
||||
return
|
||||
@@ -204,7 +204,7 @@
|
||||
to_chat(src, "<span class='warning'>You cannot speak in IC (muted).</span>")
|
||||
return
|
||||
if (!message)
|
||||
message = input(usr, "Type a message to emote.","Pme") as text|null
|
||||
message = tgui_input_text(usr, "Type a message to emote.","Pme")
|
||||
message = sanitize_or_reflect(message,src)
|
||||
if (!message)
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user