stev212

Untitled

Apr 3rd, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #if defined _scmd_Included
  2. #endinput
  3. #else
  4. #define _scmd_Included
  5. #endif
  6.  
  7. #define CMD:%0(%1) \
  8. forward cmd_%0(%1); \
  9. public cmd_%0(%1)
  10.  
  11.  
  12. public OnPlayerCommandText(playerid,cmdtext[])
  13. {
  14. new funcname[32];
  15. format(funcname, sizeof funcname, "cmd_%s", cmdtext[1]);
  16. return CallLocalFunction(funcname, "i", playerid);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment