OnPlayerDeath
#1

pawn Код:
if( killerid != INVALID_PLAYER_ID )
        {

                if( InGameCheck[ killerid ] )
                {

                        if( InGameCheck[ playerid ] )
                        {

                                MVar            [ killerid ][ mKills ]  ++;
                                MVar            [ playerid ][ mDeaths ] ++;
                                MVar            [ killerid ][ mXPPlus ] += 100;
                                TDXPCount       [ killerid ]            += 100;

                                // :Patikrinam Ar Pakilo Lygis
                                CheckIfLevelUp( killerid );

                                new
                                        string[ 10+1 ]
                                ;

                                format                  ( string, sizeof( string ), "XP: +%i", TDXPCount[ killerid ] );
                                GameTextForPlayer       ( killerid, string, 3000, 4 );
                                SetTimerEx              ( "XPShow",1000*3,false,"%d",killerid );
                                print( "labasLT" );
                        }
                        else
                        {
                            SetPlayerPos            ( playerid, -2651.7112,639.4825,14.4531 );
                            print( "You Died, and your InGameCheck is false" );
                        }
                }
                else
                {

                }
        }
What can be wrong? When i kill the guy whos InGameCheck[ playerid ] = false; system don't show "print( "You Died, and your InGameCheck is false" );" and don't teleport him to "-2651.7112,639.4825,14.4531" but when it's true, it's working fine.
Reply
#2

pawn Код:
if(InGameCheck[ playerid ])
Said on english:
Код:
If playerid's InGameCheck is true code will continue to be proccessed.
If you want to continue if InGameCheck[playerid = false:
Replace
pawn Код:
if(InGameCheck[ playerid ])
with
pawn Код:
if(!InGameCheck[ playerid ])
Reply
#3

Nop... }else{ is not working how it should...
Reply
#4

Where do you InGameCheck[playerid] = 1; ? Where do you do that?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)