Skip to content

Instantly share code, notes, and snippets.

@MisterModzZ
Last active October 23, 2019 16:21
Show Gist options
  • Select an option

  • Save MisterModzZ/f9df772bc296d9c50ad5e77870cdcc57 to your computer and use it in GitHub Desktop.

Select an option

Save MisterModzZ/f9df772bc296d9c50ad5e77870cdcc57 to your computer and use it in GitHub Desktop.
Float Keyboard By Mister//ModzZ
float sucuck()
{
GAMEPLAY::DISPLAY_ONSCREEN_KEYBOARD(1, "", "", "", "", "", "", 60);
while (GAMEPLAY::UPDATE_ONSCREEN_KEYBOARD() == 0) WAIT(0);
if (!GAMEPLAY::GET_ONSCREEN_KEYBOARD_RESULT())return 0;
std::string fs = GAMEPLAY::GET_ONSCREEN_KEYBOARD_RESULT();
float fr = std::stof(fs);
return fr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment