ID:159471
 
i didnt understand very well

world
hub = "My.Hub" //change this to your own hub entry

mob/var
full_access

mob/Login()
if(client.CheckPassport("what should i put here?"))
full_access = 1
else
src << "For full access, <a href=\
'http://www.byond.com/hub/[world.hub]' >subscribe!"
return ..()


if(client.CheckPassport("what should i put here?"))

what should i put there?
If you edit your hub entry and turn on the ability to use passport settings, the editor page will tell you what your passport is. That's what you would put in the CheckPassport() call.

Lummox JR
In response to Lummox JR
Thanks man!