hexo Posted April 17, 2019 Report Posted April 17, 2019 (edited) Hi, how do I set that I'm playing a custom game in my profile. I tried placing the string first but still goes online and shows as playing a game with the first integer in my array client.gamesPlayed(["some string here", 730, 440, ..., ....]); edit: I made it work by via this: let x = "some string here";let y = x.toString();client.gamesPlayed([y, 730, 440, ..., ....]); Edited April 17, 2019 by hexo Quote
SnaBe Posted April 21, 2019 Report Posted April 21, 2019 If you want a custom game, make a string as the first entry in your games array that you pass to gamesPlayed. Examples: client.gamesPlayed('My Custom Game', 440 ,730); or var games = ['My Custom Game', 440 ,730]; client.gamesPlayed(games); It looks cleaner in my opinion. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.