Ulysses
Ulysses Stuff => General Chat & Help and Support => Topic started by: Lolomat on March 04, 2014, 06:49:31 AM
-
Hey guys,
i am running a ttt server with ulib and ulx.
I've got a problem, player are able to votekick/ban other player during a round.
So they r able to votekick/ban someone with reason: killed me whil beeing fellow traitor.
but i dont want them to be able to do that, so i want that they only can votekick/ban on round end.
I couldnt found anything in the forum.
best regards,
Lolomat
-
It's not possible because this is a very specific TTT thing. ULX/ULib were not designed to work with any specific gamemode. There are some guys out here who are working on some TTT commands, maybe they would be interested in making a new command similar to votekick/voteban but that only works after a round ends.
-
Okey,
thx for your Help.
Would be nice if somone who is reading this and knows a existing plugin or as the skills to code
something like this, is going to message me.
-
I'll cook up a command when I get out of school.
-
Dunno if you're still here, but...
This isn't tested. But it should work in theory.
local CATEGORY_NAME = "Voting"
function ulx.tttvotekick( calling_ply, target_ply, reason )
if GetRoundState() == ROUND_ACTIVE then
ULib.tsayError( calling_ply, "You must wait for the round to be over!", true )
return
end
if voteInProgress then
ULib.tsayError( calling_ply, "There is already a vote in progress. Please wait for the current one to end.", true )
return
end
local msg = "Kick " .. target_ply:Nick() .. "?"
if reason and reason ~= "" then
msg = msg .. " (" .. reason .. ")"
end
ulx.doVote( msg, { "Yes", "No" }, voteKickDone, _, _, _, target_ply, time, calling_ply, reason )
ulx.fancyLogAdmin( calling_ply, "#A started a votekick against #T", target_ply )
end
local tttvotekick = ulx.command( CATEGORY_NAME, "ulx tttvotekick", ulx.tttvotekick, "!vkick" )
tttvotekick:addParam{ type=ULib.cmds.PlayerArg }
tttvotekick:addParam{ type=ULib.cmds.StringArg, hint="reason", ULib.cmds.optional, ULib.cmds.takeRestOfLine, completes=ulx.common_kick_reasons }
tttvotekick:defaultAccess( ULib.ACCESS_ADMIN )
tttvotekick:help( "Starts a public kick vote against target." )
function ulx.tttvoteban( calling_ply, target_ply, minutes, reason )
if GetRoundState() == ROUND_ACTIVE then
ULib.tsayError( calling_ply, "You must wait for the round to be over!", true )
return
end
if voteInProgress then
ULib.tsayError( calling_ply, "There is already a vote in progress. Please wait for the current one to end.", true )
return
end
local msg = "Ban " .. target_ply:Nick() .. " for " .. minutes .. " minutes?"
if reason and reason ~= "" then
msg = msg .. " (" .. reason .. ")"
end
ulx.doVote( msg, { "Yes", "No" }, voteBanDone, _, _, _, target_ply, minutes, calling_ply, reason )
if reason and reason ~= "" then
ulx.fancyLogAdmin( calling_ply, "#A started a voteban of #i minute(s) against #T (#s)", minutes, target_ply, reason )
else
ulx.fancyLogAdmin( calling_ply, "#A started a voteban of #i minute(s) against #T", minutes, target_ply )
end
end
local tttvoteban = ulx.command( CATEGORY_NAME, "ulx tttvoteban", ulx.tttvoteban, "!vban" )
tttvoteban:addParam{ type=ULib.cmds.PlayerArg }
tttvoteban:addParam{ type=ULib.cmds.NumArg, min=0, default=1440, hint="minutes", ULib.cmds.allowTimeString, ULib.cmds.optional }
tttvoteban:addParam{ type=ULib.cmds.StringArg, hint="reason", ULib.cmds.optional, ULib.cmds.takeRestOfLine, completes=ulx.common_kick_reasons }
tttvoteban:defaultAccess( ULib.ACCESS_ADMIN )
tttvoteban:help( "Starts a public ban vote against target." )
-
Hey, thanks for that.
But how do i add this to my server?
Do i need to remove the normal votekick/ban.lua or just modify it with the code u have written?