Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2014
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1.  
  2. var guardN = false;
  3. switch(i)
  4. {
  5. case 1:
  6. if(gui_controls.nome0 != '')
  7. guardN = true;
  8. break;
  9. case 2:
  10. if(gui_controls.nome0 != '' && gui_controls.nome1 != '')
  11. guardN = true;
  12. break;
  13. case 3:
  14. if(gui_controls.nome0 != '' && gui_controls.nome1 != '' && gui_controls.nome2 != '')
  15. guardN = true;
  16. break;
  17. case 4:
  18. if(gui_controls.nome0 != '' && gui_controls.nome1 != '' && gui_controls.nome2 != '' && gui_controls.nome3 != '')
  19. guardN = true;
  20. break;
  21. case 5:
  22. if(gui_controls.nome0 != '' && gui_controls.nome1 != '' && gui_controls.nome2 != '' && gui_controls.nome3 != '' && gui_controls.nome4 != '')
  23. guardN = true;
  24. break;
  25. case 6:
  26. if(gui_controls.nome0 != '' && gui_controls.nome1 != '' && gui_controls.nome2 != '' && gui_controls.nome3 != '' && gui_controls.nome4 != '' && gui_controls.nome5 != '')
  27. guardN = true;
  28. break;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement