Hello,
Is there a way to clear a ban history of someone ?
It would be great for the tests, or if someone would like his old behaviors to be forgotten.
(Sorry if my english isn’t perfect)
Hello,
Is there a way to clear a ban history of someone ?
It would be great for the tests, or if someone would like his old behaviors to be forgotten.
(Sorry if my english isn’t perfect)
Yay this is such a good update
I dont, I’m using a 2019 mac that runs on bootcamp
i set up a webhook so i got pinged on discord the moment this came out lol
Banned users attempting to join will not trigger Players.PlayerAdded
, as the request to join will only result in the ban message and time information being returned to the user’s device. They never receive a game server IP address and join ticket information in order to successfully join a server.
Is it possible to create moderators via this Ban API, e.g. assigning ban-powers to certain individuals and these same individuals can view the history and more?
If the user you are banning is currently in a server, they will be served the kick dialogue (error 267). They will be served the new banned dialogue (error 600) when they attempt to and fail to join.
Yes, it will kick users in another server AND if the call came from Open Cloud rather than from the engine API.
The real answer is because I haven’t gotten around to it yet. But I will soon. Stay tuned
I noticed that it was only showing the ban dialogue because I was teleporting while being banned. However, is it possible to start allowing new lines in kick messages again? They’re allowed in the ban dialogue but still aren’t allowed in the kick dialogue, which causes some variance in how my display reason shows up.
this needs some more support. disregard my previous messages. sandbox experiences or backdoors can have this system taken advantage of.
this deserves to be optionally locked just like HttpService and Loadstrings.
Working on my own BanScript as I write this, I’d also like it if alt account detection was its own isolated thing, it would do wonders for my game.
Don’t worry seems like you are not missing out on much.
As of now I own a semi active 50 CCU game ( i know small ) but it’s still enough to attract up words of 100 bans a day and it seems like alts with almost the same username I.E robloxcoolkid1, robloxcoolkid2, and robloxcoolkid3 so on and so forth just keep coming back.
It’s not that hard to implement, can be done with a function in less then 15 lines.
local function timeToSeconds(timeString: string)
local days, hours, minutes = 0, 0, 0
for value, unit in string.gmatch(timeString, "(%d+)([dhm])") do
value = tonumber(value)
if unit == "d" then
days = value
elseif unit == "h" then
hours = value
elseif unit == "m" then
minutes = value
end
end
local totalSeconds = (days * 86400) + (hours * 3600) + (minutes * 60)
return totalSeconds
end
local function secondsToTime(seconds)
local days = math.floor(seconds / 86400)
seconds = seconds % 86400
local hours = math.floor(seconds / 3600)
seconds = seconds % 3600
local minutes = math.floor(seconds / 60)
return string.format("%dd %dh %dm", days, hours, minutes)
end
Seems to be MAC address based which isn’t what I would consider bad, but the implementation seems to be done by ChatGPT as it doesn’t even function.
I’ve already implemented it myself, I was just saying that it would be nice if roblox had integrated it anyways. Kinda dumb just to allow seconds.
well to ignore complications they should make a :GetBannedUserIds() to just return an array of everyone who is banned, and also a :GetBannedInfo(userid: number) to reques info on the banned userid. tho this might then make complications with api limits.
ik(i think ) that the windows unique id resets each time you do a factory reset. idk abt the mac adress tho.
Only metric they currently use for alts is MAC address.
Which still is not bad, but the current implementation is bricked. Like it legit does not work.