What I can do to repair this?
#1

(35){
(36) INI_Int("Parola",PlayerInfo[playerid][pPass]);
(37) INI_Int("Bani",PlayerInfo[playerid][pCash]);
(38) return 1;
(39)}

(35) : error 055: start of function body without function header
(36) : error 010: invalid function or declaration
(37) : error 010: invalid function or declaration
Reply
#2

You need a function before adding braces, as the error is pretty much clear.

Код:
funcName()
{
    INI_Int("Parola",PlayerInfo[playerid][pPass]);
    INI_Int("Bani",PlayerInfo[playerid][pCash]);
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)