Originally posted by ginjlovestohack
Ok so i have a basic understanding of it but like i want to make a welcome to my lobby type of script i know how to thread it so they see it when they spawn but where do i add the script ????
Use this and it will show three lines of text on spawn in different colours.
doSplash()
{
self endon("disconnect");
wait 6;
notifyData = spawnstruct();
notifyData.titleText = "Your text here"; //Your Text Here
notifyData.notifyText = "Your text here";// Your Text Here
notifyData.notifyText2 = "Your text here";// Your Text Here
notifyData.glowColor = (0.0, 0.0, 1.0);
notifyData.duration = 7;
notifyData.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData );
wait 1;
}
it should work.
:catfight: