optimize code
#4

Quote:
Originally Posted by DeadNudock
View Post
I tried to let the faster code, let easier to understand, more can not, please someone can tell me how I can remove the

PHP Code:
{} 
without harming the code?

PHP Code:
                    if (IsGangueGRI(i))
                    {
                        if (
PlayerInfo[i][pCargo] == 1)
                        {
                            if (
CofreOrg[GetPlayerOrg(i)][salarioc1] == 0)
                            {}
///
                            
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] < CofreOrg[GetPlayerOrg(i)][salarioc1])
                            {
                                
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc1];
                                
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc1]);
                            }
                        }
                        if (
PlayerInfo[i][pCargo] == 2)
                        {
                            if (
CofreOrg[GetPlayerOrg(i)][salarioc2] == 0)
                            {}
/////
                            
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] >= CofreOrg[GetPlayerOrg(i)][salarioc2])
                            {
                                
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc2];
                                
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc2]);
                            }
                        }
                        if (
PlayerInfo[i][pCargo] == 3)
                        {
                            if (
CofreOrg[GetPlayerOrg(i)][salarioc3] == 0)
                            {}
////
                            
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] >= CofreOrg[GetPlayerOrg(i)][salarioc3])
                            {
                                
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc3];
                                
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc3]);
                            }
                        }
                        if (
PlayerInfo[i][pCargo] == 4)
                        {
                            if (
CofreOrg[GetPlayerOrg(i)][salarioc4] == 0)
                            {}
////
                            
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] >= CofreOrg[GetPlayerOrg(i)][salarioc4])
                            {
                                
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc4];
                                
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc4]);
                            }
                        }
                        if (
PlayerInfo[i][pCargo] == 5)
                        {
                            if (
CofreOrg[GetPlayerOrg(i)][salarioc5] == 0)
                            {}
///
                            
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] >= CofreOrg[GetPlayerOrg(i)][salarioc5])
                            {
                                
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc5];
                                
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc5]);
                            }
                        }
                        if (
PlayerInfo[i][pCargo] == 6)
                        {
                            if (
CofreOrg[GetPlayerOrg(i)][Dinheiro] >= 2000PlayerInfo[i][pSalario] += 2000SacarGranaOrg(GetPlayerOrg(i), 2000);
                        }
                    } 
PHP Code:
if (CofreOrg[GetPlayerOrg(i)][salarioc1] == 0
{}
/// 
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] < CofreOrg[GetPlayerOrg(i)][salarioc1]) 
 { 
          
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc1]; 
           
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc1]); 
 } 
// Change to
if (CofreOrg[GetPlayerOrg(i)][salarioc1] != && CofreOrg[GetPlayerOrg(i)][Dinheiro] < CofreOrg[GetPlayerOrg(i)][salarioc1]) 
 { 
          
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc1]; 
           
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc1]); 
 } 
Reply


Messages In This Thread
optimize code - by DeadNudock - 25.06.2015, 21:44
Re: optimize code - by Stanford - 25.06.2015, 21:48
Re: optimize code - by DeadNudock - 25.06.2015, 23:48
Re: optimize code - by !damo!spiderman - 25.06.2015, 23:54
Re: optimize code - by !damo!spiderman - 25.06.2015, 23:57

Forum Jump:


Users browsing this thread: 1 Guest(s)