You are viewing our Forum Archives. To view or take place in current topics click here.
Adding Special Text?
Posted:

Adding Special Text?Posted:

TTG_Gust
  • TTG Senior
Status: Offline
Joined: Mar 13, 201014Year Member
Posts: 1,272
Reputation Power: 67
Status: Offline
Joined: Mar 13, 201014Year Member
Posts: 1,272
Reputation Power: 67
Hey guys I was just wondering what the code is to put a text on the middle left side of the screen? For example and the middle left of the screen Sayin:



TTG
<3
Gust




If youve seen, it it in Nulucky_7'ds lobby...I have searched the foums but cannto find...Thanks
#2. Posted:
Bosco
  • TTG Senior
Status: Offline
Joined: Aug 08, 200914Year Member
Posts: 1,116
Reputation Power: 218
Status: Offline
Joined: Aug 08, 200914Year Member
Posts: 1,116
Reputation Power: 218
you do : [align=center][/align11111]

lol dont add ones tho
#3. Posted:
Gucci
  • TTG Contender
Status: Offline
Joined: Feb 24, 201014Year Member
Posts: 3,097
Reputation Power: 401
Status: Offline
Joined: Feb 24, 201014Year Member
Posts: 3,097
Reputation Power: 401
Is it text on bottom left?

Here it is
self iPrintln("Text");
#4. Posted:
TTG_Gust
  • TTG Senior
Status: Offline
Joined: Mar 13, 201014Year Member
Posts: 1,272
Reputation Power: 67
Status: Offline
Joined: Mar 13, 201014Year Member
Posts: 1,272
Reputation Power: 67
Bosco wrote you do : [align=center][/align11111]

lol dont add ones tho
Thanks But what do you mean dont add 1's...I want it left
#5. Posted:
iSneeky
  • TTG Fanatic
Status: Offline
Joined: Dec 18, 200914Year Member
Posts: 4,027
Reputation Power: 167
Status: Offline
Joined: Dec 18, 200914Year Member
Posts: 4,027
Reputation Power: 167
Like what do you mean? Like where it says Welcome to JTAG Lobbies!









-Sneeky
#6. Posted:
Deany95
  • New Member
Status: Offline
Joined: Dec 18, 200914Year Member
Posts: 44
Reputation Power: 15
Status: Offline
Joined: Dec 18, 200914Year Member
Posts: 44
Reputation Power: 15
There is two ways:


self iPrintln("Text Here");

That set's the text at the bottom left hand side, and is very small.


textHeart() //Looping multiple words.
{
    textLeft = createFontString( "objective", 1.5 ); //Change from 1.5 if you wish.
   textLeft setPoint( "TOPLEFT", "TOPLEFT", 5, 150 + 100 );
   self thread destroyOnDeath( textLeft );
    for ( ;; )
    {
      textLeft setText("^3Deany95");
      wait 4;
      textLeft setText("^3Deany95");
      wait 4;
      textLeft setText("^3Deany95");
    }
}



textHeart() //For only one word.
{
    textLeft = createFontString( "objective", 1.5 ); //Change from 1.5 if you wish.
   textLeft setPoint( "TOPLEFT", "TOPLEFT", 5, 150 + 100 );
   self thread destroyOnDeath( textLeft );
    {
      textLeft setText("^3Deany95");
    }
}
#7. Posted:
CoNdEmR
  • TTG Fanatic
Status: Offline
Joined: Apr 29, 200915Year Member
Posts: 4,420
Reputation Power: 1211
Status: Offline
Joined: Apr 29, 200915Year Member
Posts: 4,420
Reputation Power: 1211
TTG_Gust wrote Hey guys I was just wondering what the code is to put a text on the middle left side of the screen? For example and the middle left of the screen Sayin:



TTG
<3
Gust




If youve seen, it it in Nulucky_7'ds lobby...I have searched the foums but cannto find...Thanks


You didnt look very hard did you.....

Forums/viewtopic/t=160345.html
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.