Author Topic: Help.....  (Read 2603 times)

0 Members and 1 Guest are viewing this topic.

Offline VladD

  • Street Thug
  • *
  • Posts: 3
    • View Profile
Help.....
« on: July 11, 2013, 11:03:20 am »
Whenever i look in my scripts i see these:

#define COLOR_GREY         0xAFAFAFAA
#define COLOR_GREEN           0x04A36BFF
#define COLOR_RED         0xAA3333AA
#define COLOR_YELLOW      0xFFFF00AA
#define COLOR_WHITE      0xFFFFFFAA
Can someone define color blue for me?(#define COLOR_BLUE or something)

Offline Nilz

  • Street Thug
  • *
  • Posts: 1
    • View Profile
Re: Help.....
« Reply #1 on: July 11, 2013, 11:11:05 am »
Code: [Select]
#define COLOR_GREY 0xAFAFAFAA
#define COLOR_RED 0xAA3333AA
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_PINK 0xFF66FFAA
#define COLOR_BLUE 0x0000BBAA
#define COLOR_WHITE 0xFFFFFFAA
#define COLOR_LIGHTBLUE 0x33CCFFAA
#define COLOR_DARKRED 0x660000AA
#define COLOR_ORANGE 0xFF9900AA
#define COLOR_BRIGHTRED 0xFF0000AA
#define COLOR_INDIGO 0x4B00B0AA
#define COLOR_VIOLET 0x9955DEEE
#define COLOR_LIGHTRED 0xFF99AADD
#define COLOR_SEAGREEN 0x00EEADDF
#define COLOR_GRAYWHITE 0xEEEEFFC4
#define COLOR_LIGHTNEUTRALBLUE 0xabcdef66
#define COLOR_GREENISHGOLD 0xCCFFDD56
#define COLOR_LIGHTBLUEGREEN 0x0FFDD349
#define COLOR_NEUTRALBLUE 0xABCDEF01
#define COLOR_LIGHTCYAN 0xAAFFCC33
#define COLOR_LEMON 0xDDDD2357
#define COLOR_MEDIUMBLUE 0x63AFF00A
#define COLOR_NEUTRAL 0xABCDEF97
#define COLOR_BLACK 0x00000000
#define COLOR_NEUTRALGREEN 0x81CFAB00
#define COLOR_DARKGREEN 0x12900BBF
#define COLOR_LIGHTGREEN 0x24FF0AB9
#define COLOR_DARKBLUE 0x300FFAAB
#define COLOR_BLUEGREEN 0x46BBAA00
#define COLOR_PINK 0xFF66FFAA
#define COLOR_LIGHTBLUE 0x33CCFFAA
#define COLOR_DARKRED 0x660000AA
#define COLOR_ORANGE 0xFF9900AA
#define COLOR_GREY 0xAFAFAFAA
#define COLOR_GREEN 0x33AA33AA
#define COLOR_RED 0xAA3333AA
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_WHITE 0xFFFFFFAA
#define COLOR_PURPLE 0x800080AA
#define COLOR_GRAD1 0xB4B5B7FF
#define COLOR_GRAD2 0xBFC0C2FF
#define COLOR_RED1 0xFF0000AA
#define COLOR_GREY 0xAFAFAFAA
#define COLOR_GREEN 0x33AA33AA
#define COLOR_RED 0xAA3333AA
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_WHITE 0xFFFFFFAA
#define COLOR_BROWN 0x993300AA
#define COLOR_CYAN 0x99FFFFAA
#define COLOR_TAN 0xFFFFCCAA
#define COLOR_PINK 0xFF66FFAA
#define COLOR_KHAKI 0x999900AA
#define COLOR_LIME 0x99FF00AA
#define COLOR_SYSTEM 0xEFEFF7AA

Offline sseebbyy

  • VC:MP Veteran
  • *****
  • Posts: 774
  • Immortal VC:MP Player
    • View Profile
    • Zombie Invasion => Server Forum [DEAD PROJECT]
Re: Help.....
« Reply #2 on: July 11, 2013, 12:04:32 pm »
Is easy to define a color, and I will explain you how to do it:

First of all, we need to add the #define syntax on a new line,  followed by the name of the color:
Code: [Select]
#define COLOR_NAME 0x<colorcode>AA
You have to replace <colorcode> with the code of color.
(You can find here a list with codes colors)

That's all. Now I will give you an example:
Quote
#define COLOR_PURPLE 0xCC00FFAA

Btw, you are not needed to put "COLOR_" before the color name, you can use "PURPLE" instead of "COLOR_PURPLE"

Quote
Painful/Noob scripters acts like: I Am The Best Scripter Because I Announce My Releases With Big Font Size Without Giving Too Much Info' In The Hope They All Will Download And Check It. I Ignore Bad Replies, Replies That I Could Learn From, And Replies With So Much Text.



Offline Elyks

  • Street Thug
  • *
  • Posts: 10
    • View Profile
Re: Help.....
« Reply #3 on: July 11, 2013, 12:37:25 pm »
Or, choose your own color at www.colorpicker.com

Offline VladD

  • Street Thug
  • *
  • Posts: 3
    • View Profile
Re: Help.....
« Reply #4 on: July 11, 2013, 02:26:50 pm »
ok thank you for helping me  :)