[Ajuda] DARSCORE
#1

PHP код:
CMD:darscore(playeridparams[])
{
    new 
idquant[128];
    if(
sscanf(params"uii"idquant)) return SendClientMessage(playerid, -1,"Uso: /darscore [ID/Nome] [Quantidade].");
    
SetPlayerScore(idquant);
    return 
1;

PHP код:
C:\Users\Usuario\Desktop\THE DM\gamemodes\THE3 .pwn(1420) : error 035argument type mismatch (argument 2)
Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
1 Error

Reply
#2

Tente assim!

PHP код:
CMD:darscore(playeridparams[])
{
    new 
idquant;
    if (
sscanf(params"ui"idquant)) SendClientMessage(playerid0xffffffff"Use: /darscore [ID] [Score]");
    else
    {
        
SetPlayerScore(idquant);
    }
    return 
1;

Reply
#3

fica dando CMD INVALIDO -''
Reply
#4

Quote:
Originally Posted by JuniorTheDM
Посмотреть сообщение
fica dando CMD INVALIDO -''
wtf

PHP код:
CMD:darscore(playeridparams[])
{
    new 
idquant;
    if(
sscanf(params"ui"idquant)) return SendClientMessage(playerid0xffffffff"Use: /darscore [ID] [Score]");
    
SetPlayerScore(idquant);
    return 
1;

Reply
#5

Ele deve estar a usar strcmp e ZCMD ao mesmo tempo. Deve estar a dar algum conflito...
Reply
#6

Passa a linha 1420
Reply
#7

Olhe bem seu cуdigo:

Correto й assim:
PHP код:
CMD:darscore(playeridparams[]) 

    new 
idquant;
    if(
sscanf(params"ui"idquant)) return SendClientMessage(playerid, -1,"Uso: /darscore [ID/Nome] [Quantidade]."); 
    
SetPlayerScore(idquant); 
    return 
1

Forma incorreta:
Код:
CMD:darscore(playerid, params[]) 
{ 
    new id, quant[128]; 
    if(sscanf(params, "uii", id, quant)) return SendClientMessage(playerid, -1,"Uso: /darscore [ID/Nome] [Quantidade]."); 
    SetPlayerScore(id, quant); 
    return 1; 
}
Me corrijam se eu estiver errado ;-;
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)