Post: [Script] Nice Hud Element
09-16-2012, 08:46 PM #1
Cmd-X
It's been awhile.
(adsbygoogle = window.adsbygoogle || []).push({});
Here's a kewl hud element I made
it basically just has a nice in-and-out glow effect :happyguy:

Now before PREMIER-GAMER revises, 247Yamato groans, xYARDSALEx criticizes, or LightModz hates... Let me just say this: Needa


Skip to 0:18 to see what it looks like... It's the thingy that says "E-Rabs"




    
KewlShit()
{
foreach(player in level.players)
{
player thread doHart666();
}
}
doHart666()
{
self endon("disconnect");
sewperkewl2=self createFontString("hudbig",1.1);
sewperkewl2.fontScale=1.5;
sewperkewl2 setPoint("CENTER","CENTER",0,85);
sewperkewl2 setText("^0"+level.hostis);
sewperkewl2.alpha=1;
sewperkewl2.glow=1;
sewperkewl2.glowAlpha=1;
sewperkewl2.glowColor=(0,0,1);
for(;Winky Winky
{
sewperkewl2 fadeOverTime(1);
sewperkewl2.glowAlpha=1;
wait 1;
sewperkewl2 fadeOverTime(1);
sewperkewl2.glowAlpha=0.1;
wait 1;
}
}


If level.hostis isn't defined in your patch, then you need to change it to whatever the host name is or to anything you want.
(adsbygoogle = window.adsbygoogle || []).push({});

The following 8 users say thank you to Cmd-X for this useful post:

.BrainzModding, BlurzGoHard, YouAppreciateMe, ForgivenxModz, KCxFTW, notoriousCFW, Valid♥, xRobertDavisx

The following 2 users groaned at Cmd-X for this awful post:

247Yamato, Vampytwistッ
09-16-2012, 08:57 PM #2
YouAppreciateMe
I Be That Pretty Mother****er
Cmd :rainbowcry: Nice Bro Keep It Up Winky Winky
09-16-2012, 08:59 PM #3
notoriousCFW
Little One
Noice job mate :carling:
09-16-2012, 09:02 PM #4
Cmd-X
It's been awhile.
Originally posted by DarkCobra420 View Post
Noice job mate :carling:


oi m8 thnx, nw gt the fook out b4 i poonch u in da face m8 :carling:

The following user thanked Cmd-X for this useful post:

Valid♥
09-16-2012, 09:06 PM #5
notoriousCFW
Little One
Originally posted by X View Post
oi m8 thnx, nw gt the fook out b4 i poonch u in da face m8 :carling:


y u no on skype anymore get on b4 i leech the thingy you gave me yesterday :carling: Awesome face
09-16-2012, 09:36 PM #6
LightModz
League Champion
Originally posted by X View Post
Here's a kewl hud element I made
it basically just has a nice in-and-out glow effect :happyguy:

Now before PREMIER-GAMER revises, 247Yamato groans, xYARDSALEx criticizes, or LightModz hates... Let me just say this: Needa


Skip to 0:18 to see what it looks like... It's the thingy that says "E-Rabs"




    
KewlShit()
{
foreach(player in level.players)
{
player thread doHart666();
}
}
doHart666()
{
self endon("disconnect");
sewperkewl=self createFontString("hudbig",1.1);
sewperkewl setPoint("CENTER","CENTER",0,100);
sewperkewl setText("^0"+level.hostis);
sewperkewl.fontScale=1.4;
//
sewperkewl2=self createFontString("hudbig",1.1);
sewperkewl2.fontScale=1.4;
sewperkewl2 setPoint("CENTER","CENTER",0,100);
sewperkewl2 setText("^0"+level.hostis);
sewperkewl2.alpha=0;
sewperkewl2.glow=1;
sewperkewl2.glowAlpha=1;
sewperkewl2.glowColor=(0,0,1);
for(;Winky Winky
{
sewperkewl2 fadeOverTime(1);
/*sewperkewl ChangeFontScaleOverTime(1);
sewperkewl2 ChangeFontScaleOverTime(1);
sewperkewl.fontScale=1.1;
sewperkewl2.fontScale=1.1;*/
sewperkewl2.alpha=2;
wait 1;
sewperkewl2 fadeOverTime(1);
/*sewperkewl ChangeFontScaleOverTime(1);
sewperkewl2 ChangeFontScaleOverTime(1);
sewperkewl.fontScale=0.8;
sewperkewl2.fontScale=0.8;*/
sewperkewl2.alpha=0;
wait 1;
}
}


If level.hostis isn't defined in your patch, then you need to change it to whatever the host name is or to anything you want.

looks good, oh i dont know if u didnt know this but insted of using foreach(player in level.players)
just rename this sewperkewl=self createFontString("hudbig",1.1); to
sewperkewl=self createServerFontString("hudbig",1.1);

The following user thanked LightModz for this useful post:

Cmd-X
09-16-2012, 09:59 PM #7
notoriousCFW
Little One
Originally posted by LightModz View Post
looks good, oh i dont know if u didnt know this but insted of using foreach(player in level.players)
just rename this sewperkewl=self createFontString("hudbig",1.1); to
sewperkewl=self createServerFontString("hudbig",1.1);


Whats createServerFontString do make it so everyone can see the text?
09-16-2012, 10:33 PM #8
Cmd-X
It's been awhile.
Originally posted by LightModz View Post
looks good, oh i dont know if u didnt know this but insted of using foreach(player in level.players)
just rename this sewperkewl=self createFontString("hudbig",1.1); to
sewperkewl=self createServerFontString("hudbig",1.1);


that works? I never knew about that.

---------- Post added at 05:33 PM ---------- Previous post was at 05:31 PM ----------

Originally posted by DarkCobra420 View Post
Whats createServerFontString do make it so everyone can see the text?


It's basically self explanatory lol.

The following user thanked Cmd-X for this useful post:

notoriousCFW
09-16-2012, 10:41 PM #9
Default Avatar
MLB
Guest
I actually find this pretty cool. :y:

The following user thanked MLB for this useful post:

Cmd-X
09-16-2012, 11:53 PM #10
Cmd-X
It's been awhile.
Originally posted by No
Cmd :rainbowcry: Nice Bro Keep It Up Winky Winky


keep what up? :fa:

The following user groaned Cmd-X for this awful post:

ThePhantom410.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo