Need help with this
#3

Try this

pawn Код:
new robmoney[MAX_PLAYERS];
public pRobTimer(playerid)
{
    robmoney[playerid] += random(50000);
    pRobCount[playerid]--;
    IsRobbing[playerid] =1;
    new rbgt[128];
    format(rbgt, sizeof(rbgt), "Robbery ~g~in progress.~r~Do NOT leave the checkpoint.~y~Money stolen: ~g~%i", robmoney[playerid]);
    GameTextForPlayer(playerid, rbgt, 1000, 5);
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid, name, sizeof(name));
    new copmsg[170];
    new cz;
    cz = player_zone[playerid];
    format(copmsg, sizeof(copmsg), "- WARNING ALL COPS: Robbery in progress by %s (%d) - Location: %s",name,playerid,zones[cz][zone_name]);
    switch(pRobCount[playerid])
    {
        case 29:
        {
            for(new i=0;i<MAX_PLAYERS;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,robmoney[playerid]);
            new string2[135];
            format(string2, sizeof(string2), "- SUCCESS ROBBERY - Wanted Level %d - Robbed %i$",plwl,robmoney[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, sizeof(name));
            format(string3, sizeof(string3), "- ROBBERY - %s (%d) has robbed %i$ from %s",name,playerid,robmoney[playerid],zones[current_zone][zone_name]);
            SendClientMessageToAll(COLOR_WHITE,string3);
            RobberyLog(string3);
            robmoney[playerid] = 0;
        }
    }
    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)