[Ajuda] ERRO SSCANF
#1

Olб, pessoal hoje queria muito perguntar uma coisa pra vocкs, e ver se tem como remover esse erro e voltar ao normal, estou criando um servidor eai, pesquisei 2 comandos daqui do fуrum o /pintar e /skin, achei do ROAMPT, e peguei ele sу que ao colocar em meu gamemode, (eu iria estudar o codigo) e compilado, sem erros ao abrir meu server me deparo com o seguinte erro: File or Function is not found. os dois comandos sгo em sscanf, jб coloquei #include <sscanf2> e #include <sscanf> lб no topo do gamemode, jб tenho no meu pawn --> includes as duas includes, e nos plugins jб tenho os arquivos da sscanf2, mas continua dando esse erro segue ae os comandos:
pawn Код:
if ( strcmp ( cmdtext , "/skin" , true , 5 ) == 0 )
{
static
string [ 128 ] ,
skinid;
if ( sscanf ( cmdtext [ 6 ] , "i" , skinid ) ) return SendClientMessage ( playerid , 0xF60000AA , "{C90000}[SKIN]: Vocк deve escrever o numero da skin!" ) ;

SetPlayerSkin ( playerid , skinid ) ;
format ( string , 128 , "{0040FF}[SKIN]Vocк mudou sua skin Para: %i" , skinid ) ;
SendClientMessage ( playerid , 0xF60000AA , string ) ;
return 1 ;
}
pawn Код:
if ( strcmp ( cmdtext , "/pintar" , true , 7 ) == 0 )
{
static
string [ 128 ] ,
c1 ,
c2
;
if ( IsPlayerInAnyVehicle ( playerid ) )
{
if ( sscanf ( cmdtext [ 8 ] , "ii" , c1 , c2 ) ) return SendClientMessage ( playerid , 0xF60000AA , "{C90000}[PINTAR] Vocк deve separar por espaзos, Exemplo: /pintar 0 0" ) ;
ChangeVehicleColor ( GetPlayerVehicleID ( playerid ) , c1 , c2 ) ;
format ( string , 128 , "{C1D600}[PINTAR] Vocк Mudou a cor do seu carro para: %i | %i" , c1 , c2 ) ;
SendClientMessage ( playerid , 0xF60000AA , string ) ;
return 1 ;
}
else return SendClientMessage(playerid, 0xFFFFFFFF, "{C90000}[PINTAR] Vocк Nгo estб em um veiculo para pintar!");
}
Reply


Messages In This Thread
ERRO SSCANF - by LucaAllexandre - 23.07.2013, 16:26
Re: ERRO SSCANF - by GM_KoDi - 23.07.2013, 16:31
Re: ERRO SSCANF - by LucaAllexandre - 23.07.2013, 16:33
Re: ERRO SSCANF - by GM_KoDi - 23.07.2013, 16:41
Re: ERRO SSCANF - by LucaAllexandre - 23.07.2013, 16:42
Re: ERRO SSCANF - by GM_KoDi - 23.07.2013, 16:44
Re: ERRO SSCANF - by GM_KoDi - 23.07.2013, 16:46
Re: ERRO SSCANF - by LucaAllexandre - 23.07.2013, 16:48
Re: ERRO SSCANF - by GM_KoDi - 23.07.2013, 16:50
Re: ERRO SSCANF - by LucaAllexandre - 23.07.2013, 16:52

Forum Jump:


Users browsing this thread: 1 Guest(s)