+ Added lua hot reload functionality

This commit is contained in:
Matthew Cech
2019-07-02 23:38:10 -07:00
parent 2ac0ff99ef
commit 5c21806db1
6 changed files with 63 additions and 16 deletions
+1
View File
@@ -8,6 +8,7 @@ function plugin(message, user)
hours = ((timedif / (60*60)) % 24);
mins = ((timedif / (60)) % 60);
secs = timedif % 60;
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