ID:175452
 
How would i make it so that if a users key was male an object would do something but if it was female it would do something else?
Thanks in advance.
ShadowBlade6300 wrote:
How would i make it so that if a users key was male an object would do something but if it was female it would do something else?
Thanks in advance.

Just check the clients gender.

if(client.gender == "male")  //Assuming src is the player's mob
//Do something
else
//Do something else