Jump to content

Request for additional functions/variables


mrb

Recommended Posts

I'd like to be able to define my own functions, but that seems to be impossible now, so in lieu of that, I'd like to ask if at least a few more useful functions could be exported.

 

My initial choices:

Code:
  short max(short a,short    {if (a > b)return a;     else return b;}short min(short a,short {   if (a < b)return a;     else return b;}short minmax(short min,short max,short k) {   if (k < min) return min;   if (k > max) return max;   return k;}
If these look familiar it's because they are just lifted from the editor source.

 

These would make scripting conditional loops a lot easier.

 

I'd also really like to have better user input, using storable string and integer variables with at least a local scope.

 

Regards,

 

mrb

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...