HLMOD.HU Forrás Megtekintés - www.hlmod.hu
  1. #include <amxmodx>
  2.  
  3. public plugin_init()
  4. {
  5. register_plugin("Map Name in ScoreBoard", "1.0", "BlackCat")
  6.  
  7. register_message(get_user_msgid("ServerName"), "message_servername")
  8. }
  9.  
  10. public message_servername()
  11. {
  12. new mapname[64]; get_mapname(mapname, 63)
  13.  
  14. set_msg_arg_string(1, mapname)
  15. }