Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. ```int main () {
  2. while(1) {
  3. char command[20];
  4.  
  5.  
  6.  
  7. printf("CubeBot is currently functioning, please enter a command \n");
  8. scanf("%s", command);
  9. if (strcmp(command, ";rng4") == 0) {rngCommand4();}
  10. else if (strcmp(command, ";help") == 0); {helpCommand();};
  11. }};
  12. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement