Ulysses
Ulysses Stuff => Suggestions => Topic started by: Jethro on August 04, 2007, 07:10:41 AM
-
Would it be possible to make the next version of ULX record everyones Steam Id as they join the server instead/as well as IP.
This addon will be greatly appreciated by me and other admins as my server does not allow spawning props; meaning there Steam Id is never recorded.
-
Though it may be possible to delay the logging of the join, or perhaps place a "player has spawn<steamid>" on initial player spawn after the join, the only bit of information available when the player connects is the ip address. STEAM_ID_PENDING is always the result when attempting to use steamid on join.
-
That's what i did:
local function playerFirstSpawn( ply )
if util.tobool( GetConVarNumber( "ulx_logEvents" ) ) then
ulx.logString( string.format( "%s [%s][%s] joined the server.", ply:Nick(), ply:SteamID(), ply:IPAddress() ) )
end
end
hook.Add( "PlayerInitialSpawn", "ULXLogConnect", playerFirstSpawn )
But there is a small "bug": if a player disconnect before spawn it will record "Bla [STEAM_0_0_123456] left the server" but it's like he never joined..not a big problem anyway, just a small bug.
-
Yep, this is already implemented in SVN.
-
I still don't understand what SVN is, Is sounds like its to do with wire mod.
Ps. So can I have a link for downloading "SVN".
Thank you
-
SVN only reminds you of Wire becasue that is how it was, and still is released.
SVN ( short for SubVersion ) is a team collaboration, and version control system. When we say it is implemented in SVN we mean our latest development version which is hosted on our SVN.
As far as getting the SVN version, we do have a select group of people who we have granted access to download and use the latest SVN version for testing perpouses. I'm not exactly sure what criteria Megiddo uses to decide who gets this access, but there is a chance that you could if you were willing to help us track down any bugs in these versions before release.
Edit: P.S. This is not an open invitation for everyone to join on the SVN train, please don't come and request access to SVN, you probably won't get it. If we think you deserve it we will come to you.
-
In simplest terms, when we say "implimented in SVN", we mean "it's in Beta", which means "prerelease".
-
Usually the type of people that get SVN access are people who have shown a tendency of finding bugs in current releases or help us test on our server and have a server of their own to test on.
Again though, if you ask us for SVN access you probably won't get it. We'll ask you.
-
Ok thank you for your help.