Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- return function(msg, usr, cha)
- local l = GetUsers();
- if not l or #l <= 0 then
- print("0% mods here");
- return;
- end
- local mods = 0;
- for n=1,#l do
- if UserStatus(l[n]) == 2 then
- mods = mods + 1;
- end
- end
- local modpercent = mods / #l;
- print(tostring(modpercent*100).."% mods here");
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement