#1

Hey guys can you give me some help with this please

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}
}; 
Код HTML:
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(62) : error 001: expected token: ";", but found "{"
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(66) : error 010: invalid function or declaration
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(1073) : warning 203: symbol is never used: "FactSkins0"
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(1073) : warning 203: symbol is never used: "FactSkins1"
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(1073) : warning 203: symbol is never used: "FactSkins2"
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(1073) : warning 203: symbol is never used: "FactSkins3"
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(1073) : warning 203: symbol is never used: "FactSkins4"
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(1073) : warning 203: symbol is never used: "FactSkins5"
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(1073) : warning 203: symbol is never used: "FactSkins6"
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(1073) : warning 203: symbol is never used: "FactSkins7"
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(1073) : warning 203: symbol is never used: "IsNumeric"
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\Nuevo.pwn(1073) : warning 203: symbol is never used: "ReturnUser"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.
Reply
#2

Show line 62 and 66.
Reply
#3

82

PHP код:
{307}, 
86

PHP код:
}; 
Reply
#4

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.
PHP код:
new sample[] = {
    
1,
    
3,
    
5,
    
7,
    
13
}; 
Reply
#5

Alright i think i solved it, thanks alot pal
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)