SetGuiFloat (script event)
From modwiki
Description
Sets a parameter on this entity's GUI.
Usage
In your script type...
void setGuiFloat( string key, float value )
Parameters
- [key] - The parameter to assign a value to.
- [value] - The value to assign to the key.
Examples
$my_entity.setGuiFloat("health", 100);
Notes
This script event does not return any values.

