Advertisement
mrdrifter

Untitled

Feb 10th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1.  
  2. #include <a_samp>
  3.  
  4.  
  5.  
  6. public OnFilterScriptInit()
  7. {
  8. for(new i;i<50;i++){
  9. for(new x;i<10;x++){
  10. if(x>5)break;
  11. }
  12. printf("I: %i", i);
  13. }
  14. return 1;
  15. }
  16.  
  17.  
  18.  
  19. Result:
  20. loadfs ap
  21. I: 0
  22. I: 1
  23. I: 2
  24. I: 3
  25. I: 4
  26. I: 5
  27. I: 6
  28. I: 7
  29. I: 8
  30. I: 9
  31. I: 10
  32. I: 11
  33. I: 12
  34. I: 13
  35. I: 14
  36. I: 15
  37. I: 16
  38. I: 17
  39. I: 18
  40. I: 19
  41. I: 20
  42. I: 21
  43. I: 22
  44. I: 23
  45. I: 24
  46. I: 25
  47. I: 26
  48. I: 27
  49. I: 28
  50. I: 29
  51. I: 30
  52. I: 31
  53. I: 32
  54. I: 33
  55. I: 34
  56. I: 35
  57. I: 36
  58. I: 37
  59. I: 38
  60. I: 39
  61. I: 40
  62. I: 41
  63. I: 42
  64. I: 43
  65. I: 44
  66. I: 45
  67. I: 46
  68. I: 47
  69. I: 48
  70. I: 49
  71. Filterscript 'ap.amx' loaded.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement