Advertisement
Shiny_

Untitled

Sep 11th, 2013
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.30 KB | None | 0 0
  1. // Includes:
  2.     #include <a_samp>
  3.     #include <gvar>
  4.    
  5. // Main:
  6.     main() {
  7.         SetGVarInt("i", 0);
  8.         new i = GetGVarInt("i");
  9.         while(i != GetGVarInt("i") + 299) {
  10.             i++;
  11.             SetGVarInt("i", i);
  12.             printf("%d", GetGVarInt("i"));
  13.             switch(GetGVarInt("i")){case 300: break;}
  14.         }
  15.         return false;
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement