Ulysses
Ulysses Stuff => General Chat & Help and Support => Topic started by: Bubonic on April 02, 2007, 01:20:45 PM
-
OK, I have seen this thread: http://forums.ulyssesmod.net/index.php/topic,408.0.html
but it confuses me. :-\
What I want to know is, is there a way to disable sents so that normal players cannot spawn them but still be able to grant the ability to say a gun store owner to spawn weapon sents?
Also is there a way to disable the swep menu but still have access to it as an admin without having to change Spawnable to false and AdminSpawnable to true for every weapon?
People Keep asking me about disabling sweps etc. on my rp server but I still want access to them as an admin.
-
Bubonic, ignore that thread.
Its out of date and was discussing items (mostly) dealing with GM9/ULib < 2/ULX < 3
I'm looking for answers to your questions, however, someone else much more knowledgeable than I will probably answer quicker.
(IOW, if you don't get an answer from me, it means I stopped looking after 15 minutes)
On another note, why reinvent the wheel?
Also is there a way to disable the swep menu but still have access to it as an admin without having to change Spawnable to false and AdminSpawnable to true for every weapon?
I believe it would be much easier to edit script already there, yes, even in multiple files, than for a programmer to write code that could then later conflict with the AdminSpawnable and Spawnable settings of someone elses Sents later.
Garry wrote that into SENTS to make it easier on Server admins.
-
Cant you just make SENTS under the admin menu = 0?
-
Ok, this is completely untested (I just wrote it in 5 min), but you can try it out and see if it works.
Admins should be able to spawn anything from the list, and players can spawn anything that is in the SENTBlocker.defaultAllowed table, or anything that they have been allowed by another admin using the concommand.
Just paste the code into a file and save as lua in the autorun/server folder.
SENTBlocker = {}
SENTBlocker.defaultAllowed = {}
--Default table of allowed SENTs
--Commands:
-- allowSENT <player name> <SENT name>
-- Allow a player to spawn the specified SENT
-- denySENT <player name> <SENT name>
-- take away a player's ability to spawn the specified SENT
function SENTBlocker.BlockSENT( ply, name )
if not ply:IsAdmin() then
for _, v in ipairs( ply:GetTable().AllowedSENTs ) do
if v == name then
return true
end
end
ply:PrintMessage( HUD_PRINTTALK, "You are not allowed to spawn this SENT." )
return false
end
end
hook.Add( "PlayerSpawnSENT", "SENTBlocker.BlockSENT", SENTBlocker.BlockSENT )
function SENTBlocker.PlayerInit( ply )
ply:GetTable().AllowedSENTs = SENTBlocker.defaultAllowed
end
hook.Add( "PlayerInitialSpawn", "SENTBlocker.PlayerInit", SENTBlocker.PlayerInit )
function SENTBlocker.AllowSENT( ply, cmd, args )
if not ply:IsAdmin() then
ply:PrintMessage( HUD_PRINTCONSOLE, "You do not have access to this command." )
return
end
if args.getn < 2 then
ply:PrintMessage( HUD_PRINTCONSOLE, "Too few arguments spefified." )
end
found = false
for _, v in pairs( player.GetAll() ) do
if ply:Name():find( args[1] ) then
if not table.HasValue( ply:GetTable().AllowedSENTs, args[2] ) then
found = true
table.insert( ply:GetTable().AllowedSENTs, args[2] )
else
ply:PrintMessage( HUD_PRINTCONSOLE, ply:Name() .. " already has access to " .. args[2] )
end
end
end
if not found then
ply:PrintMessage( HUD_PRINTCONSOLE, "No targets found." )
end
end
concommand.Add( "allowSENT", SENTBlocker.AllowSENT )
--Usage: allowSENT <player name> <SENT name>
function SENTBlocker.DenySENT( ply, cmd, args )
if not ply:IsAdmin() then
ply:PrintMessage( HUD_PRINTCONSOLE, "You do not have access to this command." )
return
end
if args.getn < 2 then
ply:PrintMessage( HUD_PRINTCONSOLE, "Too few arguments spefified." )
end
found = false
for _, v in pairs( player.GetAll() ) do
if ply:Name():find( args[1] ) then
if table.HasValue( ply:GetTable().AllowedSENTs, args[2] ) then
found = true
table.remove( ply:GetTable().AllowedSENTs, args[2] )
else
ply:PrintMessage( HUD_PRINTCONSOLE, ply:Name() .. " doesn't have access to " .. args[2] )
end
end
end
if not found then
ply:PrintMessage( HUD_PRINTCONSOLE, "No targets found." )
end
end
concommand.Add( "denySENT", SENTBlocker.DenySENT )
--Usage: denySENT <player name> <SENT name>
Try it out, and let me know if it works.
-
Where i must save it ???
And what for a name need it!
-
Where i must save it ???
And what for a name need it!
Just paste the code into a file and save as lua in the autorun/server folder.
-
ok lol, but i havent a autorun folder!
-
ok lol, but i havent a autorun folder!
You do if you're running Gmod 10. Its in <gmod root>/lua/autorun
This script doesn't support gmod 9
-
Actually he might not have it even if he has GM10. If you don't have it, create it.