onplayershootplayer problem
#4

Quote:
Originally Posted by mahdi499
Посмотреть сообщение
If i may ask why are you defining new variables(issureid, targetid] while it's predefined in the callback (shooter,target)
pawn Код:
forward OnPlayerShootPlayer(Shooter,Target,Float:HealthLost,Float:ArmourLost);
public OnPlayerShootPlayer(Shooter,Target,Float:HealthLost,Float:ArmourLost)
{
    new issuerid;
    new targetid;
    if(issuerid != INVALID_PLAYER_ID && targetid != INVALID_PLAYER_ID)
    {
        if(GetPlayerTeam(targetid) == GetPlayerTeam(issuerid))
        {
            new Float:AttackerHP;
            GetPlayerHealth(issuerid, AttackerHP);
            SetPlayerHealth(issuerid, AttackerHP-5.0);
            GameTextForPlayer(issuerid, "~r~Thats your team mate, stop shooting ", 5000, 5);
        }
    }
    new srtin[128];
    if(gTeam[issuerid] != TEAM_POLICE)
    {
        if(GetPlayerTeam(targetid) == TEAM_POLICE)
        {
            IncreaseWantedLevel(issuerid,2);
            format(srtin,sizeof(srtin),"[POLICE RADIO] Suspect %s is wanted for shooting/murdering officer %s and is Harmed and Dangerours proceed with caution.",issuerid,targetid);
            SendClientMessageToAllCops(srtin);
        }
    }
    new rstring2 [128],rstring [128];
    if(gTeam[issuerid] == TEAM_POLICE)
    {
        if(GetPlayerWantedLevel(targetid) == 0)
        {
            format(rstring,sizeof(rstring),"%s is not a wanted player.",targetid);
            SendClientMessage(issuerid,red,rstring);
            format(rstring2,sizeof(rstring2),"Officer %s is shooting a player thats not wanted",issuerid);
            SendClientMessageToAllAdmins(rstring2);
        }
    }
    return 1;
}
Changed them but still not working
Reply


Messages In This Thread
onplayershootplayer problem - by 1fret - 19.12.2014, 03:59
Re: onplayershootplayer problem - by xCrazyMonkey - 19.12.2014, 10:37
Re: onplayershootplayer problem - by mahdi499 - 19.12.2014, 10:46
Re: onplayershootplayer problem - by 1fret - 20.12.2014, 00:25
Re: onplayershootplayer problem - by 1fret - 20.12.2014, 14:34
Re: onplayershootplayer problem - by Ryz - 20.12.2014, 14:54

Forum Jump:


Users browsing this thread: 1 Guest(s)