adry 1,913 Posted February 19, 2014 Share Posted February 19, 2014 Center Message Version 1.0 * Plugin-ul permite afisarea unui mesaj sus pe centrul ecranului , deloc deranjant. * Autor: * Versiune: 1.0 sma: #include <amxmodx> #define PLUGIN "Auto Center Msg" #define VERSION "1.0" #define AUTHOR "Shuya" // o.O #define TASK_INTERVAL 8.0 new const hud_messages[][] = { "REDDEVIL.RANGFORT.RO" }; public plugin_init() { register_plugin( PLUGIN, VERSION, AUTHOR ); set_task( TASK_INTERVAL, "RandomHudWithRandomColors", 0, "", 0, "b" ); } public RandomHudWithRandomColors() { set_hudmessage( random_num( 0, 255 ), random_num( 0, 255 ), random_num( 0, 255 ), -1.0, 0.0, random_num( 0, 2 ), 6.0, 8.0 ); show_hudmessage( 0, "%s", hud_messages[ random_num( 0, charsmax( hud_messages ) ) ] ); } 2 Link to comment Share on other sites More sharing options...
Recommended Posts