• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Instant Messages

Resource Instant Messages 1.2.4

rVWzZi1.png

sir is there a way to make the message when player sending taking more less time?
when player replying the message it taking like 10 sec

here the code on instant message

GameData::InstantMessageConversation.register({
:id => :GYM,
:group => :GYM,
:important => true,
:messages => [
[1, :Text, _INTL("Morning! Don’t forget to stop by my gym today. You’ll need badges if you want to make progress on your journey. See you there, little bro!")],
[0, :Text, _INTL("I will.")],
[1, :Text, _INTL("Good! I'm looking forward it.")],
]
})
 
rVWzZi1.png

sir is there a way to make the message when player sending taking more less time?
when player replying the message it taking like 10 sec

here the code on instant message

GameData::InstantMessageConversation.register({
:id => :GYM,
:group => :GYM,
:important => true,
:messages => [
[1, :Text, _INTL("Morning! Don’t forget to stop by my gym today. You’ll need badges if you want to make progress on your journey. See you there, little bro!")],
[0, :Text, _INTL("I will.")],
[1, :Text, _INTL("Good! I'm looking forward it.")],
]
})
Reproducing the issue was very inconsistent for me, only happening like 1 in 20 times or so. It seems like based on your computer, the value Graphics.delta would sometimes return something very low, which would result in a very high frame count wait time (I saw it hit 4000 frames per second once). I've added guardrails to max out this value to a much lower number, so you shouldn't see much of a slow wait time anymore.
 
Reproducing the issue was very inconsistent for me, only happening like 1 in 20 times or so. It seems like based on your computer, the value Graphics.delta would sometimes return something very low, which would result in a very high frame count wait time (I saw it hit 4000 frames per second once). I've added guardrails to max out this value to a much lower number, so you shouldn't see much of a slow wait time anymore.
its fixed, the message load more faster than before :D thank you very much sir
 
Back
Top