PHP код:
/*******************************************************************************
FACTION SKINS
*******************************************************************************/
new FactSkins0[1][1] = { //Remove Leader Status
{299}
};
/*******************************************************************************
LSPD
*******************************************************************************/
new FactSkins1[11][1] = {
{71},
{280},
{281},
{282},
{283},
{284},
{288},
{300},
{301},
{302},
{306},
{307},
{309},
{310},
{311}
};
/*******************************************************************************
FBI
*******************************************************************************/
new FactSkins2[3][1] = {
{165},
{166},
{286}
};
/*******************************************************************************
MAYOR
*******************************************************************************/
new FactSkins3[3][1] = {
{147},
{163},
{164}
};
/*******************************************************************************
SAMFD
*******************************************************************************/
new FactSkins4[8][1] = {
{70},
{274},
{275},
{276},
{277},
{278},
{279},
{308}
};
/*******************************************************************************
SANews
*******************************************************************************/
new FactSkins5[3][1] = {
{148},
{188},
{187}
};
/*******************************************************************************
TAXI
*******************************************************************************/
new FactSkins6[3][1] = {
{255},
{253},
{61}
};
/*******************************************************************************
HITMAN
*******************************************************************************/
new FactSkins7[25][1] = {
{101},
{89},
{218},
{46},
{94},
{51},
{81},
{99},
{75},
{134},
{213},
{230},
{252},
{82},
{167},
{68},
{171},
{189},
{129},
{130},
{70},
{160},
{33},
{32},
{78}
};
Well you've declared FactSkins1 with 11 slots and you're trying to put 15 items into it. Also do not create a 2D-array if the second dimension is just going to be 1. Create a one-dimensional array instead and get rid of all the extra braces.