Help | /buyprods /sellprods /load
#1

i have a bug with 3 commands and i can't fix them ;(

PHP Code:
    if(strcmp(cmd"/load"true) == 0)
    {
        if(
IsPlayerConnected(playerid))
        {
            new 
tmpcar GetPlayerVehicleID(playerid);
            if(
tmpcar >= 192 || tmpcar <= 195)
            {
                
GameTextForPlayer(playerid"~r~You are not in a delivery truck"50001);
                return 
1;
            }
            
format(stringsizeof(string), "Products: %d/%d."PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
        }
        return 
1;
    }
    if(
strcmp(cmd"/buyprods"true) == 0)
    {
        if(
IsPlayerConnected(playerid))
        {
            new 
tmpcar GetPlayerVehicleID(playerid);
            new 
compcost 20;
            if(
PlayerToPoint(70.0playerid2468.4919,-2092.9902,13.5469))
            {
                if(
IsATruck(tmpcar))
                {
                    if(
PlayerHaul[tmpcar][pLoad] < PlayerHaul[tmpcar][pCapasity])
                    {
                        new 
amount;
                        
tmp strtok(cmdtextidx);
                        if(!
strlen(tmp))
                        {
                            
SendClientMessage(playeridCOLOR_GRAD1"USAGE: /buyprods [amount]");
                            return 
1;
                        }
                        
amount strval(tmp);
                        if(
amount || amount 500) { SendClientMessage(playeridCOLOR_GREY"   Can't buy less then 1 Product or more then 500!"); return 1; }
                        new 
checkPlayerHaul[tmpcar][pLoad] + amount;
                        if(
check PlayerHaul[tmpcar][pCapasity])
                        {
                            
format(stringsizeof(string), "   You went over the Truck Products Carry Limit of %d, you currently carry %d.",PlayerHaul[tmpcar][pCapasity],PlayerHaul[tmpcar][pLoad]);
                            
SendClientMessage(playeridCOLOR_GREYstring);
                            return 
1;
                        }
                        new 
cost amount*compcost;
                        if(
GetCash(playerid) >= cost)
                        {
                            
PlayerHaul[tmpcar][pLoad] += amount;
                            
format(stringsizeof(string), "Products: %d/%d."PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
                            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                            
format(stringsizeof(string), "You bought %d Products for $%d."amount,cost);
                            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                            
GiveCash(playerid,-cost);
                            
PlayerPlaySound(playerid10520.00.00.0);
                            return 
1;
                        }
                        else
                        {
                            
format(stringsizeof(string), "You cant afford %d Products at $%d!"amount,cost);
                            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                            return 
1;
                        }
                    }
                    else
                    {
                            
format(stringsizeof(string), "Products: %d/%d."PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
                            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                            return 
1;
                    }
                }
                else
                {
                    
SendClientMessage(playeridTEAM_GROVE_COLOR"This Vehicle does not deliver Products.");
                    return 
1;
                }
            }
            else
            {
                
SendClientMessage(playeridCOLOR_GREY"You are not in trucker place.");
                return 
1;
            }
        }
        return 
1;
    }
    if(
strcmp(cmd"/sellprods"true) == 0)
    {
        new 
cashmade;
        new 
tmpcar;
        if(
IsPlayerConnected(playerid))
        {
            
tmpcar GetPlayerVehicleID(playerid);
            if(!
IsATruck(tmpcar))
            {
                
GameTextForPlayer(playerid"~r~You are not in a delivery truck"50001);
                return 
1;
            }
            if(
PlayerHaul[tmpcar][pLoad] == 0)
            {
                
GameTextForPlayer(playerid"~r~Truck is empty, return to the stock house"50001);
                
format(stringsizeof(string), "Products: %d/%d."PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
                
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                return 
1;
            }
            for(new 
0sizeof(BizzInfo); i++)
            {
                if (
PlayerToPoint(10playerid,BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ]))
                {
                    
//printf("Found House :%d",i);
                    
for(new PlayerHaul[tmpcar][pLoad]; 0l--)
                    {
                        if(
BizzInfo[i][bProducts] == BizzInfo[i][bMaxProducts])
                        {
                            
GameTextForPlayer(playerid"~r~Our stores are full"50001);
                            
format(stringsizeof(string), "Cash Earned $%d."cashmade);
                            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                            
format(stringsizeof(string), "Products: %d/%d."PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
                            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                            
PlayerPlaySound(playerid10520.00.00.0);
                            return 
1;
                        }
                        if(
BizzInfo[i][bPriceProd] > BizzInfo[i][bTill])
                        {
                            
GameTextForPlayer(playerid"~r~We Cant Afford The Deal"50001);
                            
format(stringsizeof(string), "Cash Earned $%d."cashmade);
                            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                            
format(stringsizeof(string), "Products: %d/%d."PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
                            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                            
PlayerPlaySound(playerid10520.00.00.0);
                            return 
1;
                        }
                        
PlayerHaul[tmpcar][pLoad]--;
                        
BizzInfo[i][bProducts]++;
                        
cashmade cashmade+BizzInfo[i][bPriceProd];
                        
//ConsumingMoney[playerid] = 1;
                        
GiveCash(playerid,BizzInfo[i][bPriceProd]);
                        
BizzInfo[i][bTill] -= BizzInfo[i][bPriceProd];
                        if(
PlayerHaul[tmpcar][pLoad] == 0)
                        {
                            
GameTextForPlayer(playerid"~r~Truck is empty, return to the stock house"50001);
                            
format(stringsizeof(string), "Cash Earned $%d."cashmade);
                            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                            
format(stringsizeof(string), "Products: %d/%d."PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
                            
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                            
PlayerPlaySound(playerid10520.00.00.0);
                            return 
1;
                        }
                    }
                    
OnPropUpdate();
                    return 
1;
                }
            }
        }
        for(new 
0sizeof(SBizzInfo); i++)
        {
            if (
PlayerToPoint(10playerid,SBizzInfo[i][sbEntranceX], SBizzInfo[i][sbEntranceY], SBizzInfo[i][sbEntranceZ]))
            {
                
//printf("Found House :%d",i);
                
for(new PlayerHaul[tmpcar][pLoad]; 0l--)
                {
                    if(
SBizzInfo[i][sbProducts] == SBizzInfo[i][sbMaxProducts])
                    {
                        
GameTextForPlayer(playerid"~r~Our stores are full"50001);
                        
format(stringsizeof(string), "Cash Earned $%d."cashmade);
                        
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                        
format(stringsizeof(string), "Products: %d/%d."PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
                        
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                        return 
1;
                    }
                    if(
SBizzInfo[i][sbPriceProd] > SBizzInfo[i][sbTill])
                    {
                        
GameTextForPlayer(playerid"~r~We Cant Afford The Deal"50001);
                        
format(stringsizeof(string), "Cash Earned $%d."cashmade);
                        
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                        
format(stringsizeof(string), "Products: %d/%d."PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
                        
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                        return 
1;
                    }
                    
PlayerHaul[tmpcar][pLoad]--;
                    
SBizzInfo[i][sbProducts]++;
                    
cashmade cashmade+SBizzInfo[i][sbPriceProd];
                    
//ConsumingMoney[playerid] = 1;
                    
GiveCash(playerid,SBizzInfo[i][sbPriceProd]);
                    
SBizzInfo[i][sbTill] -= SBizzInfo[i][sbPriceProd];
                    if(
PlayerHaul[tmpcar][pLoad] == 0)
                    {
                        
GameTextForPlayer(playerid"~r~Truck is empty, return to the stock house"50001);
                        
format(stringsizeof(string), "Cash Earned $%d."cashmade);
                        
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                        
format(stringsizeof(string), "Products: %d/%d."PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
                        
SendClientMessage(playeridTEAM_GROVE_COLORstring);
                        return 
1;
                    }
                }
                
OnPropUpdate();
                return 
1;
            }
        }
        
GameTextForPlayer(playerid"~r~To Far From A Business"50001);
        return 
1;
    } 
Hey, i got problem with 3 commands, the commands doesn't work ..
SERVER : Unknown Command
please helpppp
Reply


Messages In This Thread
Help | /buyprods /sellprods /load - by arad55 - 24.08.2011, 02:43
Re: Help | /buyprods /sellprods /load - by sleepysnowflake - 24.08.2011, 02:46
Re: Help | /buyprods /sellprods /load - by Dragony92 - 24.08.2011, 05:21
Re: Help | /buyprods /sellprods /load - by arad55 - 24.08.2011, 13:18

Forum Jump:


Users browsing this thread: 1 Guest(s)