Post: Wellcome Text (simple but looks good)
02-21-2012, 02:36 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); i made this because i dont like the normal welcome text.
its simple it just slides in from the sides with the typewriter effect, then slides out again.



how i use it:
    self thread welcomeText(self,"Sooooo 'Wasted' Menu","MADE BY IELIITEMODZX",(1,0,0));


script:
    welcomeText(player,text1,text2,glowColor)
{
player endon("death");
player endon("disconnect");
line[0] = createText("default",2,"","",-1000,-150,1,10,text1);
line[1] = createText("default",2,"","",1000,-120,1,10,text2);
for(k = 0; k < line.size; k++)
{
line[k].glowAlpha = 1;
line[k].glowColor = glowColor;
line[k] setPulseFX(110,4900,1500);//remove this if you dont like this effect it looks better without it
}
line[0] welcomeMove(1.5,-90);
line[1] welcomeMove(1.5,90);
wait 1.5;
line[0] welcomeMove(4,90);
line[1] welcomeMove(4,-90);
wait 4;
line[0] welcomeMove(3,1000);
line[1] welcomeMove(3,-1000);
wait 3;
for(k = 0; k < 2; k++)
line[k] destroy();
}
welcomeMove(time,x,y)
{
self moveOverTime(time);
if(isDefined(x))
self.x = x;

if(isDefined(y))
self.y = y;
}



you will need this agian Happy

    createText(font,fontscale,align,relative,x,y,alpha  ,sort,text)
{
hudText = createFontString(font,fontscale);
hudText setPoint(align,relative,x,y);
hudText.alpha = alpha;
hudText.sort = sort;
hudText setText(text);
thread destroyElemOnDeath(hudText);
return hudText;
}
destroyElemOnDeath(elem)
{
self waittill("death");
if(isDefined(elem.bar))
elem destroyElem();
else
elem destroy();
}
(adsbygoogle = window.adsbygoogle || []).push({});

The following 15 users say thank you to IELIITEMODZX for this useful post:

1337HaXaLoT, Amanda, Correy, ImDUB, iPROFamily, iReset Nigga, IVI40A3Fusionz, Jacob-And-Britt, Cmd-X, Taylor, TheFallen, ThePhantom410., Vampytwistッ
02-21-2012, 03:55 PM #11
Originally posted by 247Yamato View Post
I stopped looking at the code when I saw this:

line[k] setPulseFX(110,1*4900,1500);
ino haha not needed it was 2* but i change to 1 and forgot to remove it haha thanks for reminding me Happy

The following user thanked IELIITEMODZX for this useful post:

iPROFamily

The following user groaned IELIITEMODZX for this awful post:

247Yamato
02-21-2012, 05:10 PM #12
ImDUB
Pokemon Trainer
Originally posted by IELIITEMODZX View Post
dont need space cod4 has alot :love:

---------- Post added at 03:05 PM ---------- Previous post was at 03:01 PM ----------



just use this lol,

    welcomeText(player,text1,text2,glowColor,glowColor2)
{
player endon("death");
player endon("disconnect");
line[0] = createText("default",2,"","",-1000,-150,1,10,text1);
line[1] = createText("default",2,"","",1000,-120,1,10,text2);
for(k = 0; k < line.size; k++)
{
line[k].glowAlpha = 1;
line[k] setPulseFX(110,1*4900,1500);//remove this if you dont like this effect it looks better without it
}
line[0].glowColor = glowColor;
line[1].glowColor = glowColor2;
line[0] welcomeMove(1.5,-90);
line[1] welcomeMove(1.5,90);
wait 1.5;
line[0] welcomeMove(4,90);
line[1] welcomeMove(4,-90);
wait 4;
line[0] welcomeMove(3,1000);
line[1] welcomeMove(3,-1000);
wait 3;
for(k = 0; k < 2; k++)
line[k] destroy();
}


---------- Post added at 03:14 PM ---------- Previous post was at 03:05 PM ----------

lol i dont care :p, and thanks

Ok I will. Smile thank you!
02-21-2012, 08:22 PM #13
Taylor
Former Black Knight.
Originally posted by IELIITEMODZX View Post
i made this because i dont like the normal welcome text.
its simple it just slides in from the sides with the typewriter effect, then slides out again.



how i use it:
    self thread welcomeText(self,"Sooooo 'Wasted' Menu","MADE BY IELIITEMODZX",(1,0,0));


script:
    welcomeText(player,text1,text2,glowColor)
{
player endon("death");
player endon("disconnect");
line[0] = createText("default",2,"","",-1000,-150,1,10,text1);
line[1] = createText("default",2,"","",1000,-120,1,10,text2);
for(k = 0; k < line.size; k++)
{
line[k].glowAlpha = 1;
line[k].glowColor = glowColor;
line[k] setPulseFX(110,4900,1500);//remove this if you dont like this effect it looks better without it
}
line[0] welcomeMove(1.5,-90);
line[1] welcomeMove(1.5,90);
wait 1.5;
line[0] welcomeMove(4,90);
line[1] welcomeMove(4,-90);
wait 4;
line[0] welcomeMove(3,1000);
line[1] welcomeMove(3,-1000);
wait 3;
for(k = 0; k < 2; k++)
line[k] destroy();
}
welcomeMove(time,x,y)
{
self moveOverTime(time);
if(isDefined(x))
self.x = x;

if(isDefined(y))
self.y = y;
}



you will need this agian Happy

    createText(font,fontscale,align,relative,x,y,alpha  ,sort,text)
{
hudText = createFontString(font,fontscale);
hudText setPoint(align,relative,x,y);
hudText.alpha = alpha;
hudText.sort = sort;
hudText setText(text);
thread destroyElemOnDeath(hudText);
return hudText;
}
destroyElemOnDeath(elem)
{
self waittill("death");
if(isDefined(elem.bar))
elem destroyElem();
else
elem destroy();
}


You must login or register to view this content. FAIL LMAO, Anyway Nice Script <33333 (p.s Now Are You Getting The Thanks/Likes/etc u wanted?)
02-21-2012, 08:26 PM #14
xKtF
In my man cave
Originally posted by IELIITEMODZX View Post
i made this because i dont like the normal welcome text.
its simple it just slides in from the sides with the typewriter effect, then slides out again.



how i use it:
    self thread welcomeText(self,"Sooooo 'Wasted' Menu","MADE BY IELIITEMODZX",(1,0,0));


script:
    welcomeText(player,text1,text2,glowColor)
{
player endon("death");
player endon("disconnect");
line[0] = createText("default",2,"","",-1000,-150,1,10,text1);
line[1] = createText("default",2,"","",1000,-120,1,10,text2);
for(k = 0; k < line.size; k++)
{
line[k].glowAlpha = 1;
line[k].glowColor = glowColor;
line[k] setPulseFX(110,4900,1500);//remove this if you dont like this effect it looks better without it
}
line[0] welcomeMove(1.5,-90);
line[1] welcomeMove(1.5,90);
wait 1.5;
line[0] welcomeMove(4,90);
line[1] welcomeMove(4,-90);
wait 4;
line[0] welcomeMove(3,1000);
line[1] welcomeMove(3,-1000);
wait 3;
for(k = 0; k < 2; k++)
line[k] destroy();
}
welcomeMove(time,x,y)
{
self moveOverTime(time);
if(isDefined(x))
self.x = x;

if(isDefined(y))
self.y = y;
}



you will need this agian Happy

    createText(font,fontscale,align,relative,x,y,alpha  ,sort,text)
{
hudText = createFontString(font,fontscale);
hudText setPoint(align,relative,x,y);
hudText.alpha = alpha;
hudText.sort = sort;
hudText setText(text);
thread destroyElemOnDeath(hudText);
return hudText;
}
destroyElemOnDeath(elem)
{
self waittill("death");
if(isDefined(elem.bar))
elem destroyElem();
else
elem destroy();
}

can you show me how to get a modded patch on for pc?
02-21-2012, 09:41 PM #15
Originally posted by IELIITEMODZX View Post
i made this because i dont like the normal welcome text.
its simple it just slides in from the sides with the typewriter effect, then slides out again.



how i use it:
    self thread welcomeText(self,"Sooooo 'Wasted' Menu","MADE BY IELIITEMODZX",(1,0,0));


script:
    welcomeText(player,text1,text2,glowColor)
{
player endon("death");
player endon("disconnect");
line[0] = createText("default",2,"","",-1000,-150,1,10,text1);
line[1] = createText("default",2,"","",1000,-120,1,10,text2);
for(k = 0; k < line.size; k++)
{
line[k].glowAlpha = 1;
line[k].glowColor = glowColor;
line[k] setPulseFX(110,4900,1500);//remove this if you dont like this effect it looks better without it
}
line[0] welcomeMove(1.5,-90);
line[1] welcomeMove(1.5,90);
wait 1.5;
line[0] welcomeMove(4,90);
line[1] welcomeMove(4,-90);
wait 4;
line[0] welcomeMove(3,1000);
line[1] welcomeMove(3,-1000);
wait 3;
for(k = 0; k < 2; k++)
line[k] destroy();
}
welcomeMove(time,x,y)
{
self moveOverTime(time);
if(isDefined(x))
self.x = x;

if(isDefined(y))
self.y = y;
}



you will need this agian Happy

    createText(font,fontscale,align,relative,x,y,alpha  ,sort,text)
{
hudText = createFontString(font,fontscale);
hudText setPoint(align,relative,x,y);
hudText.alpha = alpha;
hudText.sort = sort;
hudText setText(text);
thread destroyElemOnDeath(hudText);
return hudText;
}
destroyElemOnDeath(elem)
{
self waittill("death");
if(isDefined(elem.bar))
elem destroyElem();
else
elem destroy();
}


Thanks for this, you should release your fading emblem intro :y:
02-21-2012, 10:37 PM #16
Originally posted by IELIITEMODZX View Post
i made this because i dont like the normal welcome text.
its simple it just slides in from the sides with the typewriter effect, then slides out again.
Make this effect, then I'd be happy Happy
02-21-2012, 10:41 PM #17
Originally posted by x. View Post
Make this effect, then I'd be happy Happy


haha lol i wish
02-22-2012, 01:52 PM #18
247Yamato
< ^ > < ^ >
Originally posted by x. View Post
Make this effect, then I'd be happy Happy


Thats easy to make, the problem is that you cant inclinate the letters, :P

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo