/* Script generated by Pawn Studio */
#include <amxmodx>
#include <csstats>
#include <amxmisc>
#define PLUGIN "Join/Leave"
#define AUTHOR "Small"
#define VERSION "1.0"
new egyszer[33];
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("joinclass", "beallas")
}
public beallas(id)
{
set_task(2.0,"hud",id)
egyszer[id]++;
}
public client_disconnect(id)
{
egyszer[id] = 0;
}
public hud(id)
{
if(egyszer[id] == 1)
{
new stats[8],bodyhits[8],irank
irank = get_user_stats(id,stats,bodyhits)
new mrank = get_statsnum()
new namep[32]
get_user_name(id, namep, 31)
{
set_hudmessage(random(256), random(256), random(256), 0.05, 0.45, 2, 0.1, 6.0, 0.08, 0.5, 8)
show_hudmessage(id, "%s, Üdv a Szerveren!^n Helyezésed: %d / %d ",namep, irank, mrank)
}
}
else
{
return PLUGIN_HANDLED;
}
return PLUGIN_CONTINUE;
}
stock print_color(const id, const input[], any:...)
{
new count = 1, players[32]
static msg[191]
vformat(msg, 190, input, 3)
replace_all(msg, 190, "!g", "^4")
replace_all(msg, 190, "!y", "^1")
replace_all(msg, 190, "!t", "^3")
replace_all(msg, 190, "á", "á")
replace_all(msg, 190, "é", "Ă©")
replace_all(msg, 190, "í", "Ă")
replace_all(msg, 190, "ó", "Ăł")
replace_all(msg, 190, "ö", "ö")
replace_all(msg, 190, "ő", "Ĺ‘")
replace_all(msg, 190, "ú", "Ăş")
replace_all(msg, 190, "ü", "ĂĽ")
replace_all(msg, 190, "ű", "ű")
replace_all(msg, 190, "Á", "Ă")
replace_all(msg, 190, "É", "É")
replace_all(msg, 190, "Í", "ĂŤ")
replace_all(msg, 190, "Ó", "Ă“")
replace_all(msg, 190, "Ö", "Ă–")
replace_all(msg, 190, "Ő", "Ĺ")
replace_all(msg, 190, "Ú", "Ăš")
replace_all(msg, 190, "Ü", "Ăś")
replace_all(msg, 190, "Ű", "Ű")
if (id) players[0] = id; else get_players(players, count, "ch")
{
for (new i = 0; i < count; i++)
{
if (is_user_connected(players[i]))
{
message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i])
write_byte(players[i])
write_string(msg)
message_end()
}
}
}
return PLUGIN_HANDLED
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1038\\ f0\\ fs16 \n\\ par }
*/
[/quote]