#ifndef config #define config #define arr_size 3 //change this to how many messages you want to cycle through char *title="title"; //change the title here char *arr[arr_size]; void init_arr(){ arr[0]="message 1"; //copy and paste this then change the number to the message your editing arr[1]="message 2"; arr[2]="message 3"; } #endif