i developed setgravity cmd it works but..... i used text.tointeger but it read's integer values not float values for ex: 0.256 or 0.0008
any way i can make it read both integer and float values?
thanx
Use text.tofloat()
function onPlayerCommand ( player , cmd , text )
{
if ( cmd == "setgrav" )
{
try
{
if ( !text ) MessagePlayer("/setgrav { Gravity }" ,player );
else
{
text = text.tofloat();
SetGravity ( text );
Message( player.Name + " has set the gravity to " + text + ". " );
}
}
catch ( e ) MessagePlayer("Text must be float / integer." , player); // Used this since isnum contains '.' .
}
}
Update: Tested, works.