Ulysses
Ulysses Stuff => General Chat & Help and Support => Topic started by: Smoot178 on September 17, 2009, 05:01:04 PM
-
Hello again.
I am trying to find the UniqueID of a player like that of which most prop protection, the sui scoreboard, and utime uses to store information.
How can I find it out?
Thanks.
-
Type status into console and it will be the first number in the line that the person's name is in.
-
Major Pain is incorrect, you cannot find UniqueIDs that way (He's referring to the EntID, a very different number). You can only look up a unique id from lua. For example, you could execute the following in console:
lua_run print( Entity( entid ):UniqueID() )
Where entid is the EntID found using Major Pain's method. You'll see the unique id of the player in question.
-
Thanks, that worked!
Edit: but it didn't work on myself D:
:1: attempt to call method 'UniqueID' (a nil value)
-
My bad, I didn't thing he was talking about lua.
You can also store unique IDs in a table.
playersID = {} --Creates the table
function getAllPlayers() --Creates a function
for k,v in pairs(player.GetAll()) do--Makes a variable that stores the players(v)
playersID[v] = v:Nick() --Makes the key of the table the uniqueID and the string their name
end --Ends the for loop
end --Ends the function
concommand.Add( "storeplayers", getAllPlayers) --Creates a console command to store the players IDs in the table by calling the function
Then you could use PrintTable to print the "playersID" table. Like this:
lua_run PrintTable(playersID)
It should return the uniqueID on the left and the name of the player on the right.