13.10.2011, 17:41
Entrada:
Saнda:
Tem certeza que o arquivo existe e que o valor estб escrito nele?
pawn Код:
#include <YSI\y_ini>
new teste;
forward CarregarGang( playerid, name[ ], value[ ] );
public CarregarGang( playerid, name[ ], value[ ] )
{
if(!strcmp(name,"Dinheiro")) teste = strval(value);
}
public OnGameModeInit()
{
new pArquivo[24];
new pGang = 1; // Para o teste
format(pArquivo, sizeof(pArquivo), "Gangs/%d.ini", pGang);
INI_ParseFile( pArquivo, "CarregarGang", false, true, pGang, true, false);
printf("teste %i", teste);
return 1;
}
Tem certeza que o arquivo existe e que o valor estб escrito nele?