Does Anyone Know the Byond Members code to give players that pay the amount boost?
ID:162747
![]() Dec 1 2007, 5:31 pm
|
|
![]() Dec 1 2007, 5:52 pm
|
|
http://bwicki.byond.com/ByondBwicki.dmb?TheCode
|
Souhyb32 wrote:
Does Anyone Know the Byond Members code to give players that pay the amount boost? straight out of the reference IsByondMember proc (client) Format: IsByondMember() Args: None. This built-in procedure checks to see if the user is a BYOND Member. Use it to give special in-game rewards to those who support BYOND. Example: mob/var special_features mob/Login() if(client.IsByondMember()) special_features = 1 else src << "For special features, <a href=\ 'http://members.byond.com/' >become a BYOND Member</a>!" return ..() |