useful functions by Alexander Altman20th Jul 2009 13:23
|
---|
Summary set of useful functions to be used in anything Description contains a set of useful functions; use whenever/however you like! Code ` This code was downloaded from The Game Creators ` It is reproduced here with full permission ` http://www.thegamecreators.com function sect$(instring$,b,e) for k = b to e step 1 r$ = r$ + mid$(instring$, k) next k endfunction r$ function round(a#) r = int(a#+.5) endfunction r |