STRING PROBLEM
#10

Quote:
Originally Posted by Lynn
Посмотреть сообщение
You have it defined, just using 2, for both, instead of 1 & 2.
pawn Код:
PlayerInfo[playerid][pSex] = 1;//This is Male.
PlayerInfo[playerid]pSex] = 2;//This is Female.
Change
pawn Код:
if(!strcmp("male", tmp, true, 4))
        {//Checks to see if the input matches "female" and if it does continues
            PlayerInfo[playerid][pSex] = strval(text);
            PlayerInfo[playerid][pSex] = 2;
            SendClientMessage(playerid,LIGHTBLUE,"Ok, so you are a male.");
            SendClientMessage(playerid,WHITE,"Thank you for filling in the information");
            RegistrationStep[playerid] = 3;
            TogglePlayerControllable(playerid,1);//Unfreezes the player and play resumes
            return 0;
        }
to
pawn Код:
if(!strcmp("male", tmp, true, 4))
        {//Checks to see if the input matches "Male" and if it does continues
            PlayerInfo[playerid][pSex] = strval(text);
            PlayerInfo[playerid][pSex] = 1;
            SendClientMessage(playerid,LIGHTBLUE,"Ok, so you are a male.");
            SendClientMessage(playerid,WHITE,"Thank you for filling in the information");
            RegistrationStep[playerid] = 3;
            TogglePlayerControllable(playerid,1);//Unfreezes the player and play resumes
            return 0;
        }
C:\Users\Daniel\SAMP 0.3c Server\gamemodes\Crossfire.pwn(10) : error 010: invalid function or declaration
Reply


Messages In This Thread
STRING PROBLEM - by NuggaN_ - 13.12.2010, 21:54
Re: STRING PROBLEM - by notime - 13.12.2010, 21:56
Re: STRING PROBLEM - by Lynn - 13.12.2010, 22:00
Re: STRING PROBLEM - by notime - 13.12.2010, 22:06
Re: STRING PROBLEM - by NuggaN_ - 13.12.2010, 22:07
Re: STRING PROBLEM - by Lynn - 13.12.2010, 22:12
Re: STRING PROBLEM - by blackwave - 13.12.2010, 22:12
Re: STRING PROBLEM - by NuggaN_ - 13.12.2010, 22:16
Re: STRING PROBLEM - by Lynn - 13.12.2010, 22:21
Re: STRING PROBLEM - by NuggaN_ - 13.12.2010, 22:26

Forum Jump:


Users browsing this thread: 1 Guest(s)