Advertisement
Gamer_Z

Untitled

May 31st, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. new array[2][3][16] =
  4. {
  5. {"hello","abc","defg"},
  6. {"hijkl","mnopqrs","tuvwxyz"}
  7. };
  8.  
  9. new arrayx[][3][16] =
  10. {
  11. {"hello","abc","defg"},
  12. {"hijkl","mnopqrs","tuvwxyz"}
  13. };
  14.  
  15. public OnFilterScriptInit()
  16. {
  17. print("----");
  18. for(new i = 0; i < 2; ++i)
  19. {
  20. for(new j = 0; j < 3; ++j)
  21. {
  22. print(array[i][j]);
  23. }
  24. }
  25. print("----");
  26. for(new i = 0; i < 2; ++i)
  27. {
  28. for(new j = 0; j < 3; ++j)
  29. {
  30. print(arrayx[i][j]);
  31. }
  32. }
  33. print("----");
  34. return 1;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement