Cool, thanks.
Now I have this, but dont have any idea of how getting it to the other corner.
Code:
#include <amxmodx>
#include <amxmisc>
new bool:g_adversite[33]
public plugin_init()
{
register_plugin("www.xuntric.tk adversite", "1.0", "XunTric")
register_clcmd("say /remove", "removeadd")
register_clcmd("say_team /remove", "removeadd")
}
public client_putinserver(id)
{
g_adversite[id] = true
set_task(15.0, "hud", id)
}
public hud(id)
{
new message[200]
set_hudmessage(0, 0, 255, 0.01, 0.29, 0, 6.0, 2.0, 0.1, 0.2, 4)
format(message, 199, "----------------------------^nI only have 3 admins + me^nAnd I need more!!^nJoin xuntric.tk^nAnd be active on the server^nThen you might get admin!!^n----------------------------^nTo remove this message:^nsay /remove^n----------------------------")
show_hudmessage(id, message)
if(g_adversite[id] == true) {
set_task(15.0, "hud", id)
}
return
}
public removeadd(id)
{
client_print(id, print_chat, "[Adversite Text Removed]")
g_adversite[id] = false
remove_task(id)
return PLUGIN_HANDLED
}
public client_disconnect(id)
{
g_adversite[id] = false
}