Saved Bookmarks
| 1. |
Solve : random command? |
|
Answer» is there a way to make a random word from a list appear? like if i type a list of random nouns and then random VERBS, and a sentance with blanks where the words should go, i could FUNNY stuff lolz.You could do something with this: @echo off What'ya think gamerx365? DOS IT HELP? that one definetly works right. i am still working on figuring out how to make it so that I can make more than one random sentence but so that it has different words.If I understand what you mean, you just have to change this Code: [Select]@echo off set "list1=dude,programmer,geek,squarehead,cookie monster" set "list2=eat,hug,destroy,unpimp,crack,hack,hammer" [b]set "list3=one,two,three,four,five"[/b] call:rndselect a "%list1%" call:rndselect b "%list2%" [b]call:rndselect c "%list3%"[/b] echo.The %a% is going to %b% that server. LOL! [b]echo. %c%[/b] pause GOTO:EOF Very nice, DosItHelp. |
|