View Single Post
dekken
Veteran Member
Join Date: Jul 2007
Old 04-02-2008 , 15:30   Re: Text in left-down corner
Reply With Quote #4

Quote:
Originally Posted by Havoc View Post
awww source code would help me alot, im really not a scripter :/
Thanks.
ya iam sorry i tho i was in Scripting forum -_- iam so stupid
oh well:

PHP Code:
 #include <amxmodx>

#define MY_TASK_NUMBER 1434

public plugin_init()
{
    
register_plugin("TEST""0.1""Dekken")
}

public 
client_putinserver(id)
{
    
set_task(1.0,"iShowHud",MY_TASK_NUMBER)
}

public 
iShowHud()
{
    
set_hudmessage(25500, -1.5, -0.106.012.00.10.23)
    
show_hudmessage(0"Thats My Message, and i write w/e i want here :D")
    
set_task(2.0"iShowHud"MY_TASK_NUMBER)
}

public 
client_disconnect(id)
{
    if(
task_exists(MY_TASK_NUMBER))
        
remove_task(MY_TASK_NUMBER)

iam not sure if you need this:

PHP Code:
public client_disconnect(id)
{
    if(
task_exists(MY_TASK_NUMBER))
        
remove_task(MY_TASK_NUMBER)

but oh well...
should work fine
__________________
Signature Goes Here
dekken is offline