warning 225: unreachable code
#1

C:\Users\Raul\Desktop\SA-MP Server\gamemodes\Proov.pwn(23953) : warning 225: unreachable code
C:\Users\Raul\Desktop\SA-MP Server\gamemodes\Proov.pwn(43610) : warning 225: unreachable code


THERES ONE MISTAKE:



pawn Код:
for(new i = 0; i < sizeof(SBizzInfo); i++)
            {
                if (PlayerToPoint(3, playerid,SBizzInfo[i][sbEntranceX], SBizzInfo[i][sbEntranceY], SBizzInfo[i][sbEntranceZ]))
                {
                    if(PlayerInfo[playerid][pPbiskey] == i || GetPlayerMoney(playerid) >= SBizzInfo[i][sbEntranceCost])
                    {
                        if(PlayerInfo[playerid][pPbiskey] != i)
                        {
                            if(SBizzInfo[i][sbLocked] == 1)
                            {
                                GameTextForPlayer(playerid, "~r~Closed", 5000, 1);
                                return 1;
                            }
                            if(SBizzInfo[i][sbProducts] == 0)
                            {
                                GameTextForPlayer(playerid, "~r~Out Of Stock", 5000, 1);
                                return 1;
                            }
                            else

                              return 1;

                            SafeGivePlayerMoney(playerid,-SBizzInfo[i][sbEntranceCost]);
                            gSpentCash[playerid] = GetPlayerMoney(playerid);
                            SBizzInfo[i][sbProducts]--;
                            SBizzInfo[i][sbTill] += SBizzInfo[i][sbEntranceCost];
                            ExtortionSBiz(i, SBizzInfo[i][sbEntranceCost]);
                            new dood[MAX_PLAYER_NAME];
                            GetPlayerName(playerid, dood, sizeof(dood));
                            format(string, sizeof(string), "%s payed $%d to enter sbiz %d", dood, SBizzInfo[i][sbEntranceCost], i);
                            printf("%s", string);
                            PayLog(string);
                            OnPropUpdate();
                        }
                    }

HERES THE OTHER


pawn Код:
PlayerInfo[playerid][pSex] = 1;
                ClearChatbox(playerid, 8);
                SendClientMessage(playerid, COLOR_GREEN, "-----------------------------------------------------------------------");
                SendClientMessage(playerid, COLOR_GREY, "Ok, so you are a Male.");
                SendClientMessage(playerid, COLOR_WHITE, "2. What is your birthdate? (Use dd/mm/yyyy)");
                SendClientMessage(playerid, COLOR_GREEN, "-----------------------------------------------------------------------");
                ClearChatbox(playerid, 2);
                new maleskin;
                maleskin = random(sizeof(CivMalePeds));
                SetPlayerSkin(playerid, maleskin);
                PlayerInfo[playerid][pChar] = maleskin;
                RegistrationStep[playerid] = 2;
                return 0;
            }
            else if((strcmp("female", tmp, true, strlen(tmp)) == 0) && (strlen(tmp) == strlen("female")))
            {
                PlayerInfo[playerid][pSex] = 2;
                ClearChatbox(playerid, 8);
                SendClientMessage(playerid, COLOR_GREEN, "-----------------------------------------------------------------------");
                SendClientMessage(playerid, COLOR_GREY, "Ok, so you are a Female.");
                SendClientMessage(playerid, COLOR_WHITE, "2. What is your birthdate? (Use dd/mm/yyyy)");
                SendClientMessage(playerid, COLOR_GREEN, "-----------------------------------------------------------------------");
                ClearChatbox(playerid, 2);
                new femaleskin;
                femaleskin = random(sizeof(CivFemalePeds));
                SetPlayerSkin(playerid, femaleskin);
                SetPlayerSkin(playerid, femaleskin);
                PlayerInfo[playerid][pChar] = femaleskin;
                RegistrationStep[playerid] = 2;
                return 0;
Reply
#2

But, it says in there lines theres error, sorry for bad english :/
Reply
#3

When you use return in your code, everything behind that inside the { } isn't unreachable code anymore,
So you should look where you put those lines.
Give me a sec and I will post the correct script of that.

I think this should work:
[pawn]
pawn Код:
for(new i = 0; i < sizeof(SBizzInfo); i++)
            {
                if (PlayerToPoint(3, playerid,SBizzInfo[i][sbEntranceX], SBizzInfo[i][sbEntranceY], SBizzInfo[i][sbEntranceZ]))
                {
                    if(PlayerInfo[playerid][pPbiskey] == i || GetPlayerMoney(playerid) >= SBizzInfo[i][sbEntranceCost])
                    {
                        if(PlayerInfo[playerid][pPbiskey] != i)
                        {
                            if(SBizzInfo[i][sbLocked] == 1)
                            {
                                GameTextForPlayer(playerid, "~r~Closed", 5000, 1);
                                return 1;
                            }
                            if(SBizzInfo[i][sbProducts] == 0)
                            {
                                GameTextForPlayer(playerid, "~r~Out Of Stock", 5000, 1);
                                return 1;
                            }
                            else
                            {

                                SafeGivePlayerMoney(playerid,-SBizzInfo[i][sbEntranceCost]);
                                gSpentCash[playerid] = GetPlayerMoney(playerid);
                                SBizzInfo[i][sbProducts]--;
                                SBizzInfo[i][sbTill] += SBizzInfo[i][sbEntranceCost];
                                ExtortionSBiz(i, SBizzInfo[i][sbEntranceCost]);
                                new dood[MAX_PLAYER_NAME];
                                GetPlayerName(playerid, dood, sizeof(dood));
                                format(string, sizeof(string), "%s payed $%d to enter sbiz %d", dood, SBizzInfo[i][sbEntranceCost], i);
                                printf("%s", string);
                                PayLog(string);
                                OnPropUpdate();
                                return 1;
                            }
                        }
                    }
                }
            }
Reply
#4

Thank you, waiting for correct script

But the second one?
I had 2 errors
Reply
#5

Send me the whole public of the second one, because i can't do anything with that part.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)