From 36f7747780ea5f459e17f34c42d646abff6e6dbc Mon Sep 17 00:00:00 2001 From: epochqwert Date: Wed, 19 Dec 2018 19:33:37 +0000 Subject: updated scripts, and xchg stuff added --- scripts/cowsay.lua | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'scripts/cowsay.lua') diff --git a/scripts/cowsay.lua b/scripts/cowsay.lua index 6f0588e..5d9a80d 100644 --- a/scripts/cowsay.lua +++ b/scripts/cowsay.lua @@ -50,6 +50,27 @@ end function ascii_pc( pccmd ) end +function ascii_dickbutt( name ) + local s = "" + if name == nul then name = "" else + name = "("..name..")\n" end + s = s .. [[ + ___ +/ \ <--- ]] .. name .. [[ +|o o| +| > | +|__/| /\ +| |_ || +| | \|| +| J )_) + \____/ + | + =' +]] + return s +end + +v="help" for k,v in ipairs(arg) do if v == "nerd" then print( ascii_nerd( arg[k+1] ) ) @@ -57,5 +78,10 @@ for k,v in ipairs(arg) do print( ascii_goat( arg[k+1] ) ) elseif v == "shoot" then print( ascii_shoot( arg[k+1] ) ) + elseif v == "dickbutt" then + print( ascii_dickbutt( arg[k+1] ) ) end end +--if v == "help" then +-- print("usage: sayp [nerd|goat|shoot|dickbutt] [name]") +--end -- cgit v1.2.3