Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. //main plugin
  2. new g_forward;
  3. public plugin_init()
  4. {
  5. register_clcmd("say !forward", "private_call_forward");
  6. g_forward = = CreateMultiForward("call_forward", ET_IGNORE);
  7. }
  8. public private_call_forward(Player)
  9. {
  10. new Return;
  11. ExecuteForward(g_forward, Return);
  12. }
  13. public call_forward()
  14. {
  15. print("test");
  16. }
  17. //secondary plugin
  18.  
  19. forward call_forward();
  20.  
  21. public call_forward()
  22. {
  23. print("test2");
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement