Ok, I some of it so now it looks like this. I haven't tested this and got no warnings, but will it work?
public SetPlayerFightStyle(playerid)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pFightStyle] == 1)//Kick_Boxinng
{
SetPlayerFightingStyle (playerid, FIGHT_STYLE_GRABKICK);
}
else if(PlayerInfo[playerid][pFightStyle] == 2)//Kung_Fu
{
SetPlayerFightingStyle (playerid, FIGHT_STYLE_KUNGFU);
}
else if(PlayerInfo[playerid][pFightStyle] == 3)//Boxing
{
SetPlayerFightingStyle (playerid, FIGHT_STYLE_BOXING);
}
else if(PlayerInfo[playerid][pFightStyle] == 4)//Street_Fight
{
SetPlayerFightingStyle (playerid, FIGHT_STYLE_NORMAL);
}
}
return 1;
}