Raised This Month: $32 Target: $400
 8% 

Need help scripting


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Lord94
Junior Member
Join Date: Aug 2018
Old 08-17-2018 , 11:00   Need help scripting
Reply With Quote #1

done

Last edited by Lord94; 08-17-2019 at 19:10. Reason: changed code tags
Lord94 is offline
edon1337
Penguin Enthusiast
Join Date: Jun 2016
Location: Macedonia
Old 08-17-2018 , 11:17   Re: Need help scripting
Reply With Quote #2

I don't really get what you're trying to do by messing with player commands.
It was always picking you because you simply executed client_cmd on the 'id' player index which is you.


PHP Code:
#include < amxmodx >
#include < amxmisc > 

public plugin_init( )
{
    
register_concmd"amx_check""Check_Player"ADMIN_BAN"<Nick|SteamID>" );
    
register_concmd"amx_uncheck""UnCheck_Player"ADMIN_BAN"<Nick|SteamID>" );
}

public 
Check_PlayeridiLeveliCid )
{
    if ( ! 
cmd_accessidiLeveliCid) ) 
    return 
PLUGIN_HANDLED 
    
    
new szName32 ];
    
read_argv1szNamecharsmaxszName ) );
    
    new 
iPlayer cmd_targetidszNameCMDTARGET_ALLOW_SELF );

    if( ! 
is_user_connectediPlayer ) )
    {
        
client_printidprint_console"(!) Player not found" );
        return 
PLUGIN_HANDLED;
    }

    
engclient_cmdiPlayer"+jump" ) ;     
    return 
PLUGIN_HANDLED


public 
UnCheck_PlayeridiLeveliCid )
{
    if ( ! 
cmd_accessidiLeveliCid) ) 
    return 
PLUGIN_HANDLED 
    
    
new szName32 ];
    
read_argv1szNamecharsmaxszName ) );
    
    new 
iPlayer cmd_targetidszNameCMDTARGET_ALLOW_SELF );

    if( ! 
is_user_connectediPlayer ) )
    {
        
client_printidprint_console"(!) Player not found" );
        return 
PLUGIN_HANDLED;
    }

    
engclient_cmdiPlayer,"+jump" ) ;     
    return 
PLUGIN_HANDLED

__________________
edon1337 is offline
Lord94
Junior Member
Join Date: Aug 2018
Old 08-17-2018 , 12:02   Re: Need help scripting
Reply With Quote #3

I tested your code and it works like a charm.

Thank you Edon for your time!
Lord94 is offline
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 09:17.


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