*NEW* Current Version on STEAM: 16.026Logfile: EN, DEWebchat:Visit the chat
One command that would be nice is to have a command that will duplicate a character (or perhaps the complete contents of a string), a given number of time.
// ------------------------------------------------------------- //// -=# F_STRING$ // Replica per n°volte la lettera passata#=-// ------------------------------------------------------------- //FUNCTION F_string$: wnvolte,wcar$LOCAL writ$,wlwrit$ = ""FOR wl = 1 TO wnvolte writ$ = writ$ + wcar$NEXTRETURN writ$ENDFUNCTION // F_string$
FUNCTION space$:amount% LOCAL temp$ temp$="" WHILE amount%>0 temp$=temp$+" " DEC amount% WEND RETURN temp$ ENDFUNCTION