=Updated ForbiddenWord
Changed output to ForbiddenWord
This commit is contained in:
@@ -65,3 +65,4 @@ Rp\.txt
|
||||
rP\.txt
|
||||
|
||||
.log
|
||||
*.log
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
local time = os.time();
|
||||
|
||||
function plugin(message)
|
||||
if(string.match(message, "purple"))then
|
||||
function plugin(message, user)
|
||||
if(string.match(string.lower(message), "purple"))then
|
||||
local timedif = os.time() - time;
|
||||
time = os.time();
|
||||
days = (timedif / (60*60*24));
|
||||
hours = ((timedif / (60*60)) % 24);
|
||||
mins = ((timedif / (60)) % 60);
|
||||
secs = timedif % 60;
|
||||
return round(days) .. " " .. round(hours) .. " " .. round(mins) .. " " .. round(secs);
|
||||
return "*GASP!!!* \n" .. user.name .. " said **THE** word! It's been " .. round(days) .. " days, " .. round(hours) .. " hours, " .. round(mins) .. " minutes, and " .. round(secs) .. " seconds since the last time!";
|
||||
end
|
||||
|
||||
return nil;
|
||||
|
||||
@@ -8,7 +8,6 @@ import java.util.stream.Stream;
|
||||
|
||||
import org.luaj.vm2.Globals;
|
||||
import org.luaj.vm2.LuaValue;
|
||||
import org.luaj.vm2.lib.jse.CoerceJavaToLua;
|
||||
import org.luaj.vm2.lib.jse.JsePlatform;
|
||||
|
||||
// To promote flexibility, plugins are lua file with predefined callbacks.
|
||||
|
||||
Reference in New Issue
Block a user