Got problem with GM
#1

Hey guys im here to ask you what can be problem i got 3 warns what i had before but i made new car locations(PD/FDSA) and now it dosent show me Maps and Jobs what can be the problem as i have overwrite the Cars also i got somewarns like:

Код:
C:\Users\Erik\Desktop\Uus kaust\Fexterno Gaming RP\gamemodes\FGRP1.pwn(29952) : warning 217: loose indentation
C:\Users\Erik\Desktop\Uus kaust\Fexterno Gaming RP\gamemodes\FGRP1.pwn(49185) : warning 219: local variable "object" shadows a variable at a preceding level
C:\Users\Erik\Desktop\Uus kaust\Fexterno Gaming RP\gamemodes\FGRP1.pwn(56938) : warning 217: loose indentation
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


3 Warnings.
if you can help me please help me out
Reply
#2

Code?
Reply
#3

You must be missing some
Код:
;
on line 49185
Reply
#4

i have ; Code i checked it try to do somethin with it nothing still the same
Reply
#5

Show the lines
Reply
#6

These warnings do not affect the code. You have just missed a space somewhere here or there
Reply
#7

object is already declared, rename it and use it.

warning 217: loose indentation
pawn Код:
if( something )
{
    print( "THIS" );
    print( "IS" );
    print( "THE" );
    print( "CORRECT" );
    print( "WAY" );
    print( "TO" );
    print( "DO" );
    print( "IT!" );
}
pawn Код:
if( something )
{
  print( "THIS" );
 print( "IS" );
      print( "THE" );
   print( "WRONG" );
    print( "WAY!" );
 print( "DO" );
  print( "NOT" );
    print( "DO" );
      print( "IT!" );
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)