Need help with this
#4

Or this:
pawn Код:
public pRobTimer( playerid )
{
    new p_RobCash[ playerid ] + 1000 + random( 10000 );
    pRobCount[ playerid ] --;
    IsRobbing[ playerid ] =1;
    new rbgt[ 128 ];
    format( rbgt, 128, "Robbery ~g~in progress.~r~Do NOT leave the checkpoint.~y~Money: ~g~%i~n~~y~Time: ~r~%i", p_RobCash[ playerid ], pRobCount[ playerid ] );
    GameTextForPlayer( playerid, rbgt, 1000, 5 );
    new name[ MAX_PLAYER_NAME ];
    GetPlayerName( playerid, name, MAX_PLAYER_NAME );
    new copmsg[ 170 ];
    new cz;
    cz = player_zone[ playerid ];
    format( copmsg, 170, "- WARNING ALL COPS: Robbery in progress by %s (%d) - Location: %s", name, playerid, zones[ cz ][ zone_name ] );
    switch( pRobCount[ playerid ] )
    {
        case 29:
        {
            for( new slots = GetMaxPlayers( ), i; i < slots; i++ )
            {
                if( !IsPlayerConnected( i ) ) continue;
                if( gTeam[ i ] == TEAM_COP )
                {
                    SendClientMessage( i, COLOR_BLUE, copmsg );
                }
            }
        }
        case 0:
        {
            KillTimer( pRobTimerID[ playerid ] );
            new plwl = GetPlayerWantedLevel( playerid );
            plwl = GetPlayerWantedLevel( playerid );
            SetPlayerWantedLevel( playerid, plwl + 2 );
            GivePlayerMoney( playerid, p_RobCash[ playerid ] );
            new string2[ 135 ];
            format( string2, 135, "- SUCCESS ROBBERY - Wanted Level %d - Robbed %i$", plwl, p_RobCash[ playerid ] );
            SendClientMessage( playerid, red, string2 );
            GameTextForPlayer( playerid, "Robbery ~r~COMPLETE.", 3000, 5 );
            SetPlayerScore( playerid, GetPlayerScore( playerid ) + 1 );
            IsRobbing[ playerid ] =0;
            new string3[ 170 ];
            new current_zone;
            current_zone = player_zone[ playerid ];
            GetPlayerName( playerid, name, MAX_PLAYER_NAME );
            format( string3, 170, "- ROBBERY - %s (%d) has robbed %i$ from %s", name, playerid, p_RobCash[ playerid ], zones[ current_zone ][ zone_name ] );
            SendClientMessageToAll( COLOR_WHITE, string3 );
            RobberyLog( string3 );
        }
    }
    return 1;
}
Reply


Messages In This Thread
Need help with this - by Face9000 - 14.02.2012, 15:10
Re: Need help with this - by Face9000 - 18.02.2012, 10:56
Re: Need help with this - by dice7 - 18.02.2012, 11:11
Re: Need help with this - by aRoach - 18.02.2012, 11:13

Forum Jump:


Users browsing this thread: 1 Guest(s)