Ide is kell kódot írni...
szal 1) megoldás:
Kód:
#include <amxmodx>
#define PLUGIN "Auto Center Msg"
#define VERSION "1.0"
#define AUTHOR "Rusu" // o.O
#define TASK_INTERVAL 8.0
new const hud_messages[][] = {
"Ide a hostname^n Ip: 89.46.239.26:27015"
};
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, sizeof( hud_messages ) ) ] );
}
VAGY bedrótozod:
Kód:
#include <amxmodx>
#define PLUGIN "Auto Center Msg"
#define VERSION "1.0"
#define AUTHOR "Rusu" // o.O
#define TASK_INTERVAL 8.0
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, "Ide a hostname^n Ip: 89.46.239.26:27015" );
}
// Megj: show_hudmessage( 0, "Ide a hostname^n Ip: %s", get_user_ip(0) ); // Ez lekéri a szeró címét, s beteszi azt.