Colors
#1

Is it possible To make Send SendPlayerMessageToAll with 3 colors?
Like :

SendPlayerMessageToAll(-1,"[color]HI [color]all");

??

And SendClientMessageToAll too?
Reply
#2

PHP код:
SendPlayerMessageToAll(-1,"{FF0000}HI red {0000FF}all blue"); 
Reply
#3

wiki.sa-mp.com/wiki/Colour_Embedding
Reply
#4

Quote:
Originally Posted by AbyssMorgan
Посмотреть сообщение
PHP код:
SendPlayerMessageToAll(-1,"{FF0000}HI red {0000FF}all blue"); 
Thnx.

Quote:
Originally Posted by xTURBOx
Посмотреть сообщение
wiki.sa-mp.com/wiki/Colour_Embedding
Thnx alot.
Reply
#5

This is working too :
PHP код:
#define RED "{FF0000}"
#define BLUE"{0000FF}"
SendPlayerMessageToAll(-1,"HI "RED"red "BLUE"all blue"); 
but this one is better
PHP код:
#define RED 0xFF0000ff
#define BLUE {"0000FF"}
SendPlayerMessageToAll(RED,"HI red "BLUE"all blue"); 
Reply
#6

Quote:
Originally Posted by Dayrion
Посмотреть сообщение
This is working too :
PHP код:
#define RED "{FF0000}"
#define BLUE"{0000FF}"
SendPlayerMessageToAll(-1,"HI "RED"red "BLUE"all blue"); 
but this one is better
PHP код:
#define RED 0xFF0000ff
#define BLUE {"0000FF"}
SendPlayerMessageToAll(RED,"HI red "BLUE"all blue"); 
Got ur mean and used it thnx. already u got my rep
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)