[Help]Cant figure this out
#1

Need some help with this, The dialog only appears for blue team when they die, blue team is team2 and i dont want it to show if there on either team
pawn Код:
public OnPlayerSpawn(playerid)
    {
        new money = GetPlayerMoney(playerid);
        new skinid = GetPlayerSkin(playerid);
        new teamid = GetPlayerTeam(playerid);
        new team1 = SetSpawnInfo(playerid, 1, skinid, 1351.2615966797, 348.85372924805, 19.296350479126, 0, 22, 150, 0, 0, 0, 0);
        new team2 = SetSpawnInfo(playerid, 2, skinid, 83.93970489502, -149.35932922363, 2.2334928512573, 0, 22, 150, 0, 0, 0, 0);

        ResetPlayerWeapons(playerid);
        ResetPlayerMoney(playerid);
        GivePlayerMoney(playerid, money);
       
        if(teamid == team1)
        {
        SetSpawnInfo(playerid, 1, skinid, 1351.2615966797, 348.85372924805, 19.296350479126, 0, 22, 150, 0, 0, 0, 0);
        GivePlayerWeapon(playerid, 22, 150);
        }
        else
        {
        if(teamid == team2)
        {
        SetSpawnInfo(playerid, 2, skinid, 83.93970489502, -149.35932922363, 2.2334928512573, 0, 22, 150, 0, 0, 0, 0);
        }
        else
        {
        ShowPlayerDialog(playerid, 3, DIALOG_STYLE_LIST, "CHOOSE YOUR TEAM", "Red Team----[The Assualting Team]\nBlue Team----[The Defensive Team]", "Chose", "Cancel");
        return 1;
        }
        }
        return 1;
    }
Reply


Messages In This Thread
[Help]Cant figure this out - by fangoth1 - 05.12.2010, 08:59
Re: [Help]Cant figure this out - by dice7 - 05.12.2010, 09:24
Re: [Help]Cant figure this out - by fangoth1 - 05.12.2010, 10:03
Re: [Help]Cant figure this out - by dice7 - 05.12.2010, 10:05
Re: [Help]Cant figure this out - by fangoth1 - 05.12.2010, 10:09

Forum Jump:


Users browsing this thread: 1 Guest(s)