fight style problem
#1

When i buy a fightstyle i dont get it.

pawn Код:
}
    if(dialogid == 760)
    {
        if(response)
        {
            switch(listitem)
            {
                case 0:
                {
                    if(GetPlayerCash(playerid) >= 50)
                    {
                        SendClientMessage(playerid, COLOR_WHITE, "Now you got Boxing fight style");
                        GivePlayerCash(playerid,-50);
                        if(PlayerInfo[playerid][pFight] == 1) { SetPlayerFightingStyle (playerid, FIGHT_STYLE_BOXING); }
                        return 1;
                    }
                    else
                    {
                        SendClientMessage(playerid, COLOR_GREY, "[ERROR] You do not have enough money");
                        return 1;
                    }
                }
                case 1:
                {
                    if(GetPlayerCash(playerid) >= 65)
                    {
                        SendClientMessage(playerid, COLOR_WHITE, "Now you got Kung Fu fight style");
                        GivePlayerCash(playerid,-65);
                        if(PlayerInfo[playerid][pFight] == 3) { SetPlayerFightingStyle (playerid, FIGHT_STYLE_KUNGFU); }
                        return 1;
                    }
                    else
                    {
                        SendClientMessage(playerid, COLOR_GREY, "[ERROR] You do not have enough money");
                        return 1;
                    }
                }
                case 2:
                {
                    if(GetPlayerCash(playerid) >= 85)
                    {
                        SendClientMessage(playerid, COLOR_WHITE, "Now you got Kneehead fight style");
                        GivePlayerCash(playerid,-85);
                        if(PlayerInfo[playerid][pFight] == 4) { SetPlayerFightingStyle (playerid, FIGHT_STYLE_KNEEHEAD); }
                        return 1;
                    }
                    else
                    {
                        SendClientMessage(playerid, COLOR_GREY, "[ERROR] You do not have enough money");
                        return 1;
                    }
                }
                case 3:
                {
                    if(GetPlayerCash(playerid) >= 80)
                    {
                        SendClientMessage(playerid, COLOR_WHITE, "Now you got El Bow fight style");
                        GivePlayerCash(playerid,-80);
                        if(PlayerInfo[playerid][pFight] == 5) { SetPlayerFightingStyle (playerid, FIGHT_STYLE_ELBOW);}
                        return 1;
                    }
                    else
                    {
                        SendClientMessage(playerid, COLOR_GREY, "[ERROR] You do not have enough money");
                        return 1;
                    }
                }
                case 4:
                {
                    if(GetPlayerCash(playerid) >= 115)
                    {
                        SendClientMessage(playerid, COLOR_WHITE, "Now you got Grab kick fight style");
                        GivePlayerCash(playerid,-115);
                        if(PlayerInfo[playerid][pFight] == 6) { SetPlayerFightingStyle (playerid, FIGHT_STYLE_GRABKICK);}
                        return 1;
                    }
                    else
                    {
                        SendClientMessage(playerid, COLOR_GREY, "[ERROR] You do not have enough money");
                        return 1;
                    }
                }
            }
        }
        return 1;
Reply


Messages In This Thread
fight style problem - by N0FeaR - 28.07.2012, 19:16
Re: fight style problem - by Littlehelper - 28.07.2012, 19:27
Re: fight style problem - by SuperViper - 28.07.2012, 19:34
Re: fight style problem - by Jessyy - 28.07.2012, 19:35

Forum Jump:


Users browsing this thread: 1 Guest(s)