[SCRIPT GSC] 3 DoHeart Convertie de Mw2 !

imKizz

DJ | Producteur
Premium
Inscription
28 Juillet 2013
Messages
503
Réactions
98
Points
4 036
Yop, C'est Dayz !
Aujourd'hui je vous release 3 DoHeart vraiment cool que j'ai corriger pour bo2 !
Commençons :)
1) Le Doheart simple de la FMT an haut au centre de l'écrans !
doText()
{
textElem = self createFontString( "default", 1.4 );
textElem setPoint( "CENTER", "TOP", 20, 20 );
textElem setText( "^5WELCOME TO MY LOBBY !" );
for ( ;; )
{
textElem ChangeFontScaleOverTime( 0.3 );
textElem.fontScale = 1.4;
wait 0.3;
textElem ChangeFontScaleOverTime( 0.3 );
textElem.fontScale = 1.7;
wait 0.3;
}
}

2) Un petit flashing Test sympas !
doHeart()
{
heartElem = self createFontString( "default", 3.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 15);
for ( ;; )
{
heartElem setText("^1H^0eyy");
wait 0.00001;
heartElem setText("^0H^1e^0yy");
wait 0.00001;
heartElem setText("^0He^1y^0y");
wait 0.00001;
heartElem setText("^0Hey^1y");
wait 0.00001;
heartElem setText("^0He^1y^0y");
wait 0.00001;
heartElem setText("^0H^1e^0yy");
wait 0.00001;
heartElem setText("^1H^0eyy");
wait 0.00001;
heartElem setText("^1Heyy");
wait 0.00001;
heartElem ChangeFontScaleOverTime( 1.0 );
heartElem.fontScale = 3.5;
wait 0.1;
heartElem ChangeFontScaleOverTime( 1.0 );
heartElem.fontScale = 3.5;
wait 0.1;
}
}

3) Une petite surprise que je n'ai trouvée dans aucun Gsc ni dans une vidéo !
À ajouter dans onPlayerSpawned();

self thread ZigZagText("Hellowww !");

ZigZagText(t)
{
self endon( "death" );
h = NewClientHudElem(self);
h.alignX = "center";h.alignY = "middle";h.horzAlign = "center";h.vertAlign = "middle";
h.fontscale = 3.5;
h.font = "default";
h.x -= (t.size+870)*1.45;
h settext(t);
i = -720;
for(;;)
{
if (h.x < -619)
h.d = 1;
else if (h.x > 620)
h.d = 0;
if (h.d == 1)
{
h moveovertime(0.1);
h.y=cos(i*2)*100;
h.x += (t.size+870)*0.01875;
}
else
{
h moveovertime(0.1);
h.y=cos(i*2)*100;
h.x -= (t.size+870)*0.01875;
}
wait 0.1;
i += 4.5;
}
}
Donc voilas j’espère que ça va vous plaire !
Cordialement !​
 

Whyouuu

Ancien staff
Inscription
27 Septembre 2012
Messages
16 783
Réactions
7 251
Points
24 155
Salut,
Tu n'a pas d'images ou une vidéo pour nous montrer tout ça? :effrayé:
 
Haut