loop help ~ selects first on on the list
#1

I have a list of saved houses and I want it to when a player logs in it checks the list of houses to see if he owns one. But when I run the code I have it only checks the first house on the list when there is more to be checked. Please help me.

Here is what I have: (there are no spaces in the actual coding)
Код:
   			for(new idxx=1; idxx<MAX_HOUSE; idxx++)
			{
			    new name[MAX_PLAYER_NAME+1], string[24+MAX_PLAYER_NAME+1];
				GetPlayerName(playerid, name, sizeof(name));
				if(strcmp(HouseInfo[idxx][hOwner],name,true)!=0) //does not own
				{
				    SendClientMessage(playerid, COLOR_ORANGE, "YOUR HOUSE HAS BEEN SOLD DUE TO INACTIVITY");
				    PlayerInfo[playerid][Houses] = 0;
				    return 1;
				}
				else
				{
				    SendClientMessage(playerid, COLOR_ORANGE, "YOUR HOUSE AUTO-SELL TIME HAS BEEN SET TO 14 DAYS FROM NOW");
                                    ///code will soon be placed here
				    return 1;
				}

    		}
please help me
Reply


Messages In This Thread
loop help ~ selects first on on the list - by jeffery30162 - 16.07.2014, 21:36
Re: loop help ~ selects first on on the list - by Hanger - 16.07.2014, 21:44
Re: loop help ~ selects first on on the list - by jeffery30162 - 16.07.2014, 21:55
Re: loop help ~ selects first on on the list - by Vince - 16.07.2014, 22:07
Re: loop help ~ selects first on on the list - by jeffery30162 - 16.07.2014, 22:14
Re: loop help ~ selects first on on the list - by R0 - 16.07.2014, 22:40
Re: loop help ~ selects first on on the list - by Hanger - 16.07.2014, 23:00

Forum Jump:


Users browsing this thread: 5 Guest(s)