ID:162747
 
Does Anyone Know the Byond Members code to give players that pay the amount boost?
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 ..()