Advertisement
Guest User

Untitled

a guest
May 30th, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.85 KB | None | 0 0
  1.  
  2.     // tee hee hee!
  3.     if (Trig::Rand(6) == 5)
  4.     {
  5.         msgHdr = TEXT_TIP;
  6.         static char* funnyTips[] =
  7.         {
  8.             "Choose an ATV with thick wheels to look less gay",
  9.             "Collect goats for mega power-ups!",
  10.             "If you want maximum jump height, choose an ATV with a big ass rating",
  11.             "To get young boys, simply hang around Bum school or Rory on a wednesday night",
  12.             "To get the day off work, simply use the special 'go out drinking with Rory' combo the night before",
  13.             "If a problem occurs, blame Rory. It saves time and you'll probably be right anyway...",
  14.             "Wear a cap and put on a comedy London accent to be mistaken for Aron",
  15.             "I'm FREE!!!!!!!!!",
  16.             "If your name is Sampson, you can rely on coders sorting out your dodgy texturing for you."
  17.         };
  18.  
  19.         int ntips = sizeof(funnyTips) / sizeof(char*); 
  20.  
  21.         msgTxt = funnyTips[Trig::Rand(ntips)];
  22.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement