Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. #include <sourcemod>
  2. #include <sdktools>
  3. #include <cstrike>
  4.  
  5. #pragma newdecls required
  6. #pragma semicolon 1
  7.  
  8. public void OnPluginStart()
  9. {
  10.     CreateTimer(25.0, TimerpostAd, , TIMER_REPEAT);
  11. }
  12.  
  13. public Action Timer_postAd(Handle timer)
  14. {
  15.     PrintToChatAll("");
  16.     PrintToChatAll("");
  17.     PrintToChatAll("");
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement