Text Coloring / Color Randomizing

odayaamar

Member
Nov 17, 2016
2
0
33
Name of the script: Colored Chat.
Functions of the script: Auto Coloring The Text In Chat.
Why do you want it: I Want The Script To Auto Colorize The Text I Send In Chat. Kinda Similar To The One On This Site. Or Colorize it To A Random Color Each Time I Send A Text Chat.
Screenshots: Here
Orginal source (if any): None.

Other notes: None.
 

FarisDev

L oryh brx
Contributor
Jun 9, 2016
277
111
107
do you want it with ts3 client query api? that send in chat? i can make it for you.
 
Last edited:

FarisDev

L oryh brx
Contributor
Jun 9, 2016
277
111
107
Thats for send messages and API You can find it on @Bluscream post : https://r4p3.net/threads/php-clientquery-api-examples.305/ Just download the api from bluscream. and make a file chat.php anything do you want and start it. i happy thats work with you.
PHP:
<?php
include("api.php");
$ts3query = teamspeak_socket_init();
while(0.002) {
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=green]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=blue]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=red]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=black]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=green]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[COLOR=#ff0000]EXAMPLE[/COLOR]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[COLOR=#fff]EXAMPLE[/COLOR]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=green]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=blue]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=red]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=#ff0000]EXAMPLE[/color]");
}
fclose($ts3query);
fgets(stdin);
 
 
?>
 

odayaamar

Member
Nov 17, 2016
2
0
33
Exactly! Thanks Alot
-----
do you want it with ts3 client query api? that send in chat? i can make it for you.
Thats for send messages and API You can find it on @Bluscream post : https://r4p3.net/threads/php-clientquery-api-examples.305/ Just download the api from bluscream. and make a file chat.php anything do you want and start it. i happy thats work with you.
PHP:
<?php
include("api.php");
$ts3query = teamspeak_socket_init();
while(0.002) {
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=green]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=blue]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=red]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=black]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=green]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[COLOR=#ff0000]EXAMPLE[/COLOR]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[COLOR=#fff]EXAMPLE[/COLOR]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=green]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=blue]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=red]EXAMPLE[/color]");
echo teamspeak_socket_send($ts3query,"sendtextmessage targetmode=2 msg=[color=#ff0000]EXAMPLE[/color]");
}
fclose($ts3query);
fgets(stdin);
 
 
?>

Thanks Alot For Your Help
but cant someone make a plugin like the 2nd post?
 
Top