Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.51 KB | None | 0 0
  1. #include <a_samp>
  2. #include <dini>
  3.  
  4.  
  5. public OnFilterScriptInit()
  6. {
  7.     new Neon[100];
  8.     for(new x = 0; x <= MAX_VEHICLES; x++)
  9.     {
  10.         format(Neon,100,"Neons/NeonID%d.txt", x);
  11.         dini_Create(Neon);
  12.         printf("Arquivo de Neon %d criado !", x);
  13.         if(x == MAX_VEHICLES)
  14.         {
  15.             print("//==========================//\n");
  16.             print("Arquivos Criados com Sucesso !\n");
  17.             print("//==========================//");
  18.         }
  19.     }
  20.     return 1;
  21. }
  22.  
  23. public OnFilterScriptExit()
  24. {
  25.     return 1;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement