Ulysses
Ulysses Stuff => General Chat & Help and Support => Topic started by: Bounty_Bam on May 18, 2008, 03:49:06 AM
-
How can I edit what an Admin & Operator can do?
For instance, I want Admins to only be able to temporally ban people, only SuperAdmin can permenantly ban people.
Is it possible to do this by editing .txt files? Or download some sort of Admin Manager?
I hope this is possible... ???
-
Read the FAQs
-
want Admins to only be able to temporally ban people, only SuperAdmin can permenantly ban people.
Is it possible to do this by editing .txt files?
ULX has no way to only allow 'temporary' bans for those who have ban access.
You either have ban permission, or you don't.
-
Ah ok thats cool. Could someone kindly link/write me an explanation as to what all the commands are in the Allow/Deny sections of Groups.txt?
Id greatly apprechiate it :)
-
Most should be fairly obvious, but if you have specific questions I'd love to answer them.
-
These are the ones Im not quite sure on:
"ulib_passtime"
"ulib_passtimeout"
"ulx spawnecho"
"ulx tsay"
"ulx csay"
"ulx chattime"
"ulx welcomemessage"
"ulx playsound" (play sound of some sort?)
"ulx hp"
"ulx armor"
"ulx ghost" (sounds like Cloak)
"ulx unghost"
"ulx exec"
"ulx rslotsmode" (I know these mean reserved slots, but how do I use this command in console?)
"ulx rslots"
"ulx rslotsvisible"
"ulx reservedslots"
"ulx tooldeny"
"ulx toolallow"
"ulx tooldenyuser"
"ulx toolallowuser"
"ulx tooldenyoverride"
"ulx map" (Like votemap?)
"ulx mingekick" (auto-kick someone pratting around?)
"ulx vote" (vote for something?)
Sorry there's quite a few....I probably sounds stupid :/
But id be greatful if someone could explain these to me and how I would used them :)
thanks
-
In your game console, please type "ulx help" and then read the display.
99% of your questions should be answered there.
As for the other 1%, see server.ini
(If you have trouble finding it, please READ YOUR ULX_README.TXT, which makes direct reference to both of the above)
-
In your game console, please type "ulx help" and then read the display.
99% of your questions should be answered there.
As for the other 1%, see server.ini
(If you have trouble finding it, please READ YOUR ULX_README.TXT, which makes direct reference to both of the above)
Jam he's wondering about permissions not what the commands do. :)
All the ones that look like commands are the permission to use the command. Look at help to know what the commands do. If it's not a command look in server.ini
Don't worry about or use the ulib_ stuff
Spawn echo is who will see the model spawns in their console ("Player blah spawned blah").
That answers your whole list as far as I can see.
-
Thanks a lot guys :)
-
floating around here somewhere is some module I wrote for someone a while back that is a seperate command that is like ban... but wont allow you to do perma. Let me see if I can find it.
found it!
function ulx.cc_ban2( ply, command, argv, args )
if #argv < 1 then
ULib.tsay( ply, ulx.LOW_ARGS, true )
return
end
local target, err = ULib.getUser( argv[ 1 ], _, ply )
if not target then
ULib.tsay( ply, err, true )
return
end
local bantime = tonumber( argv[ 2 ] ) or 0
if bantime == 0 then
ULib.tsay( ply, "This ban is not allowed to ban perminently", true )
return
end
local dummy, dummy, reason = args:find( "^\"*" .. ULib.makePatternSafe( argv[ 1 ] ) .. "\"*%s+" .. ULib.makePatternSafe( argv[ 2 ] ) .. "%s+(.*)$" )
reason = reason or "" -- Make sure it has a value
local time = "for " .. bantime .. " minute(s)"
if reason ~= "" then reason = "(" .. reason .. ")" end
ulx.logUserAct( ply, target, "#A banned #T " .. time .. " " .. reason )
ULib.kickban( target, bantime, reason, ply )
end
ulx.concommand( "ban2", ulx.cc_ban2, "<user> [<time>] [<reason>] - Bans a user for x minutes, Must be less than 4320 minutes(3 Days).", ULib.ACCESS_ADMIN, "!ban2", _, ulx.ID_PLAYER_HELP )
This is JUST like ulx ban.. excapet that it will not allow the use of 0 for the time.
ulx ban2 <name> <time> <Reason>
!ban2 <name> <time> <reason>
-
Mr. Pres, you've done so many little additions to your server, you should find all the stuff floating around these parts and make a 'pack' release here. :)
-
Only problem with that is that most of the addons are catered specifically to my groups/users layout and they wouldn't work out-of-box with most people. That is why I (instead) wait for people to request them and then do the necissary changes and throw code at them~ =)
-
Only problem with that is that most of the addons are catered specifically to my groups/users layout and they wouldn't work out-of-box with most people. That is why I (instead) wait for people to request them and then do the necissary changes and throw code at them~ =)
Yeah, I know, but at least throw out a generic admin can tool, admin weapon spawn (which I KNOW you aren't the only one to have done code here), this 'temp' ban, and, darn, I forget the other two or three I've seen you discuss.
No worries, I know that time thing is hard to find when you've got other more important (or fun, in case of your bigger projects I've seen at your forums) going on. :D
-
Good god! You are a genius :o
so where would i paste this coding?