[Ajuda] DOF2
#1

O DOF2 nгo estб lendo este arquivo, estб resultando em espaзo no print.

pawn Код:
#define dir_nivelsocial_Exp     "usr/infousr/nivelsocial_exp.INI"
        new vipexp[32];
    format(vipexp, 32, "%s", DOF2_GetString(dir_nivelsocial_Exp, GetPlayerNameEx(playerid)));
    printf("%s", vipexp);
Reply
#2

pawn Код:
new vipexp[32];
 format(vipexp, 32, dir_nivelsocial_Exp, GetPlayerNameEx(playerid)));
 printf("%s", vipexp);
Reply
#3

Quote:
Originally Posted by matheus_alcapone
Посмотреть сообщение
pawn Код:
new vipexp[32];
 format(vipexp, 32, dir_nivelsocial_Exp, GetPlayerNameEx(playerid)));
 printf("%s", vipexp);
Isso nгo vai funcionar!!! Aonde q tб obtendo a informaзгo? :S
Reply
#4

Teste.
pawn Код:
new vipexp[32];
 format(vipexp, 32, dir_nivelsocial_Exp, GetPlayerNameEx(playerid)));
 vipexp = DOF2_GetString(vipexp,"Linha que deseja ler do arquivo");
 printf("%s", vipexp);
Reply
#5

pawn Код:
#define dir_nivelsocial_Exp     "usr/infousr/%dnivelsocial_exp.ini"

new vipexp[64];
format(vipexp, sizeof(vipexp), dir_nivelsocial_Exp, GetPlayerNameEx(playerid)));
printf("%s", vipexp);
Reply
#6

Quote:
Originally Posted by matheus_alcapone
Посмотреть сообщение
Teste.
pawn Код:
new vipexp[32];
 format(vipexp, 32, dir_nivelsocial_Exp, GetPlayerNameEx(playerid)));
 vipexp = DOF2_GetString(vipexp,"Linha que deseja ler do arquivo");
 printf("%s", vipexp);
Quote:
Originally Posted by gunit_j
Посмотреть сообщение
pawn Код:
#define dir_nivelsocial_Exp     "usr/infousr/%dnivelsocial_exp.ini"

new vipexp[64];
format(vipexp, sizeof(vipexp), dir_nivelsocial_Exp, GetPlayerNameEx(playerid)));
printf("%s", vipexp);
Nгo funcionou, ainda continua em branco :S
Reply
#7

Explique o que vocк quer fazer.
Reply
#8

A extensгo tб correta?
Reply
#9

Eu quero obter a texto que estб no nome do jogador na INI "dir_nivelsocial_Exp" sem aspas.
Reply
#10

Ops, Errei troque %d por %s e tente ..

pawn Код:
#define dir_nivelsocial_Exp     "usr/infousr/%sNivelsocial_exp.ini"

new vipexp[64],Name[24];
GetPlayerName(playerid, Name, 24);
format(vipexp, sizeof(vipexp), dir_nivelsocial_Exp, Name);
printf("%s", vipexp);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)