mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-21 15:51:31 +00:00
17 lines
415 B
Plaintext
17 lines
415 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(randomtips.len && prob(95))
|
|
m = pick(randomtips)
|
|
else if(memetips.len)
|
|
m = pick(memetips)
|
|
|
|
if(m)
|
|
to_chat(src, "<span class='purple'><b>Tip: </b>[html_encode(m)]</span>")
|