Raised This Month: $ Target: $400
 0% 

High Ping Kicker "Argument Mismatch"


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
leonard19941
Veteran Member
Join Date: Jun 2011
Old 06-25-2012 , 20:48   High Ping Kicker "Argument Mismatch"
Reply With Quote #1

Please help with this error, not to be, thank you very much.


Quote:
Welcome to the AMX Mod X 1.8.1-300 Compiler.
Copyright (c) 1997-2006 ITB CompuPhase, AMX Mod X Team

Error: Argument type mismatch (argument 1) on line 90

1 Error.
Could not locate output file C:\Documents and Settings\Administrador\Escritorio\amx_highpin gkicker.amx (compile failed).

High Ping Kicker

PHP Code:
//* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

#define VERSION "1.1"

#define MAX_PLAYERS    32

// Time in seconds.
#define TASK_TIME     15.0

// Feel free to change this flag.
#define HPK_IMMUNITY    ADMIN_IMMUNITY

new g_pCvarHPKMaxPingg_pCvarHPKPingChecks
    
g_pCvarHPKCheckFrequencyg_pCvarHPKStartDelay
    
g_pCvarHPKMinPlayersg_pCvarHPKImmunity;

new 
g_iPing33 ], g_iSamples33 ];

new 
g_iCheckPlayersMAX_PLAYERS ]    // To save the poor cpu having to keep track of the connected players.

new g_iMsgSayText;

new 
g_iMaxPlayers;

public 
plugin_init( )
{
    
register_plugin"High Ping Kicker"VERSION"Shadow & Bo0m!" );

    
register_dictionary"HighPingKicker.txt" );

    
g_pCvarHPKMaxPing register_cvar"amx_hpk_maxping""130" );
    
g_pCvarHPKPingChecks register_cvar"amx_hpk_pingchecks""5" );
    
g_pCvarHPKCheckFrequency register_cvar"amx_hpk_checkfrequency""12" );
    
g_pCvarHPKStartDelay register_cvar"amx_hpk_startdelay""60" );
    
g_pCvarHPKMinPlayers register_cvar"amx_hpk_minplayers""7" );
    
g_pCvarHPKImmunity register_cvar(" amx_hpk_immunity""1" );
    
    
register_concmd"amx_hpk""HighPingKicker"ADMIN_CVAR"<max ping> <total ping checks> <time check frequency> <delay before starting checks> <enable/disable immunity> - configures high ping kicker" );
    
    
g_iMsgSayText get_user_msgid"SayText" );
    
    
g_iMaxPlayers get_maxplayers( )

    if( 
get_pcvar_numg_pCvarHPKCheckFrequency ) < )
        
set_pcvar_numg_pCvarHPKCheckFrequency)
    
    if( 
get_pcvar_numg_pCvarHPKPingChecks ) < )
        
set_pcvar_numg_pCvarHPKPingChecks)
        
    
set_taskTASK_TIME"CheckPlayers"64__"b" )
}

public 
client_putinserverid )
{    
    
g_iPingid ] = 
    g_iSamples
id ] = 0

    
if( !is_user_botid ) ) 
    {
        new 
iParam];
        
iParam] = id 
        set_task
15.0"ShowWarn"idiParam)
    
        if( 
get_pcvar_numg_pCvarHPKStartDelay ) != )
            
set_taskfloatget_pcvar_numg_pCvarHPKStartDelay ) ), "StartDelay"idiParam)
        else
            
set_taskfloatget_pcvar_numg_pCvarHPKCheckFrequency ) ), "CheckFrequency"idiParam1"b" )
    }
}

public 
ShowWarnszParam[ ] )
{
    static 
iPingKicked;
    
iPingKicked get_pcvar_numg_pCvarHPKMaxPing )
    
    
ChatColorszParam], "%L"LANG_PLAYER"HPK_SHOWWARN"iPingKicked )
}

public 
StartDelayszParam[ ] )
{
    new 
uName33 ];
    
get_user_nameszParam], uNamecharsmaxuName ) );
    
set_taskfloatget_pcvar_numg_pCvarHPKCheckFrequency ) ), "CheckFrequency" szParam], szParam1"b" )
}

public 
CheckPlayers( )
{
    if( 
get_playersnum( ) >= get_pcvar_numg_pCvarHPKMinPlayers ) )
    {
        for ( new 
1<= g_iMaxPlayersi++ )
        {
            if( 
g_iCheckPlayers] )
                
CheckFrequency);
        }
    }
}

public 
CheckFrequencyszParam[ ] )
{
    if( 
get_pcvar_numg_pCvarHPKPingChecks ) < )
        
set_pcvar_numg_pCvarHPKPingChecks)
        
    new 
id szParam];

    if( 
get_user_flagsid ) & HPK_IMMUNITY && get_pcvar_numg_pCvarHPKImmunity ) == )
    {
        
remove_taskid )
        
ChatColorid"%L"LANG_PLAYER"HPK_IMMUNITY" );
        return 
PLUGIN_CONTINUE;
    }

    new 
iPingiLoss;
    
get_user_pingidiPingiLoss 

    
g_iPingid ] += iPing
    
++g_iSamplesid ]

    if( ( 
g_iSamplesid ] > get_pcvar_numg_pCvarHPKPingChecks ) ) && ( g_iPingid ] / g_iSamplesid ] > get_pcvar_numg_pCvarHPKMaxPing ) ) )
        
KickPlayerid )

    return 
PLUGIN_CONTINUE
}

KickPlayerid )

    new 
uName33 ], uAuthId35 ];
    
get_user_nameiduNamecharsmaxuName ) );
    
get_user_authididuAuthIdcharsmaxuAuthId ) );
    
    
ChatColor0"%L"LANG_PLAYER"HPK_DISCONNECTED"uName );
    
server_cmd"kick #%d ^"%L^""get_user_useridid ), LANG_PLAYER"HPK_KICKED" )
    
log_amx"HPK: ^"%s<%d><%s>^" %L"uNameget_user_useridid ), uAuthIdLANG_PLAYER"HPK_LOG", ( g_iPingid ] / g_iSamplesid ] ) )
}

public 
HighPingKickeridlevelcid )
{
    if( !
cmd_accessidlevelcid) )
        return 
PLUGIN_HANDLED;
    
    static 
iMaxPing;
    
iMaxPing get_pcvar_numg_pCvarHPKMaxPing )
    
    static 
iPingChecks;
    
iPingChecks get_pcvar_numg_pCvarHPKPingChecks )
    
    static 
iCheckFrequency;
    
iCheckFrequency get_pcvar_numg_pCvarHPKCheckFrequency )
    
    static 
iStartDelay;
    
iStartDelay get_pcvar_numg_pCvarHPKStartDelay )
    
    static 
iImmunity;
    
iImmunity get_pcvar_numg_pCvarHPKImmunity )

    if( 
read_argc( ) < 6)
    {
        
console_printid"Usage: amx_hpk <max ping> <total ping checks> <time check frequency> <delay before starting checks> <enable/disable immunity>" )
        
console_printid"Current High Ping Kicker Settings:")
        
console_printid"Max Ping: %d | Ping Checks: %d | Check Frequency: %d | Start Delay: %d | Immunity: %d"iMaxPingiPingChecksiCheckFrequencyiStartDelayiImmunity )
        return 
PLUGIN_HANDLED;
    }

    new 
uName33 ], uAuthId35 ];
    
get_user_nameiduNamecharsmaxuName ) );
    
get_user_authididuAuthIdcharsmaxuAuthId ) );

    new 
iArg_MaxPing], iArg_PingChecks], iArg_CheckFrequency], iArg_StartDelay], iArg_Immunity];
    
read_argv1iArg_MaxPingcharsmaxiArg_MaxPing ) );
    
read_argv2iArg_PingCheckscharsmaxiArg_PingChecks ) );
    
read_argv3iArg_CheckFrequencycharsmaxiArg_CheckFrequency ) );
    
read_argv4iArg_StartDelaycharsmaxiArg_StartDelay ) );
    
read_argv5iArg_ImmunitycharsmaxiArg_Immunity ) );
  
    new 
iNum_MaxPing str_to_numiArg_MaxPing )
    new 
iNum_PingChecks str_to_numiArg_PingChecks )
    new 
iNum_CheckFrequency str_to_numiArg_CheckFrequency )
    new 
iNum_StartDelay str_to_numiArg_StartDelay )
    new 
iNum_Immunity str_to_numiArg_Immunity )

    if( 
iNum_CheckFrequency )
        
iNum_CheckFrequency 5
    
    
if( iNum_PingChecks )
        
iNum_PingChecks 3

    set_pcvar_num
g_pCvarHPKMaxPingiNum_MaxPing )
    
set_pcvar_numg_pCvarHPKPingChecksiNum_PingChecks )
    
set_pcvar_numg_pCvarHPKCheckFrequencyiNum_CheckFrequency )
    
set_pcvar_numg_pCvarHPKStartDelayiNum_StartDelay )
    
set_pcvar_numg_pCvarHPKImmunityiNum_Immunity )

    
console_printid"The following HPK Settings have been set:" )
    
console_printid"Max Ping: %d | Ping Checks: %d | Check Frequency: %d | Start Delay: %d | Immunity: %d"iMaxPingiPingChecksiCheckFrequencyiStartDelayiImmunity )
    
log_amx"HPK: ^"%s<%d><%s>^" has configured the HPK - Max Ping: %d | Ping Checks: %d | Check Frequency: %d | Start Delay: %d | Immunity: %d"uNameget_user_useridid ), uAuthIdiMaxPingiPingChecksiCheckFrequencyiStartDelayiImmunity )

    return 
PLUGIN_HANDLED;
}

public 
client_disconnectid )
{
    
g_iCheckPlayersid ] = 0

    remove_task
id )
}
    
stock ChatColoridszInput[ ], any:... )
{
    new 
iCount 1uPlayers32 ];
    static 
iMsgId191 ];
    
vformatiMsgId190szInput);

    
replace_alliMsgId190"!y""^1" ); // Default Color
    
replace_alliMsgId190"!g""^4" ); // Green Color
    
replace_alliMsgId190"!team""^3" ); // Team Color
    
    
if( id )
        
uPlayers] = id;
    else
        
get_playersuPlayersiCount"ch" );
    {
        for( new 
0iCounti++ )
        {
            if( 
is_user_connecteduPlayers] ) )
            {
                
message_beginMSG_ONE_UNRELIABLEg_iMsgSayText_uPlayers] );
                
write_byteuPlayers] );
                
write_stringiMsgId );
                
message_end( );
            }
        }
    }

__________________

Last edited by leonard19941; 06-26-2012 at 15:41.
leonard19941 is offline
StickP0le
Senior Member
Join Date: Jan 2010
Location: cuantocabron.com
Old 06-25-2012 , 21:15   Re: High Ping Kicker "Argument Mismatch"
Reply With Quote #2

Code:
 /* Plugin generated by AMXX-Studio */ #include <amxmodx> #include <amxmisc> #define VERSION "1.0" #define MAX_PLAYERS    32 new g_pCvarHPKMaxPing, g_pCvarHPKPingChecks,       g_pCvarHPKCheckFrequency, g_pCvarHPKStartDelay,       g_pCvarHPKMinPlayers, g_pCvarHPKImmunity; new g_iPing[ 33 ], g_iSamples[ 33 ]; new g_iCheckPlayers[ MAX_PLAYERS + 1 ]    // To save the poor cpu having to keep track of the connected players new g_iMsgSayText; new g_iMaxPlayers; public plugin_init( ) {     register_plugin( "High Ping Kicker", VERSION, "Shadow & Bo0m!" );     register_concmd( "amx_hpk", "HighPingKicker", ADMIN_IMMUNITY, "- configures high ping kicker" );     g_pCvarHPKMaxPing = register_cvar( "amx_hpk_maxping", "130" );     g_pCvarHPKPingChecks = register_cvar( "amx_hpk_pingchecks", "5" );     g_pCvarHPKCheckFrequency = register_cvar( "amx_hpk_checkfrequency", "12" );     g_pCvarHPKStartDelay = register_cvar( "amx_hpk_startdelay", "60" );     g_pCvarHPKMinPlayers = register_cvar( "amx_hpk_minplayers", "10" );     g_pCvarHPKImmunity = register_cvar(" amx_hpk_immunity", "1" );           g_iMsgSayText = get_user_msgid( "SayText" );           g_iMaxPlayers = get_maxplayers( )     if( get_pcvar_num( g_pCvarHPKCheckFrequency ) < 5 )         set_pcvar_num( g_pCvarHPKCheckFrequency, 5 )           if( get_pcvar_num( g_pCvarHPKPingChecks ) < 3 )         set_pcvar_num( g_pCvarHPKPingChecks, 3 )               set_task( 15.0, "CheckPlayers", 64, _, _, "b" ) } public client_putinserver( id ) {         g_iPing[ id ] = 0       g_iSamples[ id ] = 0     if( !is_user_bot( id ) )       {         new iParam[ 1 ];         iParam[ 0 ] = id           set_task( 15.0, "ShowWarn", id, iParam, 1 )               if( get_pcvar_num( g_pCvarHPKStartDelay ) != 0 )             set_task( float( get_pcvar_num( g_pCvarHPKStartDelay ) ), "StartDelay", id, iParam, 1 )         else             set_task( float( get_pcvar_num( g_pCvarHPKCheckFrequency ) ), "CheckFrequency", id, iParam, 1, "b" )     } } public ShowWarn( szParam[ ] ) {     static iPingKicked;     iPingKicked = get_pcvar_num( g_pCvarHPKMaxPing )           ChatColor( szParam[ 0 ], "!g[ HPK ] !yPlayers with ping higher than !g%d !ywill be kicked!", iPingKicked ) } public StartDelay( szParam[ ] ) {     new uName[ 33 ];     get_user_name( szParam[ 0 ], uName, charsmax( uName ) );     set_task( float( get_pcvar_num( g_pCvarHPKCheckFrequency ) ), "CheckFrequency" , szParam[ 0 ], szParam, 1, "b" ) } public CheckPlayers( ) {     if( get_playersnum( ) >= get_pcvar_num( g_pCvarHPKMinPlayers ) )     {         for ( new i = 1; i <= g_iMaxPlayers; i++ )         {             if( g_iCheckPlayers[ i ] )                 CheckFrequency( i );         }     } } public CheckFrequency( szParam ) {     if( get_pcvar_num( g_pCvarHPKPingChecks ) < 3 )         set_pcvar_num( g_pCvarHPKPingChecks, 3 )     new id = szParam     if( get_user_flags( id ) & ADMIN_IMMUNITY && get_pcvar_num( g_pCvarHPKImmunity ) == 1 )     {         remove_task( id )         ChatColor( id, "!g[ HPK ] !yPing checking disabled due to immunity..." );         return PLUGIN_CONTINUE;     }     new iPing, iLoss;     get_user_ping( id, iPing, iLoss )       g_iPing[ id ] += iPing     ++g_iSamples[ id ]     if( ( g_iSamples[ id ] > get_pcvar_num( g_pCvarHPKPingChecks ) ) && ( g_iPing[ id ] / g_iSamples[ id ] > get_pcvar_num( g_pCvarHPKMaxPing ) ) )         KickPlayer( id )     return PLUGIN_CONTINUE } KickPlayer( id ) {       new uName[ 33 ], uAuthId[ 35 ];     get_user_name( id, uName, charsmax( uName ) );     get_user_authid( id, uAuthId, charsmax( uAuthId ) );           ChatColor( 0, "!g[ HPK ] !yPlayer !g%s !ydisconnected due to high ping.", uName );     server_cmd( "kick #%d ^"Sorry but your ping is too high, try again later...^"", get_user_userid( id ) )     log_amx( "HPK: ^"%s<%d><%s>^" was kicked due high ping ( Average Ping ^"%d^" )", uName, get_user_userid( id ), uAuthId, ( g_iPing[ id ] / g_iSamples[ id ] ) ) } public HighPingKicker( id, level, cid ) {     if( !cmd_access( id, level, cid, 3 ) )         return PLUGIN_HANDLED;           static iMaxPing;     iMaxPing = get_pcvar_num( g_pCvarHPKMaxPing )           static iPingChecks;     iPingChecks = get_pcvar_num( g_pCvarHPKPingChecks )           static iCheckFrequency;     iCheckFrequency = get_pcvar_num( g_pCvarHPKCheckFrequency )           static iStartDelay;     iStartDelay = get_pcvar_num( g_pCvarHPKStartDelay )           static iImmunity;     iImmunity = get_pcvar_num( g_pCvarHPKImmunity )     if( read_argc( ) < 6)     {         console_print( id, "Usage: amx_hpk <max ping> <total ping checks> <time between checks> <delay before starting checks> <0 for disable | 1 for enable immunity" )         console_print( id, "Current High Ping Kicker Settings:")         console_print( id, "Max Ping: %d | Ping Checks: %d | Check Frequency: %d | Start Delay: %d | Immunity: %d", iMaxPing, iPingChecks, iCheckFrequency, iStartDelay, iImmunity )         return PLUGIN_HANDLED;     }     new uName[ 33 ], uAuthId[ 35 ];     get_user_name( id, uName, charsmax( uName ) );     get_user_authid( id, uAuthId, charsmax( uAuthId ) );     new iArg_MaxPing[ 5 ], iArg_PingChecks[ 5 ], iArg_CheckFrequency[ 5 ], iArg_StartDelay[ 5 ], iArg_Immunity[ 5 ];     read_argv( 1, iArg_MaxPing, charsmax( iArg_MaxPing ) );     read_argv( 2, iArg_PingChecks, charsmax( iArg_PingChecks ) );     read_argv( 3, iArg_CheckFrequency, charsmax( iArg_CheckFrequency ) );     read_argv( 4, iArg_StartDelay, charsmax( iArg_StartDelay ) );     read_argv( 5, iArg_Immunity, charsmax( iArg_Immunity ) );         new iNum_MaxPing = str_to_num( iArg_MaxPing )     new iNum_PingChecks = str_to_num( iArg_PingChecks )     new iNum_CheckFrequency = str_to_num( iArg_CheckFrequency )     new iNum_StartDelay = str_to_num( iArg_StartDelay )     new iNum_Immunity = str_to_num( iArg_Immunity )     if( iNum_CheckFrequency < 5 )         iNum_CheckFrequency = 5           if( iNum_PingChecks < 3 )         iNum_PingChecks = 3     set_pcvar_num( g_pCvarHPKMaxPing, iNum_MaxPing )     set_pcvar_num( g_pCvarHPKPingChecks, iNum_PingChecks )     set_pcvar_num( g_pCvarHPKCheckFrequency, iNum_CheckFrequency )     set_pcvar_num( g_pCvarHPKStartDelay, iNum_StartDelay )     set_pcvar_num( g_pCvarHPKImmunity, iNum_Immunity )     console_print( id, "The following HPK Settings have been set:" )     console_print( id, "Max Ping: %d | Ping Checks: %d | Check Frequency: %d | Start Delay: %d | Immunity: %d", iMaxPing, iPingChecks, iCheckFrequency, iStartDelay, iImmunity )     log_amx( "HPK: ^"%s<%d><%s>^" has configured the HPK - Max Ping: %d | Ping Checks: %d | Check Frequency: %d | Start Delay: %d | Immunity: %d", uName, get_user_userid( id ), uAuthId, iMaxPing, iPingChecks, iCheckFrequency, iStartDelay, iImmunity )     return PLUGIN_HANDLED; } public client_disconnect( id ) {     g_iCheckPlayers[ id ] = 0     remove_task( id ) }       stock ChatColor( id, szInput[ ], any:... ) {     new iCount = 1, uPlayers[ 32 ];     static iMsgId[ 191 ];     vformat( iMsgId, 190, szInput, 3 );     replace_all( iMsgId, 190, "!y", "^1" ); // Default Color     replace_all( iMsgId, 190, "!g", "^4" ); // Green Color     replace_all( iMsgId, 190, "!team", "^3" ); // Team Color           if( id )         uPlayers[ 0 ] = id;     else         get_players( uPlayers, iCount, "ch" );     {         for( new i = 0; i < iCount; i++ )         {             if( is_user_connected( uPlayers[ i ] ) )             {                 message_begin( MSG_ONE_UNRELIABLE, g_iMsgSayText, _, uPlayers[ i ] );                 write_byte( uPlayers[ i ] );                 write_string( iMsgId );                 message_end( );             }         }     } }
__________________
Steam: stickp0le
StickP0le is offline
leonard19941
Veteran Member
Join Date: Jun 2011
Old 06-25-2012 , 21:27   Re: High Ping Kicker "Argument Mismatch"
Reply With Quote #3

Thanks you 'StickP0le', but i made a small change.
__________________

Last edited by leonard19941; 06-26-2012 at 15:42.
leonard19941 is offline
StickP0le
Senior Member
Join Date: Jan 2010
Location: cuantocabron.com
Old 06-25-2012 , 21:34   Re: High Ping Kicker "Argument Mismatch"
Reply With Quote #4

what had you change?
__________________
Steam: stickp0le
StickP0le is offline
leonard19941
Veteran Member
Join Date: Jun 2011
Old 06-25-2012 , 21:40   Re: High Ping Kicker "Argument Mismatch"
Reply With Quote #5

Quote:
Originally Posted by StickP0le View Post
what had you change?
Delete 'szParam[ ]' put 'id' directly.


PHP Code:
public CheckFrequencyszParam[ ] ) 

    if( 
get_pcvar_numg_pCvarHPKPingChecks ) < 
        
set_pcvar_numg_pCvarHPKPingChecks

    new 
id szParam

    if( 
get_user_flagsid ) & ADMIN_IMMUNITY && get_pcvar_numg_pCvarHPKImmunity ) == 
    { 
        
remove_taskid 
        
ChatColorid"!g[ HPK ] !yPing checking disabled due to immunity..." ); 
        return 
PLUGIN_CONTINUE
    } 

    new 
iPingiLoss
    
get_user_pingidiPingiLoss )  

    
g_iPingid ] += iPing 
    
++g_iSamplesid 

    if( ( 
g_iSamplesid ] > get_pcvar_numg_pCvarHPKPingChecks ) ) && ( g_iPingid ] / g_iSamplesid ] > get_pcvar_numg_pCvarHPKMaxPing ) ) ) 
        
KickPlayerid 

    return 
PLUGIN_CONTINUE 





PHP Code:
public CheckFrequencyid 

    if( 
get_pcvar_numg_pCvarHPKPingChecks ) < 
        
set_pcvar_numg_pCvarHPKPingChecks

    if( 
get_user_flagsid ) & ADMIN_IMMUNITY && get_pcvar_numg_pCvarHPKImmunity ) == 
    { 
        
remove_taskid 
        
ChatColorid"!g[ HPK ] !yPing checking disabled due to immunity..." ); 
        return 
PLUGIN_CONTINUE
    } 

    new 
iPingiLoss
    
get_user_pingidiPingiLoss )  

    
g_iPingid ] += iPing 
    
++g_iSamplesid 

    if( ( 
g_iSamplesid ] > get_pcvar_numg_pCvarHPKPingChecks ) ) && ( g_iPingid ] / g_iSamplesid ] > get_pcvar_numg_pCvarHPKMaxPing ) ) ) 
        
KickPlayerid 

    return 
PLUGIN_CONTINUE 

__________________

Last edited by leonard19941; 06-25-2012 at 21:40.
leonard19941 is offline
StickP0le
Senior Member
Join Date: Jan 2010
Location: cuantocabron.com
Old 06-25-2012 , 21:43   Re: High Ping Kicker "Argument Mismatch"
Reply With Quote #6

doesn´t gave you any errors?
__________________
Steam: stickp0le
StickP0le is offline
leonard19941
Veteran Member
Join Date: Jun 2011
Old 06-25-2012 , 21:51   Re: High Ping Kicker "Argument Mismatch"
Reply With Quote #7

Quote:
Originally Posted by StickP0le View Post
doesn´t gave you any errors?
No, compile perfectly with no errors or warnings, therefore ask you if was okay.
__________________
leonard19941 is offline
StickP0le
Senior Member
Join Date: Jan 2010
Location: cuantocabron.com
Old 06-25-2012 , 22:22   Re: High Ping Kicker "Argument Mismatch"
Reply With Quote #8

yes, its okay but why did you add a [] near szParam? or you just c&p?
__________________
Steam: stickp0le
StickP0le is offline
StickP0le
Senior Member
Join Date: Jan 2010
Location: cuantocabron.com
Old 06-25-2012 , 22:23   Re: High Ping Kicker "Argument Mismatch"
Reply With Quote #9

if you didnt know sz means that the variable will be a string, and in this case to get the id, you dont need to add another dimension to the variable
__________________
Steam: stickp0le
StickP0le is offline
Neeeeeeeeeel.-
Some Guy Yellin'
Join Date: Jul 2010
Location: Argentina
Old 06-25-2012 , 23:05   Re: High Ping Kicker "Argument Mismatch"
Reply With Quote #10

When you send params from set_task it must be a string, so what you did was wrong.
__________________

Last edited by Neeeeeeeeeel.-; 06-26-2012 at 23:11.
Neeeeeeeeeel.- is offline
Send a message via Skype™ to Neeeeeeeeeel.-
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 06:08.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode