Advertisement
Guest User

slidy plas halp

a guest
Nov 16th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.42 KB | None | 0 0
  1. int TestInteger = 0;
  2.  
  3. public void OnPluginStart()
  4. {
  5.  
  6.     RegConsoleCmd("sm_testint", testint);
  7.     RegConsoleCmd("sm_testint_show", testint_show);
  8.  
  9. }
  10.  
  11. public Action testint(int client, int args)
  12. {
  13.    
  14.     int TestInteger = Testinteger++;
  15.     return TestInteger;
  16.    
  17. }
  18.  
  19. public Action testint_show(int client, int args)
  20. {
  21.    
  22.     PrintToChat(client, "Test Integer is equal to: %d", TestInteger);
  23.    
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement