[Ajuda] ajuda com sscanf/array
#1

Erro ao compilar:
PHP код:
C:\Users\***\DirigindoNoEstilo.pwn(614) : error 033: array must be indexed (variable "Strings")
C:\Users\***\DirigindoNoEstilo.pwn(623) : error 033: array must be indexed (variable "Strings")
C:\Users\***\DirigindoNoEstilo.pwn(632) : error 033: array must be indexed (variable "Strings"
Codigo:
PHP код:
CMD:setplayer(playeridparams[])
{
    if (
PlayerInfo[playerid][pAdmin] > SubDonoAdminLevel)
    {
        new 
idstring[500], valueStrings[500], name[MAX_PLAYER_NAME];
        if (
sscanf(params"rsi"idStringsvalue))
        {
            
SendClientMessage(playerid, -1"Uso: /setplayer [id] [atributo] [valor]");
            
SendClientMessage(playerid, -1"Atributos Validos: dinheiro - score - veiculo");
            return 
1;
        }
        if (
id == INVALID_PLAYER_ID)
            return 
SendClientMessage(playerid, -1"{FF0000}[ERRO] {FFFFFF}Player invalido!");
        if (
Strings == "dinheiro")
        {
            
PlayerInfo[id][pDinheiro] = value;
            
GetPlayerName(playeridnameMAX_PLAYER_NAME);
            
format(stringsizeof(string), "O Admin %s setou %d em sua conta bancaria!"namevalue);
            
SendClientMessage(id, -1string);
            
GetPlayerName(idnameMAX_PLAYER_NAME);
            
format(stringsizeof(string), "Voce setou %d na conta de %s!"valuename);
            
SendClientMessage(playerid, -1string);
        } else if (
Strings == "score")
        {
            
SetPlayerScore(idvalue);
            
GetPlayerName(playeridnameMAX_PLAYER_NAME);
            
format(stringsizeof(string), "O Admin %s setou voce nivel %d!"namevalue);
            
SendClientMessage(id, -1string);
            
GetPlayerName(idnameMAX_PLAYER_NAME);
            
format(stringsizeof(string), "Voce setou %s no nivel %d!"namevalue);
            
SendClientMessage(playerid, -1string);
        } else if (
Strings == "veiculo")
        {
            
PlayerInfo[id][pVehicle] = value;
            
GetPlayerName(playeridnameMAX_PLAYER_NAME);
            
format(stringsizeof(string), "O Admin %s setou para voce o veiculo de ID %d!"namevalue);
            
SendClientMessage(id, -1string);
            
GetPlayerName(idnameMAX_PLAYER_NAME);
            
format(stringsizeof(string), "Voce setou %d como veiculo de %s!"valuename);
            
SendClientMessage(playerid, -1string);
        } else return 
SendClientMessage(playerid, -1"Atributos Validos: dinheiro - score - veiculo");
        
    } else return 
SendClientMessage(playerid, -1"{FF0000}[ERRO] {FFFFFF}Voce nao tem permissao para utilizar esse comando");
    return 
1;

Reply


Messages In This Thread
ajuda com sscanf/array - by cailir - 27.04.2018, 17:05
Re: ajuda com sscanf/array - by 1sbedx - 27.04.2018, 17:22
Re: ajuda com sscanf/array - by Minerva - 27.04.2018, 17:25
Re: ajuda com sscanf/array - by cailir - 27.04.2018, 17:29

Forum Jump:


Users browsing this thread: 1 Guest(s)