Ulysses
Ulysses Stuff => General Chat & Help and Support => Topic started by: Fleamonji on September 30, 2010, 04:24:58 PM
-
I'd like to get rid of the annoying "Disconnect: Kicked and banned." and use Gatekeeper. Same for when a banned user connects.
Where might I find this in ULX? I can't really find anything in any of the files :(
-
That actual message is controlled by the Source server engine, not ULX.
If it doesn't appear in Gatekeeper, it's because Gatekeeper hooks in before the engine messages.
-
If you use gatekeeper, ULX hooks into it.
-
I'd still like to get rid of "Kicked and Banned" as the reason, and display the legit reason. They won't know why they got kicked/banned otherwise.
-
Sorry we can't help you. Ask Valve to modify the Source engine to show reasons beyond that.
-
Sorry we can't help you. Ask Valve to modify the Source engine to show reasons beyond that.
I don't understand though, I could just make a script...
require("gatekeeper")
function KickHim(ply, cmd, args)
if ply:IsAdmin() then
gatekeeper.Drop(cmd:UserID(), args)
end
end
concommand.Add("kick_player", KickHim)
just a simple example, but somewhere ULX is kicking the person, and there has got to be a way to change the function/method.
when you ban someone with assmod it doesnt say "kicked and banned", if u see what im getting at
-
Again, the only way to do this is with gatekeeper, which ULX supports. If you want this, your only choice is to install gatekeeper.
-
Again, the only way to do this is with gatekeeper, which ULX supports. If you want this, your only choice is to install gatekeeper.
Wait, I'm dumb, I fixed this. Sorry.