'error 017: undefined symbol "fExist"
#1

Quote:

error 017: undefined symbol "fExist"

I have this error for some reasons, all my includes, plugins whatever are they

I have the #include for YSI and shiz, I put the GM in a folder wheres theres another GM which uses Y_INI and that doesn't get that error

Code of error:
pawn Код:
ShowDialogStartUp(playerid)
{
    if(fExist(UserSavePath(playerid))
    {
        ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT, "", "", "Login!", "Cancel");
    }
    else
    {
        ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT, "", "", "Register!", "Cancel");
    }
    return 1;
}
Reply
#2

PHP код:
if(fExist(UserSavePath(playerid)) 
should be

PHP код:
if(fexist(UserSavePath(playerid))) 
??
Reply
#3

Didn't notice that, but it still didnt fix it
Reply
#4

what's your issue? it should be done like that otherwise try adding ( #include <file> )
Reply
#5

Already have it included, didnt work
Reply
#6

It's "fexist"...not "Fexist"

Wiki post
Reply
#7

^^

although, The guy said it's not working.
Reply
#8

Quote:
Originally Posted by Romel
Посмотреть сообщение
^^

although, The guy said it's not working.
I don't quite understand how it's not working. Maybe once he changed it, and showed the new errors or coding with errors. People seem to think...sometimes, that we can read minds.
Reply
#9

Here:
Quote:

ShowDialogStartUp(playerid)
{
if(fexist(UserSavePath(playerid)))
{

The brackets closing is not correct add one more ")" after fexist
Reply
#10

Quote:
Originally Posted by Steven82
Посмотреть сообщение
It's "fexist"...not "Fexist"

Wiki post
LOL

I tried everything but that, rep'd

Thank you for everyone that helped
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)