Compiling Error
#1

Error:
pawn Код:
C:\Users\Mody\Desktop\Yea.pwn(49) : error 017: undefined symbol "COLOR_BLUE"
C:\Users\Mody\Desktop\Yea.pwn(49) : error 017: undefined symbol "by"
C:\Users\Mody\Desktop\Yea.pwn(49) : error 017: undefined symbol "Red_Dragon"
C:\Users\Mody\Desktop\Yea.pwn(49) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


4 Errors.
and the code:
pawn Код:
SendClientMessage(playerid, COLOR_BLUE, Made by Red_Dragon (Dan));
Reply
#2

Where are your " " marks?
pawn Код:
SendClientMessage(playerid, COLOR_BLUE," Made by Red_Dragon (Dan)");
Reply
#3

pawn Код:
// At the top, under includes
#define COLOR_BLUE 0x0000FFFF

// Strings should be inside " ", in example:
{
    SendClientMessage(playerid, COLOR_BLUE, "It won't give errors!");
    return 1;
}
Reply
#4

opps! now this:
pawn Код:
C:\Users\Mody\Desktop\Yea.pwn(50) : warning 217: loose indentation
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


1 Error.
and the code:
pawn Код:
{
         SendClientMessage(playerid, COLOR_BLUE," Made by Red_Dragon (Dan)");
        return 1;
    }
Reply
#5

You have not defined your COLOR_BLUE, so define it and fix your indentation to remove warning
pawn Код:
#define COLOR_BLUE 0x0000FFFF
Reply
#6

Thanks you two "+REP"
Reply
#7

SendClientMessage(playerid, COLOR_BLUE, "Made by Red_Dragon (Dan)");
And Add The Define Jarnu Said
#define COLOR_BLUE 0x0000FFFF
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)