[Ajuda] empty statement
#1

O que estб errado?

PHP код:
if(CallRemoteFunction("GetPlayerAdminLevel","i",playerid) < || (OutraV[playerid] == -1)); 
PHP код:
error 036: empty statement 
Reply
#2

vocк botou ponto e vнrgula ';' no if, isso й uma estrutura de controle, nгo uma aзгo que vai ser executada...
Reply
#3

Colocou um ';' em uma condicional!
Reply
#4

Quando retiro o bonito do ';'
PHP код:
 error 003declaration of a local variable must appear in a compound block
 error 017
undefined symbol "tmp"
 
warning 215expression has no effect
 error 001
expected token";"but found "]"
 
fatal error 107too many error messages on one line 
Reply
#5

Код:
if(CallRemoteFunction("GetPlayerAdminLevel","i",playerid) < 1 || (OutraV[playerid] == -1))
{
   // cуdigo
}
Variavel 'tmp' nгo existe
Reply
#6

Verdade o ponto e virgula nao existe em condicional
Reply
#7

@F1N4L, jб tentei assim tambйm das erros tambйm!

PHP код:
error 003declaration of a local variable must appear in a compound block
error 017
undefined symbol "tmp"
warning 215expression has no effect
error 001
expected token";"but found "]" 
@Edit
PHP код:
forward GetPlayerAdminLevel(playerid);
public 
GetPlayerAdminLevel(playerid) return Admin[playerid][Level]; 
Reply
#8

Posta o cуdigo completo
Reply
#9

@F1N4L
PHP код:
CMD:m(playeridparams[])
{
    if(
CallRemoteFunction("GetPlayerAdminLevel","i",playerid) < || (OutraV[playerid] == -1))
    new 
tmp[256], Index;
    
tmp strtok(params,Index);
    new 
string[128]; GetPlayerName(playeridstringsizeof(string));
    if(!
strlen(params)) return SendClientMessage(playerid, -1"{6EF83C}Use:{FFFFFF} /M [Texto]");
    
format(stringsizeof(string), " ~ Chat: %s: %s"PlayerName(playerid), params[0]);
    for(new 
0MAX_PLAYERS++)
    {
        if(
IsPlayerConnected(I))
        {
            if(!
IsPlayerAdmin(I) && OutraV[I] == 10SendClientMessage(I, -1string);
            if(
IsPlayerAdmin(I)) SendClientMessage(I, -1string);
        }
    }
    return 
1;

Reply
#10

tente agora:

PHP код:
CMD:m(playeridparams[]) 

    if(
CallRemoteFunction("GetPlayerAdminLevel","i",playerid) < || (OutraV[playerid] == -1)) 
            return 
SendClientMessage(playerid, -1"Vocк nгo tem nivel administrativo");
        
    new 
tmp[256], Index
    
tmp strtok(params,Index); 
    new 
string[128]; GetPlayerName(playeridstringsizeof(string)); 
    if(!
strlen(params)) return SendClientMessage(playerid, -1"{6EF83C}Use:{FFFFFF} /M [Texto]"); 
    
format(stringsizeof(string), " ~ Chat: %s: %s"PlayerName(playerid), params[0]); 
    for(new 
0MAX_PLAYERS++) 
    { 


        if(
IsPlayerConnected(I)) 
        { 


            if(!
IsPlayerAdmin(I) && OutraV[I] == 10SendClientMessage(I, -1string); 
            if(
IsPlayerAdmin(I)) SendClientMessage(I, -1string); 
        } 
    } 
    return 
1

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)