In response to Tweelik
i dont need the code, i just need to know how to do that
In response to Moskera
You want to know how to do it? Look at previous posts, Ghostanime has already told you what you need to do.
In response to GhostAnime
well, he said that i have to apply what i learned into other things, in this case, the "ID", but, i didnt understood that too much, so i need the processs just 4 that
In response to Tweelik
I know what he said, but the thing is that i dont know or understood how to apply them into the thing im doing,("ID"), i just need the whole process plz
In response to Moskera
"code" IS NOT just given out here. Can't you put any effort into programming? Stop being lazy, and try helping yourself too, we can't do it all for you.

Maybe this will be easier to understand for you...

Create a global variable.
var/global/variable


Add to the variable during Login of a mob, and set their "id" variable to the current value of variable.

mob/Login()
variable++
src.id=variable


Finally, save and load it, so the ids will be kept. You claim you've read the dm guide, so you know this part.
In response to Tweelik
var/ID = rand(0,65535)
for(var/mob/M in world)
if(M != src)
while(M.ID == src.ID)
src.ID = rand(0,65535)
In response to Smokey Joe
Turning their key into numbers would be a nice way wouldn't it?
Page: 1 2