Guest User

Untitled

a guest
Jul 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. ublic static bool TownSpawn() {
  2. if(Main.dayTime) {
  3. return true;
  4. }
  5. return false;
  6. }
  7. public static string SetName() {
  8.  
  9. int result = Main.rand.Next(4);
  10. string name = "";
  11.  
  12. if (result == 0) { name = "Drake"; }
  13. if (result == 1) { name = "Brakiadon"; }
  14. if (result == 2) { name = "Tim"; }
  15. if (result == 3) { name = "Dranbium"; }
  16.  
  17. return name;
  18.  
  19. }
Add Comment
Please, Sign In to add comment