Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Includes:
- #include <a_samp>
- #include <gvar>
- // Main:
- main() {
- SetGVarInt("i", 0);
- new i = GetGVarInt("i");
- while(i != GetGVarInt("i") + 299) {
- i++;
- SetGVarInt("i", i);
- printf("%d", GetGVarInt("i"));
- switch(GetGVarInt("i")){case 300: break;}
- }
- return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement