sharkbait263

BO2RPC

Aug 25th, 2013
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. //Initiate RPC
  2. SV_GameSendServerCommand(0, "O \"^2Hello World\"");
  3.  
  4. //SendServerCommand
  5. private void SV_GameSendServerCommand(int client, string command)
  6. {
  7. BO2RPC.Util.Call(0x00349B8E, client, 0, BO2RPC.Util.str_pointer(command));
  8. }
  9.  
  10. //Send Commands From Text Box Using Button
  11. SV_GameSendServerCommand(0, this.textBox22.Text);
  12.  
  13. //Send Commands From Code
  14. //O = Send To Kill Feed
  15. SV_GameSendServerCommand(0, "O \"^2Hello World\"");
  16.  
  17. //< = Send To Center Screen
  18. SV_GameSendServerCommand(0, "< \"^2Hello World\"");
Advertisement
Add Comment
Please, Sign In to add comment