hlmod.hu
https://hlmod.hu/

Hud message
https://hlmod.hu/viewtopic.php?f=9&t=2541
Oldal: 1 / 1

Szerző:  kiki [2011.10.11. 18:26 ]
Hozzászólás témája:  Hud message

Hogy lehet megcsinálni hogy minden másodperszben más szinű legyen a hud üzenetem?

Szerző:  expert [2011.10.11. 20:39 ]
Hozzászólás témája:  Re: Hud message

Nekem van egy ilyenféle de ez is az alap csak átirva kicsit :D Remélem segitettem vmit vele.

Kód:
#include <amxmodx>
#include <amxmisc>

#define X_POS 0.43
#define Y_POS 0.00
#define HOLD_TIME 5.0

new Array:g_Values
new Array:g_Messages
new g_MessagesNum
new g_Current

#define charsof(%1) (sizeof(%1)-1)

new amx_freq_imessage;

public plugin_init()
{
g_Messages=ArrayCreate(384);
g_Values=ArrayCreate(3);
register_plugin("Info. Messages", AMXX_VERSION_STR, "AMXX Dev Team")
register_dictionary("imessage.txt")
register_dictionary("common.txt")
register_srvcmd("amx_imessage", "setMessage")
amx_freq_imessage=register_cvar("amx_freq_imessage", "10")

new lastinfo[8]
get_localinfo("lastinfomsg", lastinfo, 7)
g_Current = str_to_num(lastinfo)
set_localinfo("lastinfomsg", "")
}

public infoMessage()
{
if (g_Current >= g_MessagesNum)
g_Current = 0

// No messages, just get out of here
if (g_MessagesNum==0)
{
return;
}

new values[3];
new Message[384];

ArrayGetString(g_Messages, g_Current, Message, charsof(Message));
ArrayGetArray(g_Values, g_Current, values);

new hostname[64];

get_cvar_string("hostname", hostname, 63);
replace(Message, 380, "%hostname%", hostname);

set_hudmessage(values[0], values[1], values[2], X_POS, Y_POS, 2, 0.1, HOLD_TIME, 0.05, 0.5, -1);

show_hudmessage(0, "%s", Message);

client_print(0, print_console, "%s", Message);
++g_Current;

new Float:freq_im = get_pcvar_float(amx_freq_imessage);

if (freq_im > 0.0)
set_task(freq_im, "infoMessage", 12345);
}

public setMessage()
{

new Message[384];

remove_task(12345)
read_argv(1, Message, 380)

while (replace(Message, 380, "\n", "^n")) {}

new mycol[12]
new vals[3];

read_argv(2, mycol, 11) // RRRGGGBBB
vals[2] = str_to_num(mycol[6])

mycol[6] = 0
vals[1] = str_to_num(mycol[3])

mycol[3] = 0
vals[0] = str_to_num(mycol[0])

g_MessagesNum++

new Float:freq_im = get_pcvar_float(amx_freq_imessage)

ArrayPushString(g_Messages, Message);
ArrayPushArray(g_Values, vals);

if (freq_im > 0.0)
set_task(freq_im, "infoMessage", 12345)

return PLUGIN_HANDLED
}

public plugin_end()
{
new lastinfo[8]

num_to_str(g_Current, lastinfo, 7)
set_localinfo("lastinfomsg", lastinfo)
}

Szerző:  expert [2011.10.11. 20:40 ]
Hozzászólás témája:  Re: Hud message

amx_imessage "reklám" "255036000"
amx_imessage "reklám" "255240000"
amx_imessage "reklám" "000238000"
amx_imessage "reklám" "255020147"
amx_imessage "reklám" "001001001"

amx_freq_imessage 5

Oldal: 1 / 1 Minden időpont UTC+02:00 időzóna szerinti
Powered by phpBB® Forum Software © phpBB Limited
https://www.phpbb.com/