28.08.2011, 19:14
Quote:
Hi all.Now i have problem with my ip address.The problem is here:
pawn Код:
Код:
IP address=(and here is nothing,no ip address.) |
123.456.789.123
13+3(dots) = 16 (its not too small..)
try : dini_IntSet(pFiles, "IP address", pIP);
(i dont have so big knowladge in dini..)
if it will not work too,than try :
pawn Код:
new pFiles[ 40 ];
if(dialogid == 0)
{
if(response)
{
new pIP[16];
GetPlayerIp(playerid, pIP, sizeof(pIP));
format(pFiles, sizeof(pFiles), "saves/user/%s.ini", PlayerName(playerid));
dini_Create(pFiles);
dini_IntSet(pFiles, "IP address", pIP);
}
return 1;
}
pawn Код:
new pFiles[ 40 ];
if(dialogid == 0)
{
if(response)
{
new pIP[16];
GetPlayerIp(playerid, pIP, sizeof(pIP));
format(pFiles, sizeof(pFiles), "saves/user/%s.ini", PlayerName(playerid));
dini_Create(pFiles);
dini_Set(pFiles, "IP address", pIP);
}
return 1;
}