Files
Paradise/code/game/verbs/randomtip.dm
Henri215 b38c4bbd4c A few description grammar fixes (#27134)
* Double spaces

* more space and misspelling

* Fixing punctuations

* Not now

* double dots

* Apply suggestions from code review

Signed-off-by: Henri215 <77684085+Henri215@users.noreply.github.com>

---------

Signed-off-by: Henri215 <77684085+Henri215@users.noreply.github.com>
2024-11-10 13:38:28 +00:00

17 lines
422 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 class='purple'><b>Tip: </b>[html_encode(m)]</span>")