Can to help mee ?
#1

PHP код:
        if(pInfo[i][pAdminLevel] < && (team[i] == TEAM_ZOMBIE)
        {
             switch(
GetPlayerWeapon(i))
            {
                case 
2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,22,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,41,42,43,44,45,46:
                {
                    
ResetPlayerWeapons(i);
                    
GivePlayerWeapon(i,9,1);
                }
            }
          } 
ERROR
PHP код:
C:\Users\Arlindi\Desktop\fsdf Copy\gamemodes\zGM.pwn(717) : error 029invalid expressionassumed zero 
LINE
[php]
PHP код:
        if(pInfo[i][pAdminLevel] < && (team[i] == TEAM_ZOMBIE
Error is after this
Is just this
PHP код:

Reply
#2

pawn Код:
if(pInfo[i][pAdminLevel] < 1 && (team[i] == TEAM_ZOMBIE)
this to this
pawn Код:
if(pInfo[i][pAdminLevel] < 1 && team[i] == TEAM_ZOMBIE)
Reply
#3

Thnx Brother
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)