SA-MP Forums Archive
[Ajuda] error 076: syntax error in the expression, or invalid function call - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] error 076: syntax error in the expression, or invalid function call (/showthread.php?tid=676726)



error 076: syntax error in the expression, or invalid function call - OLucassBR - 17.06.2020

Opa, estou fazendo um sistema de admin, e fiz o comando de ban e agora vou fazer pra aparecer quando a pessoa logar que ela foi banida porйm da esse erro aqui:
PHP Code:
C:\Users\Administrator\Desktop\Sistema Vip\gamemodes\gamemode.pwn(366) : error 076syntax error in the expression, or invalid function call 
O code й esse aqui:
PHP Code:
if(DOF2_GetInt(GetBan(playerid), "Banido") == 1){
    
SendClientMessage(playerid, -1,"{FFFFFF}Admin responsavel pelo banimento:%s\nMotivo: %s"DOF2_GetString(GetBan"Admin"), DOF2_GetString(GetBan"Motivo"));
    
Kick(playerid);
    } 
Por favor me ajudem


Re: error 076: syntax error in the expression, or invalid function call - ThiagoiHarDz - 17.06.2020

A linha do erro й qual? A do SendClientMessage ou da DOF2_GetInt?


Re: error 076: syntax error in the expression, or invalid function call - OLucassBR - 17.06.2020

Quote:
Originally Posted by ThiagoiHarDz
View Post
A linha do erro й qual? A do SendClientMessage ou da DOF2_GetInt?
A do SendClientMessage


Re: error 076: syntax error in the expression, or invalid function call - ThiagoiHarDz - 17.06.2020

O erro estб aki

PHP Code:
DOF2_GetString(GetBan"Admin"), DOF2_GetString(GetBan"Motivo")); 
Veja se vocк definiu Motivo e Admin ou se vocк definiu o GetBan


Re: error 076: syntax error in the expression, or invalid function call - OLucassBR - 17.06.2020

Quote:
Originally Posted by ThiagoiHarDz
View Post
O erro estб aki

PHP Code:
DOF2_GetString(GetBan"Admin"), DOF2_GetString(GetBan"Motivo")); 
Veja se vocк definiu Motivo e Admin ou se vocк definiu o GetBan
O GetBan eu defini, como assim definir o Motivo e o Admin?


Re: error 076: syntax error in the expression, or invalid function call - JoaoGhost - 17.06.2020

o sendclientmessage tbm estб errado, ele nгo formatou.

PHP Code:
new str[30];
format(strsizeof(str), "{FFFFFF}Admin responsavel pelo banimento:%s\nMotivo: %s"DOF2_GetString(GetBan"Admin"), DOF2_GetString(GetBan"Motivo"));
SendClientMessage(playerid, -1str); 



Re: error 076: syntax error in the expression, or invalid function call - ThiagoiHarDz - 17.06.2020

Defini a string pra a include buscar nos arquivos quem deu o ban e o motivo porque se nгo й definida ela da ero ou pode atй compilar mas vai bugar e nгo irб mostrar qm deu o ban e o motivo


Re: error 076: syntax error in the expression, or invalid function call - OLucassBR - 17.06.2020

Quote:
Originally Posted by ThiagoiHarDz
View Post
Defini a string pra a include buscar nos arquivos quem deu o ban e o motivo porque se nгo й definida ela da ero ou pode atй compilar mas vai bugar e nгo irб mostrar qm deu o ban e o motivo
Pra mim definir ela seria assim?
PHP Code:
new AdminMotivo;
Admin DOF2_GetString(GetBan"Admin")
Motivo DOF2_GetString(GetBan"Motivo"
Seria isso?


Re: error 076: syntax error in the expression, or invalid function call - ThiagoiHarDz - 17.06.2020

Cria uma stock de carregar e salvar e tenta


Re: error 076: syntax error in the expression, or invalid function call - OLucassBR - 17.06.2020

Quote:
Originally Posted by ThiagoiHarDz
View Post
Cria uma stock de carregar e salvar e tenta
Entгo pq no caso essa stock tem na minha Gm e no meu sistema de admin, fiz esse sistema ai na GM pra ele verificar antes da tela de login, pq se eu colocar isso no FS ele vai ignorar esse if ai.