ID:145359
 
Code:
mob/var
full_access = 0
mob/Login()
if(client.CheckPassport("ID is here"))
full_access = 1
src << "You are a Suscriber! Way to go!"
else
src << "For full access, <a href=\
'http://www.byond.com/hub/
[world.hub]' >subscribe</a>!"
return ..()


Problem description:


This is how DM guide says this works, although Im a suscriber and when I log in it says For full access suscribe
That kind of subsciber is for that game only.


So if you are a subscriber of game X, you get more on game X only.


Use IfByondMember(), that should work.
In response to RedlineM203
I am talking about game only, and I added myself to the suscriber list
Derekjeterisgod wrote:
Code:
> mob/var
> full_access = 0
> mob/Login()
> if(client.CheckPassport("ID is here"))
> full_access = 1
> src << "You are a Suscriber! Way to go!"
> else
> src << "For full access, <a href=\
> 'http://www.byond.com/hub/
[world.hub]' >subscribe</a>!"
> return ..()
>

Problem description:


This is how DM guide says this works, although Im a suscriber and when I log in it says For full access suscribe

if(client.CheckPassport("ID is here"))

you didn't change to to your own ID.

plus, I'd suggsest using somthing "simpler".
Somthing such as:

mob
Login()
if(src in subs)
src<<"u r da subzkriburz ololol"
full_access=1
else
src<<"plz get subzkriber plz plz ololol"

var/list/subs=list("Derekjeterisgod")
I just had to delete my key info in the cache, no clue why though. Saw it from an earlier post recommended by Dantom
In response to Derekjeterisgod
Ah... the game is not working with the Hub. You need to upload it.


I don't know though, I can't really figure out how to make it work <_<