Harpoon Hanna 5 Posted June 17, 2023 Goal: Upon respawn, show the number of times the player has died. This is what I have, which throws the error because I am trying to "say" a number. What is the correct way? I would like to say "You have died X times." Sorry to ask such a n00b question. Thanks. Share this post Link to post Share on other sites
handofthesly 214 Posted June 17, 2023 I can't help specifically with Editor questions but it might pay to post this in the #editor_yland channel on the Ylands Discord as generally people visit there more frequently than the forums here Share this post Link to post Share on other sites
Oliver Hope 261 Posted June 19, 2023 Hi Hanna there isn't an explicit way to convert from numbers to strings as far as I can tell. Normally the game automatically converts it to a string, not sure why this isn't the case here (might be a bug). but you can easily fix it by adding no text to your number using the string bock shown below. To add the rest of your sentence you can do the following. Be aware that this wont work as expected in multiplayer as everyone will share the same death variable so it will display the total number of player deaths and not the individual player deaths. 1 Share this post Link to post Share on other sites
Harpoon Hanna 5 Posted June 21, 2023 Yes! Thank you, it works perfectly. Share this post Link to post Share on other sites