Gamemode error
#1

Im having some error in my gamemode
pawn Код:
C:\Users\Jyothish\Desktop\Server Files\Filterscripts\Untitled.pwn(1257) : warning 217: loose indentation
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


1 Warning.
why is this showing?
Reply
#2

SetGameModeText is the problem.
Reply
#3

Add this ; at the end of SetGameModeText.
Reply
#4

Quote:
Originally Posted by Ox1gEN
Посмотреть сообщение
Add this ; at the end of SetGameModeText.
already.
Reply
#5

It's loose indentation.

Loose indentation example:
pawn Код:
public Callback()
{
  Function();
if (Bool == true)
{
Admin();
}
        return 1;
}
Fixing that:
pawn Код:
public Callback()
{
    Function();
    if (Bool == true)
    {
        Admin();
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)