Help with Y_INI.
#1

What's wrong:

pawn Код:
INI_Open(Accounts(targetid))
        INI_WriteInt("FullyRegistered", 1);  //line 3949
        INI_Save();
        INI_Close();
Код:
bare.pwn(3949) : error 001: expected token: ";", but found "-identifier-"
Can anyone help?
Reply
#2

You forgot semicolon one line higher.
Reply
#3

pawn Код:
INI_Open(Accounts(targetid));
INI_WriteInt("FullyRegistered", 1);
INI_Save();
INI_Close();
Reply
#4

If that doesnt work use;

Код:
INI_Open(Accounts(targetid);
INI_WriteInt("FullyRegistered", 1);
INI_Save();
INI_Close();
Reply
#5

Quote:
Originally Posted by Wolfe
Посмотреть сообщение
If that doesnt work use;

Код:
INI_Open(Accounts(targetid);
INI_WriteInt("FullyRegistered", 1);
INI_Save();
INI_Close();
The first code is correct, this one is wrong.
Reply
#6

Quote:
Originally Posted by Misiur
Посмотреть сообщение
You forgot semicolon one line higher.
Thanks!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)