Need some help please -
SyNNN - 21.03.2010
I need some help whit that
C:\Documents and Settings\Silviu\Desktop\BuLLeT Rp v1.0 finalizat\gamemodes\gf.pwn(1199) : error 001: expected token: "}", but found "{"
C:\Documents and Settings\Silviu\Desktop\BuLLeT Rp v1.0 finalizat\gamemodes\gf.pwn(32325) : warning 203: symbol is never used: "GetPointDistanceToPointExMorph"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
The line 1199 is this {105},//Grove
The line 32325 no longer exists
please help me
Re: Need some help please -
biltong - 21.03.2010
Post the code around line 1199 and we'll help you
Re: Need some help please -
playbox12 - 21.03.2010
Look on line 1199 and change the } at the end to }, this error i self explaining
Re: Need some help please -
SyNNN - 21.03.2010
new JoinPed[52][1] = {
{280},//POLICE_FORCE
{281},
{282},
{283},
{284},
{285},
{288},
{71},
{166},
{295},
{148},
{286},//FBI/ATF
{164},
{163},
{287},//NATIONAL_GUARD
{285},
{70},//FIRE/AMBULANCE
{274},
{275},
{276},
{277},
{278},
{279},
{258},//LA_COSA_NOSTRA
{127},
{126},
{125},
{124},
{113},
{111},
{98},
{120},//YAKUZA
{121},
{122},
{123},
{169},
{186},
{228},
{127},//HITMANS
{165},
{186},
{93},
{141},
{148},//NEWS_REPORTERS
{188},
{187},
{255},//TAXI_CAB_COMPANY
{253},
{59},//DRIVING/FLYING_SCHOOL
{60},//DRIVING/FLYING_SCHOOL
{76},//DRIVING/FLYING_SCHOOL
{150}//DRIVING/FLYING_SCHOOL
{105},//Grove
{195},
{156},
{211},
{106},
{107},
{173},//Corleone
{174},
{175},
{114},
{115},
{116},
{103},//Ballas
{104},
{240},//BuLLeT Security
{223}
the line 1199 is {105},//Grove
Re: Need some help please -
playbox12 - 21.03.2010
{150},//DRIVING/FLYING_SCHOOL
You forget to add an , there. Hope it solved now
Re: Need some help please -
SyNNN - 22.03.2010
still dosent work
Re: Need some help please -
biltong - 23.03.2010
pawn Код:
new JoinPed[52][1] = {
{280},//POLICE_FORCE
{281},
{282},
{283},
{284},
{285},
{288},
{71},
{166},
{295},
{148},
{286},//FBI/ATF
{164},
{163},
{287},//NATIONAL_GUARD
{285},
{70},//FIRE/AMBULANCE
{274},
{275},
{276},
{277},
{278},
{279},
{258},//LA_COSA_NOSTRA
{127},
{126},
{125},
{124},
{113},
{111},
{98},
{120},//YAKUZA
{121},
{122},
{123},
{169},
{186},
{228},
{127},//HITMANS
{165},
{186},
{93},
{141},
{148},//NEWS_REPORTERS
{188},
{187},
{255},//TAXI_CAB_COMPANY
{253},
{59},//DRIVING/FLYING_SCHOOL
{60},//DRIVING/FLYING_SCHOOL
{76},//DRIVING/FLYING_SCHOOL
{150}, //see here you forgot the ","
{105},//Grove
{195},
{156},
{211},
{106},
{107},
{173},//Corleone
{174},
{175},
{114},
{115},
{116},
{103},//Ballas
{104},
{240},//BuLLeT Security
{223}
Make sure after all those you have a closing bracket too.
Also, that warning only means that the function is never used, you can ignore it or remove it, or find some use for it.