mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-28 02:11:45 +00:00
* spanish? * aaaagain * keep maptext * Update robot_items.dm * Update span_defines.dm * compiles * Update silicon_mob.dm * compile
17 lines
407 B
Plaintext
17 lines
407 B
Plaintext
/client/verb/randomtip()
|
|
set category = "OOC"
|
|
set name = "Give Random Tip"
|
|
set desc = "Shows you a random tip"
|
|
|
|
var/m
|
|
|
|
var/list/randomtips = file2list("strings/tips.txt")
|
|
var/list/memetips = file2list("strings/sillytips.txt")
|
|
if(length(randomtips) && prob(95))
|
|
m = pick(randomtips)
|
|
else if(length(memetips))
|
|
m = pick(memetips)
|
|
|
|
if(m)
|
|
to_chat(src, SPAN_PURPLE("<b>Tip: </b>[html_encode(m)]"))
|