Advertisement
nomy

Untitled

Mar 23rd, 2019
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #pragma semicolon 1
  2.  
  3. #include <sourcemod>
  4.  
  5. public OnPluginStart()
  6. {
  7.     HookUserMessage(GetUserMessageId("UpdateRadar"), Hook_UpdateRadar, true);
  8. }
  9.  
  10. public Action:Hook_UpdateRadar(UserMsg:msg_id, Handle:bf, const players[], playersNum, bool:reliable, bool:init)
  11. {
  12.     return Plugin_Handled;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement