Coding Help Is there anywhere to Check which emote The player using?

saikanyas

Greenhorn
I want to check which emote ID the player is using so i can use it in an if-else statement. Does anyone know how to do this? Any advice would be really helpful 🙏
 

SomeoneEls

Sodbuster
I think Game1.player.CurrentEmote might be it?

It would require a temporary debug print out statment in the OnTimeChanged method that being

C#:
 Console.WriteLine(Game1.player.CurrentEmote);
And then going in game to find each id by emoting.
 

SomeoneEls

Sodbuster
Oh yeah, just as good tip, Game1 and Game1.player has basically everything you need. Use the . operator and start typing in whatever you want, and the tooltips from visual studio will show you all your options
 
Top