[AJUDA] Comandos Bugados
#1

Galera quando eu uso comandos dб esse erro:
~
(SERVER: Unknown command.)

Os Comandos:
pawn Code:
if(strcmp(cmdtext, "/setarvip", true) == 0) {
if(!IsPlayerAdmin(playerid)) return 0;
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /setarvip [id].");
return 1;
}
plid = strval(tmp);
if(IsPlayerConnected(plid)){
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
dini_IntSet(file2, "VIP",1);
SpawnPlayer(plid);
SendClientMessage(playerid, 0x00FF00AA, "(INFO) VIP Setado com sucesso");
SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin setou VIP para vocк aproveite ;D");
return 1;
}else{
SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
return 1;
}
}

if(strcmp(cmdtext, "/setarguardiao", true) == 0) {
if(!IsPlayerAdmin(playerid)) return 0;
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /setarguardiao [id].");
return 1;
}
plid = strval(tmp);
if(IsPlayerConnected(plid)){
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
dini_IntSet(file2, "GUARD",1);
SpawnPlayer(plid);
SendClientMessage(playerid, 0x00FF00AA, "(INFO) Guardiгo Setado com sucesso");
SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin setou Guardiгo para vocк aproveite ;D");
return 1;
}else{
SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
return 1;
}
}

if(strcmp(cmdtext, "/tirarguardiao", true) == 0) {
if(!IsPlayerAdmin(playerid)) return 0;
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /tirarguardiao [id].");
return 1;
}
plid = strval(tmp);
if(IsPlayerConnected(plid)){
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
dini_IntSet(file2, "GUARD",0);
SpawnPlayer(plid);
SendClientMessage(playerid, 0x00FF00AA, "(INFO) Guardiгo Tirado com sucesso");
SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin tirou Guardiгo de vocк ;( ");
return 1;
}else{
SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
return 1;
}
}

if(strcmp(cmdtext, "/tirarvip", true) == 0) {
if(!IsPlayerAdmin(playerid)) return 0;
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /tirarvip [id].");
return 1;
}
plid = strval(tmp);
if(IsPlayerConnected(plid)){
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
dini_IntSet(file2, "VIP",0);
SpawnPlayer(plid);
SendClientMessage(playerid, 0x00FF00AA, "(INFO) VIP Tirado com sucesso");
SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin tirou VIP de vocк ;( ");
return 1;
}else{
SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
return 1;
}
}
Reply
#2

@doublepost
Alguem?
Reply
#3

man identa isso primeiro -.-
Reply
#4

tem algum outro FS, que da conflito com ele?
Reply
#5

pawn Code:
if(strcmp(cmdtext, "/setarvip", true) == 0)
{
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1,"(x) Vocк nгo pode fazer isto!!");
    new tmp[256];
    new plid;
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp)) {
        SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /setarvip [id].");
        return 1;
    }
    plid = strval(tmp);
    if(IsPlayerConnected(plid)) {
        new pname[MAX_PLAYER_NAME];
        GetPlayerName(plid, pname, MAX_PLAYER_NAME);
        format(file2, sizeof(file2), PASTA_CONTAS, pname);
        dini_IntSet(file2, "VIP",1);
        SpawnPlayer(plid);
        SendClientMessage(playerid, 0x00FF00AA, "(INFO) VIP Setado com sucesso");
        SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin setou VIP para vocк aproveite ;D");
        return 1;
    }
    else {
        SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
        return 1;
    }
}


if(strcmp(cmdtext, "/setarguardiao", true) == 0)
{
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1,"(x) Vocк nгo pode fazer isto!!");
    new tmp[256];
    new plid;
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp)) {
        SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /setarguardiao [id].");
        return 1;
    }
    plid = strval(tmp);
    if(IsPlayerConnected(plid)) {
        new pname[MAX_PLAYER_NAME];
        GetPlayerName(plid, pname, MAX_PLAYER_NAME);
        format(file2, sizeof(file2), PASTA_CONTAS, pname);
        dini_IntSet(file2, "GUARD",1);
        SpawnPlayer(plid);
        SendClientMessage(playerid, 0x00FF00AA, "(INFO) Guardiгo Setado com sucesso");
        SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin setou Guardiгo para vocк aproveite ;D");
        return 1;
    }
    else {
        SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
        return 1;
    }
}


if(strcmp(cmdtext, "/tirarguardiao", true) == 0)
{
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1,"(x) Vocк nгo pode fazer isto!!");
    new tmp[256];
    new plid;
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp)) {
        SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /tirarguardiao [id].");
        return 1;
    }
    plid = strval(tmp);
    if(IsPlayerConnected(plid)) {
        new pname[MAX_PLAYER_NAME];
        GetPlayerName(plid, pname, MAX_PLAYER_NAME);
        format(file2, sizeof(file2), PASTA_CONTAS, pname);
        dini_IntSet(file2, "GUARD",0);
        SpawnPlayer(plid);
        SendClientMessage(playerid, 0x00FF00AA, "(INFO) Guardiгo Tirado com sucesso");
        SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin tirou Guardiгo de vocк ;( ");
        return 1;
    }
    else {
        SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
        return 1;
    }
}


if(strcmp(cmdtext, "/tirarvip", true) == 0)
{
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1,"(x) Vocк nгo pode fazer isto!!");
    new tmp[256];
    new plid;
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp)) {
        SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /tirarvip [id].");
        return 1;
    }
    plid = strval(tmp);
    if(IsPlayerConnected(plid)) {
        new pname[MAX_PLAYER_NAME];
        GetPlayerName(plid, pname, MAX_PLAYER_NAME);
        format(file2, sizeof(file2), PASTA_CONTAS, pname);
        dini_IntSet(file2, "VIP",0);
        SpawnPlayer(plid);
        SendClientMessage(playerid, 0x00FF00AA, "(INFO) VIP Tirado com sucesso");
        SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin tirou VIP de vocк ;( ");
        return 1;
    }
    else {
        SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
        return 1;
    }
}
Reply
#6

Quote:
Originally Posted by KinX
View Post
tem algum outro FS, que da conflito com ele?
Jб vi todos os meus [FS]'s e nгo tem nenhum!


@NOT RESOLVED!
Reply
#7

pawn Code:
if(strcmp(cmdtext, "/setarvip", true) == 0)
{
      if(!IsPlayerAdmin(playerid)) return 0;
      new tmp[256];
      new plid;
      tmp = strtok(cmdtext, idx);
      if(!strlen(tmp)){
      SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /setarvip [id].");}
      plid = strval(tmp);
      if(IsPlayerConnected(plid)){
      new pname[MAX_PLAYER_NAME];
      GetPlayerName(plid, pname, MAX_PLAYER_NAME);
      format(file2, sizeof(file2), PASTA_CONTAS, pname);
      dini_IntSet(file2, "VIP",1);
      SpawnPlayer(playerid);
      SendClientMessage(playerid, 0x00FF00AA, "(INFO) VIP Setado com sucesso");
      SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin setou VIP para vocк aproveite ;D");
      return 1;
      }else{
      SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
      return 1;
}
Prenste Atenзao em Seu Code
pawn Code:
SpawnPlayer(plid);
Reply
#8

Tenta ae!
pawn Code:
if(strcmp(cmdtext, "/setarvip", true) == 0)
{
    if(IsPlayerAdmin(playerid))
    {
        new tmp[256], plid; tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
            return SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /setarvip [id].");
           
        plid = strval(tmp);
        if(IsPlayerConnected(plid))
        {
            new pname[MAX_PLAYER_NAME];
            GetPlayerName(plid, pname, MAX_PLAYER_NAME);
            format(file2, sizeof(file2), PASTA_CONTAS, pname);
            dini_IntSet(file2, "VIP",1);
            SpawnPlayer(plid);
            SendClientMessage(playerid, 0x00FF00AA, "(INFO) VIP Setado com sucesso");
            SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin setou VIP para vocк aproveite ;D");
        }
        else
            SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
    }
    return 1;
}

if(strcmp(cmdtext, "/setarguardiao", true) == 0)
{
    if(IsPlayerAdmin(playerid))
    {  
        new tmp[256], plid; tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
            return SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /setarguardiao [id].");
           
        plid = strval(tmp);
        if(IsPlayerConnected(plid))
        {
            new pname[MAX_PLAYER_NAME];
            GetPlayerName(plid, pname, MAX_PLAYER_NAME);
            format(file2, sizeof(file2), PASTA_CONTAS, pname);
            dini_IntSet(file2, "GUARD",1);
            SpawnPlayer(plid);
            SendClientMessage(playerid, 0x00FF00AA, "(INFO) Guardiгo Setado com sucesso");
            SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin setou Guardiгo para vocк aproveite ;D");
        }
        else
            SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
    }  
    return 1;
}

if(strcmp(cmdtext, "/tirarguardiao", true) == 0)
{
    if(IsPlayerAdmin(playerid))
    {
        new tmp[256], plid; tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
            return SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /tirarguardiao [id].");
           
        plid = strval(tmp);
        if(IsPlayerConnected(plid))
        {
            new pname[MAX_PLAYER_NAME];
            GetPlayerName(plid, pname, MAX_PLAYER_NAME);
            format(file2, sizeof(file2), PASTA_CONTAS, pname);
            dini_IntSet(file2, "GUARD",0);
            SpawnPlayer(plid);
            SendClientMessage(playerid, 0x00FF00AA, "(INFO) Guardiгo Tirado com sucesso");
            SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin tirou Guardiгo de vocк ;( ");
        }
        else
            SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
    }
    return 1;
}

if(strcmp(cmdtext, "/tirarvip", true) == 0)
{
    if(IsPlayerAdmin(playerid))
    {
        new tmp[256], plid; tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
            return SendClientMessage(playerid, 0x008040AA, "(ERRO) Use: /tirarvip [id].");
           
        plid = strval(tmp);
        if(IsPlayerConnected(plid))
        {
            new pname[MAX_PLAYER_NAME];
            GetPlayerName(plid, pname, MAX_PLAYER_NAME);
            format(file2, sizeof(file2), PASTA_CONTAS, pname);
            dini_IntSet(file2, "VIP",0);
            SpawnPlayer(plid);
            SendClientMessage(playerid, 0x00FF00AA, "(INFO) VIP Tirado com sucesso");
            SendClientMessage(plid, 0x00FF00AA, "(INFO) Um admin tirou VIP de vocк ;( ");
        }
        else
            SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
    }
    return 1;
}
Reply
#9

paulor usei seu comando e olha oque dб:
Reply
#10

@FAIL TOPIC >_>
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)