ID:169342
 
Is there already a feature implemented into DreamMaker to compile something like CheckPassport() but like CheckMember() or whatever to see if they are BYOND member? Or is that still being in development?
Yes there is, client.IsByondMember().

An example would be:

mob/Login()
..()
if(!src.client.IsByondMember())
src << "You are banned for not being a member"
Ban(src)
In response to DeathAwaitsU
DeathAwaitsU wrote:
Yes there is, client.IsByondMember().

An example would be:

> mob/Login()
> ..()
> if(!src.client.IsByondMember())
> src << "You are banned for not being a member"
> Ban(src)
>


Kind of a harsh example there. :P

How about something like:
mob/Login()
..()
if(src.client.IsByondMember())
src << "Thanks for supporting BYOND!"
world << "BYOND Member [src] has joined the world."
else
world << "[src] has joined the world."
In response to Jon88
Yea, I already got it. Thanks btw, lol.