Ulysses
Ulysses Stuff => Suggestions => Topic started by: MrPresident on August 11, 2007, 08:50:10 PM
-
There have been plenty of times when simply stripping the weapons from an abusive player might solve some issues or whatever. I noticed how COnna had included a command to strip a player of all their weapons including their tool gun with SAT and I was wondering if this could be added to ULX. I think it is a needed addition to the best admin mod out there.
Please consider it.
-
Here is the command, put that in ulx/lua/ulx/fun.lua
function ulx.cc_stripweapons( ply, command, argv, args )
if #argv < 1 then
ULib.tsay( ply, ulx.LOW_ARGS )
return
end
local targets, err = ULib.getUsers( argv[ 1 ], _, true, ply ) -- Enable keywords
if not targets then
ULib.tsay( ply, err )
return
end
for _, v in ipairs( targets ) do
ulx.logUserAct( ply, v, "#A stripped #T's weapons" )
v:StripWeapons()
end
end
ulx.concommand( "strip", ulx.cc_stripweapons, "<user(s)> - Strips user(s)'s weapons.", ULib.ACCESS_ADMIN, "!strip", _, ulx.ID_PLAYER_HELP )
-
Heh, don't you love how easy it is to add stuff to ULX? :D That whole code block was template except for one line.
Maybe we should work on making it even more module and robust. :)
-
Yes it's very easy to add things, for those who have a minimum of knowledge :)
-
Thankyou very much for your help guys.. I appreciate it a lot.
-
All you people take mah old plugin ideas and stick em in ULX. /shakefist
-
Here is the command, put that in ulx/lua/ulx/fun.lua
I believe this is bad practice. Any changes you make would get overwritten during an update by us.
Meg, perhaps we should make a 'modules' folder for ULX?
ULib has a modules folder that will load code placed there after ULib loads...but there is no quick easy place to put functions/code that will load after ULX. I could see someone placing a bit of code there that should work with ULX, and it try to load first before ULX is loaded.
-
All you people take mah old plugin ideas and stick em in ULX. /shakefist
:P
We didn't include it in ULX.
Another member like yourself made a contribution. :D
-
:P
We didn't include it in ULX.
Another member like yourself made a contribution. :D
This time.
;)
-
And now ULX is modularized! :D
Check out SVN if you wanna see it.
-
And now ULX is modularized! :D
Check out SVN if you wanna see it.
Hmm, what that mean exactly ?
Another question related to :I believe this is bad practice. Any changes you make would get overwritten during an update by us.
Can i create a new file and place my commands in it (without bugs like commands not showing in ulx help), so this is not deleted when there is a svn update ?
-
With the new module system, you can just stick your commands in a separate file under the 'module' folder.
-
Ok, tested, works :)
Also i saw you did so commands are sorted alphabetically (ulx help), thanks.
But (sorry wrong place):
ULX version 3.20 (BETA) SVN revision 40 loaded.
Timer Error: base.lua:166: bad argument #1 to 'ipairs' (table expected, got nil)
-
Ok, tested, works :)
Also i saw you did so commands are sorted alphabetically (ulx help), thanks.
But (sorry wrong place):
ULX version 3.20 (BETA) SVN revision 40 loaded.
Timer Error: base.lua:166: bad argument #1 to 'ipairs' (table expected, got nil)
Hmm interesting. Either the ULX callback isn't working or something's seriously screwed up. Was this error on a listen server? Do you get it each time?
-
I have an issue when i insert the like
" function ulx.cc_stripweapons( ply, command, argv, args )
if #argv < 1 then
ULib.tsay( ply, ulx.LOW_ARGS )
return
end
local targets, err = ULib.getUsers( argv[ 1 ], _, true, ply ) -- Enable keywords
if not targets then
ULib.tsay( ply, err )
return
end
for _, v in ipairs( targets ) do
ulx.logUserAct( ply, v, "#A stripped #T's weapons" )
v:StripWeapons()
end
end
ulx.concommand( "strip", ulx.cc_stripweapons, "<user(s)> - Strips user(s)'s weapons.", ULib.ACCESS_ADMIN, "!strip", _, ulx.ID_PLAYER_HELP )"
i load up my server and it boots me (to main menu) saying "Too many lua errors"
PLEASE HELP!
-
Necroposting! This thread is over 6 years old.
The too many errors thing means you're receiving client-side errors and the server is set to boot. Have the server operator (maybe this is you) set: sv_kickerrornum 0
Now you should be able to see the errors without being kicked.
-
Wow, this thread takes me back.
If you're expecting code from six years ago to still work today, you are sadly mistaken. But the larger issue here is that "ulx strip" is already included by default. What are you trying to do exactly?
-
This topic was last discussed/posted in 2007.
What megiddo said, it's now included? why edit it?