Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. #include <amxmodx>
  2. #include <cstrike>
  3.  
  4. #define PLUGIN "Plugin"
  5. #define VERSION "1.0"
  6. #define AUTHOR "SINTAX"
  7.  
  8. public plugin_init()
  9. {
  10.     register_plugin(PLUGIN, VERSION, AUTHOR)
  11.    
  12.     register_clcmd("say /2xmanjinovac","duplomanjinovac")
  13. }
  14.  
  15. public duplomanjinovac(id)
  16. {
  17.     new duplo_manji_novac = cs_get_user_money(id)/2
  18.    
  19.     client_print(id,print_chat,"[Duplo Manji Novac] = %d", duplo_manji_novac);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement