SA-MP Forums Archive
How would I add parameters to this? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: How would I add parameters to this? (/showthread.php?tid=607889)



How would I add parameters to this? - UnholyBeast - 25.05.2016

PHP Code:
public OnPlayerText(playeridtext[])
{
    new 
healcmd[] = "#heal"targetidhealthvalue;
    if(!
strcmp(texthealcmdtargetidhealthvalue))
    {
        if(!
IsPlayerAdmin(playerid)) return NormalPlayerChat(playeridtext);
        if(
IsPlayerAdmin(playerid))
        {
            new 
rcon_msg[144], healed_self[144];
            if(
sscanf(params"ud"targetidhealthvalue)) return SendClientMessage(playerid0x32CD32CD"USAGE: !heal <targetid> <amount of health>");
            if(!
IsPlayerConnected(targetid)) return SendClientMessage(playerid0x32CD32CD"That ID is not connected to a player.");
            if(
targetid == playerid)
            {
                
SetPlayerHealth(playeridhealthvalue);
                
format(healed_selfsizeof(healed_self), "You have set your own health to: %d"healthvalue);
                
SendClientMessage(playerid0x32CD32CDhealed_self);
            }
            
format(rcon_msgsizeof(rcon_msg), "You have set \"%s(%d)'s\" health to: %d"PlayerName(playerid), playeridhealthvalue);
            
SetPlayerHealth(targetidhealthvalue);
            
SendClientMessage(playerid, -1rcon_msg);
        }
        return 
0;
    }
    
NormalPlayerChat(playeridtext);
    return 
0;




Re: How would I add parameters to this? - Naruto_Emilio - 25.05.2016

strcmp if string compare, you cant use it like that, I suggest you to start using zcmd & sscanf instead its much easier and easier to read & write aswell