View Single Post
Author Message
Darkwob
BANNED
Join Date: Oct 2018
Old 07-25-2021 , 04:32   [HELP]Adding a command usage limit.
Reply With Quote #1

I wanted to ask you here as I couldn't figure out how to do it. I want to add a usage limit to this Command. I wanted to enable a player to use it maximum 3 times, but when he used this command, I could not write the code to increase it and when it reached the limit, I could not disable it from using it. I'm giving you the source version without the garbage code I made. I would be very happy if you can help.

PHP Code:
public Action ResetBHP(int clientint args)
{
    
    if (
client == || !IsClientInGame(client))
    {
        return 
Plugin_Handled;
    }
    
    
AdminId clientId GetUserAdmin(client);
    if (
clientId == INVALID_ADMIN_ID || iPounces[client] == 0)
    {
        
CPrintToChat(client"\x03Invalid!\x01");
        return 
Plugin_Handled;
    }
    
    
CPrintToChat(client"\x04Fatal Jump\x01 \x03Counts Reset!\x01");
    

        
/* 
       I left these out because it sums up what I want to do.
      if(int i, i =< limited i++ ){
    CPrintToChat(client, "\x04You Used Reset. (%i/%i)",resetnum,limited );
    
}*/
    
if (hPenaltyTime[client] != null)
    {
        
hPenaltyTime[client] = null;
    }
    
    
//iPounces[client] = 0;
    
iPenalty[client] = 0;
    
    return 
Plugin_Handled;


Last edited by Darkwob; 07-25-2021 at 04:34.
Darkwob is offline