20.04.2013, 17:19
(
Последний раз редактировалось newbienoob; 22.04.2013 в 13:18.
)
Quote:
If you read the y_ini tutorial you will see that variables are loaded in to globals and dealt with after the INI_ParseFile line.
|
EDIT: I understand now. But there's one problem
pawn Код:
new pIP[16]; //global
forward loadip(name[],value[]);
public loadip(name[],value[])
{
INI_String("IP", pIP, 16);
return 1;
}
CMD:unban(playerid, params[])
{
new name[24],str[128];
if(sscanf(params, "s[24]", name)) return SendClientMessage(playerid, -1, ""herror" Usage: /unban [Player name]");
format(str,sizeof(str),UserPath,name);
if(!fexist(str)) return SendClientMessage(playerid, red, "Player is not banned/found!");
new INI:file = INI_Open(str);
INI_SetTag(file,"PlayerData");
INI_WriteInt(file,"Banned",0);
INI_Close(file);
INI_ParseFile(str,"loadip",.bExtra = true);
format(str,sizeof(str),"unbanip %s",pIP);
SendRconCommand(str);
printf("%s",str); //////////////////////
return 1;
}