View Single Post
DjSoftero
Veteran Member
Join Date: Nov 2014
Location: Lithuania
Old 12-10-2019 , 13:59   Re: Timed Rank Display
Reply With Quote #5

Quote:
Originally Posted by iclassdon View Post
PHP Code:
#include <amxmodx>
#include <amxmisc>

public plugin_init() 
{
    
register_plugin"Timed Rank""1.0""Noone_lol" )
    
set_task 600.0"setit"0,_,_,"b"
}

public 
setit()
{
    for( new 
1<= get_maxplayers(); i++ )
    {
        if( !
is_user_connected) )
            continue
        
        
client_cmdi"say /rank" )
    }

Thanks! Why am I getting loose indentation warning?
I don't get any warnings. using visual studio for editing and 1.9 build 5263 compiler.
DjSoftero is offline